From 7a98b8aaefdeee8a71cccd128fb2e323c0ff9323 Mon Sep 17 00:00:00 2001 From: Hirushan99 Date: Wed, 14 Aug 2024 11:54:02 +0530 Subject: [PATCH 1/9] feat: create Get :id/attempts/:attempt_timestamp endpoint and update Get kiteplayerById endpoint --- src/modules/kite-data/kite-data.service.ts | 116 +++++++++++++++++- .../kite-players/kite-players.controller.ts | 19 ++- 2 files changed, 132 insertions(+), 3 deletions(-) diff --git a/src/modules/kite-data/kite-data.service.ts b/src/modules/kite-data/kite-data.service.ts index a6d7f3e..21df7e7 100644 --- a/src/modules/kite-data/kite-data.service.ts +++ b/src/modules/kite-data/kite-data.service.ts @@ -1,6 +1,6 @@ import { BadRequestException, Injectable } from '@nestjs/common'; import { InjectConnection, InjectModel } from '@nestjs/mongoose'; -import * as moment from 'moment'; +import * as moment from 'moment-timezone'; import { Connection, Model } from 'mongoose'; import { BulkCreateKiteDataResponseDto } from './dto/bulk-create-kite-data-response.dto'; import { CreateBulkKiteDataDto } from './dto/create-bulk-kite-data.dto'; @@ -1299,4 +1299,118 @@ export class KiteDataService { throw error; } } + + async getAttemptsByPlayerId(kitePlayerId: string, sortByHeight?: string, sortByAttempt?: string): Promise<{ attempt_timestamp: string, height: number }[]> { + + const pipeline: any[] = [ + { + $match: { + "metadata.kite_player_id": kitePlayerId + } + }, + { + $group: { + _id: { + kite_player_id: "$metadata.kite_player_id", + attempt_timestamp: "$metadata.attempt_timestamp" + }, + max_altitude: { $max: "$altitude" }, + min_altitude: { $min: "$altitude" } + } + }, + { + $addFields: { + height: { $subtract: ["$max_altitude", "$min_altitude"] } + } + }, + { + $project: { + _id: 0, + attempt_timestamp: "$_id.attempt_timestamp", + height: 1 + } + } + ]; + + if (sortByHeight === 'desc') { + pipeline.push({ + $sort: { height: -1 } as any + }); + } else if (sortByHeight === 'asc') { + pipeline.push({ + $sort: { height: 1 } as any + }); + } + + if (sortByAttempt === 'desc') { + pipeline.push({ + $sort: { attempt_timestamp: -1 } as any + }); + } else if (sortByAttempt === 'asc') { + pipeline.push({ + $sort: { attempt_timestamp: 1 } as any + }); + } + + const results = await this.kiteDatumModel.aggregate(pipeline).exec(); + return results.map(result => ({ + attempt_timestamp: moment(result.attempt_timestamp).tz('Asia/Colombo').format('YYYY-MM-DDTHH:mm:ss'), + height: result.height + })); + } + + async attemptsByKitePlayerIdAndAttemptTimestamp( + kitePlayerId: string, + attemptTimestamp: Date + ): Promise<{ data: { timestamp: string, height: number }[] }> { + + const pipeline: any[] = [ + { + $match: { + "metadata.kite_player_id": kitePlayerId, + "metadata.attempt_timestamp": attemptTimestamp + } + }, + { + $group: { + _id: "$metadata.kite_player_id", + min_altitude: { $min: "$altitude" }, + data: { + $push: { + timestamp: "$timestamp", + altitude: "$altitude", + } + } + } + }, + { + $addFields: { + data: { + $map: { + input: "$data", + as: "pair", + in: { + timestamp: "$$pair.timestamp", + altitude: "$$pair.altitude", + height: { $subtract: ["$$pair.altitude", "$min_altitude"] } + } + } + } + } + }, + { + $project: { + _id: 0, + data: { + timestamp: 1, + height: 1 + } + } + } + ]; + const result = await this.kiteDatumModel.aggregate(pipeline).exec(); + return { + data: result.length > 0 ? result[0].data : [] + }; + } } diff --git a/src/modules/kite-players/kite-players.controller.ts b/src/modules/kite-players/kite-players.controller.ts index 0ac9403..6023300 100644 --- a/src/modules/kite-players/kite-players.controller.ts +++ b/src/modules/kite-players/kite-players.controller.ts @@ -7,6 +7,7 @@ import { Param, Patch, Post, + Query, UseGuards } from '@nestjs/common'; import { ApiTags } from '@nestjs/swagger'; @@ -46,8 +47,22 @@ export class KitePlayersController { } @Get(':id') - findOne(@Param('id') id: string) { - return this.kiteplayersService.findOne(id); + async findOne(@Param('id') id: string, @Query('sortByHeight') sortByHeight?: string, @Query('sortByAttempt') sortByAttempt?: string) { + const kitePlayer = await this.kiteplayersService.findOne(id); + const attempts = await this.kiteDataService.getAttemptsByPlayerId(id, sortByHeight, sortByAttempt); + return { + kitePlayer, + attempts + }; + } + + @Get(':id/attempts/:attempt_timestamp') + async getAttemptsByKitePlayerIdAndAttemptTimestamp( + @Param('id') id: string, + @Param('attempt_timestamp') attempt_timestamp: string + ) { + const attemptTimestamp = new Date(attempt_timestamp); + return this.kiteDataService.attemptsByKitePlayerIdAndAttemptTimestamp(id, attemptTimestamp); } @UseGuards(ValidateGaveshaClientGuard) From 10b630a93f8be81b448638859a41f53069b4b5e4 Mon Sep 17 00:00:00 2001 From: Hirushan Prabhashana Date: Wed, 14 Aug 2024 13:01:35 +0530 Subject: [PATCH 2/9] feat: create nearest-district endpoint (#42) * feat: create nearest-district endpoint * chore: Add cities and district collection --- src/assets/Collections/test.cities.json | 32088 ++++++++++++++++ src/assets/Collections/test.districts.json | 250 + .../dto/create-kite-player-dto.ts | 2 + .../kite-players/dto/get-kite-player-dto.ts | 2 + .../kite-players/entities/cities.schema.ts | 40 + .../kite-players/entities/districts.schema.ts | 22 + .../entities/kite-player.entity.ts | 6 + .../kite-players/kite-players.controller.ts | 5 + .../kite-players/kite-players.module.ts | 4 + .../kite-players/kite-players.service.ts | 95 + 10 files changed, 32514 insertions(+) create mode 100644 src/assets/Collections/test.cities.json create mode 100644 src/assets/Collections/test.districts.json create mode 100644 src/modules/kite-players/entities/cities.schema.ts create mode 100644 src/modules/kite-players/entities/districts.schema.ts diff --git a/src/assets/Collections/test.cities.json b/src/assets/Collections/test.cities.json new file mode 100644 index 0000000..8163c2f --- /dev/null +++ b/src/assets/Collections/test.cities.json @@ -0,0 +1,32088 @@ +[{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e49b" + }, + "id": 1, + "district_id": 1, + "name_en": "Akkaraipattu", + "name_si": "අක්කරපත්තුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32400", + "location": { + "type": "Point", + "coordinates": [ + 81.85, + 7.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e49c" + }, + "id": 2, + "district_id": 1, + "name_en": "Ambagahawatta", + "name_si": "අඹගහවත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90326", + "location": { + "type": "Point", + "coordinates": [ + 81.3, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e49d" + }, + "id": 3, + "district_id": 1, + "name_en": "Ampara", + "name_si": "අම්පාර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32000", + "location": { + "type": "Point", + "coordinates": [ + 81.6667, + 7.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e49e" + }, + "id": 4, + "district_id": 1, + "name_en": "Bakmitiyawa", + "name_si": "බක්මිටියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32024", + "location": { + "type": "Point", + "coordinates": [ + 81.633832, + 7.026268 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e49f" + }, + "id": 5, + "district_id": 1, + "name_en": "Deegawapiya", + "name_si": "දීඝවාපිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32006", + "location": { + "type": "Point", + "coordinates": [ + 81.6667, + 7.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a0" + }, + "id": 6, + "district_id": 1, + "name_en": "Devalahinda", + "name_si": "දෙවලහිඳ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32038", + "location": { + "type": "Point", + "coordinates": [ + 81.5778, + 7.1889 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a1" + }, + "id": 7, + "district_id": 1, + "name_en": "Digamadulla Weeragoda", + "name_si": "දිගාමඩුල්ල වීරගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32008", + "location": { + "type": "Point", + "coordinates": [ + 81.6667, + 7.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a2" + }, + "id": 8, + "district_id": 1, + "name_en": "Dorakumbura", + "name_si": "දොරකුඹුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32104", + "location": { + "type": "Point", + "coordinates": [ + 81.280133, + 7.358849 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a3" + }, + "id": 9, + "district_id": 1, + "name_en": "Gonagolla", + "name_si": "ගොනගොල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32064", + "location": { + "type": "Point", + "coordinates": [ + 81.618014, + 7.449853 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a4" + }, + "id": 10, + "district_id": 1, + "name_en": "Hulannuge", + "name_si": "හුලංනුගේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32514", + "location": { + "type": "Point", + "coordinates": [ + 81.3, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a5" + }, + "id": 11, + "district_id": 1, + "name_en": "Kalmunai", + "name_si": "කල්මුණේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32300", + "location": { + "type": "Point", + "coordinates": [ + 81.826718, + 7.413897 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a6" + }, + "id": 12, + "district_id": 1, + "name_en": "Kannakipuram", + "name_si": "කන්නකිපුරම්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32405", + "location": { + "type": "Point", + "coordinates": [ + 81.85, + 7.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a7" + }, + "id": 13, + "district_id": 1, + "name_en": "Karativu", + "name_si": "කරතිව්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32250", + "location": { + "type": "Point", + "coordinates": [ + 81.8333, + 7.3833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a8" + }, + "id": 14, + "district_id": 1, + "name_en": "Kekirihena", + "name_si": "කැකිරිහේන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32074", + "location": { + "type": "Point", + "coordinates": [ + 81.310836, + 7.490724 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4a9" + }, + "id": 15, + "district_id": 1, + "name_en": "Koknahara", + "name_si": "කොක්නහර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32035", + "location": { + "type": "Point", + "coordinates": [ + 81.555806, + 7.184832 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4aa" + }, + "id": 16, + "district_id": 1, + "name_en": "Kolamanthalawa", + "name_si": "කෝලමන්තලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32102", + "location": { + "type": "Point", + "coordinates": [ + 81.249913, + 7.351733 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ab" + }, + "id": 17, + "district_id": 1, + "name_en": "Komari", + "name_si": "කෝමාරි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32418", + "location": { + "type": "Point", + "coordinates": [ + 81.78883, + 6.976958 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ac" + }, + "id": 18, + "district_id": 1, + "name_en": "Lahugala", + "name_si": "ලාහුගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32512", + "location": { + "type": "Point", + "coordinates": [ + 81.33954, + 7.415566 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ad" + }, + "id": 19, + "district_id": 1, + "name_en": "lmkkamam", + "name_si": "ල්ම්ක්කමම්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32450", + "location": { + "type": "Point", + "coordinates": [ + 81.8542, + 7.1125 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ae" + }, + "id": 20, + "district_id": 1, + "name_en": "Mahaoya", + "name_si": "මහඔය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32070", + "location": { + "type": "Point", + "coordinates": [ + 81.351145, + 7.535248 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4af" + }, + "id": 21, + "district_id": 1, + "name_en": "Marathamune", + "name_si": "මාරත්මුනේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32314", + "location": { + "type": "Point", + "coordinates": [ + 81.8167, + 7.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b0" + }, + "id": 22, + "district_id": 1, + "name_en": "Namaloya", + "name_si": "නාමල්ඔය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32037", + "location": { + "type": "Point", + "coordinates": [ + 81.5778, + 7.1889 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b1" + }, + "id": 23, + "district_id": 1, + "name_en": "Navithanveli", + "name_si": "නාවිදන්වෙලි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32308", + "location": { + "type": "Point", + "coordinates": [ + 81.7833, + 7.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b2" + }, + "id": 24, + "district_id": 1, + "name_en": "Nintavur", + "name_si": "නින්දවූර්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32340", + "location": { + "type": "Point", + "coordinates": [ + 81.85, + 7.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b3" + }, + "id": 25, + "district_id": 1, + "name_en": "Oluvil", + "name_si": "ඔළුවිල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32360", + "location": { + "type": "Point", + "coordinates": [ + 81.85, + 7.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b4" + }, + "id": 26, + "district_id": 1, + "name_en": "Padiyatalawa", + "name_si": "පදියතලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32100", + "location": { + "type": "Point", + "coordinates": [ + 81.2333, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b5" + }, + "id": 27, + "district_id": 1, + "name_en": "Pahalalanda", + "name_si": "පහලලන්ද", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32034", + "location": { + "type": "Point", + "coordinates": [ + 81.578714, + 7.21752 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b6" + }, + "id": 28, + "district_id": 1, + "name_en": "Panama", + "name_si": "පානම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32508", + "location": { + "type": "Point", + "coordinates": [ + 81.712237, + 6.812201 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b7" + }, + "id": 29, + "district_id": 1, + "name_en": "Pannalagama", + "name_si": "පන්නලගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32022", + "location": { + "type": "Point", + "coordinates": [ + 81.6167, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b8" + }, + "id": 30, + "district_id": 1, + "name_en": "Paragahakele", + "name_si": "පරගහකැලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32031", + "location": { + "type": "Point", + "coordinates": [ + 81.609526, + 7.25669 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4b9" + }, + "id": 31, + "district_id": 1, + "name_en": "Periyaneelavanai", + "name_si": "පෙරියනීලවන්නි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32316", + "location": { + "type": "Point", + "coordinates": [ + 81.814169, + 7.434002 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ba" + }, + "id": 32, + "district_id": 1, + "name_en": "Polwaga Janapadaya", + "name_si": "පොල්වග ජනපදය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32032", + "location": { + "type": "Point", + "coordinates": [ + 81.5778, + 7.1889 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4bb" + }, + "id": 33, + "district_id": 1, + "name_en": "Pottuvil", + "name_si": "පොතුවිල්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32500", + "location": { + "type": "Point", + "coordinates": [ + 81.8333, + 6.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4bc" + }, + "id": 34, + "district_id": 1, + "name_en": "Sainthamaruthu", + "name_si": "සායින්දමරුදු", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32280", + "location": { + "type": "Point", + "coordinates": [ + 81.8333, + 7.3833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4bd" + }, + "id": 35, + "district_id": 1, + "name_en": "Samanthurai", + "name_si": "සමන්තුරේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32200", + "location": { + "type": "Point", + "coordinates": [ + 81.8333, + 7.3833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4be" + }, + "id": 36, + "district_id": 1, + "name_en": "Serankada", + "name_si": "සේරන්කද", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32101", + "location": { + "type": "Point", + "coordinates": [ + 81.263599, + 7.464517 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4bf" + }, + "id": 37, + "district_id": 1, + "name_en": "Tempitiya", + "name_si": "ටැම්පිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32072", + "location": { + "type": "Point", + "coordinates": [ + 81.429907, + 7.610374 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c0" + }, + "id": 38, + "district_id": 1, + "name_en": "Thambiluvil", + "name_si": "ල්තැඹිළුවි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32415", + "location": { + "type": "Point", + "coordinates": [ + 81.819074, + 7.132227 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c1" + }, + "id": 39, + "district_id": 1, + "name_en": "Tirukovil", + "name_si": "තිරුකෝවිල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32420", + "location": { + "type": "Point", + "coordinates": [ + 81.85, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c2" + }, + "id": 40, + "district_id": 1, + "name_en": "Uhana", + "name_si": "උහන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32060", + "location": { + "type": "Point", + "coordinates": [ + 81.637746, + 7.363281 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c3" + }, + "id": 41, + "district_id": 1, + "name_en": "Wadinagala", + "name_si": "වඩිනාගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32039", + "location": { + "type": "Point", + "coordinates": [ + 81.56922, + 7.127849 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c4" + }, + "id": 42, + "district_id": 1, + "name_en": "Wanagamuwa", + "name_si": "වනගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32454", + "location": { + "type": "Point", + "coordinates": [ + 81.8542, + 7.1125 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c5" + }, + "id": 43, + "district_id": 2, + "name_en": "Angamuwa", + "name_si": "අංගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50248", + "location": { + "type": "Point", + "coordinates": [ + 80.205048, + 8.177645 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c6" + }, + "id": 44, + "district_id": 2, + "name_en": "Anuradhapura", + "name_si": "අනුරාධපුරය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50000", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 8.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c7" + }, + "id": 45, + "district_id": 2, + "name_en": "Awukana", + "name_si": "අව්කන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50169", + "location": { + "type": "Point", + "coordinates": [ + 80.5266, + 7.9753 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c8" + }, + "id": 46, + "district_id": 2, + "name_en": "Bogahawewa", + "name_si": "බෝගහවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50566", + "location": { + "type": "Point", + "coordinates": [ + 80.251702, + 8.328993 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4c9" + }, + "id": 47, + "district_id": 2, + "name_en": "Dematawewa", + "name_si": "දෙමටවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50356", + "location": { + "type": "Point", + "coordinates": [ + 80.870087, + 8.357373 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ca" + }, + "id": 48, + "district_id": 2, + "name_en": "Dimbulagala", + "name_si": "දිඹුලාගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51031", + "location": { + "type": "Point", + "coordinates": [ + 80.55, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4cb" + }, + "id": 49, + "district_id": 2, + "name_en": "Dutuwewa", + "name_si": "දුටුවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50393", + "location": { + "type": "Point", + "coordinates": [ + 80.5167, + 8.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4cc" + }, + "id": 50, + "district_id": 2, + "name_en": "Elayapattuwa", + "name_si": "ඇලයාපත්තුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50014", + "location": { + "type": "Point", + "coordinates": [ + 80.318148, + 8.413522 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4cd" + }, + "id": 51, + "district_id": 2, + "name_en": "Ellewewa", + "name_si": "ඇල්ලේවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51034", + "location": { + "type": "Point", + "coordinates": [ + 80.55, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ce" + }, + "id": 52, + "district_id": 2, + "name_en": "Eppawala", + "name_si": "එප්පාවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50260", + "location": { + "type": "Point", + "coordinates": [ + 80.7333, + 8.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4cf" + }, + "id": 53, + "district_id": 2, + "name_en": "Etawatunuwewa", + "name_si": "ඇතාවැටුනවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50584", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d0" + }, + "id": 54, + "district_id": 2, + "name_en": "Etaweeragollewa", + "name_si": "ඇතාවීරගොලෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50518", + "location": { + "type": "Point", + "coordinates": [ + 80.539713, + 8.613962 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d1" + }, + "id": 55, + "district_id": 2, + "name_en": "Galapitagala", + "name_si": "ගලපිටගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32066", + "location": { + "type": "Point", + "coordinates": [ + 80.685528, + 8.089843 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d2" + }, + "id": 56, + "district_id": 2, + "name_en": "Galenbindunuwewa", + "name_si": "ගලෙන්බිඳුනුවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50390", + "location": { + "type": "Point", + "coordinates": [ + 80.55, + 8.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d3" + }, + "id": 57, + "district_id": 2, + "name_en": "Galkadawala", + "name_si": "ගල්කඩවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50006", + "location": { + "type": "Point", + "coordinates": [ + 80.378175, + 8.412861 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d4" + }, + "id": 58, + "district_id": 2, + "name_en": "Galkiriyagama", + "name_si": "ගල්කිරියාගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50120", + "location": { + "type": "Point", + "coordinates": [ + 80.565, + 7.9414 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d5" + }, + "id": 59, + "district_id": 2, + "name_en": "Galkulama", + "name_si": "ගල්කුලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50064", + "location": { + "type": "Point", + "coordinates": [ + 80.506526, + 8.270414 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d6" + }, + "id": 60, + "district_id": 2, + "name_en": "Galnewa", + "name_si": "ගල්නෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50170", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 8.2 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d7" + }, + "id": 61, + "district_id": 2, + "name_en": "Gambirigaswewa", + "name_si": "ගම්බිරිගස්වැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50057", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 8.4667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d8" + }, + "id": 62, + "district_id": 2, + "name_en": "Ganewalpola", + "name_si": "ගනේවල්පොල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50142", + "location": { + "type": "Point", + "coordinates": [ + 80.628195, + 8.090528 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4d9" + }, + "id": 63, + "district_id": 2, + "name_en": "Gemunupura", + "name_si": "ගැමුණුපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50224", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 8.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4da" + }, + "id": 64, + "district_id": 2, + "name_en": "Getalawa", + "name_si": "ගෙතලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50392", + "location": { + "type": "Point", + "coordinates": [ + 80.5333, + 8.6167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4db" + }, + "id": 65, + "district_id": 2, + "name_en": "Gnanikulama", + "name_si": "ඝාණිකුළම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50036", + "location": { + "type": "Point", + "coordinates": [ + 80.431753, + 8.297336 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4dc" + }, + "id": 66, + "district_id": 2, + "name_en": "Gonahaddenawa", + "name_si": "ගෝනහද්දෙනෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50554", + "location": { + "type": "Point", + "coordinates": [ + 80.5083, + 8.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4dd" + }, + "id": 67, + "district_id": 2, + "name_en": "Habarana", + "name_si": "හබරන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50150", + "location": { + "type": "Point", + "coordinates": [ + 80.748664, + 8.047531 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4de" + }, + "id": 68, + "district_id": 2, + "name_en": "Halmillawa Dambulla", + "name_si": "හල්මිලෑව දඹුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50124", + "location": { + "type": "Point", + "coordinates": [ + 80.594, + 7.9474 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4df" + }, + "id": 69, + "district_id": 2, + "name_en": "Halmillawetiya", + "name_si": "හල්මිල්ලවැටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50552", + "location": { + "type": "Point", + "coordinates": [ + 80.2667, + 8.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e0" + }, + "id": 70, + "district_id": 2, + "name_en": "Hidogama", + "name_si": "හිද්දෝගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50044", + "location": { + "type": "Point", + "coordinates": [ + 80.418663, + 8.250421 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e1" + }, + "id": 71, + "district_id": 2, + "name_en": "Horawpatana", + "name_si": "හොරොව්පතාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50350", + "location": { + "type": "Point", + "coordinates": [ + 80.8667, + 8.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e2" + }, + "id": 72, + "district_id": 2, + "name_en": "Horiwila", + "name_si": "හොරිවිල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50222", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 8.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e3" + }, + "id": 73, + "district_id": 2, + "name_en": "Hurigaswewa", + "name_si": "හුරිගස්වැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50176", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 8.1333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e4" + }, + "id": 74, + "district_id": 2, + "name_en": "Hurulunikawewa", + "name_si": "හුරුලුනිකවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50394", + "location": { + "type": "Point", + "coordinates": [ + 80.5333, + 8.6167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e5" + }, + "id": 75, + "district_id": 2, + "name_en": "Ihala Puliyankulama", + "name_si": "ඉහල පුලියන්කුලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61316", + "location": { + "type": "Point", + "coordinates": [ + 80.559989, + 8.153213 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e6" + }, + "id": 76, + "district_id": 2, + "name_en": "Kagama", + "name_si": "කගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50282", + "location": { + "type": "Point", + "coordinates": [ + 80.478039, + 8.061465 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e7" + }, + "id": 77, + "district_id": 2, + "name_en": "Kahatagasdigiliya", + "name_si": "කහටගස්දිගිලිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50320", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 8.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e8" + }, + "id": 78, + "district_id": 2, + "name_en": "Kahatagollewa", + "name_si": "කහටගොල්ලෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50562", + "location": { + "type": "Point", + "coordinates": [ + 80.65, + 8.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4e9" + }, + "id": 79, + "district_id": 2, + "name_en": "Kalakarambewa", + "name_si": "කලකරඹෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50288", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 8.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ea" + }, + "id": 80, + "district_id": 2, + "name_en": "Kalaoya", + "name_si": "කලාඔය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50226", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 8.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4eb" + }, + "id": 81, + "district_id": 2, + "name_en": "Kalawedi Ulpotha", + "name_si": "කලාවැදි උල්පොත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50556", + "location": { + "type": "Point", + "coordinates": [ + 80.5083, + 8.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ec" + }, + "id": 82, + "district_id": 2, + "name_en": "Kallanchiya", + "name_si": "කලංචිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50454", + "location": { + "type": "Point", + "coordinates": [ + 80.55, + 8.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ed" + }, + "id": 83, + "district_id": 2, + "name_en": "Kalpitiya", + "name_si": "කල්පිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61360", + "location": { + "type": "Point", + "coordinates": [ + 79.7667, + 8.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ee" + }, + "id": 84, + "district_id": 2, + "name_en": "Kalukele Badanagala", + "name_si": "කළුකැලේ බදනාගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51037", + "location": { + "type": "Point", + "coordinates": [ + 80.55, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ef" + }, + "id": 85, + "district_id": 2, + "name_en": "Kapugallawa", + "name_si": "කපුගල්ලව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50370", + "location": { + "type": "Point", + "coordinates": [ + 80.6783, + 8.4233 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f0" + }, + "id": 86, + "district_id": 2, + "name_en": "Karagahawewa", + "name_si": "කරගහවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50232", + "location": { + "type": "Point", + "coordinates": [ + 80.322772, + 8.23416 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f1" + }, + "id": 87, + "district_id": 2, + "name_en": "Kashyapapura", + "name_si": "කාශ්‍යපපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51032", + "location": { + "type": "Point", + "coordinates": [ + 80.55, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f2" + }, + "id": 88, + "district_id": 2, + "name_en": "Kebithigollewa", + "name_si": "කැබිතිගොල්ලෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50500", + "location": { + "type": "Point", + "coordinates": [ + 80.4833, + 8.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f3" + }, + "id": 89, + "district_id": 2, + "name_en": "Kekirawa", + "name_si": "කැකිරාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50100", + "location": { + "type": "Point", + "coordinates": [ + 80.59801, + 8.037462 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f4" + }, + "id": 90, + "district_id": 2, + "name_en": "Kendewa", + "name_si": "කේන්දෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50452", + "location": { + "type": "Point", + "coordinates": [ + 80.6, + 8.4833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f5" + }, + "id": 91, + "district_id": 2, + "name_en": "Kiralogama", + "name_si": "කිරළෝගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50259", + "location": { + "type": "Point", + "coordinates": [ + 80.37012, + 8.19407 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f6" + }, + "id": 92, + "district_id": 2, + "name_en": "Kirigalwewa", + "name_si": "කිරිගල්වැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50511", + "location": { + "type": "Point", + "coordinates": [ + 80.556651, + 8.537767 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f7" + }, + "id": 93, + "district_id": 2, + "name_en": "Kirimundalama", + "name_si": "කිරිමුන්ඩලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61362", + "location": { + "type": "Point", + "coordinates": [ + 79.7667, + 8.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f8" + }, + "id": 94, + "district_id": 2, + "name_en": "Kitulhitiyawa", + "name_si": "කිතුල්හිටියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50132", + "location": { + "type": "Point", + "coordinates": [ + 80.63811, + 7.916592 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4f9" + }, + "id": 95, + "district_id": 2, + "name_en": "Kurundankulama", + "name_si": "කුරුන්දන්කුලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50062", + "location": { + "type": "Point", + "coordinates": [ + 80.45, + 8.2 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4fa" + }, + "id": 96, + "district_id": 2, + "name_en": "Labunoruwa", + "name_si": "ලබුනෝරුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50088", + "location": { + "type": "Point", + "coordinates": [ + 80.617001, + 8.168026 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4fb" + }, + "id": 97, + "district_id": 2, + "name_en": "Ihalagama", + "name_si": "ඉහලගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50304", + "location": { + "type": "Point", + "coordinates": [ + 80.5, + 8.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4fc" + }, + "id": 98, + "district_id": 2, + "name_en": "Ipologama", + "name_si": "ඉපොලොගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50280", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 8.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4fd" + }, + "id": 99, + "district_id": 2, + "name_en": "Madatugama", + "name_si": "මාදතුගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50130", + "location": { + "type": "Point", + "coordinates": [ + 80.638217, + 7.940041 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4fe" + }, + "id": 100, + "district_id": 2, + "name_en": "Maha Elagamuwa", + "name_si": "මහ ඇලගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50126", + "location": { + "type": "Point", + "coordinates": [ + 80.61824, + 7.991935 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e4ff" + }, + "id": 101, + "district_id": 2, + "name_en": "Mahabulankulama", + "name_si": "මහබුලංකුලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50196", + "location": { + "type": "Point", + "coordinates": [ + 80.5266, + 7.9753 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e500" + }, + "id": 102, + "district_id": 2, + "name_en": "Mahailluppallama", + "name_si": "මහඉලුප්පල්ලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50270", + "location": { + "type": "Point", + "coordinates": [ + 80.3619, + 8.106 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e501" + }, + "id": 103, + "district_id": 2, + "name_en": "Mahakanadarawa", + "name_si": "මහකනදරාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50306", + "location": { + "type": "Point", + "coordinates": [ + 80.5, + 8.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e502" + }, + "id": 104, + "district_id": 2, + "name_en": "Mahapothana", + "name_si": "මහපොතාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50327", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 8.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e503" + }, + "id": 105, + "district_id": 2, + "name_en": "Mahasenpura", + "name_si": "මහසෙන්පුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50574", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e504" + }, + "id": 106, + "district_id": 2, + "name_en": "Mahawilachchiya", + "name_si": "මහවිලච්චිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50022", + "location": { + "type": "Point", + "coordinates": [ + 80.4588, + 8.2814 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e505" + }, + "id": 107, + "district_id": 2, + "name_en": "Mailagaswewa", + "name_si": "මයිලගස්වැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50384", + "location": { + "type": "Point", + "coordinates": [ + 80.6333, + 8.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e506" + }, + "id": 108, + "district_id": 2, + "name_en": "Malwanagama", + "name_si": "මල්වනගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50236", + "location": { + "type": "Point", + "coordinates": [ + 80.3333, + 8.225 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e507" + }, + "id": 109, + "district_id": 2, + "name_en": "Maneruwa", + "name_si": "මනේරුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50182", + "location": { + "type": "Point", + "coordinates": [ + 80.475966, + 7.895997 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e508" + }, + "id": 110, + "district_id": 2, + "name_en": "Maradankadawala", + "name_si": "මරදන්කඩවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50080", + "location": { + "type": "Point", + "coordinates": [ + 80.4833, + 8.1333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e509" + }, + "id": 111, + "district_id": 2, + "name_en": "Maradankalla", + "name_si": "මරදන්කල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50308", + "location": { + "type": "Point", + "coordinates": [ + 80.537899, + 8.317498 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e50a" + }, + "id": 112, + "district_id": 2, + "name_en": "Medawachchiya", + "name_si": "මැදවච්චිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50500", + "location": { + "type": "Point", + "coordinates": [ + 80.495957, + 8.540822 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e50b" + }, + "id": 113, + "district_id": 2, + "name_en": "Megodawewa", + "name_si": "මීගොඩවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50334", + "location": { + "type": "Point", + "coordinates": [ + 80.7333, + 8.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e50c" + }, + "id": 114, + "district_id": 2, + "name_en": "Mihintale", + "name_si": "මිහින්තලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50300", + "location": { + "type": "Point", + "coordinates": [ + 80.5, + 8.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e50d" + }, + "id": 115, + "district_id": 2, + "name_en": "Morakewa", + "name_si": "මොරකෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50349", + "location": { + "type": "Point", + "coordinates": [ + 80.778223, + 8.513051 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e50e" + }, + "id": 116, + "district_id": 2, + "name_en": "Mulkiriyawa", + "name_si": "මුල්කිරියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50324", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 8.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e50f" + }, + "id": 117, + "district_id": 2, + "name_en": "Muriyakadawala", + "name_si": "මුරියකඩවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50344", + "location": { + "type": "Point", + "coordinates": [ + 80.654663, + 8.236464 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e510" + }, + "id": 118, + "district_id": 5, + "name_en": "Colombo 15", + "name_si": "කොළඹ 15", + "name_ta": "கொழும்பு 15", + "sub_name_en": "Modara", + "sub_name_si": "මෝදර", + "sub_name_ta": "முகத்துவாரம்", + "postcode": "01500", + "location": { + "type": "Point", + "coordinates": [ + 79.875278, + 6.959444 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e511" + }, + "id": 119, + "district_id": 2, + "name_en": "Nachchaduwa", + "name_si": "නච්චදූව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50046", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 8.2667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e512" + }, + "id": 120, + "district_id": 2, + "name_en": "Namalpura", + "name_si": "නාමල්පුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50339", + "location": { + "type": "Point", + "coordinates": [ + 80.7333, + 8.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e513" + }, + "id": 121, + "district_id": 2, + "name_en": "Negampaha", + "name_si": "නෑගම්පහ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50180", + "location": { + "type": "Point", + "coordinates": [ + 80.4597, + 7.9872 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e514" + }, + "id": 122, + "district_id": 2, + "name_en": "Nochchiyagama", + "name_si": "නොච්චියාගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50200", + "location": { + "type": "Point", + "coordinates": [ + 80.20823, + 8.266802 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e515" + }, + "id": 123, + "district_id": 2, + "name_en": "Nuwaragala", + "name_si": "නුවරගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51039", + "location": { + "type": "Point", + "coordinates": [ + 80.55, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e516" + }, + "id": 124, + "district_id": 2, + "name_en": "Padavi Maithripura", + "name_si": "පදවි මෛත්‍රීපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50572", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e517" + }, + "id": 125, + "district_id": 2, + "name_en": "Padavi Parakramapura", + "name_si": "පදවි පරාක්‍රමපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50582", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e518" + }, + "id": 126, + "district_id": 2, + "name_en": "Padavi Sripura", + "name_si": "පදවි ශ්‍රීපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50587", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e519" + }, + "id": 127, + "district_id": 2, + "name_en": "Padavi Sritissapura", + "name_si": "පදවි ශ්‍රීතිස්සපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50588", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e51a" + }, + "id": 128, + "district_id": 2, + "name_en": "Padaviya", + "name_si": "පදවිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50570", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e51b" + }, + "id": 129, + "district_id": 2, + "name_en": "Padikaramaduwa", + "name_si": "පඩිකරමඩුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50338", + "location": { + "type": "Point", + "coordinates": [ + 80.7333, + 8.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e51c" + }, + "id": 130, + "district_id": 2, + "name_en": "Pahala Halmillewa", + "name_si": "පහල හල්මිල්ලෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50206", + "location": { + "type": "Point", + "coordinates": [ + 80.19116, + 8.21672 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e51d" + }, + "id": 131, + "district_id": 2, + "name_en": "Pahala Maragahawe", + "name_si": "පහල මරගහවෙ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50220", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 8.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e51e" + }, + "id": 132, + "district_id": 2, + "name_en": "Pahalagama", + "name_si": "පහලගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50244", + "location": { + "type": "Point", + "coordinates": [ + 80.283767, + 8.186896 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e51f" + }, + "id": 133, + "district_id": 2, + "name_en": "Palugaswewa", + "name_si": "පලුගස්වැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50144", + "location": { + "type": "Point", + "coordinates": [ + 80.71918, + 8.053538 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e520" + }, + "id": 134, + "district_id": 2, + "name_en": "Pandukabayapura", + "name_si": "පන්ඩුකාබයපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50448", + "location": { + "type": "Point", + "coordinates": [ + 80.46731, + 8.4467 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e521" + }, + "id": 135, + "district_id": 2, + "name_en": "Pandulagama", + "name_si": "පන්ඩුලගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50029", + "location": { + "type": "Point", + "coordinates": [ + 80.4588, + 8.2814 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e522" + }, + "id": 136, + "district_id": 2, + "name_en": "Parakumpura", + "name_si": "පරාක්‍රමපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50326", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 8.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e523" + }, + "id": 137, + "district_id": 2, + "name_en": "Parangiyawadiya", + "name_si": "පරංගියාවාඩිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50354", + "location": { + "type": "Point", + "coordinates": [ + 80.910014, + 8.491831 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e524" + }, + "id": 138, + "district_id": 2, + "name_en": "Parasangahawewa", + "name_si": "පරසන්ගහවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50055", + "location": { + "type": "Point", + "coordinates": [ + 80.4333, + 8.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e525" + }, + "id": 139, + "district_id": 2, + "name_en": "Pelatiyawa", + "name_si": "පැලටියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51033", + "location": { + "type": "Point", + "coordinates": [ + 80.55, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e526" + }, + "id": 140, + "district_id": 2, + "name_en": "Pemaduwa", + "name_si": "පෙමදූව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50020", + "location": { + "type": "Point", + "coordinates": [ + 80.4588, + 8.2814 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e527" + }, + "id": 141, + "district_id": 2, + "name_en": "Perimiyankulama", + "name_si": "පෙරිමියන්කුලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50004", + "location": { + "type": "Point", + "coordinates": [ + 80.535827, + 8.270584 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e528" + }, + "id": 142, + "district_id": 2, + "name_en": "Pihimbiyagolewa", + "name_si": "පිහිඹියගොල්ලෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50512", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e529" + }, + "id": 143, + "district_id": 2, + "name_en": "Pubbogama", + "name_si": "පුබ්බෝගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50122", + "location": { + "type": "Point", + "coordinates": [ + 80.6, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e52a" + }, + "id": 144, + "district_id": 2, + "name_en": "Punewa", + "name_si": "පූනෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50506", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 8.6167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e52b" + }, + "id": 145, + "district_id": 2, + "name_en": "Rajanganaya", + "name_si": "රාජාංගනය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50246", + "location": { + "type": "Point", + "coordinates": [ + 80.2833, + 8.1708 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e52c" + }, + "id": 146, + "district_id": 2, + "name_en": "Rambewa", + "name_si": "රම්බෑව්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50450", + "location": { + "type": "Point", + "coordinates": [ + 80.5, + 8.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e52d" + }, + "id": 147, + "district_id": 2, + "name_en": "Rampathwila", + "name_si": "රම්පත්විල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50386", + "location": { + "type": "Point", + "coordinates": [ + 80.6333, + 8.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e52e" + }, + "id": 148, + "district_id": 2, + "name_en": "Rathmalgahawewa", + "name_si": "රත්මල්ගහවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50514", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e52f" + }, + "id": 149, + "district_id": 2, + "name_en": "Saliyapura", + "name_si": "සාලියපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50008", + "location": { + "type": "Point", + "coordinates": [ + 80.4333, + 8.3389 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e530" + }, + "id": 150, + "district_id": 2, + "name_en": "Seeppukulama", + "name_si": "සීප්පුකුලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50380", + "location": { + "type": "Point", + "coordinates": [ + 80.6333, + 8.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e531" + }, + "id": 151, + "district_id": 2, + "name_en": "Senapura", + "name_si": "සේනාපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50284", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 8.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e532" + }, + "id": 152, + "district_id": 2, + "name_en": "Sivalakulama", + "name_si": "සිවලකුලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50068", + "location": { + "type": "Point", + "coordinates": [ + 80.641743, + 8.25237 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e533" + }, + "id": 153, + "district_id": 2, + "name_en": "Siyambalewa", + "name_si": "සියඹලෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50184", + "location": { + "type": "Point", + "coordinates": [ + 80.5167, + 7.95 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e534" + }, + "id": 154, + "district_id": 2, + "name_en": "Sravasthipura", + "name_si": "ස්‍රාවස්තිපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50042", + "location": { + "type": "Point", + "coordinates": [ + 80.4333, + 8.2667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e535" + }, + "id": 155, + "district_id": 2, + "name_en": "Talawa", + "name_si": "තලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50230", + "location": { + "type": "Point", + "coordinates": [ + 80.35, + 8.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e536" + }, + "id": 156, + "district_id": 2, + "name_en": "Tambuttegama", + "name_si": "තඹුත්තේගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50240", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 8.15 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e537" + }, + "id": 157, + "district_id": 2, + "name_en": "Tammennawa", + "name_si": "තම්මැන්නාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50104", + "location": { + "type": "Point", + "coordinates": [ + 80.6, + 8.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e538" + }, + "id": 158, + "district_id": 2, + "name_en": "Tantirimale", + "name_si": "තන්තිරිමලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50016", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 8.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e539" + }, + "id": 159, + "district_id": 2, + "name_en": "Telhiriyawa", + "name_si": "තෙල්හිරියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50242", + "location": { + "type": "Point", + "coordinates": [ + 80.3333, + 8.15 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e53a" + }, + "id": 160, + "district_id": 2, + "name_en": "Tirappane", + "name_si": "තිරප්පනේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50072", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 8.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e53b" + }, + "id": 161, + "district_id": 2, + "name_en": "Tittagonewa", + "name_si": "තිත්තගෝනෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50558", + "location": { + "type": "Point", + "coordinates": [ + 80.75, + 8.7167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e53c" + }, + "id": 162, + "district_id": 2, + "name_en": "Udunuwara Colony", + "name_si": "උඩුනුවර කොළණිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50207", + "location": { + "type": "Point", + "coordinates": [ + 80.1917, + 8.2417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e53d" + }, + "id": 163, + "district_id": 2, + "name_en": "Upuldeniya", + "name_si": "උපුල්දෙනිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50382", + "location": { + "type": "Point", + "coordinates": [ + 80.6333, + 8.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e53e" + }, + "id": 164, + "district_id": 2, + "name_en": "Uttimaduwa", + "name_si": "උට්ටිමඩුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50067", + "location": { + "type": "Point", + "coordinates": [ + 80.55487, + 8.254989 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e53f" + }, + "id": 165, + "district_id": 2, + "name_en": "Vellamanal", + "name_si": "වෙල්ලමනල්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31053", + "location": { + "type": "Point", + "coordinates": [ + 81.1833, + 8.5167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e540" + }, + "id": 166, + "district_id": 2, + "name_en": "Viharapalugama", + "name_si": "විහාරපාළුගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50012", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 8.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e541" + }, + "id": 167, + "district_id": 2, + "name_en": "Wahalkada", + "name_si": "වාහල්කඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50564", + "location": { + "type": "Point", + "coordinates": [ + 80.6222, + 8.5667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e542" + }, + "id": 168, + "district_id": 2, + "name_en": "Wahamalgollewa", + "name_si": "වහමල්ගොල්ලෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50492", + "location": { + "type": "Point", + "coordinates": [ + 80.497451, + 8.479838 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e543" + }, + "id": 169, + "district_id": 2, + "name_en": "Walagambahuwa", + "name_si": "වලගම්බාහුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50086", + "location": { + "type": "Point", + "coordinates": [ + 80.499049, + 8.153134 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e544" + }, + "id": 170, + "district_id": 2, + "name_en": "Walahaviddawewa", + "name_si": "වලහාවිද්දෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50516", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e545" + }, + "id": 171, + "district_id": 2, + "name_en": "Welimuwapotana", + "name_si": "වැලිමුවපතාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50358", + "location": { + "type": "Point", + "coordinates": [ + 80.8667, + 8.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e546" + }, + "id": 172, + "district_id": 2, + "name_en": "Welioya Project", + "name_si": "වැලිඔය ව්‍යාපෘතිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50586", + "location": { + "type": "Point", + "coordinates": [ + 80.5476, + 8.5595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e547" + }, + "id": 173, + "district_id": 3, + "name_en": "Akkarasiyaya", + "name_si": "අක්කරසියය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90166", + "location": { + "type": "Point", + "coordinates": [ + 80.9208, + 6.7792 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e548" + }, + "id": 174, + "district_id": 3, + "name_en": "Aluketiyawa", + "name_si": "අලුකෙටියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90736", + "location": { + "type": "Point", + "coordinates": [ + 81.127134, + 7.317155 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e549" + }, + "id": 175, + "district_id": 3, + "name_en": "Aluttaramma", + "name_si": "අළුත්තරම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90722", + "location": { + "type": "Point", + "coordinates": [ + 81.0667, + 7.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e54a" + }, + "id": 176, + "district_id": 3, + "name_en": "Ambadandegama", + "name_si": "අඹදන්ඩෙගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90108", + "location": { + "type": "Point", + "coordinates": [ + 81.056492, + 6.81591 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e54b" + }, + "id": 177, + "district_id": 3, + "name_en": "Ambagasdowa", + "name_si": "අඹගස්දූව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90300", + "location": { + "type": "Point", + "coordinates": [ + 80.892126, + 6.928519 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e54c" + }, + "id": 178, + "district_id": 3, + "name_en": "Arawa", + "name_si": "අරාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90017", + "location": { + "type": "Point", + "coordinates": [ + 81.07755, + 7.162769 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e54d" + }, + "id": 179, + "district_id": 3, + "name_en": "Arawakumbura", + "name_si": "අරාවකුඹුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90532", + "location": { + "type": "Point", + "coordinates": [ + 81.198802, + 7.084925 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e54e" + }, + "id": 180, + "district_id": 3, + "name_en": "Arawatta", + "name_si": "අරාවත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90712", + "location": { + "type": "Point", + "coordinates": [ + 81.036976, + 7.328715 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e54f" + }, + "id": 181, + "district_id": 3, + "name_en": "Atakiriya", + "name_si": "අටකිරියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90542", + "location": { + "type": "Point", + "coordinates": [ + 81.1056, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e550" + }, + "id": 182, + "district_id": 3, + "name_en": "Badulla", + "name_si": "බදුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90000", + "location": { + "type": "Point", + "coordinates": [ + 81.048438, + 6.995365 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e551" + }, + "id": 183, + "district_id": 3, + "name_en": "Baduluoya", + "name_si": "බදුලුඔය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90019", + "location": { + "type": "Point", + "coordinates": [ + 81.023867, + 7.151852 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e552" + }, + "id": 184, + "district_id": 3, + "name_en": "Ballaketuwa", + "name_si": "බල්ලකැටුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90092", + "location": { + "type": "Point", + "coordinates": [ + 81.097249, + 6.862905 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e553" + }, + "id": 185, + "district_id": 3, + "name_en": "Bambarapana", + "name_si": "බඹරපාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90322", + "location": { + "type": "Point", + "coordinates": [ + 81.0375, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e554" + }, + "id": 186, + "district_id": 3, + "name_en": "Bandarawela", + "name_si": "බණ්ඩාරවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90100", + "location": { + "type": "Point", + "coordinates": [ + 80.990898, + 6.828867 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e555" + }, + "id": 187, + "district_id": 3, + "name_en": "Beramada", + "name_si": "බෙරමඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90066", + "location": { + "type": "Point", + "coordinates": [ + 80.987238, + 7.055713 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e556" + }, + "id": 188, + "district_id": 3, + "name_en": "Bibilegama", + "name_si": "බිබිලේගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90502", + "location": { + "type": "Point", + "coordinates": [ + 81.141268, + 6.887473 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e557" + }, + "id": 189, + "district_id": 3, + "name_en": "Boragas", + "name_si": "බොරගස්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90362", + "location": { + "type": "Point", + "coordinates": [ + 80.840162, + 6.901625 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e558" + }, + "id": 190, + "district_id": 3, + "name_en": "Boralanda", + "name_si": "බොරලන්ද", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90170", + "location": { + "type": "Point", + "coordinates": [ + 80.881603, + 6.828637 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e559" + }, + "id": 191, + "district_id": 3, + "name_en": "Bowela", + "name_si": "බෝවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90302", + "location": { + "type": "Point", + "coordinates": [ + 80.9333, + 6.95 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e55a" + }, + "id": 192, + "district_id": 3, + "name_en": "Central Camp", + "name_si": "මධ්‍යම කඳවුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32050", + "location": { + "type": "Point", + "coordinates": [ + 81.1759, + 7.3589 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e55b" + }, + "id": 193, + "district_id": 3, + "name_en": "Damanewela", + "name_si": "දමනෙවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32126", + "location": { + "type": "Point", + "coordinates": [ + 81.0583, + 7.2125 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e55c" + }, + "id": 194, + "district_id": 3, + "name_en": "Dambana", + "name_si": "දඹාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90714", + "location": { + "type": "Point", + "coordinates": [ + 81.1083, + 7.3583 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e55d" + }, + "id": 195, + "district_id": 3, + "name_en": "Dehiattakandiya", + "name_si": "දෙහිඅත්තකන්ඩිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32150", + "location": { + "type": "Point", + "coordinates": [ + 81.0583, + 7.2125 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e55e" + }, + "id": 196, + "district_id": 3, + "name_en": "Demodara", + "name_si": "දෙමෝදර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90080", + "location": { + "type": "Point", + "coordinates": [ + 81.053273, + 6.899055 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e55f" + }, + "id": 197, + "district_id": 3, + "name_en": "Diganatenna", + "name_si": "දිගනතැන්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90132", + "location": { + "type": "Point", + "coordinates": [ + 80.9667, + 6.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e560" + }, + "id": 198, + "district_id": 3, + "name_en": "Dikkapitiya", + "name_si": "දික්කපිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90214", + "location": { + "type": "Point", + "coordinates": [ + 80.9669, + 6.7381 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e561" + }, + "id": 199, + "district_id": 3, + "name_en": "Dimbulana", + "name_si": "දිඹුලාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90324", + "location": { + "type": "Point", + "coordinates": [ + 80.948431, + 7.006897 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e562" + }, + "id": 200, + "district_id": 3, + "name_en": "Divulapelessa", + "name_si": "දිවුලපැලැස්ස", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90726", + "location": { + "type": "Point", + "coordinates": [ + 81.0667, + 7.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e563" + }, + "id": 201, + "district_id": 3, + "name_en": "Diyatalawa", + "name_si": "දියතලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90150", + "location": { + "type": "Point", + "coordinates": [ + 80.9667, + 6.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e564" + }, + "id": 202, + "district_id": 3, + "name_en": "Dulgolla", + "name_si": "දුල්ගොල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90104", + "location": { + "type": "Point", + "coordinates": [ + 81.012115, + 6.819618 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e565" + }, + "id": 203, + "district_id": 3, + "name_en": "Ekiriyankumbura", + "name_si": "ඇකිරියන්කුඹුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91502", + "location": { + "type": "Point", + "coordinates": [ + 81.226709, + 7.269736 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e566" + }, + "id": 204, + "district_id": 3, + "name_en": "Ella", + "name_si": "ඇල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90090", + "location": { + "type": "Point", + "coordinates": [ + 81.050937, + 6.874485 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e567" + }, + "id": 205, + "district_id": 3, + "name_en": "Ettampitiya", + "name_si": "ඇට්ටම්පිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90140", + "location": { + "type": "Point", + "coordinates": [ + 80.9853, + 6.9342 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e568" + }, + "id": 206, + "district_id": 3, + "name_en": "Galauda", + "name_si": "ගලඋඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90065", + "location": { + "type": "Point", + "coordinates": [ + 80.981759, + 7.037347 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e569" + }, + "id": 207, + "district_id": 3, + "name_en": "Galporuyaya", + "name_si": "ගල්පොරුයාය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90752", + "location": { + "type": "Point", + "coordinates": [ + 81.05, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e56a" + }, + "id": 208, + "district_id": 3, + "name_en": "Gawarawela", + "name_si": "ගවරවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90082", + "location": { + "type": "Point", + "coordinates": [ + 81.069668, + 6.897394 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e56b" + }, + "id": 209, + "district_id": 3, + "name_en": "Girandurukotte", + "name_si": "ගිරාඳුරුකෝට්ටෙ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90750", + "location": { + "type": "Point", + "coordinates": [ + 81.05, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e56c" + }, + "id": 210, + "district_id": 3, + "name_en": "Godunna", + "name_si": "ගොඩුන්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90067", + "location": { + "type": "Point", + "coordinates": [ + 80.975003, + 7.071959 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e56d" + }, + "id": 211, + "district_id": 3, + "name_en": "Gurutalawa", + "name_si": "ගුරුතලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90208", + "location": { + "type": "Point", + "coordinates": [ + 80.9228, + 6.8431 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e56e" + }, + "id": 212, + "district_id": 3, + "name_en": "Haldummulla", + "name_si": "හල්දුම්මුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90180", + "location": { + "type": "Point", + "coordinates": [ + 80.884385, + 6.77061 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e56f" + }, + "id": 213, + "district_id": 3, + "name_en": "Hali Ela", + "name_si": "හාලි ඇල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90060", + "location": { + "type": "Point", + "coordinates": [ + 81.0333, + 6.95 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e570" + }, + "id": 214, + "district_id": 3, + "name_en": "Hangunnawa", + "name_si": "හඟුන්නෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90224", + "location": { + "type": "Point", + "coordinates": [ + 80.871427, + 6.948019 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e571" + }, + "id": 215, + "district_id": 3, + "name_en": "Haputale", + "name_si": "හපුතලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90160", + "location": { + "type": "Point", + "coordinates": [ + 80.9667, + 6.7667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e572" + }, + "id": 216, + "district_id": 3, + "name_en": "Hebarawa", + "name_si": "හබරාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90724", + "location": { + "type": "Point", + "coordinates": [ + 81.0667, + 7.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e573" + }, + "id": 217, + "district_id": 3, + "name_en": "Heeloya", + "name_si": "හීලොය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90112", + "location": { + "type": "Point", + "coordinates": [ + 80.9407, + 6.8212 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e574" + }, + "id": 218, + "district_id": 3, + "name_en": "Helahalpe", + "name_si": "හෙලහල්පේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90122", + "location": { + "type": "Point", + "coordinates": [ + 80.9407, + 6.8212 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e575" + }, + "id": 219, + "district_id": 3, + "name_en": "Helapupula", + "name_si": "හෙලපුපුළ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90094", + "location": { + "type": "Point", + "coordinates": [ + 81.0722, + 6.8556 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e576" + }, + "id": 220, + "district_id": 3, + "name_en": "Hopton", + "name_si": "හෝප්ටන්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90524", + "location": { + "type": "Point", + "coordinates": [ + 81.1552, + 6.9594 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e577" + }, + "id": 221, + "district_id": 3, + "name_en": "Idalgashinna", + "name_si": "ඉදල්ගස්ඉන්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "96167", + "location": { + "type": "Point", + "coordinates": [ + 80.9, + 6.7833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e578" + }, + "id": 222, + "district_id": 3, + "name_en": "Kahataruppa", + "name_si": "කහටරුප්ප", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90052", + "location": { + "type": "Point", + "coordinates": [ + 81.105188, + 7.023705 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e579" + }, + "id": 223, + "district_id": 3, + "name_en": "Kalugahakandura", + "name_si": "කළුගහකණ්ඳුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90546", + "location": { + "type": "Point", + "coordinates": [ + 81.094178, + 7.123675 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e57a" + }, + "id": 224, + "district_id": 3, + "name_en": "Kalupahana", + "name_si": "කළුපහණ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90186", + "location": { + "type": "Point", + "coordinates": [ + 80.854521, + 6.770298 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e57b" + }, + "id": 225, + "district_id": 3, + "name_en": "Kebillawela", + "name_si": "කොබිල්ලවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90102", + "location": { + "type": "Point", + "coordinates": [ + 80.993072, + 6.816937 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e57c" + }, + "id": 226, + "district_id": 3, + "name_en": "Kendagolla", + "name_si": "කන්දෙගොල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90048", + "location": { + "type": "Point", + "coordinates": [ + 81.110073, + 6.990765 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e57d" + }, + "id": 227, + "district_id": 3, + "name_en": "Keselpotha", + "name_si": "කෙසෙල්පොත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90738", + "location": { + "type": "Point", + "coordinates": [ + 81.083285, + 7.32819 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e57e" + }, + "id": 228, + "district_id": 3, + "name_en": "Ketawatta", + "name_si": "කේතවත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90016", + "location": { + "type": "Point", + "coordinates": [ + 81.080813, + 7.103503 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e57f" + }, + "id": 229, + "district_id": 3, + "name_en": "Kiriwanagama", + "name_si": "කිරිවනගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90184", + "location": { + "type": "Point", + "coordinates": [ + 80.91551, + 6.971183 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e580" + }, + "id": 230, + "district_id": 3, + "name_en": "Koslanda", + "name_si": "කොස්ලන්ද", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90190", + "location": { + "type": "Point", + "coordinates": [ + 81.027417, + 6.759935 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e581" + }, + "id": 231, + "district_id": 3, + "name_en": "Kuruwitenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90728", + "location": { + "type": "Point", + "coordinates": [ + 81.0667, + 7.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e582" + }, + "id": 232, + "district_id": 3, + "name_en": "Kuttiyagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90046", + "location": { + "type": "Point", + "coordinates": [ + 81.0833, + 7.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e583" + }, + "id": 233, + "district_id": 3, + "name_en": "Landewela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90068", + "location": { + "type": "Point", + "coordinates": [ + 81.000496, + 7.002113 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e584" + }, + "id": 234, + "district_id": 3, + "name_en": "Liyangahawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90106", + "location": { + "type": "Point", + "coordinates": [ + 81.032456, + 6.817452 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e585" + }, + "id": 235, + "district_id": 3, + "name_en": "Lunugala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90530", + "location": { + "type": "Point", + "coordinates": [ + 81.199335, + 7.041299 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e586" + }, + "id": 236, + "district_id": 3, + "name_en": "Lunuwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90310", + "location": { + "type": "Point", + "coordinates": [ + 80.917059, + 6.953933 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e587" + }, + "id": 237, + "district_id": 3, + "name_en": "Madulsima", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90535", + "location": { + "type": "Point", + "coordinates": [ + 81.133375, + 7.045064 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e588" + }, + "id": 238, + "district_id": 3, + "name_en": "Mahiyanganaya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90700", + "location": { + "type": "Point", + "coordinates": [ + 81.1167, + 7.2444 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e589" + }, + "id": 239, + "district_id": 3, + "name_en": "Makulella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90114", + "location": { + "type": "Point", + "coordinates": [ + 80.9407, + 6.8212 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e58a" + }, + "id": 240, + "district_id": 3, + "name_en": "Malgoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90754", + "location": { + "type": "Point", + "coordinates": [ + 81.05, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e58b" + }, + "id": 241, + "district_id": 3, + "name_en": "Mapakadawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90730", + "location": { + "type": "Point", + "coordinates": [ + 81.1167, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e58c" + }, + "id": 242, + "district_id": 3, + "name_en": "Maspanna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90328", + "location": { + "type": "Point", + "coordinates": [ + 80.942159, + 7.024427 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e58d" + }, + "id": 243, + "district_id": 3, + "name_en": "Maussagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90582", + "location": { + "type": "Point", + "coordinates": [ + 81.147817, + 6.898433 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e58e" + }, + "id": 244, + "district_id": 3, + "name_en": "Mawanagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32158", + "location": { + "type": "Point", + "coordinates": [ + 81.0583, + 7.2125 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e58f" + }, + "id": 245, + "district_id": 3, + "name_en": "Medawela Udukinda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90218", + "location": { + "type": "Point", + "coordinates": [ + 80.9279, + 6.846 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e590" + }, + "id": 246, + "district_id": 3, + "name_en": "Meegahakiula", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90015", + "location": { + "type": "Point", + "coordinates": [ + 80.9833, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e591" + }, + "id": 247, + "district_id": 3, + "name_en": "Metigahatenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90540", + "location": { + "type": "Point", + "coordinates": [ + 81.0833, + 6.9667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e592" + }, + "id": 248, + "district_id": 3, + "name_en": "Mirahawatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90134", + "location": { + "type": "Point", + "coordinates": [ + 80.9347, + 6.8817 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e593" + }, + "id": 249, + "district_id": 3, + "name_en": "Miriyabedda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90504", + "location": { + "type": "Point", + "coordinates": [ + 81.15, + 6.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e594" + }, + "id": 250, + "district_id": 3, + "name_en": "Nawamedagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32120", + "location": { + "type": "Point", + "coordinates": [ + 81.0583, + 7.2125 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e595" + }, + "id": 251, + "district_id": 3, + "name_en": "Nelumgama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90042", + "location": { + "type": "Point", + "coordinates": [ + 81.0917, + 7 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e596" + }, + "id": 252, + "district_id": 3, + "name_en": "Nikapotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90165", + "location": { + "type": "Point", + "coordinates": [ + 80.97083, + 6.740622 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e597" + }, + "id": 253, + "district_id": 3, + "name_en": "Nugatalawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90216", + "location": { + "type": "Point", + "coordinates": [ + 80.8833, + 6.9 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e598" + }, + "id": 254, + "district_id": 3, + "name_en": "Ohiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90168", + "location": { + "type": "Point", + "coordinates": [ + 80.841789, + 6.821352 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e599" + }, + "id": 255, + "district_id": 3, + "name_en": "Pahalarathkinda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90756", + "location": { + "type": "Point", + "coordinates": [ + 81.05, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e59a" + }, + "id": 256, + "district_id": 3, + "name_en": "Pallekiruwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90534", + "location": { + "type": "Point", + "coordinates": [ + 81.227033, + 7.007551 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e59b" + }, + "id": 257, + "district_id": 3, + "name_en": "Passara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90500", + "location": { + "type": "Point", + "coordinates": [ + 81.151166, + 6.935017 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e59c" + }, + "id": 258, + "district_id": 3, + "name_en": "Pattiyagedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90138", + "location": { + "type": "Point", + "coordinates": [ + 80.9507, + 6.8742 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e59d" + }, + "id": 259, + "district_id": 3, + "name_en": "Pelagahatenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90522", + "location": { + "type": "Point", + "coordinates": [ + 81.1552, + 6.9594 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e59e" + }, + "id": 260, + "district_id": 3, + "name_en": "Perawella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90222", + "location": { + "type": "Point", + "coordinates": [ + 80.84264, + 6.943148 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e59f" + }, + "id": 261, + "district_id": 3, + "name_en": "Pitamaruwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90544", + "location": { + "type": "Point", + "coordinates": [ + 81.135882, + 7.106546 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a0" + }, + "id": 262, + "district_id": 3, + "name_en": "Pitapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90171", + "location": { + "type": "Point", + "coordinates": [ + 80.884474, + 6.803692 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a1" + }, + "id": 263, + "district_id": 3, + "name_en": "Puhulpola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90212", + "location": { + "type": "Point", + "coordinates": [ + 80.931109, + 6.907145 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a2" + }, + "id": 264, + "district_id": 3, + "name_en": "Rajagalatenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32068", + "location": { + "type": "Point", + "coordinates": [ + 81.125, + 7.5458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a3" + }, + "id": 265, + "district_id": 3, + "name_en": "Ratkarawwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90164", + "location": { + "type": "Point", + "coordinates": [ + 80.9167, + 6.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a4" + }, + "id": 266, + "district_id": 3, + "name_en": "Ridimaliyadda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90704", + "location": { + "type": "Point", + "coordinates": [ + 81.1, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a5" + }, + "id": 267, + "district_id": 3, + "name_en": "Silmiyapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90364", + "location": { + "type": "Point", + "coordinates": [ + 80.843988, + 6.912388 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a6" + }, + "id": 268, + "district_id": 3, + "name_en": "Sirimalgoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90044", + "location": { + "type": "Point", + "coordinates": [ + 81.073671, + 7.003857 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a7" + }, + "id": 269, + "district_id": 3, + "name_en": "Siripura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32155", + "location": { + "type": "Point", + "coordinates": [ + 81.0583, + 7.2125 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a8" + }, + "id": 270, + "district_id": 3, + "name_en": "Sorabora Colony", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90718", + "location": { + "type": "Point", + "coordinates": [ + 81.1083, + 7.3583 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5a9" + }, + "id": 271, + "district_id": 3, + "name_en": "Soragune", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90183", + "location": { + "type": "Point", + "coordinates": [ + 80.8778, + 6.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5aa" + }, + "id": 272, + "district_id": 3, + "name_en": "Soranatota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90008", + "location": { + "type": "Point", + "coordinates": [ + 81.05, + 7.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5ab" + }, + "id": 273, + "district_id": 3, + "name_en": "Taldena", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90014", + "location": { + "type": "Point", + "coordinates": [ + 81.05, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5ac" + }, + "id": 274, + "district_id": 3, + "name_en": "Timbirigaspitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90012", + "location": { + "type": "Point", + "coordinates": [ + 81.05, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5ad" + }, + "id": 275, + "district_id": 3, + "name_en": "Uduhawara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90226", + "location": { + "type": "Point", + "coordinates": [ + 80.85877, + 6.94706 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5ae" + }, + "id": 276, + "district_id": 3, + "name_en": "Uraniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90702", + "location": { + "type": "Point", + "coordinates": [ + 81.102818, + 7.237143 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5af" + }, + "id": 277, + "district_id": 3, + "name_en": "Uva Karandagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90091", + "location": { + "type": "Point", + "coordinates": [ + 81.0667, + 6.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b0" + }, + "id": 278, + "district_id": 3, + "name_en": "Uva Mawelagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90192", + "location": { + "type": "Point", + "coordinates": [ + 81.0167, + 6.7333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b1" + }, + "id": 279, + "district_id": 3, + "name_en": "Uva Tenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90188", + "location": { + "type": "Point", + "coordinates": [ + 80.8778, + 6.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b2" + }, + "id": 280, + "district_id": 3, + "name_en": "Uva Tissapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90734", + "location": { + "type": "Point", + "coordinates": [ + 81.1167, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b3" + }, + "id": 281, + "district_id": 3, + "name_en": "Welimada", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90200", + "location": { + "type": "Point", + "coordinates": [ + 80.913222, + 6.906059 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b4" + }, + "id": 282, + "district_id": 3, + "name_en": "Werunketagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32062", + "location": { + "type": "Point", + "coordinates": [ + 81.125, + 7.5458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b5" + }, + "id": 283, + "district_id": 3, + "name_en": "Wewatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90716", + "location": { + "type": "Point", + "coordinates": [ + 81.201255, + 7.337729 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b6" + }, + "id": 284, + "district_id": 3, + "name_en": "Wineethagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90034", + "location": { + "type": "Point", + "coordinates": [ + 80.937, + 7.029 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b7" + }, + "id": 285, + "district_id": 3, + "name_en": "Yalagamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90329", + "location": { + "type": "Point", + "coordinates": [ + 80.950541, + 7.047834 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b8" + }, + "id": 286, + "district_id": 3, + "name_en": "Yalwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90706", + "location": { + "type": "Point", + "coordinates": [ + 81.15, + 7.2667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5b9" + }, + "id": 287, + "district_id": 4, + "name_en": "Addalaichenai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32350", + "location": { + "type": "Point", + "coordinates": [ + 81.75, + 7.4833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5ba" + }, + "id": 288, + "district_id": 4, + "name_en": "Ampilanthurai", + "name_si": "අම්පිලන්තුරෙයි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30162", + "location": { + "type": "Point", + "coordinates": [ + 81.4411, + 7.8597 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5bb" + }, + "id": 289, + "district_id": 4, + "name_en": "Araipattai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30150", + "location": { + "type": "Point", + "coordinates": [ + 81.725335, + 7.667705 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5bc" + }, + "id": 290, + "district_id": 4, + "name_en": "Ayithiyamalai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30362", + "location": { + "type": "Point", + "coordinates": [ + 81.574798, + 7.670934 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5bd" + }, + "id": 291, + "district_id": 4, + "name_en": "Bakiella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30206", + "location": { + "type": "Point", + "coordinates": [ + 81.7583, + 7.5083 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5be" + }, + "id": 292, + "district_id": 4, + "name_en": "Batticaloa", + "name_si": "මඩකලපුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30000", + "location": { + "type": "Point", + "coordinates": [ + 81.7, + 7.7167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5bf" + }, + "id": 293, + "district_id": 4, + "name_en": "Cheddipalayam", + "name_si": "චෙඩ්ඩිපලයම්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30194", + "location": { + "type": "Point", + "coordinates": [ + 81.783189, + 7.575161 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c0" + }, + "id": 294, + "district_id": 4, + "name_en": "Chenkaladi", + "name_si": "චෙන්කලඩි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30350", + "location": { + "type": "Point", + "coordinates": [ + 81.6, + 7.7833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c1" + }, + "id": 295, + "district_id": 4, + "name_en": "Eravur", + "name_si": "එරාවූර්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30300", + "location": { + "type": "Point", + "coordinates": [ + 81.619817, + 7.768518 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c2" + }, + "id": 296, + "district_id": 4, + "name_en": "Kaluwanchikudi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30200", + "location": { + "type": "Point", + "coordinates": [ + 81.7833, + 7.5167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c3" + }, + "id": 297, + "district_id": 4, + "name_en": "Kaluwankemy", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30372", + "location": { + "type": "Point", + "coordinates": [ + 81.5667, + 7.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c4" + }, + "id": 298, + "district_id": 4, + "name_en": "Kannankudah", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30016", + "location": { + "type": "Point", + "coordinates": [ + 81.674125, + 7.675505 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c5" + }, + "id": 299, + "district_id": 4, + "name_en": "Karadiyanaru", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30354", + "location": { + "type": "Point", + "coordinates": [ + 81.531117, + 7.689478 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c6" + }, + "id": 300, + "district_id": 4, + "name_en": "Kathiraveli", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30456", + "location": { + "type": "Point", + "coordinates": [ + 81.360298, + 8.243933 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c7" + }, + "id": 301, + "district_id": 4, + "name_en": "Kattankudi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30100", + "location": { + "type": "Point", + "coordinates": [ + 81.73, + 7.675 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c8" + }, + "id": 302, + "district_id": 4, + "name_en": "Kiran", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30394", + "location": { + "type": "Point", + "coordinates": [ + 81.529737, + 7.866841 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5c9" + }, + "id": 303, + "district_id": 4, + "name_en": "Kirankulam", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30159", + "location": { + "type": "Point", + "coordinates": [ + 81.764245, + 7.615628 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5ca" + }, + "id": 304, + "district_id": 4, + "name_en": "Koddaikallar", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30249", + "location": { + "type": "Point", + "coordinates": [ + 81.6639, + 7.6389 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5cb" + }, + "id": 305, + "district_id": 4, + "name_en": "Kokkaddichcholai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30160", + "location": { + "type": "Point", + "coordinates": [ + 81.4411, + 7.8597 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5cc" + }, + "id": 306, + "district_id": 4, + "name_en": "Kurukkalmadam", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30192", + "location": { + "type": "Point", + "coordinates": [ + 81.77497, + 7.594069 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5cd" + }, + "id": 307, + "district_id": 4, + "name_en": "Mandur", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30220", + "location": { + "type": "Point", + "coordinates": [ + 81.762407, + 7.482114 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5ce" + }, + "id": 308, + "district_id": 4, + "name_en": "Miravodai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30426", + "location": { + "type": "Point", + "coordinates": [ + 81.5167, + 7.9 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5cf" + }, + "id": 309, + "district_id": 4, + "name_en": "Murakottanchanai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30392", + "location": { + "type": "Point", + "coordinates": [ + 81.5333, + 7.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d0" + }, + "id": 310, + "district_id": 4, + "name_en": "Navagirinagar", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30238", + "location": { + "type": "Point", + "coordinates": [ + 81.725, + 7.525 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d1" + }, + "id": 311, + "district_id": 4, + "name_en": "Navatkadu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30018", + "location": { + "type": "Point", + "coordinates": [ + 81.7167, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d2" + }, + "id": 312, + "district_id": 4, + "name_en": "Oddamavadi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30420", + "location": { + "type": "Point", + "coordinates": [ + 81.5167, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d3" + }, + "id": 313, + "district_id": 4, + "name_en": "Palamunai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32354", + "location": { + "type": "Point", + "coordinates": [ + 81.75, + 7.4833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d4" + }, + "id": 314, + "district_id": 4, + "name_en": "Pankudavely", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30352", + "location": { + "type": "Point", + "coordinates": [ + 81.5667, + 7.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d5" + }, + "id": 315, + "district_id": 4, + "name_en": "Periyaporativu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30230", + "location": { + "type": "Point", + "coordinates": [ + 81.764557, + 7.536243 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d6" + }, + "id": 316, + "district_id": 4, + "name_en": "Periyapullumalai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30358", + "location": { + "type": "Point", + "coordinates": [ + 81.47434, + 7.561255 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d7" + }, + "id": 317, + "district_id": 4, + "name_en": "Pillaiyaradi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30022", + "location": { + "type": "Point", + "coordinates": [ + 81.6333, + 7.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d8" + }, + "id": 318, + "district_id": 4, + "name_en": "Punanai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30428", + "location": { + "type": "Point", + "coordinates": [ + 81.3833, + 7.9667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b29f4af0bb01f0c4e5d9" + }, + "id": 319, + "district_id": 4, + "name_en": "Thannamunai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30024", + "location": { + "type": "Point", + "coordinates": [ + 81.645852, + 7.76355 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e49b" + }, + "id": 320, + "district_id": 4, + "name_en": "Thettativu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30196", + "location": { + "type": "Point", + "coordinates": [ + 81.7833, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e49c" + }, + "id": 321, + "district_id": 4, + "name_en": "Thikkodai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30236", + "location": { + "type": "Point", + "coordinates": [ + 81.684177, + 7.525269 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e49d" + }, + "id": 322, + "district_id": 4, + "name_en": "Thirupalugamam", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30234", + "location": { + "type": "Point", + "coordinates": [ + 81.725, + 7.525 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e49e" + }, + "id": 323, + "district_id": 4, + "name_en": "Unnichchai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30364", + "location": { + "type": "Point", + "coordinates": [ + 81.55, + 7.6167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e49f" + }, + "id": 324, + "district_id": 4, + "name_en": "Vakaneri", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30424", + "location": { + "type": "Point", + "coordinates": [ + 81.4333, + 7.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a0" + }, + "id": 325, + "district_id": 4, + "name_en": "Vakarai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30450", + "location": { + "type": "Point", + "coordinates": [ + 81.415623, + 8.165968 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a1" + }, + "id": 326, + "district_id": 4, + "name_en": "Valaichenai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30400", + "location": { + "type": "Point", + "coordinates": [ + 81.6, + 7.7 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a2" + }, + "id": 327, + "district_id": 4, + "name_en": "Vantharumoolai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30376", + "location": { + "type": "Point", + "coordinates": [ + 81.591476, + 7.807445 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a3" + }, + "id": 328, + "district_id": 4, + "name_en": "Vellavely", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30204", + "location": { + "type": "Point", + "coordinates": [ + 81.7333, + 7.5 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a4" + }, + "id": 329, + "district_id": 5, + "name_en": "Akarawita", + "name_si": "අකරවිට", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10732", + "location": { + "type": "Point", + "coordinates": [ + 80.1, + 6.95 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a5" + }, + "id": 330, + "district_id": 5, + "name_en": "Ambalangoda", + "name_si": "අම්බලන්ගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80300", + "location": { + "type": "Point", + "coordinates": [ + 79.96413, + 6.77533 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a6" + }, + "id": 331, + "district_id": 5, + "name_en": "Athurugiriya", + "name_si": "අතුරුගිරිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10150", + "location": { + "type": "Point", + "coordinates": [ + 79.997214, + 6.873072 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a7" + }, + "id": 332, + "district_id": 5, + "name_en": "Avissawella", + "name_si": "අවිස්සාවේල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10700", + "location": { + "type": "Point", + "coordinates": [ + 80.211692, + 6.955003 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a8" + }, + "id": 333, + "district_id": 5, + "name_en": "Batawala", + "name_si": "බටවැල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10513", + "location": { + "type": "Point", + "coordinates": [ + 80.051592, + 6.877924 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4a9" + }, + "id": 334, + "district_id": 5, + "name_en": "Battaramulla", + "name_si": "බත්තරමුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10120", + "location": { + "type": "Point", + "coordinates": [ + 79.922136, + 6.900299 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4aa" + }, + "id": 335, + "district_id": 5, + "name_en": "Biyagama", + "name_si": "බියගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11650", + "location": { + "type": "Point", + "coordinates": [ + 79.9889, + 6.9408 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ab" + }, + "id": 336, + "district_id": 5, + "name_en": "Bope", + "name_si": "බෝපෙ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10522", + "location": { + "type": "Point", + "coordinates": [ + 80.1167, + 6.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ac" + }, + "id": 337, + "district_id": 5, + "name_en": "Boralesgamuwa", + "name_si": "බොරලැස්ගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10290", + "location": { + "type": "Point", + "coordinates": [ + 79.9006, + 6.8425 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ad" + }, + "id": 338, + "district_id": 5, + "name_en": "Colombo 8", + "name_si": "කොළඹ 8", + "name_ta": "கொழும்பு 8", + "sub_name_en": "Borella", + "sub_name_si": "බොරැල්ල", + "sub_name_ta": "பொறளை", + "postcode": "00800", + "location": { + "type": "Point", + "coordinates": [ + 79.877778, + 6.914722 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ae" + }, + "id": 339, + "district_id": 5, + "name_en": "Dedigamuwa", + "name_si": "දැඩිගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10656", + "location": { + "type": "Point", + "coordinates": [ + 80.0622, + 6.9115 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4af" + }, + "id": 340, + "district_id": 5, + "name_en": "Dehiwala", + "name_si": "දෙහිවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10350", + "location": { + "type": "Point", + "coordinates": [ + 79.865156, + 6.856387 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b0" + }, + "id": 341, + "district_id": 5, + "name_en": "Deltara", + "name_si": "දෙල්තර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10302", + "location": { + "type": "Point", + "coordinates": [ + 79.9167, + 6.7833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b1" + }, + "id": 342, + "district_id": 5, + "name_en": "Habarakada", + "name_si": "හබරකඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10204", + "location": { + "type": "Point", + "coordinates": [ + 80.017704, + 6.882518 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b2" + }, + "id": 343, + "district_id": 5, + "name_en": "Hanwella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10650", + "location": { + "type": "Point", + "coordinates": [ + 80.083333, + 6.905988 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b3" + }, + "id": 344, + "district_id": 5, + "name_en": "Hiripitya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10232", + "location": { + "type": "Point", + "coordinates": [ + 79.95, + 6.85 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b4" + }, + "id": 345, + "district_id": 5, + "name_en": "Hokandara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10118", + "location": { + "type": "Point", + "coordinates": [ + 79.969894, + 6.890237 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b5" + }, + "id": 346, + "district_id": 5, + "name_en": "Homagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10200", + "location": { + "type": "Point", + "coordinates": [ + 80.005384, + 6.85685 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b6" + }, + "id": 347, + "district_id": 5, + "name_en": "Horagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10502", + "location": { + "type": "Point", + "coordinates": [ + 80.066995, + 6.807635 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b7" + }, + "id": 348, + "district_id": 5, + "name_en": "Kaduwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10640", + "location": { + "type": "Point", + "coordinates": [ + 79.984817, + 6.930497 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b8" + }, + "id": 349, + "district_id": 5, + "name_en": "Kaluaggala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11224", + "location": { + "type": "Point", + "coordinates": [ + 80.1, + 6.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4b9" + }, + "id": 350, + "district_id": 5, + "name_en": "Kapugoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10662", + "location": { + "type": "Point", + "coordinates": [ + 80.1, + 6.9486 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ba" + }, + "id": 351, + "district_id": 5, + "name_en": "Kehelwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "12550", + "location": { + "type": "Point", + "coordinates": [ + 79.9167, + 6.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4bb" + }, + "id": 352, + "district_id": 5, + "name_en": "Kiriwattuduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10208", + "location": { + "type": "Point", + "coordinates": [ + 80.009759, + 6.804157 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4bc" + }, + "id": 353, + "district_id": 5, + "name_en": "Kolonnawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10600", + "location": { + "type": "Point", + "coordinates": [ + 79.888095, + 6.933035 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4bd" + }, + "id": 354, + "district_id": 5, + "name_en": "Kosgama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10730", + "location": { + "type": "Point", + "coordinates": [ + 80.1411, + 6.9333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4be" + }, + "id": 355, + "district_id": 5, + "name_en": "Madapatha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10306", + "location": { + "type": "Point", + "coordinates": [ + 79.930103, + 6.766824 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4bf" + }, + "id": 356, + "district_id": 5, + "name_en": "Maharagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10280", + "location": { + "type": "Point", + "coordinates": [ + 79.932766, + 6.843401 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c0" + }, + "id": 357, + "district_id": 5, + "name_en": "Malabe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10115", + "location": { + "type": "Point", + "coordinates": [ + 79.958072, + 6.901241 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c1" + }, + "id": 358, + "district_id": 5, + "name_en": "Moratuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10400", + "location": { + "type": "Point", + "coordinates": [ + 79.8825, + 6.7733 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c2" + }, + "id": 359, + "district_id": 5, + "name_en": "Mount Lavinia", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10370", + "location": { + "type": "Point", + "coordinates": [ + 79.863141, + 6.838864 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c3" + }, + "id": 360, + "district_id": 5, + "name_en": "Mullegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10202", + "location": { + "type": "Point", + "coordinates": [ + 80.012959, + 6.887403 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c4" + }, + "id": 361, + "district_id": 5, + "name_en": "Napawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10704", + "location": { + "type": "Point", + "coordinates": [ + 80.2183, + 6.9531 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c5" + }, + "id": 362, + "district_id": 5, + "name_en": "Nugegoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10250", + "location": { + "type": "Point", + "coordinates": [ + 79.886231, + 6.877563 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c6" + }, + "id": 363, + "district_id": 5, + "name_en": "Padukka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10500", + "location": { + "type": "Point", + "coordinates": [ + 80.090301, + 6.837834 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c7" + }, + "id": 364, + "district_id": 5, + "name_en": "Pannipitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10230", + "location": { + "type": "Point", + "coordinates": [ + 79.944518, + 6.843999 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c8" + }, + "id": 365, + "district_id": 5, + "name_en": "Piliyandala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10300", + "location": { + "type": "Point", + "coordinates": [ + 79.9264, + 6.7981 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4c9" + }, + "id": 366, + "district_id": 5, + "name_en": "Pitipana Homagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10206", + "location": { + "type": "Point", + "coordinates": [ + 80.016, + 6.8477 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ca" + }, + "id": 367, + "district_id": 5, + "name_en": "Polgasowita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10320", + "location": { + "type": "Point", + "coordinates": [ + 79.9811, + 6.7842 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4cb" + }, + "id": 368, + "district_id": 5, + "name_en": "Pugoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10660", + "location": { + "type": "Point", + "coordinates": [ + 80.1222, + 6.9703 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4cc" + }, + "id": 369, + "district_id": 5, + "name_en": "Ranala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10654", + "location": { + "type": "Point", + "coordinates": [ + 80.032962, + 6.915253 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4cd" + }, + "id": 370, + "district_id": 5, + "name_en": "Siddamulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10304", + "location": { + "type": "Point", + "coordinates": [ + 79.955978, + 6.815785 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ce" + }, + "id": 371, + "district_id": 5, + "name_en": "Siyambalagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81462", + "location": { + "type": "Point", + "coordinates": [ + 79.966845, + 6.800041 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4cf" + }, + "id": 372, + "district_id": 5, + "name_en": "Sri Jayawardenepu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10100", + "location": { + "type": "Point", + "coordinates": [ + 79.9359, + 6.8897 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d0" + }, + "id": 373, + "district_id": 5, + "name_en": "Talawatugoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10116", + "location": { + "type": "Point", + "coordinates": [ + 79.9411, + 6.8692 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d1" + }, + "id": 374, + "district_id": 5, + "name_en": "Tummodara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10682", + "location": { + "type": "Point", + "coordinates": [ + 80.1353, + 6.9061 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d2" + }, + "id": 375, + "district_id": 5, + "name_en": "Waga", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10680", + "location": { + "type": "Point", + "coordinates": [ + 80.1353, + 6.9061 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d3" + }, + "id": 376, + "district_id": 5, + "name_en": "Colombo 6", + "name_si": "කොළඹ 6", + "name_ta": "கொழும்பு 6", + "sub_name_en": "Wellawatta", + "sub_name_si": "වැල්ලවත්ත", + "sub_name_ta": "வெள்ளவத்தை", + "postcode": "00600", + "location": { + "type": "Point", + "coordinates": [ + 79.860483, + 6.874657 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d4" + }, + "id": 377, + "district_id": 6, + "name_en": "Agaliya", + "name_si": "අගලිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80212", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 6.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d5" + }, + "id": 378, + "district_id": 6, + "name_en": "Ahangama", + "name_si": "අහංගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80650", + "location": { + "type": "Point", + "coordinates": [ + 80.370204, + 5.970765 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d6" + }, + "id": 379, + "district_id": 6, + "name_en": "Ahungalla", + "name_si": "අහුන්ගල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80562", + "location": { + "type": "Point", + "coordinates": [ + 80.03029, + 6.315216 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d7" + }, + "id": 380, + "district_id": 6, + "name_en": "Akmeemana", + "name_si": "අක්මීමාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80090", + "location": { + "type": "Point", + "coordinates": [ + 80.3032, + 6.1845 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d8" + }, + "id": 381, + "district_id": 6, + "name_en": "Alawatugoda", + "name_si": "අලවතුගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20140", + "location": { + "type": "Point", + "coordinates": [ + 80, + 6.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4d9" + }, + "id": 382, + "district_id": 6, + "name_en": "Aluthwala", + "name_si": "අළුත්වල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80332", + "location": { + "type": "Point", + "coordinates": [ + 80.136538, + 6.180801 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4da" + }, + "id": 383, + "district_id": 6, + "name_en": "Ampegama", + "name_si": "අම්පෙගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80204", + "location": { + "type": "Point", + "coordinates": [ + 80.14453, + 6.193907 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4db" + }, + "id": 384, + "district_id": 6, + "name_en": "Amugoda", + "name_si": "අමුගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80422", + "location": { + "type": "Point", + "coordinates": [ + 80.22104, + 6.314635 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4dc" + }, + "id": 385, + "district_id": 6, + "name_en": "Anangoda", + "name_si": "අනන්ගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80044", + "location": { + "type": "Point", + "coordinates": [ + 80.2389, + 6.0722 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4dd" + }, + "id": 386, + "district_id": 6, + "name_en": "Angulugaha", + "name_si": "අඟුලුගහ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80122", + "location": { + "type": "Point", + "coordinates": [ + 80.322148, + 6.036963 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4de" + }, + "id": 387, + "district_id": 6, + "name_en": "Ankokkawala", + "name_si": "අංකොක්කාවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80048", + "location": { + "type": "Point", + "coordinates": [ + 80.274014, + 6.05329 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4df" + }, + "id": 388, + "district_id": 6, + "name_en": "Aselapura", + "name_si": "ඇසලපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51072", + "location": { + "type": "Point", + "coordinates": [ + 80.0333, + 6.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e0" + }, + "id": 389, + "district_id": 6, + "name_en": "Baddegama", + "name_si": "බද්දේගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80200", + "location": { + "type": "Point", + "coordinates": [ + 80.201841, + 6.165975 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e1" + }, + "id": 390, + "district_id": 6, + "name_en": "Balapitiya", + "name_si": "බලපිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80550", + "location": { + "type": "Point", + "coordinates": [ + 80.036054, + 6.269254 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e2" + }, + "id": 391, + "district_id": 6, + "name_en": "Banagala", + "name_si": "බනගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80143", + "location": { + "type": "Point", + "coordinates": [ + 80.42, + 6.2706 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e3" + }, + "id": 392, + "district_id": 6, + "name_en": "Batapola", + "name_si": "බටපොල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80320", + "location": { + "type": "Point", + "coordinates": [ + 80.120034, + 6.235697 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e4" + }, + "id": 393, + "district_id": 6, + "name_en": "Bentota", + "name_si": "බෙන්තොට", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80500", + "location": { + "type": "Point", + "coordinates": [ + 79.9989, + 6.4211 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e5" + }, + "id": 394, + "district_id": 6, + "name_en": "Boossa", + "name_si": "බූස්ස", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80270", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 6.2233 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e6" + }, + "id": 395, + "district_id": 6, + "name_en": "Dellawa", + "name_si": "දෙල්ලව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81477", + "location": { + "type": "Point", + "coordinates": [ + 80.452741, + 6.335012 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e7" + }, + "id": 396, + "district_id": 6, + "name_en": "Dikkumbura", + "name_si": "දික්කුඹුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80654", + "location": { + "type": "Point", + "coordinates": [ + 80.376153, + 6.012945 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e8" + }, + "id": 397, + "district_id": 6, + "name_en": "Dodanduwa", + "name_si": "දොඩන්දූව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80250", + "location": { + "type": "Point", + "coordinates": [ + 80.1456, + 6.0967 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4e9" + }, + "id": 398, + "district_id": 6, + "name_en": "Ella Tanabaddegama", + "name_si": "ඇල්ල තනබද්දේගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80402", + "location": { + "type": "Point", + "coordinates": [ + 80.1988, + 6.2922 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ea" + }, + "id": 399, + "district_id": 6, + "name_en": "Elpitiya", + "name_si": "ඇල්පිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80400", + "location": { + "type": "Point", + "coordinates": [ + 80.171923, + 6.300214 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4eb" + }, + "id": 400, + "district_id": 6, + "name_en": "Galle", + "name_si": "ගාල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80000", + "location": { + "type": "Point", + "coordinates": [ + 80.2117, + 6.0536 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ec" + }, + "id": 401, + "district_id": 6, + "name_en": "Ginimellagaha", + "name_si": "ගිනිමෙල්ලගහ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80220", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 6.2233 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ed" + }, + "id": 402, + "district_id": 6, + "name_en": "Gintota", + "name_si": "ගින්තොට", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80280", + "location": { + "type": "Point", + "coordinates": [ + 80.1839, + 6.0564 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ee" + }, + "id": 403, + "district_id": 6, + "name_en": "Godahena", + "name_si": "ගොඩහේන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80302", + "location": { + "type": "Point", + "coordinates": [ + 80.0667, + 6.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ef" + }, + "id": 404, + "district_id": 6, + "name_en": "Gonamulla Junction", + "name_si": "ගෝනමුල්ල හංදිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80054", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 6.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f0" + }, + "id": 405, + "district_id": 6, + "name_en": "Gonapinuwala", + "name_si": "ගොනාපිනූවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80230", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 6.2233 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f1" + }, + "id": 406, + "district_id": 6, + "name_en": "Habaraduwa", + "name_si": "හබරාදූව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80630", + "location": { + "type": "Point", + "coordinates": [ + 80.326, + 6.0043 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f2" + }, + "id": 407, + "district_id": 6, + "name_en": "Haburugala", + "name_si": "හබුරුගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80506", + "location": { + "type": "Point", + "coordinates": [ + 80.038306, + 6.4052 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f3" + }, + "id": 408, + "district_id": 6, + "name_en": "Hikkaduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80240", + "location": { + "type": "Point", + "coordinates": [ + 80.113201, + 6.139535 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f4" + }, + "id": 409, + "district_id": 6, + "name_en": "Hiniduma", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80080", + "location": { + "type": "Point", + "coordinates": [ + 80.328888, + 6.316028 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f5" + }, + "id": 410, + "district_id": 6, + "name_en": "Hiyare", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80056", + "location": { + "type": "Point", + "coordinates": [ + 80.317871, + 6.079898 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f6" + }, + "id": 411, + "district_id": 6, + "name_en": "Kahaduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80460", + "location": { + "type": "Point", + "coordinates": [ + 80.21, + 6.2244 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f7" + }, + "id": 412, + "district_id": 6, + "name_en": "Kahawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80312", + "location": { + "type": "Point", + "coordinates": [ + 80.07601, + 6.185429 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f8" + }, + "id": 413, + "district_id": 6, + "name_en": "Karagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80151", + "location": { + "type": "Point", + "coordinates": [ + 80.395041, + 6.084182 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4f9" + }, + "id": 414, + "district_id": 6, + "name_en": "Karandeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80360", + "location": { + "type": "Point", + "coordinates": [ + 80.072462, + 6.260467 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4fa" + }, + "id": 415, + "district_id": 6, + "name_en": "Kosgoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80570", + "location": { + "type": "Point", + "coordinates": [ + 80.028315, + 6.332288 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4fb" + }, + "id": 416, + "district_id": 6, + "name_en": "Kottawagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80062", + "location": { + "type": "Point", + "coordinates": [ + 80.3419, + 6.1375 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4fc" + }, + "id": 417, + "district_id": 6, + "name_en": "Kottegoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81180", + "location": { + "type": "Point", + "coordinates": [ + 80.1, + 6.1667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4fd" + }, + "id": 418, + "district_id": 6, + "name_en": "Kuleegoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80328", + "location": { + "type": "Point", + "coordinates": [ + 80.1167, + 6.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4fe" + }, + "id": 419, + "district_id": 6, + "name_en": "Magedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80152", + "location": { + "type": "Point", + "coordinates": [ + 80.393927, + 6.108129 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e4ff" + }, + "id": 420, + "district_id": 6, + "name_en": "Mahawela Sinhapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51076", + "location": { + "type": "Point", + "coordinates": [ + 80.0333, + 6.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e500" + }, + "id": 421, + "district_id": 6, + "name_en": "Mapalagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80112", + "location": { + "type": "Point", + "coordinates": [ + 80.27784, + 6.234713 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e501" + }, + "id": 422, + "district_id": 6, + "name_en": "Mapalagama Central", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80116", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 6.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e502" + }, + "id": 423, + "district_id": 6, + "name_en": "Mattaka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80424", + "location": { + "type": "Point", + "coordinates": [ + 80.254218, + 6.302366 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e503" + }, + "id": 424, + "district_id": 6, + "name_en": "Meda-Keembiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80092", + "location": { + "type": "Point", + "coordinates": [ + 80.3032, + 6.1845 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e504" + }, + "id": 425, + "district_id": 6, + "name_en": "Meetiyagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80330", + "location": { + "type": "Point", + "coordinates": [ + 80.093504, + 6.189135 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e505" + }, + "id": 426, + "district_id": 6, + "name_en": "Nagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80110", + "location": { + "type": "Point", + "coordinates": [ + 80.277829, + 6.201296 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e506" + }, + "id": 427, + "district_id": 6, + "name_en": "Nakiyadeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80064", + "location": { + "type": "Point", + "coordinates": [ + 80.338164, + 6.143029 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e507" + }, + "id": 428, + "district_id": 6, + "name_en": "Nawadagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80416", + "location": { + "type": "Point", + "coordinates": [ + 80.134175, + 6.304655 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e508" + }, + "id": 429, + "district_id": 6, + "name_en": "Neluwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80082", + "location": { + "type": "Point", + "coordinates": [ + 80.363267, + 6.37393 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e509" + }, + "id": 430, + "district_id": 6, + "name_en": "Nindana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80318", + "location": { + "type": "Point", + "coordinates": [ + 80.107663, + 6.207731 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e50a" + }, + "id": 431, + "district_id": 6, + "name_en": "Pahala Millawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81472", + "location": { + "type": "Point", + "coordinates": [ + 80.475431, + 6.293995 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e50b" + }, + "id": 432, + "district_id": 6, + "name_en": "Panangala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80075", + "location": { + "type": "Point", + "coordinates": [ + 80.334525, + 6.274182 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e50c" + }, + "id": 433, + "district_id": 6, + "name_en": "Pannimulla Panagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80086", + "location": { + "type": "Point", + "coordinates": [ + 80.3653, + 6.36 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e50d" + }, + "id": 434, + "district_id": 6, + "name_en": "Parana ThanaYamgoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80114", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 6.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e50e" + }, + "id": 435, + "district_id": 6, + "name_en": "Patana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22012", + "location": { + "type": "Point", + "coordinates": [ + 80.1167, + 6.1333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e50f" + }, + "id": 436, + "district_id": 6, + "name_en": "Pitigala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80420", + "location": { + "type": "Point", + "coordinates": [ + 80.217851, + 6.348894 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e510" + }, + "id": 437, + "district_id": 6, + "name_en": "Poddala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80170", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 6.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e511" + }, + "id": 438, + "district_id": 6, + "name_en": "Polgampola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "12136", + "location": { + "type": "Point", + "coordinates": [ + 80.4383, + 6.3244 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e512" + }, + "id": 439, + "district_id": 6, + "name_en": "Porawagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80408", + "location": { + "type": "Point", + "coordinates": [ + 80.231811, + 6.279568 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e513" + }, + "id": 440, + "district_id": 6, + "name_en": "Rantotuwila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80354", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 6.3833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e514" + }, + "id": 441, + "district_id": 6, + "name_en": "Talagampola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80058", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 6.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e515" + }, + "id": 442, + "district_id": 6, + "name_en": "Talgaspe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80406", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 6.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e516" + }, + "id": 443, + "district_id": 6, + "name_en": "Talpe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80615", + "location": { + "type": "Point", + "coordinates": [ + 80.2961, + 6.0061 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e517" + }, + "id": 444, + "district_id": 6, + "name_en": "Tawalama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80148", + "location": { + "type": "Point", + "coordinates": [ + 80.3333, + 6.3333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e518" + }, + "id": 445, + "district_id": 6, + "name_en": "Tiranagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80244", + "location": { + "type": "Point", + "coordinates": [ + 80.1167, + 6.1333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e519" + }, + "id": 446, + "district_id": 6, + "name_en": "Udalamatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80108", + "location": { + "type": "Point", + "coordinates": [ + 80.306106, + 6.18924 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e51a" + }, + "id": 447, + "district_id": 6, + "name_en": "Udugama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80070", + "location": { + "type": "Point", + "coordinates": [ + 80.338951, + 6.188469 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e51b" + }, + "id": 448, + "district_id": 6, + "name_en": "Uluvitike", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80168", + "location": { + "type": "Point", + "coordinates": [ + 80.309, + 6.3056 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e51c" + }, + "id": 449, + "district_id": 6, + "name_en": "Unawatuna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80600", + "location": { + "type": "Point", + "coordinates": [ + 80.249901, + 6.0169 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e51d" + }, + "id": 450, + "district_id": 6, + "name_en": "Unenwitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80214", + "location": { + "type": "Point", + "coordinates": [ + 80.225, + 6.2417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e51e" + }, + "id": 451, + "district_id": 6, + "name_en": "Uragaha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80352", + "location": { + "type": "Point", + "coordinates": [ + 80.1167, + 6.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e51f" + }, + "id": 452, + "district_id": 6, + "name_en": "Uragasmanhandiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80350", + "location": { + "type": "Point", + "coordinates": [ + 80.082277, + 6.358461 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e520" + }, + "id": 453, + "district_id": 6, + "name_en": "Wakwella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80042", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 6.1 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e521" + }, + "id": 454, + "district_id": 6, + "name_en": "Walahanduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80046", + "location": { + "type": "Point", + "coordinates": [ + 80.251763, + 6.05443 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e522" + }, + "id": 455, + "district_id": 6, + "name_en": "Wanchawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80120", + "location": { + "type": "Point", + "coordinates": [ + 80.3167, + 6.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e523" + }, + "id": 456, + "district_id": 6, + "name_en": "Wanduramba", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80100", + "location": { + "type": "Point", + "coordinates": [ + 80.252794, + 6.136388 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e524" + }, + "id": 457, + "district_id": 6, + "name_en": "Warukandeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80084", + "location": { + "type": "Point", + "coordinates": [ + 80.43131, + 6.381574 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e525" + }, + "id": 458, + "district_id": 6, + "name_en": "Watugedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80340", + "location": { + "type": "Point", + "coordinates": [ + 80.05, + 6.25 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e526" + }, + "id": 459, + "district_id": 6, + "name_en": "Weihena", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80216", + "location": { + "type": "Point", + "coordinates": [ + 80.23392, + 6.310127 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e527" + }, + "id": 460, + "district_id": 6, + "name_en": "Welikanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51070", + "location": { + "type": "Point", + "coordinates": [ + 80.0333, + 6.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e528" + }, + "id": 461, + "district_id": 6, + "name_en": "Wilanagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20142", + "location": { + "type": "Point", + "coordinates": [ + 80, + 6.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e529" + }, + "id": 462, + "district_id": 6, + "name_en": "Yakkalamulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80150", + "location": { + "type": "Point", + "coordinates": [ + 80.349195, + 6.109027 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e52a" + }, + "id": 463, + "district_id": 6, + "name_en": "Yatalamatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80107", + "location": { + "type": "Point", + "coordinates": [ + 80.293052, + 6.172247 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e52b" + }, + "id": 464, + "district_id": 7, + "name_en": "Akaragama", + "name_si": "අකරගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11536", + "location": { + "type": "Point", + "coordinates": [ + 79.958057, + 7.262603 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e52c" + }, + "id": 465, + "district_id": 7, + "name_en": "Ambagaspitiya", + "name_si": "අඹගස්පිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11052", + "location": { + "type": "Point", + "coordinates": [ + 80.0667, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e52d" + }, + "id": 466, + "district_id": 7, + "name_en": "Ambepussa", + "name_si": "අඹේපුස්ස", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11212", + "location": { + "type": "Point", + "coordinates": [ + 80.1667, + 7.25 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e52e" + }, + "id": 467, + "district_id": 7, + "name_en": "Andiambalama", + "name_si": "ආඬිඅම්බලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11558", + "location": { + "type": "Point", + "coordinates": [ + 79.902344, + 7.188346 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e52f" + }, + "id": 468, + "district_id": 7, + "name_en": "Attanagalla", + "name_si": "අත්තනගල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11120", + "location": { + "type": "Point", + "coordinates": [ + 80.1328, + 7.1119 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e530" + }, + "id": 469, + "district_id": 7, + "name_en": "Badalgama", + "name_si": "බඩල්ගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11538", + "location": { + "type": "Point", + "coordinates": [ + 79.978003, + 7.291218 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e531" + }, + "id": 470, + "district_id": 7, + "name_en": "Banduragoda", + "name_si": "බඳුරගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11244", + "location": { + "type": "Point", + "coordinates": [ + 80.0678, + 7.2319 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e532" + }, + "id": 471, + "district_id": 7, + "name_en": "Batuwatta", + "name_si": "බටුවත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11011", + "location": { + "type": "Point", + "coordinates": [ + 79.932048, + 7.058399 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e533" + }, + "id": 472, + "district_id": 7, + "name_en": "Bemmulla", + "name_si": "බෙම්මුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11040", + "location": { + "type": "Point", + "coordinates": [ + 80.028191, + 7.120933 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e534" + }, + "id": 473, + "district_id": 7, + "name_en": "Biyagama IPZ", + "name_si": "බියගම IPZ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11672", + "location": { + "type": "Point", + "coordinates": [ + 80.0153, + 6.9492 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e535" + }, + "id": 474, + "district_id": 7, + "name_en": "Bokalagama", + "name_si": "බොකලගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11216", + "location": { + "type": "Point", + "coordinates": [ + 80.15, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e536" + }, + "id": 475, + "district_id": 7, + "name_en": "Bollete [WP]", + "name_si": "බොල්ලතේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11024", + "location": { + "type": "Point", + "coordinates": [ + 79.95, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e537" + }, + "id": 476, + "district_id": 7, + "name_en": "Bopagama", + "name_si": "බෝපගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11134", + "location": { + "type": "Point", + "coordinates": [ + 80.15868, + 7.079641 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e538" + }, + "id": 477, + "district_id": 7, + "name_en": "Buthpitiya", + "name_si": "බුත්පිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11720", + "location": { + "type": "Point", + "coordinates": [ + 80.051854, + 7.042846 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e539" + }, + "id": 478, + "district_id": 7, + "name_en": "Dagonna", + "name_si": "දාගොන්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11524", + "location": { + "type": "Point", + "coordinates": [ + 79.927455, + 7.221568 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e53a" + }, + "id": 479, + "district_id": 7, + "name_en": "Danowita", + "name_si": "දංඕවිට", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11896", + "location": { + "type": "Point", + "coordinates": [ + 80.1758, + 7.2028 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e53b" + }, + "id": 480, + "district_id": 7, + "name_en": "Debahera", + "name_si": "දෙබහැර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11889", + "location": { + "type": "Point", + "coordinates": [ + 80.0981, + 7.1389 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e53c" + }, + "id": 481, + "district_id": 7, + "name_en": "Dekatana", + "name_si": "දෙකටන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11690", + "location": { + "type": "Point", + "coordinates": [ + 80.035385, + 6.968317 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e53d" + }, + "id": 482, + "district_id": 7, + "name_en": "Delgoda", + "name_si": "දෙල්ගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11700", + "location": { + "type": "Point", + "coordinates": [ + 80.01576, + 6.986583 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e53e" + }, + "id": 483, + "district_id": 7, + "name_en": "Delwagura", + "name_si": "දෙල්වගුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11228", + "location": { + "type": "Point", + "coordinates": [ + 80.003272, + 7.265367 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e53f" + }, + "id": 484, + "district_id": 7, + "name_en": "Demalagama", + "name_si": "දෙමළගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11692", + "location": { + "type": "Point", + "coordinates": [ + 80.046886, + 6.988934 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e540" + }, + "id": 485, + "district_id": 7, + "name_en": "Demanhandiya", + "name_si": "දෙමන්හන්දිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11270", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e541" + }, + "id": 486, + "district_id": 7, + "name_en": "Dewalapola", + "name_si": "දේවාලපොල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11102", + "location": { + "type": "Point", + "coordinates": [ + 79.997446, + 7.162553 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e542" + }, + "id": 487, + "district_id": 7, + "name_en": "Divulapitiya", + "name_si": "දිවුලපිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11250", + "location": { + "type": "Point", + "coordinates": [ + 80.0156, + 7.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e543" + }, + "id": 488, + "district_id": 7, + "name_en": "Divuldeniya", + "name_si": "දිවුල්දෙණිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11208", + "location": { + "type": "Point", + "coordinates": [ + 80.1, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e544" + }, + "id": 489, + "district_id": 7, + "name_en": "Dompe", + "name_si": "දොම්පෙ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11680", + "location": { + "type": "Point", + "coordinates": [ + 80.055083, + 6.949806 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e545" + }, + "id": 490, + "district_id": 7, + "name_en": "Dunagaha", + "name_si": "දුනගහ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11264", + "location": { + "type": "Point", + "coordinates": [ + 79.9756, + 7.2342 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e546" + }, + "id": 491, + "district_id": 7, + "name_en": "Ekala", + "name_si": "ඒකල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11380", + "location": { + "type": "Point", + "coordinates": [ + 79.91532, + 7.105558 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e547" + }, + "id": 492, + "district_id": 7, + "name_en": "Ellakkala", + "name_si": "ඇල්ලක්කල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11116", + "location": { + "type": "Point", + "coordinates": [ + 80.132524, + 7.135968 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e548" + }, + "id": 493, + "district_id": 7, + "name_en": "Essella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11108", + "location": { + "type": "Point", + "coordinates": [ + 80.021603, + 7.178736 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e549" + }, + "id": 494, + "district_id": 7, + "name_en": "Galedanda", + "name_si": "ගලේදණ්ඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90206", + "location": { + "type": "Point", + "coordinates": [ + 79.930611, + 6.964202 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e54a" + }, + "id": 495, + "district_id": 7, + "name_en": "Gampaha", + "name_si": "ගම්පහ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11000", + "location": { + "type": "Point", + "coordinates": [ + 79.9942, + 7.0917 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e54b" + }, + "id": 496, + "district_id": 7, + "name_en": "Ganemulla", + "name_si": "ගණේමුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11020", + "location": { + "type": "Point", + "coordinates": [ + 79.963294, + 7.064183 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e54c" + }, + "id": 497, + "district_id": 7, + "name_en": "Giriulla", + "name_si": "ගිරිවුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60140", + "location": { + "type": "Point", + "coordinates": [ + 80.1267, + 7.3275 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e54d" + }, + "id": 498, + "district_id": 7, + "name_en": "Gonawala", + "name_si": "ගෝනවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11630", + "location": { + "type": "Point", + "coordinates": [ + 79.9992, + 6.9612 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e54e" + }, + "id": 499, + "district_id": 7, + "name_en": "Halpe", + "name_si": "හල්පෙ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70145", + "location": { + "type": "Point", + "coordinates": [ + 80.10821, + 7.261935 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e54f" + }, + "id": 500, + "district_id": 7, + "name_en": "Hapugastenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70164", + "location": { + "type": "Point", + "coordinates": [ + 80.1667, + 7.1 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e550" + }, + "id": 501, + "district_id": 7, + "name_en": "Heiyanthuduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11618", + "location": { + "type": "Point", + "coordinates": [ + 79.963309, + 6.96283 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e551" + }, + "id": 502, + "district_id": 7, + "name_en": "Hinatiyana Madawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11568", + "location": { + "type": "Point", + "coordinates": [ + 79.95, + 7.1667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e552" + }, + "id": 503, + "district_id": 7, + "name_en": "Hiswella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11734", + "location": { + "type": "Point", + "coordinates": [ + 80.160869, + 7.021559 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e553" + }, + "id": 504, + "district_id": 7, + "name_en": "Horampella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11564", + "location": { + "type": "Point", + "coordinates": [ + 79.976771, + 7.185188 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e554" + }, + "id": 505, + "district_id": 7, + "name_en": "Hunumulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11262", + "location": { + "type": "Point", + "coordinates": [ + 79.996921, + 7.244925 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e555" + }, + "id": 506, + "district_id": 7, + "name_en": "Hunupola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60582", + "location": { + "type": "Point", + "coordinates": [ + 80.130625, + 7.111463 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e556" + }, + "id": 507, + "district_id": 7, + "name_en": "Ihala Madampella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11265", + "location": { + "type": "Point", + "coordinates": [ + 79.960941, + 7.250345 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e557" + }, + "id": 508, + "district_id": 7, + "name_en": "Imbulgoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11856", + "location": { + "type": "Point", + "coordinates": [ + 79.9931, + 7.035 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e558" + }, + "id": 509, + "district_id": 7, + "name_en": "Ja-Ela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11350", + "location": { + "type": "Point", + "coordinates": [ + 79.894932, + 7.076147 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e559" + }, + "id": 510, + "district_id": 7, + "name_en": "Kadawatha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11850", + "location": { + "type": "Point", + "coordinates": [ + 79.9882, + 7.0258 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e55a" + }, + "id": 511, + "district_id": 7, + "name_en": "Kahatowita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11144", + "location": { + "type": "Point", + "coordinates": [ + 80.1167, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e55b" + }, + "id": 512, + "district_id": 7, + "name_en": "Kalagedihena", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11875", + "location": { + "type": "Point", + "coordinates": [ + 80.058001, + 7.118004 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e55c" + }, + "id": 513, + "district_id": 7, + "name_en": "Kaleliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11160", + "location": { + "type": "Point", + "coordinates": [ + 80.1136, + 7.195 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e55d" + }, + "id": 514, + "district_id": 7, + "name_en": "Kandana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11320", + "location": { + "type": "Point", + "coordinates": [ + 79.895123, + 7.05056 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e55e" + }, + "id": 515, + "district_id": 7, + "name_en": "Katana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11534", + "location": { + "type": "Point", + "coordinates": [ + 79.9078, + 7.2517 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e55f" + }, + "id": 516, + "district_id": 7, + "name_en": "Katudeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21016", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e560" + }, + "id": 517, + "district_id": 7, + "name_en": "Katunayake", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11450", + "location": { + "type": "Point", + "coordinates": [ + 79.8731, + 7.1647 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e561" + }, + "id": 518, + "district_id": 7, + "name_en": "Katunayake Air Force Camp", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11440", + "location": { + "type": "Point", + "coordinates": [ + 79.8782, + 7.1407 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e562" + }, + "id": 519, + "district_id": 7, + "name_en": "Katunayake[FTZ]", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11420", + "location": { + "type": "Point", + "coordinates": [ + 79.8782, + 7.1407 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e563" + }, + "id": 520, + "district_id": 7, + "name_en": "Katuwellegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11526", + "location": { + "type": "Point", + "coordinates": [ + 79.94572, + 7.208557 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e564" + }, + "id": 521, + "district_id": 7, + "name_en": "Kelaniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11600", + "location": { + "type": "Point", + "coordinates": [ + 79.921431, + 6.956357 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e565" + }, + "id": 522, + "district_id": 7, + "name_en": "Kimbulapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11522", + "location": { + "type": "Point", + "coordinates": [ + 79.908937, + 7.202265 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e566" + }, + "id": 523, + "district_id": 7, + "name_en": "Kirindiwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11730", + "location": { + "type": "Point", + "coordinates": [ + 80.126707, + 7.044223 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e567" + }, + "id": 524, + "district_id": 7, + "name_en": "Kitalawalana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11206", + "location": { + "type": "Point", + "coordinates": [ + 80.1, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e568" + }, + "id": 525, + "district_id": 7, + "name_en": "Kochchikade", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11540", + "location": { + "type": "Point", + "coordinates": [ + 79.8542, + 7.2581 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e569" + }, + "id": 526, + "district_id": 7, + "name_en": "Kotadeniyawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11232", + "location": { + "type": "Point", + "coordinates": [ + 80.05581, + 7.279861 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e56a" + }, + "id": 527, + "district_id": 7, + "name_en": "Kotugoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11390", + "location": { + "type": "Point", + "coordinates": [ + 79.9297, + 7.1217 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e56b" + }, + "id": 528, + "district_id": 7, + "name_en": "Kumbaloluwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11105", + "location": { + "type": "Point", + "coordinates": [ + 80.082233, + 7.179375 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e56c" + }, + "id": 529, + "district_id": 7, + "name_en": "Loluwagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11204", + "location": { + "type": "Point", + "coordinates": [ + 80.126624, + 7.294586 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e56d" + }, + "id": 530, + "district_id": 7, + "name_en": "Mabodale", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11114", + "location": { + "type": "Point", + "coordinates": [ + 80.0167, + 7.2 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e56e" + }, + "id": 531, + "district_id": 7, + "name_en": "Madelgamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11033", + "location": { + "type": "Point", + "coordinates": [ + 79.948175, + 7.110062 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e56f" + }, + "id": 532, + "district_id": 7, + "name_en": "Makewita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11358", + "location": { + "type": "Point", + "coordinates": [ + 79.9333, + 7.1 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e570" + }, + "id": 533, + "district_id": 7, + "name_en": "Makola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11640", + "location": { + "type": "Point", + "coordinates": [ + 79.9525, + 6.983178 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e571" + }, + "id": 534, + "district_id": 7, + "name_en": "Malwana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11670", + "location": { + "type": "Point", + "coordinates": [ + 80.012561, + 6.951988 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e572" + }, + "id": 535, + "district_id": 7, + "name_en": "Mandawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11061", + "location": { + "type": "Point", + "coordinates": [ + 80.097082, + 7.003066 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e573" + }, + "id": 536, + "district_id": 7, + "name_en": "Marandagahamula", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11260", + "location": { + "type": "Point", + "coordinates": [ + 79.9696, + 7.2447 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e574" + }, + "id": 537, + "district_id": 7, + "name_en": "Mellawagedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11234", + "location": { + "type": "Point", + "coordinates": [ + 80.023977, + 7.285808 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e575" + }, + "id": 538, + "district_id": 7, + "name_en": "Minuwangoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11550", + "location": { + "type": "Point", + "coordinates": [ + 79.954904, + 7.176455 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e576" + }, + "id": 539, + "district_id": 7, + "name_en": "Mirigama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11200", + "location": { + "type": "Point", + "coordinates": [ + 80.1325, + 7.2414 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e577" + }, + "id": 540, + "district_id": 7, + "name_en": "Miriswatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80508", + "location": { + "type": "Point", + "coordinates": [ + 80.0183, + 7.0711 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e578" + }, + "id": 541, + "district_id": 7, + "name_en": "Mithirigala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11742", + "location": { + "type": "Point", + "coordinates": [ + 80.0648, + 6.9648 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e579" + }, + "id": 542, + "district_id": 7, + "name_en": "Muddaragama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11112", + "location": { + "type": "Point", + "coordinates": [ + 80.05, + 7.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e57a" + }, + "id": 543, + "district_id": 7, + "name_en": "Mudungoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11056", + "location": { + "type": "Point", + "coordinates": [ + 79.999092, + 7.064698 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e57b" + }, + "id": 544, + "district_id": 7, + "name_en": "Mulleriyawa New Town", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10620", + "location": { + "type": "Point", + "coordinates": [ + 80.0549, + 6.9301 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e57c" + }, + "id": 545, + "district_id": 7, + "name_en": "Naranwala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11063", + "location": { + "type": "Point", + "coordinates": [ + 80.027404, + 7.001631 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e57d" + }, + "id": 546, + "district_id": 7, + "name_en": "Nawana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11222", + "location": { + "type": "Point", + "coordinates": [ + 80.092618, + 7.270062 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e57e" + }, + "id": 547, + "district_id": 7, + "name_en": "Nedungamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11066", + "location": { + "type": "Point", + "coordinates": [ + 80.0333, + 7.05 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e57f" + }, + "id": 548, + "district_id": 7, + "name_en": "Negombo", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11500", + "location": { + "type": "Point", + "coordinates": [ + 79.8358, + 7.2086 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e580" + }, + "id": 549, + "district_id": 7, + "name_en": "Nikadalupotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60580", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e581" + }, + "id": 550, + "district_id": 7, + "name_en": "Nikahetikanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11128", + "location": { + "type": "Point", + "coordinates": [ + 80.179551, + 7.099089 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e582" + }, + "id": 551, + "district_id": 7, + "name_en": "Nittambuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11880", + "location": { + "type": "Point", + "coordinates": [ + 80.096178, + 7.144243 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e583" + }, + "id": 552, + "district_id": 7, + "name_en": "Niwandama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11354", + "location": { + "type": "Point", + "coordinates": [ + 79.928331, + 7.078762 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e584" + }, + "id": 553, + "district_id": 7, + "name_en": "Opatha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80142", + "location": { + "type": "Point", + "coordinates": [ + 79.921419, + 7.132037 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e585" + }, + "id": 554, + "district_id": 7, + "name_en": "Pamunugama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11370", + "location": { + "type": "Point", + "coordinates": [ + 79.844569, + 7.094359 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e586" + }, + "id": 555, + "district_id": 7, + "name_en": "Pamunuwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11214", + "location": { + "type": "Point", + "coordinates": [ + 80.139696, + 7.214678 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e587" + }, + "id": 556, + "district_id": 7, + "name_en": "Panawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70612", + "location": { + "type": "Point", + "coordinates": [ + 80.0333, + 6.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e588" + }, + "id": 557, + "district_id": 7, + "name_en": "Pasyala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11890", + "location": { + "type": "Point", + "coordinates": [ + 80.115911, + 7.172926 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e589" + }, + "id": 558, + "district_id": 7, + "name_en": "Peliyagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11830", + "location": { + "type": "Point", + "coordinates": [ + 79.878852, + 6.960977 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e58a" + }, + "id": 559, + "district_id": 7, + "name_en": "Pepiliyawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11741", + "location": { + "type": "Point", + "coordinates": [ + 80.128886, + 7.002342 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e58b" + }, + "id": 560, + "district_id": 7, + "name_en": "Pethiyagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11043", + "location": { + "type": "Point", + "coordinates": [ + 80.0167, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e58c" + }, + "id": 561, + "district_id": 7, + "name_en": "Polpithimukulana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11324", + "location": { + "type": "Point", + "coordinates": [ + 79.8782, + 7.0444 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e58d" + }, + "id": 562, + "district_id": 7, + "name_en": "Puwakpitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10712", + "location": { + "type": "Point", + "coordinates": [ + 80.064451, + 7.040498 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e58e" + }, + "id": 563, + "district_id": 7, + "name_en": "Radawadunna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11892", + "location": { + "type": "Point", + "coordinates": [ + 80.141344, + 7.177279 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e58f" + }, + "id": 564, + "district_id": 7, + "name_en": "Radawana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11725", + "location": { + "type": "Point", + "coordinates": [ + 80.100915, + 7.029871 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e590" + }, + "id": 565, + "district_id": 7, + "name_en": "Raddolugama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11400", + "location": { + "type": "Point", + "coordinates": [ + 79.898198, + 7.140656 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e591" + }, + "id": 566, + "district_id": 7, + "name_en": "Ragama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11010", + "location": { + "type": "Point", + "coordinates": [ + 79.917386, + 7.025281 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e592" + }, + "id": 567, + "district_id": 7, + "name_en": "Ruggahawila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11142", + "location": { + "type": "Point", + "coordinates": [ + 80.1167, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e593" + }, + "id": 568, + "district_id": 7, + "name_en": "Seeduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11410", + "location": { + "type": "Point", + "coordinates": [ + 79.885024, + 7.132059 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e594" + }, + "id": 569, + "district_id": 7, + "name_en": "Siyambalape", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11607", + "location": { + "type": "Point", + "coordinates": [ + 79.986406, + 6.964545 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e595" + }, + "id": 570, + "district_id": 7, + "name_en": "Talahena", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11504", + "location": { + "type": "Point", + "coordinates": [ + 79.8167, + 7.1667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e596" + }, + "id": 571, + "district_id": 7, + "name_en": "Thambagalla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60584", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e597" + }, + "id": 572, + "district_id": 7, + "name_en": "Thimbirigaskatuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11532", + "location": { + "type": "Point", + "coordinates": [ + 79.9495, + 7.2669 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e598" + }, + "id": 573, + "district_id": 7, + "name_en": "Tittapattara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10664", + "location": { + "type": "Point", + "coordinates": [ + 80.0889, + 6.9297 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e599" + }, + "id": 574, + "district_id": 7, + "name_en": "Udathuthiripitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11054", + "location": { + "type": "Point", + "coordinates": [ + 80.0333, + 7.075 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e59a" + }, + "id": 575, + "district_id": 7, + "name_en": "Udugampola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11030", + "location": { + "type": "Point", + "coordinates": [ + 79.9833, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e59b" + }, + "id": 576, + "district_id": 7, + "name_en": "Uggalboda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11034", + "location": { + "type": "Point", + "coordinates": [ + 79.948259, + 7.135549 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e59c" + }, + "id": 577, + "district_id": 7, + "name_en": "Urapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11126", + "location": { + "type": "Point", + "coordinates": [ + 80.136935, + 7.104792 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e59d" + }, + "id": 578, + "district_id": 7, + "name_en": "Uswetakeiyawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11328", + "location": { + "type": "Point", + "coordinates": [ + 79.860339, + 7.031046 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e59e" + }, + "id": 579, + "district_id": 7, + "name_en": "Veyangoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11100", + "location": { + "type": "Point", + "coordinates": [ + 80.095842, + 7.156981 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e59f" + }, + "id": 580, + "district_id": 7, + "name_en": "Walgammulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11146", + "location": { + "type": "Point", + "coordinates": [ + 80.116511, + 7.071902 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a0" + }, + "id": 581, + "district_id": 7, + "name_en": "Walpita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11226", + "location": { + "type": "Point", + "coordinates": [ + 80.034704, + 7.258131 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a1" + }, + "id": 582, + "district_id": 7, + "name_en": "Walpola [WP]", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11012", + "location": { + "type": "Point", + "coordinates": [ + 79.9257, + 7.0418 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a2" + }, + "id": 583, + "district_id": 7, + "name_en": "Wathurugama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11724", + "location": { + "type": "Point", + "coordinates": [ + 80.0701, + 7.0421 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a3" + }, + "id": 584, + "district_id": 7, + "name_en": "Watinapaha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11104", + "location": { + "type": "Point", + "coordinates": [ + 79.9833, + 7.2 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a4" + }, + "id": 585, + "district_id": 7, + "name_en": "Wattala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11104", + "location": { + "type": "Point", + "coordinates": [ + 79.892207, + 6.990037 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a5" + }, + "id": 586, + "district_id": 7, + "name_en": "Weboda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11858", + "location": { + "type": "Point", + "coordinates": [ + 79.9833, + 7.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a6" + }, + "id": 587, + "district_id": 7, + "name_en": "Wegowwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11562", + "location": { + "type": "Point", + "coordinates": [ + 79.962063, + 7.178443 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a7" + }, + "id": 588, + "district_id": 7, + "name_en": "Weweldeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11894", + "location": { + "type": "Point", + "coordinates": [ + 80.1446, + 7.1834 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a8" + }, + "id": 589, + "district_id": 7, + "name_en": "Yakkala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11870", + "location": { + "type": "Point", + "coordinates": [ + 80.05, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5a9" + }, + "id": 590, + "district_id": 7, + "name_en": "Yatiyana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11566", + "location": { + "type": "Point", + "coordinates": [ + 79.931858, + 7.184998 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5aa" + }, + "id": 591, + "district_id": 8, + "name_en": "Ambalantota", + "name_si": "අම්බලන්තොට", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82100", + "location": { + "type": "Point", + "coordinates": [ + 81.025983, + 6.114494 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5ab" + }, + "id": 592, + "district_id": 8, + "name_en": "Angunakolapelessa", + "name_si": "අඟුණකොළපැලැස්ස", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82220", + "location": { + "type": "Point", + "coordinates": [ + 80.899471, + 6.162261 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5ac" + }, + "id": 593, + "district_id": 8, + "name_en": "Angunakolawewa", + "name_si": "අඟුණකොලවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91302", + "location": { + "type": "Point", + "coordinates": [ + 81.093226, + 6.389127 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5ad" + }, + "id": 594, + "district_id": 8, + "name_en": "Bandagiriya Colony", + "name_si": "බන්ඩගිරිය කොලොනි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82005", + "location": { + "type": "Point", + "coordinates": [ + 81.1389, + 6.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5ae" + }, + "id": 595, + "district_id": 8, + "name_en": "Barawakumbuka", + "name_si": "බරවකුඹුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82110", + "location": { + "type": "Point", + "coordinates": [ + 80.8167, + 6.1667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5af" + }, + "id": 596, + "district_id": 8, + "name_en": "Beliatta", + "name_si": "බෙලිඅත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82400", + "location": { + "type": "Point", + "coordinates": [ + 80.734343, + 6.048637 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b0" + }, + "id": 597, + "district_id": 8, + "name_en": "Beragama", + "name_si": "බෙරගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82102", + "location": { + "type": "Point", + "coordinates": [ + 81.0667, + 6.15 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b1" + }, + "id": 598, + "district_id": 8, + "name_en": "Beralihela", + "name_si": "බෙරලිහෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82618", + "location": { + "type": "Point", + "coordinates": [ + 81.2944, + 6.2556 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b2" + }, + "id": 599, + "district_id": 8, + "name_en": "Bundala", + "name_si": "බූන්දල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82002", + "location": { + "type": "Point", + "coordinates": [ + 81.250493, + 6.195164 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b3" + }, + "id": 600, + "district_id": 8, + "name_en": "Ellagala", + "name_si": "ඇල්ලගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82619", + "location": { + "type": "Point", + "coordinates": [ + 81.359512, + 6.26867 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b4" + }, + "id": 601, + "district_id": 8, + "name_en": "Gangulandeniya", + "name_si": "ගඟුලදෙණිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82586", + "location": { + "type": "Point", + "coordinates": [ + 80.7167, + 6.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b5" + }, + "id": 602, + "district_id": 8, + "name_en": "Getamanna", + "name_si": "ගැටමාන්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82420", + "location": { + "type": "Point", + "coordinates": [ + 80.669146, + 6.036244 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b6" + }, + "id": 603, + "district_id": 8, + "name_en": "Goda Koggalla", + "name_si": "ගොඩ කොග්ගල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82401", + "location": { + "type": "Point", + "coordinates": [ + 80.75, + 6.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b7" + }, + "id": 604, + "district_id": 8, + "name_en": "Gonagamuwa Uduwila", + "name_si": "ගොනාගමුව උඩුවිල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82602", + "location": { + "type": "Point", + "coordinates": [ + 81.2917, + 6.25 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b8" + }, + "id": 605, + "district_id": 8, + "name_en": "Gonnoruwa", + "name_si": "ගොන්නොරුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82006", + "location": { + "type": "Point", + "coordinates": [ + 81.112465, + 6.230443 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5b9" + }, + "id": 606, + "district_id": 8, + "name_en": "Hakuruwela", + "name_si": "හකුරුවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82248", + "location": { + "type": "Point", + "coordinates": [ + 80.83047, + 6.146456 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5ba" + }, + "id": 607, + "district_id": 8, + "name_en": "Hambantota", + "name_si": "හම්බන්තොට", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82000", + "location": { + "type": "Point", + "coordinates": [ + 81.111287, + 6.127563 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5bb" + }, + "id": 608, + "district_id": 8, + "name_en": "Handugala", + "name_si": "හඳගුල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81326", + "location": { + "type": "Point", + "coordinates": [ + 80.62414, + 6.188877 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5bc" + }, + "id": 609, + "district_id": 8, + "name_en": "Hungama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82120", + "location": { + "type": "Point", + "coordinates": [ + 80.927144, + 6.108006 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5bd" + }, + "id": 610, + "district_id": 8, + "name_en": "Ihala Beligalla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82412", + "location": { + "type": "Point", + "coordinates": [ + 80.747311, + 6.092378 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5be" + }, + "id": 611, + "district_id": 8, + "name_en": "Ittademaliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82462", + "location": { + "type": "Point", + "coordinates": [ + 80.735179, + 6.167432 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5bf" + }, + "id": 612, + "district_id": 8, + "name_en": "Julampitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82252", + "location": { + "type": "Point", + "coordinates": [ + 80.7403, + 6.2261 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c0" + }, + "id": 613, + "district_id": 8, + "name_en": "Kahandamodara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82126", + "location": { + "type": "Point", + "coordinates": [ + 80.902917, + 6.078654 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c1" + }, + "id": 614, + "district_id": 8, + "name_en": "Kariyamaditta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82274", + "location": { + "type": "Point", + "coordinates": [ + 80.809448, + 6.257359 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c2" + }, + "id": 615, + "district_id": 8, + "name_en": "Katuwana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82500", + "location": { + "type": "Point", + "coordinates": [ + 80.6972, + 6.2667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c3" + }, + "id": 616, + "district_id": 8, + "name_en": "Kawantissapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82622", + "location": { + "type": "Point", + "coordinates": [ + 81.2524, + 6.2786 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c4" + }, + "id": 617, + "district_id": 8, + "name_en": "Kirama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82550", + "location": { + "type": "Point", + "coordinates": [ + 80.6653, + 6.2117 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c5" + }, + "id": 618, + "district_id": 8, + "name_en": "Kirinda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82614", + "location": { + "type": "Point", + "coordinates": [ + 81.290653, + 6.268985 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c6" + }, + "id": 619, + "district_id": 8, + "name_en": "Lunama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82108", + "location": { + "type": "Point", + "coordinates": [ + 80.971511, + 6.098517 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c7" + }, + "id": 620, + "district_id": 8, + "name_en": "Lunugamwehera", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82634", + "location": { + "type": "Point", + "coordinates": [ + 81.15, + 6.3417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c8" + }, + "id": 621, + "district_id": 8, + "name_en": "Magama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82608", + "location": { + "type": "Point", + "coordinates": [ + 81.270354, + 6.280108 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5c9" + }, + "id": 622, + "district_id": 8, + "name_en": "Mahagalwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82016", + "location": { + "type": "Point", + "coordinates": [ + 81.1389, + 6.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5ca" + }, + "id": 623, + "district_id": 8, + "name_en": "Mamadala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82109", + "location": { + "type": "Point", + "coordinates": [ + 80.96681, + 6.158126 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5cb" + }, + "id": 624, + "district_id": 8, + "name_en": "Medamulana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82254", + "location": { + "type": "Point", + "coordinates": [ + 80.770016, + 6.175878 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5cc" + }, + "id": 625, + "district_id": 8, + "name_en": "Middeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82270", + "location": { + "type": "Point", + "coordinates": [ + 80.7672, + 6.2494 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5cd" + }, + "id": 626, + "district_id": 8, + "name_en": "Migahajandur", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82014", + "location": { + "type": "Point", + "coordinates": [ + 81.1389, + 6.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5ce" + }, + "id": 627, + "district_id": 8, + "name_en": "Modarawana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82416", + "location": { + "type": "Point", + "coordinates": [ + 80.720781, + 6.117576 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5cf" + }, + "id": 628, + "district_id": 8, + "name_en": "Mulkirigala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82242", + "location": { + "type": "Point", + "coordinates": [ + 80.7397, + 6.12 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d0" + }, + "id": 629, + "district_id": 8, + "name_en": "Nakulugamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82300", + "location": { + "type": "Point", + "coordinates": [ + 80.9063, + 6.1842 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d1" + }, + "id": 630, + "district_id": 8, + "name_en": "Netolpitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82135", + "location": { + "type": "Point", + "coordinates": [ + 80.850703, + 6.066848 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d2" + }, + "id": 631, + "district_id": 8, + "name_en": "Nihiluwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82414", + "location": { + "type": "Point", + "coordinates": [ + 80.696499, + 6.077147 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d3" + }, + "id": 632, + "district_id": 8, + "name_en": "Padawkema", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82636", + "location": { + "type": "Point", + "coordinates": [ + 81.1667, + 6.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d4" + }, + "id": 633, + "district_id": 8, + "name_en": "Pahala Andarawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82008", + "location": { + "type": "Point", + "coordinates": [ + 81.1389, + 6.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d5" + }, + "id": 634, + "district_id": 8, + "name_en": "Rammalawarapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82554", + "location": { + "type": "Point", + "coordinates": [ + 80.6653, + 6.2117 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d6" + }, + "id": 635, + "district_id": 8, + "name_en": "Ranakeliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82612", + "location": { + "type": "Point", + "coordinates": [ + 81.3, + 6.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d7" + }, + "id": 636, + "district_id": 8, + "name_en": "Ranmuduwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82018", + "location": { + "type": "Point", + "coordinates": [ + 81.1389, + 6.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d8" + }, + "id": 637, + "district_id": 8, + "name_en": "Ranna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82125", + "location": { + "type": "Point", + "coordinates": [ + 80.890168, + 6.103377 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5d9" + }, + "id": 638, + "district_id": 8, + "name_en": "Ratmalwala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82276", + "location": { + "type": "Point", + "coordinates": [ + 80.85, + 6.2667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b40f822dfcfb3ac4e5da" + }, + "id": 639, + "district_id": 8, + "name_en": "RU/Ridiyagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82106", + "location": { + "type": "Point", + "coordinates": [ + 81.0042, + 6.1375 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e49b" + }, + "id": 958, + "district_id": 12, + "name_en": "Imbulgasdeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71055", + "location": { + "type": "Point", + "coordinates": [ + 80.3186, + 7.2853 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e49c" + }, + "id": 959, + "district_id": 12, + "name_en": "Kabagamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71202", + "location": { + "type": "Point", + "coordinates": [ + 80.341558, + 7.136698 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e49d" + }, + "id": 960, + "district_id": 12, + "name_en": "Kahapathwala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60062", + "location": { + "type": "Point", + "coordinates": [ + 80.4583, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e49e" + }, + "id": 961, + "district_id": 12, + "name_en": "Kandaketya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90020", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e49f" + }, + "id": 962, + "district_id": 12, + "name_en": "Kannattota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71372", + "location": { + "type": "Point", + "coordinates": [ + 80.275311, + 7.081348 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a0" + }, + "id": 963, + "district_id": 12, + "name_en": "Karagahinna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21014", + "location": { + "type": "Point", + "coordinates": [ + 80.3832, + 7.3604 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a1" + }, + "id": 964, + "district_id": 12, + "name_en": "Kegalle", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71000", + "location": { + "type": "Point", + "coordinates": [ + 80.351662, + 7.249349 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a2" + }, + "id": 965, + "district_id": 12, + "name_en": "Kehelpannala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71533", + "location": { + "type": "Point", + "coordinates": [ + 80.519539, + 7.161131 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a3" + }, + "id": 966, + "district_id": 12, + "name_en": "Ketawala Leula", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20198", + "location": { + "type": "Point", + "coordinates": [ + 80.35, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a4" + }, + "id": 967, + "district_id": 12, + "name_en": "Kitulgala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71720", + "location": { + "type": "Point", + "coordinates": [ + 80.4114, + 6.9944 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a5" + }, + "id": 968, + "district_id": 12, + "name_en": "Kondeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71501", + "location": { + "type": "Point", + "coordinates": [ + 80.4333, + 7.2667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a6" + }, + "id": 969, + "district_id": 12, + "name_en": "Kotiyakumbura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71370", + "location": { + "type": "Point", + "coordinates": [ + 80.2667, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a7" + }, + "id": 970, + "district_id": 12, + "name_en": "Lewangama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71315", + "location": { + "type": "Point", + "coordinates": [ + 80.239, + 7.112902 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a8" + }, + "id": 971, + "district_id": 12, + "name_en": "Mahabage", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71722", + "location": { + "type": "Point", + "coordinates": [ + 80.450227, + 7.019803 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4a9" + }, + "id": 972, + "district_id": 12, + "name_en": "Makehelwala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71507", + "location": { + "type": "Point", + "coordinates": [ + 80.47528, + 7.282441 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4aa" + }, + "id": 973, + "district_id": 12, + "name_en": "Malalpola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71704", + "location": { + "type": "Point", + "coordinates": [ + 80.351009, + 7.053091 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ab" + }, + "id": 974, + "district_id": 12, + "name_en": "Maldeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22021", + "location": { + "type": "Point", + "coordinates": [ + 80.2747, + 6.9306 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ac" + }, + "id": 975, + "district_id": 12, + "name_en": "Maliboda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71411", + "location": { + "type": "Point", + "coordinates": [ + 80.464212, + 6.887528 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ad" + }, + "id": 976, + "district_id": 12, + "name_en": "Maliyadda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90022", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ae" + }, + "id": 977, + "district_id": 12, + "name_en": "Malmaduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71325", + "location": { + "type": "Point", + "coordinates": [ + 80.2833, + 7.15 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4af" + }, + "id": 978, + "district_id": 12, + "name_en": "Marapana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70041", + "location": { + "type": "Point", + "coordinates": [ + 80.35, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b0" + }, + "id": 979, + "district_id": 12, + "name_en": "Mawanella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71500", + "location": { + "type": "Point", + "coordinates": [ + 80.439045, + 7.244446 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b1" + }, + "id": 980, + "district_id": 12, + "name_en": "Meetanwala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60066", + "location": { + "type": "Point", + "coordinates": [ + 80.4583, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b2" + }, + "id": 981, + "district_id": 12, + "name_en": "Migastenna Sabara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71716", + "location": { + "type": "Point", + "coordinates": [ + 80.3333, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b3" + }, + "id": 982, + "district_id": 12, + "name_en": "Miyanawita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71432", + "location": { + "type": "Point", + "coordinates": [ + 80.351075, + 6.900423 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b4" + }, + "id": 983, + "district_id": 12, + "name_en": "Molagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71016", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 7.25 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b5" + }, + "id": 984, + "district_id": 12, + "name_en": "Morontota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71220", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 7.1667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b6" + }, + "id": 985, + "district_id": 12, + "name_en": "Narangala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90064", + "location": { + "type": "Point", + "coordinates": [ + 80.360764, + 7.07922 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b7" + }, + "id": 986, + "district_id": 12, + "name_en": "Narangoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60152", + "location": { + "type": "Point", + "coordinates": [ + 80.294552, + 7.198165 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b8" + }, + "id": 987, + "district_id": 12, + "name_en": "Nattarampotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20194", + "location": { + "type": "Point", + "coordinates": [ + 80.35, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4b9" + }, + "id": 988, + "district_id": 12, + "name_en": "Nelundeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71060", + "location": { + "type": "Point", + "coordinates": [ + 80.2669, + 7.2319 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ba" + }, + "id": 989, + "district_id": 12, + "name_en": "Niyadurupola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71602", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 7.1667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4bb" + }, + "id": 990, + "district_id": 12, + "name_en": "Noori", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71407", + "location": { + "type": "Point", + "coordinates": [ + 80.3174, + 6.9508 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4bc" + }, + "id": 991, + "district_id": 12, + "name_en": "Pannila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "12114", + "location": { + "type": "Point", + "coordinates": [ + 80.320996, + 6.866357 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4bd" + }, + "id": 992, + "district_id": 12, + "name_en": "Pattampitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71130", + "location": { + "type": "Point", + "coordinates": [ + 80.434412, + 7.315516 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4be" + }, + "id": 993, + "district_id": 12, + "name_en": "Pilawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20196", + "location": { + "type": "Point", + "coordinates": [ + 80.35, + 7.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4bf" + }, + "id": 994, + "district_id": 12, + "name_en": "Pothukoladeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71039", + "location": { + "type": "Point", + "coordinates": [ + 80.3583, + 7.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c0" + }, + "id": 995, + "district_id": 12, + "name_en": "Puswelitenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60072", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c1" + }, + "id": 996, + "district_id": 12, + "name_en": "Rambukkana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71100", + "location": { + "type": "Point", + "coordinates": [ + 80.391856, + 7.323016 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c2" + }, + "id": 997, + "district_id": 12, + "name_en": "Rilpola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90026", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c3" + }, + "id": 998, + "district_id": 12, + "name_en": "Rukmale", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11129", + "location": { + "type": "Point", + "coordinates": [ + 80.4833, + 7.2 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c4" + }, + "id": 999, + "district_id": 12, + "name_en": "Ruwanwella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71300", + "location": { + "type": "Point", + "coordinates": [ + 80.2561, + 7.048852 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c5" + }, + "id": 1000, + "district_id": 12, + "name_en": "Samanalawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70142", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 7.2667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c6" + }, + "id": 1001, + "district_id": 12, + "name_en": "Seaforth Colony", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71708", + "location": { + "type": "Point", + "coordinates": [ + 80.3502, + 7.0469 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c7" + }, + "id": 1002, + "district_id": 5, + "name_en": "Colombo 2", + "name_si": "කොළඹ 2", + "name_ta": "கொழும்பு 2", + "sub_name_en": "Slave Island", + "sub_name_si": "කොම්පඤ්ඤ වීදිය", + "sub_name_ta": "கொம்பனித்தெரு", + "postcode": "200", + "location": { + "type": "Point", + "coordinates": [ + 79.848611, + 6.926944 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c8" + }, + "id": 1003, + "district_id": 12, + "name_en": "Spring Valley", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90028", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4c9" + }, + "id": 1004, + "district_id": 12, + "name_en": "Talgaspitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71541", + "location": { + "type": "Point", + "coordinates": [ + 80.4833, + 7.1667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ca" + }, + "id": 1005, + "district_id": 12, + "name_en": "Teligama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71724", + "location": { + "type": "Point", + "coordinates": [ + 80.3647, + 7.0033 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4cb" + }, + "id": 1006, + "district_id": 12, + "name_en": "Tholangamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71619", + "location": { + "type": "Point", + "coordinates": [ + 80.225956, + 7.233983 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4cc" + }, + "id": 1007, + "district_id": 12, + "name_en": "Thotawella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71106", + "location": { + "type": "Point", + "coordinates": [ + 80.3969, + 7.3555 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4cd" + }, + "id": 1008, + "district_id": 12, + "name_en": "Udaha Hawupe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70154", + "location": { + "type": "Point", + "coordinates": [ + 80.2833, + 7.05 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ce" + }, + "id": 1009, + "district_id": 12, + "name_en": "Udapotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71236", + "location": { + "type": "Point", + "coordinates": [ + 80.377416, + 7.09414 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4cf" + }, + "id": 1010, + "district_id": 12, + "name_en": "Uduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20052", + "location": { + "type": "Point", + "coordinates": [ + 80.387557, + 7.110957 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d0" + }, + "id": 1011, + "district_id": 12, + "name_en": "Undugoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71200", + "location": { + "type": "Point", + "coordinates": [ + 80.365332, + 7.141866 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d1" + }, + "id": 1012, + "district_id": 12, + "name_en": "Ussapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71510", + "location": { + "type": "Point", + "coordinates": [ + 80.444573, + 7.216957 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d2" + }, + "id": 1013, + "district_id": 12, + "name_en": "Wahakula", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71303", + "location": { + "type": "Point", + "coordinates": [ + 80.207402, + 7.058236 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d3" + }, + "id": 1014, + "district_id": 12, + "name_en": "Waharaka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71304", + "location": { + "type": "Point", + "coordinates": [ + 80.198619, + 7.088513 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d4" + }, + "id": 1015, + "district_id": 12, + "name_en": "Wanaluwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11068", + "location": { + "type": "Point", + "coordinates": [ + 80.175, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d5" + }, + "id": 1016, + "district_id": 12, + "name_en": "Warakapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71600", + "location": { + "type": "Point", + "coordinates": [ + 80.196768, + 7.230053 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d6" + }, + "id": 1017, + "district_id": 12, + "name_en": "Watura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71035", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 7.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d7" + }, + "id": 1018, + "district_id": 12, + "name_en": "Weeoya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71702", + "location": { + "type": "Point", + "coordinates": [ + 80.3502, + 7.0469 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d8" + }, + "id": 1019, + "district_id": 12, + "name_en": "Wegalla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71234", + "location": { + "type": "Point", + "coordinates": [ + 80.30654, + 7.099631 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4d9" + }, + "id": 1020, + "district_id": 12, + "name_en": "Weligalla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20610", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4da" + }, + "id": 1021, + "district_id": 12, + "name_en": "Welihelatenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71712", + "location": { + "type": "Point", + "coordinates": [ + 80.3333, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4db" + }, + "id": 1022, + "district_id": 12, + "name_en": "Wewelwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70066", + "location": { + "type": "Point", + "coordinates": [ + 80.35, + 6.85 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4dc" + }, + "id": 1023, + "district_id": 12, + "name_en": "Yatagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71116", + "location": { + "type": "Point", + "coordinates": [ + 80.356415, + 7.32512 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4dd" + }, + "id": 1024, + "district_id": 12, + "name_en": "Yatapana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71326", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 7.1333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4de" + }, + "id": 1025, + "district_id": 12, + "name_en": "Yatiyantota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71700", + "location": { + "type": "Point", + "coordinates": [ + 80.3006, + 7.0242 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4df" + }, + "id": 1026, + "district_id": 12, + "name_en": "Yattogoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71029", + "location": { + "type": "Point", + "coordinates": [ + 80.2667, + 7.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e0" + }, + "id": 1027, + "district_id": 13, + "name_en": "Kandavalai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "", + "location": { + "type": "Point", + "coordinates": [ + 80.5008173, + 9.4515585 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e1" + }, + "id": 1028, + "district_id": 13, + "name_en": "Karachchi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "", + "location": { + "type": "Point", + "coordinates": [ + 80.3766044, + 9.3769363 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e2" + }, + "id": 1029, + "district_id": 13, + "name_en": "Kilinochchi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "", + "location": { + "type": "Point", + "coordinates": [ + 80.416667, + 9.416667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e3" + }, + "id": 1030, + "district_id": 13, + "name_en": "Pachchilaipalli", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "", + "location": { + "type": "Point", + "coordinates": [ + 80.3273106, + 9.6115808 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e4" + }, + "id": 1031, + "district_id": 13, + "name_en": "Poonakary", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "", + "location": { + "type": "Point", + "coordinates": [ + 80.2111173, + 9.5035013 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e5" + }, + "id": 1032, + "district_id": 14, + "name_en": "Akurana", + "name_si": "අකුරණ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20850", + "location": { + "type": "Point", + "coordinates": [ + 80.023362, + 7.637034 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e6" + }, + "id": 1033, + "district_id": 14, + "name_en": "Alahengama", + "name_si": "අලහෙන්ගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60416", + "location": { + "type": "Point", + "coordinates": [ + 80.1151, + 7.6779 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e7" + }, + "id": 1034, + "district_id": 14, + "name_en": "Alahitiyawa", + "name_si": "අලහිටියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60182", + "location": { + "type": "Point", + "coordinates": [ + 80.171211, + 7.473913 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e8" + }, + "id": 1035, + "district_id": 14, + "name_en": "Ambakote", + "name_si": "අඹකොටේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60036", + "location": { + "type": "Point", + "coordinates": [ + 80.452844, + 7.492063 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4e9" + }, + "id": 1036, + "district_id": 14, + "name_en": "Ambanpola", + "name_si": "අඹන්පොල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60650", + "location": { + "type": "Point", + "coordinates": [ + 80.237512, + 7.915973 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ea" + }, + "id": 1037, + "district_id": 14, + "name_en": "Andiyagala", + "name_si": "ආඬියාගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50112", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.4667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4eb" + }, + "id": 1038, + "district_id": 14, + "name_en": "Anukkane", + "name_si": "අනුක්කනේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60214", + "location": { + "type": "Point", + "coordinates": [ + 80.120028, + 7.501814 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ec" + }, + "id": 1039, + "district_id": 14, + "name_en": "Aragoda", + "name_si": "අරංගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60308", + "location": { + "type": "Point", + "coordinates": [ + 80.344207, + 7.366116 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ed" + }, + "id": 1040, + "district_id": 14, + "name_en": "Ataragalla", + "name_si": "අටරගල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60706", + "location": { + "type": "Point", + "coordinates": [ + 80.2768, + 7.9696 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ee" + }, + "id": 1041, + "district_id": 14, + "name_en": "Awulegama", + "name_si": "අවුලේගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60462", + "location": { + "type": "Point", + "coordinates": [ + 80.2203, + 7.6569 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ef" + }, + "id": 1042, + "district_id": 14, + "name_en": "Balalla", + "name_si": "බලල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60604", + "location": { + "type": "Point", + "coordinates": [ + 80.250762, + 7.791025 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f0" + }, + "id": 1043, + "district_id": 14, + "name_en": "Bamunukotuwa", + "name_si": "බමුණකොටුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60347", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 7.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f1" + }, + "id": 1044, + "district_id": 14, + "name_en": "Bandara Koswatta", + "name_si": "බන්ඩාර කොස්වත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60424", + "location": { + "type": "Point", + "coordinates": [ + 80.17257, + 7.603296 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f2" + }, + "id": 1045, + "district_id": 14, + "name_en": "Bingiriya", + "name_si": "බින්ගිරිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60450", + "location": { + "type": "Point", + "coordinates": [ + 79.921996, + 7.605177 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f3" + }, + "id": 1046, + "district_id": 14, + "name_en": "Bogamulla", + "name_si": "බෝගමුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60107", + "location": { + "type": "Point", + "coordinates": [ + 80.2107, + 7.4589 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f4" + }, + "id": 1047, + "district_id": 14, + "name_en": "Boraluwewa", + "name_si": "බොරළුවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60437", + "location": { + "type": "Point", + "coordinates": [ + 80.034757, + 7.682578 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f5" + }, + "id": 1048, + "district_id": 14, + "name_en": "Boyagane", + "name_si": "බෝයගානෙ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60027", + "location": { + "type": "Point", + "coordinates": [ + 80.341672, + 7.452272 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f6" + }, + "id": 1049, + "district_id": 14, + "name_en": "Bujjomuwa", + "name_si": "බුජ්ජෝමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60291", + "location": { + "type": "Point", + "coordinates": [ + 80.0603, + 7.4581 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f7" + }, + "id": 1050, + "district_id": 14, + "name_en": "Buluwala", + "name_si": "බුලුවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60076", + "location": { + "type": "Point", + "coordinates": [ + 80.473535, + 7.484201 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f8" + }, + "id": 1051, + "district_id": 14, + "name_en": "Dadayamtalawa", + "name_si": "දඩයම්තලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32046", + "location": { + "type": "Point", + "coordinates": [ + 79.9667, + 7.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4f9" + }, + "id": 1052, + "district_id": 14, + "name_en": "Dambadeniya", + "name_si": "දඹදෙණිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60130", + "location": { + "type": "Point", + "coordinates": [ + 80.146193, + 7.370527 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4fa" + }, + "id": 1053, + "district_id": 14, + "name_en": "Daraluwa", + "name_si": "දරලුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60174", + "location": { + "type": "Point", + "coordinates": [ + 79.978233, + 7.359407 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4fb" + }, + "id": 1054, + "district_id": 14, + "name_en": "Deegalla", + "name_si": "දීගල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60228", + "location": { + "type": "Point", + "coordinates": [ + 80.029797, + 7.510205 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4fc" + }, + "id": 1055, + "district_id": 14, + "name_en": "Demataluwa", + "name_si": "දෙමටලුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60024", + "location": { + "type": "Point", + "coordinates": [ + 80.258741, + 7.513976 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4fd" + }, + "id": 1056, + "district_id": 14, + "name_en": "Demuwatha", + "name_si": "දෙමුවත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70332", + "location": { + "type": "Point", + "coordinates": [ + 80.1667, + 7.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4fe" + }, + "id": 1057, + "district_id": 14, + "name_en": "Diddeniya", + "name_si": "දෙණියාය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60544", + "location": { + "type": "Point", + "coordinates": [ + 80.47286, + 7.685279 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e4ff" + }, + "id": 1058, + "district_id": 14, + "name_en": "Digannewa", + "name_si": "දිගන්නෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60485", + "location": { + "type": "Point", + "coordinates": [ + 80.101328, + 7.897218 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e500" + }, + "id": 1059, + "district_id": 14, + "name_en": "Divullegoda", + "name_si": "දිවුලේගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60472", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e501" + }, + "id": 1060, + "district_id": 14, + "name_en": "Diyasenpura", + "name_si": "දියසෙන්පුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51504", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.8167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e502" + }, + "id": 1061, + "district_id": 14, + "name_en": "Dodangaslanda", + "name_si": "දොඩන්ගස්ලන්ද", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60530", + "location": { + "type": "Point", + "coordinates": [ + 80.5333, + 7.5667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e503" + }, + "id": 1062, + "district_id": 14, + "name_en": "Doluwa", + "name_si": "දොළුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20532", + "location": { + "type": "Point", + "coordinates": [ + 80.418833, + 7.621516 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e504" + }, + "id": 1063, + "district_id": 14, + "name_en": "Doragamuwa", + "name_si": "දොරගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20816", + "location": { + "type": "Point", + "coordinates": [ + 79.9333, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e505" + }, + "id": 1064, + "district_id": 14, + "name_en": "Doratiyawa", + "name_si": "දොරටියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60013", + "location": { + "type": "Point", + "coordinates": [ + 80.380562, + 7.450628 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e506" + }, + "id": 1065, + "district_id": 14, + "name_en": "Dunumadalawa", + "name_si": "දුනුමඩවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50214", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 7.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e507" + }, + "id": 1066, + "district_id": 14, + "name_en": "Dunuwilapitiya", + "name_si": "දුනුවිලපිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21538", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e508" + }, + "id": 1067, + "district_id": 14, + "name_en": "Ehetuwewa", + "name_si": "ඇහැටුවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60716", + "location": { + "type": "Point", + "coordinates": [ + 80.332035, + 7.927568 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e509" + }, + "id": 1068, + "district_id": 14, + "name_en": "Elibichchiya", + "name_si": "ඇලිබිච්චිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60156", + "location": { + "type": "Point", + "coordinates": [ + 80.056935, + 7.313179 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e50a" + }, + "id": 1069, + "district_id": 14, + "name_en": "Embogama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60718", + "location": { + "type": "Point", + "coordinates": [ + 80.3608, + 7.9214 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e50b" + }, + "id": 1070, + "district_id": 14, + "name_en": "Etungahakotuwa", + "name_si": "ඇතුන්ගහකොටුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60266", + "location": { + "type": "Point", + "coordinates": [ + 79.9667, + 7.5167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e50c" + }, + "id": 1071, + "district_id": 14, + "name_en": "Galadivulwewa", + "name_si": "ගලදිවුල්වැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50210", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 7.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e50d" + }, + "id": 1072, + "district_id": 14, + "name_en": "Galgamuwa", + "name_si": "ගල්ගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60700", + "location": { + "type": "Point", + "coordinates": [ + 80.267527, + 7.995468 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e50e" + }, + "id": 1073, + "district_id": 14, + "name_en": "Gallellagama", + "name_si": "ගල්ලෑල්ලගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20095", + "location": { + "type": "Point", + "coordinates": [ + 80.15, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e50f" + }, + "id": 1074, + "district_id": 14, + "name_en": "Gallewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60712", + "location": { + "type": "Point", + "coordinates": [ + 80.3333, + 7.9667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e510" + }, + "id": 1075, + "district_id": 14, + "name_en": "Ganegoda", + "name_si": "ගණේගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80440", + "location": { + "type": "Point", + "coordinates": [ + 80, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e511" + }, + "id": 1076, + "district_id": 14, + "name_en": "Girathalana", + "name_si": "ගිරාතලන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60752", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 7.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e512" + }, + "id": 1077, + "district_id": 14, + "name_en": "Gokaralla", + "name_si": "ගොකරුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60522", + "location": { + "type": "Point", + "coordinates": [ + 80.3775, + 7.6301 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e513" + }, + "id": 1078, + "district_id": 14, + "name_en": "Gonawila", + "name_si": "ගොනාවිල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60170", + "location": { + "type": "Point", + "coordinates": [ + 80, + 7.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e514" + }, + "id": 1079, + "district_id": 14, + "name_en": "Halmillawewa", + "name_si": "හල්මිල්ලවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60441", + "location": { + "type": "Point", + "coordinates": [ + 79.9972, + 7.5953 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e515" + }, + "id": 1080, + "district_id": 14, + "name_en": "Handungamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21536", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e516" + }, + "id": 1081, + "district_id": 14, + "name_en": "Harankahawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20092", + "location": { + "type": "Point", + "coordinates": [ + 80.15, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e517" + }, + "id": 1082, + "district_id": 14, + "name_en": "Helamada", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71046", + "location": { + "type": "Point", + "coordinates": [ + 80.2833, + 7.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e518" + }, + "id": 1083, + "district_id": 14, + "name_en": "Hengamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60414", + "location": { + "type": "Point", + "coordinates": [ + 80.111254, + 7.703282 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e519" + }, + "id": 1084, + "district_id": 14, + "name_en": "Hettipola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60430", + "location": { + "type": "Point", + "coordinates": [ + 80.083137, + 7.605372 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e51a" + }, + "id": 1085, + "district_id": 14, + "name_en": "Hewainna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10714", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 7.3333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e51b" + }, + "id": 1086, + "district_id": 14, + "name_en": "Hilogama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60486", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 7.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e51c" + }, + "id": 1087, + "district_id": 14, + "name_en": "Hindagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60034", + "location": { + "type": "Point", + "coordinates": [ + 80.4167, + 7.4833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e51d" + }, + "id": 1088, + "district_id": 14, + "name_en": "Hiriyala Lenawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60546", + "location": { + "type": "Point", + "coordinates": [ + 80.4751, + 7.6709 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e51e" + }, + "id": 1089, + "district_id": 14, + "name_en": "Hiruwalpola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60458", + "location": { + "type": "Point", + "coordinates": [ + 79.924699, + 7.553915 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e51f" + }, + "id": 1090, + "district_id": 14, + "name_en": "Horambawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60181", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e520" + }, + "id": 1091, + "district_id": 14, + "name_en": "Hulogedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60474", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.7833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e521" + }, + "id": 1092, + "district_id": 14, + "name_en": "Hulugalla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60477", + "location": { + "type": "Point", + "coordinates": [ + 80.140007, + 7.79059 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e522" + }, + "id": 1093, + "district_id": 14, + "name_en": "Ihala Gomugomuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60211", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 7.5167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e523" + }, + "id": 1094, + "district_id": 14, + "name_en": "Ihala Katugampala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60135", + "location": { + "type": "Point", + "coordinates": [ + 80.1467, + 7.3672 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e524" + }, + "id": 1095, + "district_id": 14, + "name_en": "Indulgodakanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60016", + "location": { + "type": "Point", + "coordinates": [ + 80.402808, + 7.422625 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e525" + }, + "id": 1096, + "district_id": 14, + "name_en": "Ithanawatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60025", + "location": { + "type": "Point", + "coordinates": [ + 80.3458, + 7.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e526" + }, + "id": 1097, + "district_id": 14, + "name_en": "Kadigawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60492", + "location": { + "type": "Point", + "coordinates": [ + 80, + 7.7167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e527" + }, + "id": 1098, + "district_id": 14, + "name_en": "Kalankuttiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50174", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 8.05 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e528" + }, + "id": 1099, + "district_id": 14, + "name_en": "Kalatuwawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10718", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 7.6333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e529" + }, + "id": 1100, + "district_id": 14, + "name_en": "Kalugamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60096", + "location": { + "type": "Point", + "coordinates": [ + 80.256696, + 7.449717 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e52a" + }, + "id": 1101, + "district_id": 14, + "name_en": "Kanadeniyawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60054", + "location": { + "type": "Point", + "coordinates": [ + 80.535658, + 7.43824 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e52b" + }, + "id": 1102, + "district_id": 14, + "name_en": "Kanattewewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60422", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.6167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e52c" + }, + "id": 1103, + "district_id": 14, + "name_en": "Kandegedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90070", + "location": { + "type": "Point", + "coordinates": [ + 80.071498, + 7.424611 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e52d" + }, + "id": 1104, + "district_id": 14, + "name_en": "Karagahagedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60106", + "location": { + "type": "Point", + "coordinates": [ + 80.209967, + 7.475787 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e52e" + }, + "id": 1105, + "district_id": 14, + "name_en": "Karambe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60602", + "location": { + "type": "Point", + "coordinates": [ + 80.339167, + 7.805937 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e52f" + }, + "id": 1106, + "district_id": 14, + "name_en": "Katiyawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50261", + "location": { + "type": "Point", + "coordinates": [ + 80.553944, + 7.624637 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e530" + }, + "id": 1107, + "district_id": 14, + "name_en": "Katupota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60350", + "location": { + "type": "Point", + "coordinates": [ + 80.1897, + 7.5331 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e531" + }, + "id": 1108, + "district_id": 14, + "name_en": "Kawudulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51414", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 7.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e532" + }, + "id": 1109, + "district_id": 14, + "name_en": "Kawuduluwewa Stagell", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51514", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.8167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e533" + }, + "id": 1110, + "district_id": 14, + "name_en": "Kekunagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60183", + "location": { + "type": "Point", + "coordinates": [ + 80.170446, + 7.49608 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e534" + }, + "id": 1111, + "district_id": 14, + "name_en": "Keppitiwalana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60288", + "location": { + "type": "Point", + "coordinates": [ + 80.190441, + 7.323203 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e535" + }, + "id": 1112, + "district_id": 14, + "name_en": "Kimbulwanaoya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60548", + "location": { + "type": "Point", + "coordinates": [ + 80.4751, + 7.6709 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e536" + }, + "id": 1113, + "district_id": 14, + "name_en": "Kirimetiyawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60184", + "location": { + "type": "Point", + "coordinates": [ + 80.1408, + 7.5247 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e537" + }, + "id": 1114, + "district_id": 14, + "name_en": "Kirindawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60212", + "location": { + "type": "Point", + "coordinates": [ + 80.096123, + 7.502078 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e538" + }, + "id": 1115, + "district_id": 14, + "name_en": "Kirindigalla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60502", + "location": { + "type": "Point", + "coordinates": [ + 80.475005, + 7.554314 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e539" + }, + "id": 1116, + "district_id": 14, + "name_en": "Kithalawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60188", + "location": { + "type": "Point", + "coordinates": [ + 80.1615, + 7.4816 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e53a" + }, + "id": 1117, + "district_id": 14, + "name_en": "Kitulwala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11242", + "location": { + "type": "Point", + "coordinates": [ + 80.5333, + 7.5 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e53b" + }, + "id": 1118, + "district_id": 14, + "name_en": "Kobeigane", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60410", + "location": { + "type": "Point", + "coordinates": [ + 80.120999, + 7.656731 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e53c" + }, + "id": 1119, + "district_id": 14, + "name_en": "Kohilagedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60028", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e53d" + }, + "id": 1120, + "district_id": 14, + "name_en": "Konwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60630", + "location": { + "type": "Point", + "coordinates": [ + 80.0667, + 7.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e53e" + }, + "id": 1121, + "district_id": 14, + "name_en": "Kosdeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60356", + "location": { + "type": "Point", + "coordinates": [ + 80.138826, + 7.574081 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e53f" + }, + "id": 1122, + "district_id": 14, + "name_en": "Kosgolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60029", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e540" + }, + "id": 1123, + "district_id": 14, + "name_en": "Kotagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22080", + "location": { + "type": "Point", + "coordinates": [ + 80.2333, + 7.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e541" + }, + "id": 1124, + "district_id": 5, + "name_en": "Colombo 13", + "name_si": "කොළඹ 13", + "name_ta": "கொழும்பு 13", + "sub_name_en": "Kotahena", + "sub_name_si": "කොටහේන", + "sub_name_ta": "கொட்டாஞ்சேனை", + "postcode": "01300", + "location": { + "type": "Point", + "coordinates": [ + 79.858611, + 6.942778 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e542" + }, + "id": 1125, + "district_id": 14, + "name_en": "Kotawehera", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60483", + "location": { + "type": "Point", + "coordinates": [ + 80.1023, + 7.7911 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e543" + }, + "id": 1126, + "district_id": 14, + "name_en": "Kudagalgamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60003", + "location": { + "type": "Point", + "coordinates": [ + 80.340333, + 7.558498 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e544" + }, + "id": 1127, + "district_id": 14, + "name_en": "Kudakatnoruwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60754", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 7.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e545" + }, + "id": 1128, + "district_id": 14, + "name_en": "Kuliyapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60200", + "location": { + "type": "Point", + "coordinates": [ + 80.04873, + 7.469551 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e546" + }, + "id": 1129, + "district_id": 14, + "name_en": "Kumaragama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51412", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 7.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e547" + }, + "id": 1130, + "district_id": 14, + "name_en": "Kumbukgeta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60508", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 7.675 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e548" + }, + "id": 1131, + "district_id": 14, + "name_en": "Kumbukwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60506", + "location": { + "type": "Point", + "coordinates": [ + 80.217857, + 7.797468 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e549" + }, + "id": 1132, + "district_id": 14, + "name_en": "Kuratihena", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60438", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.6 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e54a" + }, + "id": 1133, + "district_id": 14, + "name_en": "Kurunegala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60000", + "location": { + "type": "Point", + "coordinates": [ + 80.3647, + 7.4867 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e54b" + }, + "id": 1134, + "district_id": 14, + "name_en": "lbbagamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60500", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 7.675 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e54c" + }, + "id": 1135, + "district_id": 14, + "name_en": "lhala Kadigamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60238", + "location": { + "type": "Point", + "coordinates": [ + 79.9819, + 7.5436 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e54d" + }, + "id": 1136, + "district_id": 14, + "name_en": "Lihiriyagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61138", + "location": { + "type": "Point", + "coordinates": [ + 79.9425, + 7.3447 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e54e" + }, + "id": 1137, + "district_id": 14, + "name_en": "lllagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20724", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e54f" + }, + "id": 1138, + "district_id": 14, + "name_en": "llukhena", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60232", + "location": { + "type": "Point", + "coordinates": [ + 79.9819, + 7.5436 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e550" + }, + "id": 1139, + "district_id": 14, + "name_en": "Lonahettiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60108", + "location": { + "type": "Point", + "coordinates": [ + 80.2107, + 7.4589 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e551" + }, + "id": 1140, + "district_id": 14, + "name_en": "Madahapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60552", + "location": { + "type": "Point", + "coordinates": [ + 80.499003, + 7.711952 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e552" + }, + "id": 1141, + "district_id": 14, + "name_en": "Madakumburumulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60209", + "location": { + "type": "Point", + "coordinates": [ + 79.994062, + 7.44599 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e553" + }, + "id": 1142, + "district_id": 14, + "name_en": "Madalagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70158", + "location": { + "type": "Point", + "coordinates": [ + 80.314033, + 7.353398 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e554" + }, + "id": 1143, + "district_id": 14, + "name_en": "Madawala Ulpotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21074", + "location": { + "type": "Point", + "coordinates": [ + 80.5051, + 7.703 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e555" + }, + "id": 1144, + "district_id": 14, + "name_en": "Maduragoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60532", + "location": { + "type": "Point", + "coordinates": [ + 80.5333, + 7.5667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e556" + }, + "id": 1145, + "district_id": 14, + "name_en": "Maeliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60512", + "location": { + "type": "Point", + "coordinates": [ + 80.4079, + 7.734847 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e557" + }, + "id": 1146, + "district_id": 14, + "name_en": "Magulagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60221", + "location": { + "type": "Point", + "coordinates": [ + 80.090321, + 7.542895 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e558" + }, + "id": 1147, + "district_id": 14, + "name_en": "Maha Ambagaswewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51518", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.8167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e559" + }, + "id": 1148, + "district_id": 14, + "name_en": "Mahagalkadawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60731", + "location": { + "type": "Point", + "coordinates": [ + 80.28052, + 8.062861 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e55a" + }, + "id": 1149, + "district_id": 14, + "name_en": "Mahagirilla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60479", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e55b" + }, + "id": 1150, + "district_id": 14, + "name_en": "Mahamukalanyaya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60516", + "location": { + "type": "Point", + "coordinates": [ + 80.4318, + 7.7417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e55c" + }, + "id": 1151, + "district_id": 14, + "name_en": "Mahananneriya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60724", + "location": { + "type": "Point", + "coordinates": [ + 80.183367, + 8.013545 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e55d" + }, + "id": 1152, + "district_id": 14, + "name_en": "Mahapallegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71063", + "location": { + "type": "Point", + "coordinates": [ + 80.0918, + 7.366 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e55e" + }, + "id": 1153, + "district_id": 14, + "name_en": "Maharachchimulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60286", + "location": { + "type": "Point", + "coordinates": [ + 80.212673, + 7.335989 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e55f" + }, + "id": 1154, + "district_id": 14, + "name_en": "Mahatalakolawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51506", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.8167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e560" + }, + "id": 1155, + "district_id": 14, + "name_en": "Mahawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61220", + "location": { + "type": "Point", + "coordinates": [ + 79.9167, + 7.5167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e561" + }, + "id": 1156, + "district_id": 14, + "name_en": "Maho", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60600", + "location": { + "type": "Point", + "coordinates": [ + 80.2778, + 7.8228 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e562" + }, + "id": 1157, + "district_id": 14, + "name_en": "Makulewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60714", + "location": { + "type": "Point", + "coordinates": [ + 80.345072, + 7.998315 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e563" + }, + "id": 1158, + "district_id": 14, + "name_en": "Makulpotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60514", + "location": { + "type": "Point", + "coordinates": [ + 80.43986, + 7.751748 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e564" + }, + "id": 1159, + "district_id": 14, + "name_en": "Makulwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60578", + "location": { + "type": "Point", + "coordinates": [ + 80.05, + 7.6333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e565" + }, + "id": 1160, + "district_id": 14, + "name_en": "Malagane", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60404", + "location": { + "type": "Point", + "coordinates": [ + 80.2667, + 7.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e566" + }, + "id": 1161, + "district_id": 14, + "name_en": "Mandapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60434", + "location": { + "type": "Point", + "coordinates": [ + 80.108641, + 7.63521 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e567" + }, + "id": 1162, + "district_id": 14, + "name_en": "Maspotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60344", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 7.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e568" + }, + "id": 1163, + "district_id": 14, + "name_en": "Mawathagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60060", + "location": { + "type": "Point", + "coordinates": [ + 80.315775, + 7.409691 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e569" + }, + "id": 1164, + "district_id": 14, + "name_en": "Medirigiriya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51500", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.8167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e56a" + }, + "id": 1165, + "district_id": 14, + "name_en": "Medivawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60612", + "location": { + "type": "Point", + "coordinates": [ + 80.2858, + 7.7678 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e56b" + }, + "id": 1166, + "district_id": 14, + "name_en": "Meegalawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60750", + "location": { + "type": "Point", + "coordinates": [ + 80.3833, + 7.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e56c" + }, + "id": 1167, + "district_id": 14, + "name_en": "Meegaswewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51508", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.8167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e56d" + }, + "id": 1168, + "district_id": 14, + "name_en": "Meewellawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60484", + "location": { + "type": "Point", + "coordinates": [ + 80.15, + 7.85 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e56e" + }, + "id": 1169, + "district_id": 14, + "name_en": "Melsiripura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60540", + "location": { + "type": "Point", + "coordinates": [ + 80.5, + 7.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e56f" + }, + "id": 1170, + "district_id": 14, + "name_en": "Metikumbura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60304", + "location": { + "type": "Point", + "coordinates": [ + 80.3177, + 7.3615 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e570" + }, + "id": 1171, + "district_id": 14, + "name_en": "Metiyagane", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60121", + "location": { + "type": "Point", + "coordinates": [ + 80.180612, + 7.390854 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e571" + }, + "id": 1172, + "district_id": 14, + "name_en": "Minhettiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60004", + "location": { + "type": "Point", + "coordinates": [ + 80.307757, + 7.581261 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e572" + }, + "id": 1173, + "district_id": 14, + "name_en": "Minuwangete", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60406", + "location": { + "type": "Point", + "coordinates": [ + 80.25, + 7.7167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e573" + }, + "id": 1174, + "district_id": 14, + "name_en": "Mirihanagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60408", + "location": { + "type": "Point", + "coordinates": [ + 80.2583, + 7.6542 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e574" + }, + "id": 1175, + "district_id": 14, + "name_en": "Monnekulama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60495", + "location": { + "type": "Point", + "coordinates": [ + 80.060587, + 7.824042 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e575" + }, + "id": 1176, + "district_id": 14, + "name_en": "Moragane", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60354", + "location": { + "type": "Point", + "coordinates": [ + 80.130329, + 7.547791 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e576" + }, + "id": 1177, + "district_id": 14, + "name_en": "Moragollagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60640", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 7.6333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e577" + }, + "id": 1178, + "district_id": 14, + "name_en": "Morathiha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60038", + "location": { + "type": "Point", + "coordinates": [ + 80.488428, + 7.510701 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e578" + }, + "id": 1179, + "district_id": 14, + "name_en": "Munamaldeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60218", + "location": { + "type": "Point", + "coordinates": [ + 80.0667, + 7.55 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e579" + }, + "id": 1180, + "district_id": 14, + "name_en": "Muruthenge", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60122", + "location": { + "type": "Point", + "coordinates": [ + 80.1861, + 7.3942 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e57a" + }, + "id": 1181, + "district_id": 14, + "name_en": "Mutugala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51064", + "location": { + "type": "Point", + "coordinates": [ + 80.1667, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e57b" + }, + "id": 1182, + "district_id": 14, + "name_en": "Nabadewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60482", + "location": { + "type": "Point", + "coordinates": [ + 80.0667, + 7.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e57c" + }, + "id": 1183, + "district_id": 14, + "name_en": "Nagollagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60590", + "location": { + "type": "Point", + "coordinates": [ + 80.309254, + 7.752013 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e57d" + }, + "id": 1184, + "district_id": 14, + "name_en": "Nagollagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60226", + "location": { + "type": "Point", + "coordinates": [ + 80.037807, + 7.563335 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e57e" + }, + "id": 1185, + "district_id": 14, + "name_en": "Nakkawatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60186", + "location": { + "type": "Point", + "coordinates": [ + 80.141879, + 7.448259 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e57f" + }, + "id": 1186, + "district_id": 14, + "name_en": "Narammala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60100", + "location": { + "type": "Point", + "coordinates": [ + 80.206159, + 7.431387 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e580" + }, + "id": 1187, + "district_id": 14, + "name_en": "Nawasenapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51066", + "location": { + "type": "Point", + "coordinates": [ + 80.1667, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e581" + }, + "id": 1188, + "district_id": 14, + "name_en": "Nawatalwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60292", + "location": { + "type": "Point", + "coordinates": [ + 80.0603, + 7.4581 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e582" + }, + "id": 1189, + "district_id": 14, + "name_en": "Nelliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60549", + "location": { + "type": "Point", + "coordinates": [ + 80.457947, + 7.690523 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e583" + }, + "id": 1190, + "district_id": 14, + "name_en": "Nikaweratiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60470", + "location": { + "type": "Point", + "coordinates": [ + 80.115201, + 7.747585 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e584" + }, + "id": 1191, + "district_id": 14, + "name_en": "Nugagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21534", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e585" + }, + "id": 1192, + "district_id": 14, + "name_en": "Nugawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20072", + "location": { + "type": "Point", + "coordinates": [ + 80.220383, + 7.329999 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e586" + }, + "id": 1193, + "district_id": 14, + "name_en": "Padeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60461", + "location": { + "type": "Point", + "coordinates": [ + 80.222132, + 7.648348 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e587" + }, + "id": 1194, + "district_id": 14, + "name_en": "Padiwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60236", + "location": { + "type": "Point", + "coordinates": [ + 79.9905, + 7.545547 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e588" + }, + "id": 1195, + "district_id": 14, + "name_en": "Pahalagiribawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60735", + "location": { + "type": "Point", + "coordinates": [ + 80.2111, + 8.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e589" + }, + "id": 1196, + "district_id": 14, + "name_en": "Pahamune", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60112", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.4833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e58a" + }, + "id": 1197, + "district_id": 14, + "name_en": "Palagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50111", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.4667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e58b" + }, + "id": 1198, + "district_id": 14, + "name_en": "Palapathwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21070", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.9 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e58c" + }, + "id": 1199, + "district_id": 14, + "name_en": "Palaviya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61280", + "location": { + "type": "Point", + "coordinates": [ + 79.9098, + 7.5785 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e58d" + }, + "id": 1200, + "district_id": 14, + "name_en": "Pallewela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "11150", + "location": { + "type": "Point", + "coordinates": [ + 79.9833, + 7.4667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e58e" + }, + "id": 1201, + "district_id": 14, + "name_en": "Palukadawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60704", + "location": { + "type": "Point", + "coordinates": [ + 80.279058, + 7.947895 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e58f" + }, + "id": 1202, + "district_id": 14, + "name_en": "Panadaragama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60348", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 7.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e590" + }, + "id": 1203, + "district_id": 14, + "name_en": "Panagamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60052", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 7.55 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e591" + }, + "id": 1204, + "district_id": 14, + "name_en": "Panaliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60312", + "location": { + "type": "Point", + "coordinates": [ + 80.331852, + 7.328059 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e592" + }, + "id": 1205, + "district_id": 14, + "name_en": "Panapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70152", + "location": { + "type": "Point", + "coordinates": [ + 80.1833, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e593" + }, + "id": 1206, + "district_id": 14, + "name_en": "Panliyadda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60558", + "location": { + "type": "Point", + "coordinates": [ + 80.4964, + 7.7061 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e594" + }, + "id": 1207, + "district_id": 14, + "name_en": "Pansiyagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60554", + "location": { + "type": "Point", + "coordinates": [ + 80.4964, + 7.7061 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e595" + }, + "id": 1208, + "district_id": 14, + "name_en": "Parape", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71105", + "location": { + "type": "Point", + "coordinates": [ + 80.4167, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e596" + }, + "id": 1209, + "district_id": 14, + "name_en": "Pathanewatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90071", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e597" + }, + "id": 1210, + "district_id": 14, + "name_en": "Pattiya Watta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20118", + "location": { + "type": "Point", + "coordinates": [ + 80.3167, + 7.3833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e598" + }, + "id": 1211, + "district_id": 14, + "name_en": "Perakanatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21532", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e599" + }, + "id": 1212, + "district_id": 14, + "name_en": "Periyakadneluwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60518", + "location": { + "type": "Point", + "coordinates": [ + 80.4318, + 7.7417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e59a" + }, + "id": 1213, + "district_id": 14, + "name_en": "Pihimbiya Ratmale", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60439", + "location": { + "type": "Point", + "coordinates": [ + 80.0953, + 7.6299 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e59b" + }, + "id": 1214, + "district_id": 14, + "name_en": "Pihimbuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60053", + "location": { + "type": "Point", + "coordinates": [ + 80.512294, + 7.460742 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e59c" + }, + "id": 1215, + "district_id": 14, + "name_en": "Pilessa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60058", + "location": { + "type": "Point", + "coordinates": [ + 80.4167, + 7.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e59d" + }, + "id": 1216, + "district_id": 14, + "name_en": "Polgahawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60300", + "location": { + "type": "Point", + "coordinates": [ + 80.295285, + 7.332765 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e59e" + }, + "id": 1217, + "district_id": 14, + "name_en": "Polgolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20250", + "location": { + "type": "Point", + "coordinates": [ + 80.5333, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e59f" + }, + "id": 1218, + "district_id": 14, + "name_en": "Polpitigama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60620", + "location": { + "type": "Point", + "coordinates": [ + 80.4042, + 7.8142 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a0" + }, + "id": 1219, + "district_id": 14, + "name_en": "Pothuhera", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60330", + "location": { + "type": "Point", + "coordinates": [ + 80.3317, + 7.4181 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a1" + }, + "id": 1220, + "district_id": 14, + "name_en": "Pothupitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70338", + "location": { + "type": "Point", + "coordinates": [ + 80.17166, + 7.35542 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a2" + }, + "id": 1221, + "district_id": 14, + "name_en": "Pujapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20112", + "location": { + "type": "Point", + "coordinates": [ + 80.3167, + 7.3833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a3" + }, + "id": 1222, + "district_id": 14, + "name_en": "Rakwana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70300", + "location": { + "type": "Point", + "coordinates": [ + 80.4, + 7.9 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a4" + }, + "id": 1223, + "district_id": 14, + "name_en": "Ranorawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50212", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 7.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a5" + }, + "id": 1224, + "district_id": 14, + "name_en": "Rathukohodigala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20818", + "location": { + "type": "Point", + "coordinates": [ + 79.9333, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a6" + }, + "id": 1225, + "district_id": 14, + "name_en": "Ridibendiella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60606", + "location": { + "type": "Point", + "coordinates": [ + 80.287, + 7.802 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a7" + }, + "id": 1226, + "district_id": 14, + "name_en": "Ridigama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60040", + "location": { + "type": "Point", + "coordinates": [ + 80.4833, + 7.55 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a8" + }, + "id": 1227, + "district_id": 14, + "name_en": "Saliya Asokapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60736", + "location": { + "type": "Point", + "coordinates": [ + 80.2111, + 8.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5a9" + }, + "id": 1228, + "district_id": 14, + "name_en": "Sandalankawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60176", + "location": { + "type": "Point", + "coordinates": [ + 79.944358, + 7.304619 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5aa" + }, + "id": 1229, + "district_id": 14, + "name_en": "Sevanapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51062", + "location": { + "type": "Point", + "coordinates": [ + 80.1667, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5ab" + }, + "id": 1230, + "district_id": 14, + "name_en": "Sirambiadiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61312", + "location": { + "type": "Point", + "coordinates": [ + 80.2667, + 8.1 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5ac" + }, + "id": 1231, + "district_id": 14, + "name_en": "Sirisetagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60478", + "location": { + "type": "Point", + "coordinates": [ + 80.1506, + 7.7772 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5ad" + }, + "id": 1232, + "district_id": 14, + "name_en": "Siyambalangamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60646", + "location": { + "type": "Point", + "coordinates": [ + 80.340311, + 7.529179 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5ae" + }, + "id": 1233, + "district_id": 14, + "name_en": "Siyambalawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32048", + "location": { + "type": "Point", + "coordinates": [ + 79.9667, + 7.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5af" + }, + "id": 1234, + "district_id": 14, + "name_en": "Solepura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60737", + "location": { + "type": "Point", + "coordinates": [ + 80.153384, + 8.153657 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b0" + }, + "id": 1235, + "district_id": 14, + "name_en": "Solewewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60738", + "location": { + "type": "Point", + "coordinates": [ + 80.132596, + 8.145855 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b1" + }, + "id": 1236, + "district_id": 14, + "name_en": "Sunandapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60436", + "location": { + "type": "Point", + "coordinates": [ + 80.0953, + 7.6299 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b2" + }, + "id": 1237, + "district_id": 14, + "name_en": "Talawattegedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60306", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 7.3833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b3" + }, + "id": 1238, + "district_id": 14, + "name_en": "Tambutta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60734", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 8.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b4" + }, + "id": 1239, + "district_id": 14, + "name_en": "Tennepanguwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90072", + "location": { + "type": "Point", + "coordinates": [ + 80.0833, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b5" + }, + "id": 1240, + "district_id": 14, + "name_en": "Thalahitimulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60208", + "location": { + "type": "Point", + "coordinates": [ + 80.001954, + 7.432473 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b6" + }, + "id": 1241, + "district_id": 14, + "name_en": "Thalakolawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60624", + "location": { + "type": "Point", + "coordinates": [ + 80.433851, + 7.796943 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b7" + }, + "id": 1242, + "district_id": 14, + "name_en": "Thalwita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60572", + "location": { + "type": "Point", + "coordinates": [ + 80.2108, + 7.5943 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b8" + }, + "id": 1243, + "district_id": 14, + "name_en": "Tharana Udawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60227", + "location": { + "type": "Point", + "coordinates": [ + 80.0667, + 7.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5b9" + }, + "id": 1244, + "district_id": 14, + "name_en": "Thimbiriyawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60476", + "location": { + "type": "Point", + "coordinates": [ + 80.140975, + 7.750904 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5ba" + }, + "id": 1245, + "district_id": 14, + "name_en": "Tisogama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60453", + "location": { + "type": "Point", + "coordinates": [ + 79.9406, + 7.6065 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5bb" + }, + "id": 1246, + "district_id": 14, + "name_en": "Torayaya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60499", + "location": { + "type": "Point", + "coordinates": [ + 80.4, + 7.5167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5bc" + }, + "id": 1247, + "district_id": 14, + "name_en": "Tulhiriya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71610", + "location": { + "type": "Point", + "coordinates": [ + 80.2167, + 7.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5bd" + }, + "id": 1248, + "district_id": 14, + "name_en": "Tuntota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71062", + "location": { + "type": "Point", + "coordinates": [ + 79.9167, + 7.5 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5be" + }, + "id": 1249, + "district_id": 14, + "name_en": "Tuttiripitigama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60426", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.6 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5bf" + }, + "id": 1250, + "district_id": 14, + "name_en": "Udagaldeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71113", + "location": { + "type": "Point", + "coordinates": [ + 80.35, + 7.3583 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c0" + }, + "id": 1251, + "district_id": 14, + "name_en": "Udahingulwala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20094", + "location": { + "type": "Point", + "coordinates": [ + 80.15, + 7.3 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c1" + }, + "id": 1252, + "district_id": 14, + "name_en": "Udawatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20722", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c2" + }, + "id": 1253, + "district_id": 14, + "name_en": "Udubaddawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60250", + "location": { + "type": "Point", + "coordinates": [ + 79.9753, + 7.4828 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c3" + }, + "id": 1254, + "district_id": 14, + "name_en": "Udumulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "71521", + "location": { + "type": "Point", + "coordinates": [ + 80.4, + 7.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c4" + }, + "id": 1255, + "district_id": 14, + "name_en": "Uhumiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60094", + "location": { + "type": "Point", + "coordinates": [ + 80.2833, + 7.4667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c5" + }, + "id": 1256, + "district_id": 14, + "name_en": "Ulpotha Pallekele", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60622", + "location": { + "type": "Point", + "coordinates": [ + 80.4188, + 7.8071 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c6" + }, + "id": 1257, + "district_id": 14, + "name_en": "Ulpothagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20965", + "location": { + "type": "Point", + "coordinates": [ + 80.3167, + 7.7167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c7" + }, + "id": 1258, + "district_id": 14, + "name_en": "Usgala Siyabmalangamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60732", + "location": { + "type": "Point", + "coordinates": [ + 80.2111, + 8.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c8" + }, + "id": 1259, + "district_id": 14, + "name_en": "Vijithapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50110", + "location": { + "type": "Point", + "coordinates": [ + 80.1333, + 7.4667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5c9" + }, + "id": 1260, + "district_id": 14, + "name_en": "Wadakada", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60318", + "location": { + "type": "Point", + "coordinates": [ + 80.267596, + 7.39697 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5ca" + }, + "id": 1261, + "district_id": 14, + "name_en": "Wadumunnegedara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60204", + "location": { + "type": "Point", + "coordinates": [ + 79.9667, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5cb" + }, + "id": 1262, + "district_id": 14, + "name_en": "Walakumburumulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60198", + "location": { + "type": "Point", + "coordinates": [ + 80.0167, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5cc" + }, + "id": 1263, + "district_id": 14, + "name_en": "Wannigama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60465", + "location": { + "type": "Point", + "coordinates": [ + 80.2203, + 7.6569 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5cd" + }, + "id": 1264, + "district_id": 14, + "name_en": "Wannikudawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60721", + "location": { + "type": "Point", + "coordinates": [ + 80.2964, + 7.9977 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5ce" + }, + "id": 1265, + "district_id": 14, + "name_en": "Wannilhalagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60722", + "location": { + "type": "Point", + "coordinates": [ + 80.2964, + 7.9977 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5cf" + }, + "id": 1266, + "district_id": 14, + "name_en": "Wannirasnayakapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60490", + "location": { + "type": "Point", + "coordinates": [ + 80.1556, + 7.6889 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d0" + }, + "id": 1267, + "district_id": 14, + "name_en": "Warawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60739", + "location": { + "type": "Point", + "coordinates": [ + 80.14855, + 8.121572 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d1" + }, + "id": 1268, + "district_id": 14, + "name_en": "Wariyapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60400", + "location": { + "type": "Point", + "coordinates": [ + 80.235989, + 7.628694 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d2" + }, + "id": 1269, + "district_id": 14, + "name_en": "Watareka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "10511", + "location": { + "type": "Point", + "coordinates": [ + 80.432878, + 7.397142 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d3" + }, + "id": 1270, + "district_id": 14, + "name_en": "Wattegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20810", + "location": { + "type": "Point", + "coordinates": [ + 79.9333, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d4" + }, + "id": 1271, + "district_id": 14, + "name_en": "Watuwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60262", + "location": { + "type": "Point", + "coordinates": [ + 79.9167, + 7.5167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d5" + }, + "id": 1272, + "district_id": 14, + "name_en": "Weerapokuna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60454", + "location": { + "type": "Point", + "coordinates": [ + 79.981893, + 7.649426 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d6" + }, + "id": 1273, + "district_id": 14, + "name_en": "Welawa Juncton", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60464", + "location": { + "type": "Point", + "coordinates": [ + 80.2203, + 7.6569 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d7" + }, + "id": 1274, + "district_id": 14, + "name_en": "Welipennagahamulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60240", + "location": { + "type": "Point", + "coordinates": [ + 80.0603, + 7.4581 + ] + } +}, +{ + "_id": { + "$oid": "66b9b6f3eb3cc57b49c4e5d8" + }, + "id": 1275, + "district_id": 14, + "name_en": "Wellagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60402", + "location": { + "type": "Point", + "coordinates": [ + 80.2833, + 7.6167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e49b" + }, + "id": 1276, + "district_id": 14, + "name_en": "Wellarawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60456", + "location": { + "type": "Point", + "coordinates": [ + 79.913974, + 7.5729 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e49c" + }, + "id": 1277, + "district_id": 14, + "name_en": "Wellawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60570", + "location": { + "type": "Point", + "coordinates": [ + 80.369189, + 7.566524 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e49d" + }, + "id": 1278, + "district_id": 14, + "name_en": "Welpalla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60206", + "location": { + "type": "Point", + "coordinates": [ + 80.05, + 7.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e49e" + }, + "id": 1279, + "district_id": 14, + "name_en": "Wennoruwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60284", + "location": { + "type": "Point", + "coordinates": [ + 80.219573, + 7.369467 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e49f" + }, + "id": 1280, + "district_id": 14, + "name_en": "Weuda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60080", + "location": { + "type": "Point", + "coordinates": [ + 80.1667, + 7.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a0" + }, + "id": 1281, + "district_id": 14, + "name_en": "Wewagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60195", + "location": { + "type": "Point", + "coordinates": [ + 80.099835, + 7.42031 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a1" + }, + "id": 1282, + "district_id": 14, + "name_en": "Wilgamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21530", + "location": { + "type": "Point", + "coordinates": [ + 80.2, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a2" + }, + "id": 1283, + "district_id": 14, + "name_en": "Yakwila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60202", + "location": { + "type": "Point", + "coordinates": [ + 80.0333, + 7.3833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a3" + }, + "id": 1284, + "district_id": 14, + "name_en": "Yatigaloluwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60314", + "location": { + "type": "Point", + "coordinates": [ + 80.264509, + 7.328729 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a4" + }, + "id": 1285, + "district_id": 15, + "name_en": "Mannar", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "41000", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 8.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a5" + }, + "id": 1286, + "district_id": 15, + "name_en": "Puthukudiyiruppu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30158", + "location": { + "type": "Point", + "coordinates": [ + 79.853286, + 9.046951 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a6" + }, + "id": 1287, + "district_id": 16, + "name_en": "Akuramboda", + "name_si": "අකුරම්බොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21142", + "location": { + "type": "Point", + "coordinates": [ + 80.600048, + 7.646383 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a7" + }, + "id": 1288, + "district_id": 16, + "name_en": "Alawatuwala", + "name_si": "අලවතුවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60047", + "location": { + "type": "Point", + "coordinates": [ + 80.5583, + 7.55 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a8" + }, + "id": 1289, + "district_id": 16, + "name_en": "Alwatta", + "name_si": "අල්වත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21004", + "location": { + "type": "Point", + "coordinates": [ + 80.663358, + 7.449444 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4a9" + }, + "id": 1290, + "district_id": 16, + "name_en": "Ambana", + "name_si": "අම්බාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21504", + "location": { + "type": "Point", + "coordinates": [ + 80.693816, + 7.651007 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4aa" + }, + "id": 1291, + "district_id": 16, + "name_en": "Aralaganwila", + "name_si": "අරලගන්විල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51100", + "location": { + "type": "Point", + "coordinates": [ + 80.5842, + 7.696 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ab" + }, + "id": 1292, + "district_id": 16, + "name_en": "Ataragallewa", + "name_si": "අටරගල්ලෑව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21512", + "location": { + "type": "Point", + "coordinates": [ + 80.6067, + 7.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ac" + }, + "id": 1293, + "district_id": 16, + "name_en": "Bambaragaswewa", + "name_si": "බඹරගස්වැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21212", + "location": { + "type": "Point", + "coordinates": [ + 80.540511, + 7.784315 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ad" + }, + "id": 1294, + "district_id": 16, + "name_en": "Barawardhana Oya", + "name_si": "බරවර්ධන ඔය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20967", + "location": { + "type": "Point", + "coordinates": [ + 80.625, + 7.5667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ae" + }, + "id": 1295, + "district_id": 16, + "name_en": "Beligamuwa", + "name_si": "බෙලිගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21214", + "location": { + "type": "Point", + "coordinates": [ + 80.552789, + 7.725882 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4af" + }, + "id": 1296, + "district_id": 16, + "name_en": "Damana", + "name_si": "දමන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32014", + "location": { + "type": "Point", + "coordinates": [ + 80.5797, + 7.8417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b0" + }, + "id": 1297, + "district_id": 16, + "name_en": "Dambulla", + "name_si": "දඹුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21100", + "location": { + "type": "Point", + "coordinates": [ + 80.646464, + 7.868039 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b1" + }, + "id": 1298, + "district_id": 16, + "name_en": "Damminna", + "name_si": "දම්මින්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51106", + "location": { + "type": "Point", + "coordinates": [ + 80.5842, + 7.696 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b2" + }, + "id": 1299, + "district_id": 16, + "name_en": "Dankanda", + "name_si": "දංකන්ද", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21032", + "location": { + "type": "Point", + "coordinates": [ + 80.694168, + 7.519616 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b3" + }, + "id": 1300, + "district_id": 16, + "name_en": "Delwite", + "name_si": "දෙල්විටේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60044", + "location": { + "type": "Point", + "coordinates": [ + 80.5583, + 7.55 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b4" + }, + "id": 1301, + "district_id": 16, + "name_en": "Devagiriya", + "name_si": "දේවගිරිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21552", + "location": { + "type": "Point", + "coordinates": [ + 80.9667, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b5" + }, + "id": 1302, + "district_id": 16, + "name_en": "Dewahuwa", + "name_si": "දේවහුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21206", + "location": { + "type": "Point", + "coordinates": [ + 80.5683, + 7.7589 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b6" + }, + "id": 1303, + "district_id": 16, + "name_en": "Divuldamana", + "name_si": "දිවුල්දමන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51104", + "location": { + "type": "Point", + "coordinates": [ + 80.5842, + 7.696 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b7" + }, + "id": 1304, + "district_id": 16, + "name_en": "Dullewa", + "name_si": "දුල්වල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21054", + "location": { + "type": "Point", + "coordinates": [ + 80.59862, + 7.511012 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b8" + }, + "id": 1305, + "district_id": 16, + "name_en": "Dunkolawatta", + "name_si": "දුන්කොලවත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21046", + "location": { + "type": "Point", + "coordinates": [ + 80.625, + 7.4917 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4b9" + }, + "id": 1306, + "district_id": 16, + "name_en": "Elkaduwa", + "name_si": "ඇල්කඩුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21012", + "location": { + "type": "Point", + "coordinates": [ + 80.693258, + 7.410706 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ba" + }, + "id": 1307, + "district_id": 16, + "name_en": "Erawula Junction", + "name_si": "එරවුල හන්දිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21108", + "location": { + "type": "Point", + "coordinates": [ + 80.6842, + 7.8633 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4bb" + }, + "id": 1308, + "district_id": 16, + "name_en": "Etanawala", + "name_si": "එතනවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21402", + "location": { + "type": "Point", + "coordinates": [ + 80.6847, + 7.5217 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4bc" + }, + "id": 1309, + "district_id": 16, + "name_en": "Galewela", + "name_si": "ගලේවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21200", + "location": { + "type": "Point", + "coordinates": [ + 80.56744, + 7.759807 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4bd" + }, + "id": 1310, + "district_id": 16, + "name_en": "Galoya Junction", + "name_si": "ගල්ඔය හන්දිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51375", + "location": { + "type": "Point", + "coordinates": [ + 80.5842, + 7.696 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4be" + }, + "id": 1311, + "district_id": 16, + "name_en": "Gammaduwa", + "name_si": "ගම්මඩුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21068", + "location": { + "type": "Point", + "coordinates": [ + 80.698521, + 7.581654 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4bf" + }, + "id": 1312, + "district_id": 16, + "name_en": "Gangala Puwakpitiya", + "name_si": "ගන්ගල පුවක්පිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21404", + "location": { + "type": "Point", + "coordinates": [ + 80.6847, + 7.5217 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c0" + }, + "id": 1313, + "district_id": 16, + "name_en": "Hasalaka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20960", + "location": { + "type": "Point", + "coordinates": [ + 80.625, + 7.5667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c1" + }, + "id": 1314, + "district_id": 16, + "name_en": "Hattota Amuna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21514", + "location": { + "type": "Point", + "coordinates": [ + 80.6067, + 7.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c2" + }, + "id": 1315, + "district_id": 16, + "name_en": "Imbulgolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21064", + "location": { + "type": "Point", + "coordinates": [ + 80.663159, + 7.575027 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c3" + }, + "id": 1316, + "district_id": 16, + "name_en": "Inamaluwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21124", + "location": { + "type": "Point", + "coordinates": [ + 80.690187, + 7.951344 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c4" + }, + "id": 1317, + "district_id": 16, + "name_en": "Iriyagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60045", + "location": { + "type": "Point", + "coordinates": [ + 80.6333, + 7.55 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c5" + }, + "id": 1318, + "district_id": 16, + "name_en": "Kaikawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21066", + "location": { + "type": "Point", + "coordinates": [ + 80.659444, + 7.507177 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c6" + }, + "id": 1319, + "district_id": 16, + "name_en": "Kalundawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21112", + "location": { + "type": "Point", + "coordinates": [ + 80.7167, + 7.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c7" + }, + "id": 1320, + "district_id": 16, + "name_en": "Kandalama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21106", + "location": { + "type": "Point", + "coordinates": [ + 80.703507, + 7.887403 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c8" + }, + "id": 1321, + "district_id": 16, + "name_en": "Kavudupelella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21072", + "location": { + "type": "Point", + "coordinates": [ + 80.6258, + 7.5914 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4c9" + }, + "id": 1322, + "district_id": 16, + "name_en": "Kibissa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21122", + "location": { + "type": "Point", + "coordinates": [ + 80.7278, + 7.9397 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ca" + }, + "id": 1323, + "district_id": 16, + "name_en": "Kiwula", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21042", + "location": { + "type": "Point", + "coordinates": [ + 80.625, + 7.4917 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4cb" + }, + "id": 1324, + "district_id": 16, + "name_en": "Kongahawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21500", + "location": { + "type": "Point", + "coordinates": [ + 80.706607, + 7.679932 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4cc" + }, + "id": 1325, + "district_id": 16, + "name_en": "Laggala Pallegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21520", + "location": { + "type": "Point", + "coordinates": [ + 80.6067, + 7.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4cd" + }, + "id": 1326, + "district_id": 16, + "name_en": "Leliambe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21008", + "location": { + "type": "Point", + "coordinates": [ + 80.6519, + 7.4346 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ce" + }, + "id": 1327, + "district_id": 16, + "name_en": "Lenadora", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21094", + "location": { + "type": "Point", + "coordinates": [ + 80.660161, + 7.753507 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4cf" + }, + "id": 1328, + "district_id": 16, + "name_en": "lhala Halmillewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50262", + "location": { + "type": "Point", + "coordinates": [ + 80.6417, + 7.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d0" + }, + "id": 1329, + "district_id": 16, + "name_en": "lllukkumbura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21406", + "location": { + "type": "Point", + "coordinates": [ + 80.6847, + 7.5217 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d1" + }, + "id": 1330, + "district_id": 16, + "name_en": "Madipola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21156", + "location": { + "type": "Point", + "coordinates": [ + 80.5833, + 7.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d2" + }, + "id": 1331, + "district_id": 16, + "name_en": "Maduruoya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51108", + "location": { + "type": "Point", + "coordinates": [ + 80.5842, + 7.696 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d3" + }, + "id": 1332, + "district_id": 16, + "name_en": "Mahawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21140", + "location": { + "type": "Point", + "coordinates": [ + 80.607485, + 7.581804 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d4" + }, + "id": 1333, + "district_id": 16, + "name_en": "Mananwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21144", + "location": { + "type": "Point", + "coordinates": [ + 80.601107, + 7.685106 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d5" + }, + "id": 1334, + "district_id": 16, + "name_en": "Maraka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21554", + "location": { + "type": "Point", + "coordinates": [ + 80.962009, + 7.586801 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d6" + }, + "id": 1335, + "district_id": 16, + "name_en": "Matale", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21000", + "location": { + "type": "Point", + "coordinates": [ + 80.6244, + 7.4717 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d7" + }, + "id": 1336, + "district_id": 16, + "name_en": "Melipitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21055", + "location": { + "type": "Point", + "coordinates": [ + 80.5833, + 7.5458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d8" + }, + "id": 1337, + "district_id": 16, + "name_en": "Metihakka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21062", + "location": { + "type": "Point", + "coordinates": [ + 80.654081, + 7.536495 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4d9" + }, + "id": 1338, + "district_id": 16, + "name_en": "Millawana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21154", + "location": { + "type": "Point", + "coordinates": [ + 80.5772, + 7.6503 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4da" + }, + "id": 1339, + "district_id": 16, + "name_en": "Muwandeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21044", + "location": { + "type": "Point", + "coordinates": [ + 80.660098, + 7.461452 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4db" + }, + "id": 1340, + "district_id": 16, + "name_en": "Nalanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21082", + "location": { + "type": "Point", + "coordinates": [ + 80.635004, + 7.662487 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4dc" + }, + "id": 1341, + "district_id": 16, + "name_en": "Naula", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21090", + "location": { + "type": "Point", + "coordinates": [ + 80.652321, + 7.708132 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4dd" + }, + "id": 1342, + "district_id": 16, + "name_en": "Opalgala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21076", + "location": { + "type": "Point", + "coordinates": [ + 80.698338, + 7.619927 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4de" + }, + "id": 1343, + "district_id": 16, + "name_en": "Pallepola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21152", + "location": { + "type": "Point", + "coordinates": [ + 80.600466, + 7.620686 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4df" + }, + "id": 1344, + "district_id": 16, + "name_en": "Pimburattewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51102", + "location": { + "type": "Point", + "coordinates": [ + 80.5842, + 7.696 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e0" + }, + "id": 1345, + "district_id": 16, + "name_en": "Pulastigama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51050", + "location": { + "type": "Point", + "coordinates": [ + 80.565, + 7.67 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e1" + }, + "id": 1346, + "district_id": 16, + "name_en": "Ranamuregama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21524", + "location": { + "type": "Point", + "coordinates": [ + 80.6067, + 7.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e2" + }, + "id": 1347, + "district_id": 16, + "name_en": "Rattota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21400", + "location": { + "type": "Point", + "coordinates": [ + 80.6847, + 7.5217 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e3" + }, + "id": 1348, + "district_id": 16, + "name_en": "Selagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21058", + "location": { + "type": "Point", + "coordinates": [ + 80.58381, + 7.594457 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e4" + }, + "id": 1349, + "district_id": 16, + "name_en": "Sigiriya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21120", + "location": { + "type": "Point", + "coordinates": [ + 80.755205, + 7.954968 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e5" + }, + "id": 1350, + "district_id": 16, + "name_en": "Sinhagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51378", + "location": { + "type": "Point", + "coordinates": [ + 80.5842, + 7.696 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e6" + }, + "id": 1351, + "district_id": 16, + "name_en": "Sungavila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51052", + "location": { + "type": "Point", + "coordinates": [ + 80.565, + 7.67 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e7" + }, + "id": 1352, + "district_id": 16, + "name_en": "Talagoda Junction", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21506", + "location": { + "type": "Point", + "coordinates": [ + 80.6222, + 7.5722 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e8" + }, + "id": 1353, + "district_id": 16, + "name_en": "Talakiriyagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21116", + "location": { + "type": "Point", + "coordinates": [ + 80.6172, + 7.8206 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4e9" + }, + "id": 1354, + "district_id": 16, + "name_en": "Tamankaduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51089", + "location": { + "type": "Point", + "coordinates": [ + 80.565, + 7.67 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ea" + }, + "id": 1355, + "district_id": 16, + "name_en": "Udasgiriya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21051", + "location": { + "type": "Point", + "coordinates": [ + 80.570342, + 7.535254 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4eb" + }, + "id": 1356, + "district_id": 16, + "name_en": "Udatenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21006", + "location": { + "type": "Point", + "coordinates": [ + 80.65, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ec" + }, + "id": 1357, + "district_id": 16, + "name_en": "Ukuwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21300", + "location": { + "type": "Point", + "coordinates": [ + 80.62996, + 7.423917 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ed" + }, + "id": 1358, + "district_id": 16, + "name_en": "Wahacotte", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21160", + "location": { + "type": "Point", + "coordinates": [ + 80.5972, + 7.7142 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ee" + }, + "id": 1359, + "district_id": 16, + "name_en": "Walawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21048", + "location": { + "type": "Point", + "coordinates": [ + 80.597403, + 7.520365 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ef" + }, + "id": 1360, + "district_id": 16, + "name_en": "Wehigala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21009", + "location": { + "type": "Point", + "coordinates": [ + 80.669112, + 7.409019 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f0" + }, + "id": 1361, + "district_id": 16, + "name_en": "Welangahawatte", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21408", + "location": { + "type": "Point", + "coordinates": [ + 80.6847, + 7.5217 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f1" + }, + "id": 1362, + "district_id": 16, + "name_en": "Wewalawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21114", + "location": { + "type": "Point", + "coordinates": [ + 80.6669, + 7.8103 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f2" + }, + "id": 1363, + "district_id": 16, + "name_en": "Yatawatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "21056", + "location": { + "type": "Point", + "coordinates": [ + 80.578361, + 7.562698 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f3" + }, + "id": 1364, + "district_id": 17, + "name_en": "Akuressa", + "name_si": "අකුරැස්ස", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81400", + "location": { + "type": "Point", + "coordinates": [ + 80.4808, + 6.0964 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f4" + }, + "id": 1365, + "district_id": 17, + "name_en": "Alapaladeniya", + "name_si": "අලපලදෙණිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81475", + "location": { + "type": "Point", + "coordinates": [ + 80.45, + 6.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f5" + }, + "id": 1366, + "district_id": 17, + "name_en": "Aparekka", + "name_si": "අපරැක්ක", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81032", + "location": { + "type": "Point", + "coordinates": [ + 80.621556, + 6.008083 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f6" + }, + "id": 1367, + "district_id": 17, + "name_en": "Athuraliya", + "name_si": "අතුරලීය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81402", + "location": { + "type": "Point", + "coordinates": [ + 80.497879, + 6.069724 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f7" + }, + "id": 1368, + "district_id": 17, + "name_en": "Bengamuwa", + "name_si": "බෙන්ගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81614", + "location": { + "type": "Point", + "coordinates": [ + 80.59808, + 6.253417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f8" + }, + "id": 1369, + "district_id": 17, + "name_en": "Bopagoda", + "name_si": "බෝපගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81412", + "location": { + "type": "Point", + "coordinates": [ + 80.4903, + 6.1561 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4f9" + }, + "id": 1370, + "district_id": 17, + "name_en": "Dampahala", + "name_si": "දම්පහල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81612", + "location": { + "type": "Point", + "coordinates": [ + 80.633081, + 6.259631 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4fa" + }, + "id": 1371, + "district_id": 17, + "name_en": "Deegala Lenama", + "name_si": "දීගල ලෙනම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81452", + "location": { + "type": "Point", + "coordinates": [ + 80.45, + 6.2333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4fb" + }, + "id": 1372, + "district_id": 17, + "name_en": "Deiyandara", + "name_si": "දෙයියන්දර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81320", + "location": { + "type": "Point", + "coordinates": [ + 80.604696, + 6.152388 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4fc" + }, + "id": 1373, + "district_id": 17, + "name_en": "Denagama", + "name_si": "දෙනගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81314", + "location": { + "type": "Point", + "coordinates": [ + 80.642749, + 6.11481 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4fd" + }, + "id": 1374, + "district_id": 17, + "name_en": "Denipitiya", + "name_si": "දෙණිපිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81730", + "location": { + "type": "Point", + "coordinates": [ + 80.45, + 5.9667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4fe" + }, + "id": 1375, + "district_id": 17, + "name_en": "Deniyaya", + "name_si": "දෙණියාය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81500", + "location": { + "type": "Point", + "coordinates": [ + 80.548055, + 6.339732 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e4ff" + }, + "id": 1376, + "district_id": 17, + "name_en": "Derangala", + "name_si": "දෙරණගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81454", + "location": { + "type": "Point", + "coordinates": [ + 80.445492, + 6.229572 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e500" + }, + "id": 1377, + "district_id": 17, + "name_en": "Devinuwara [Dondra]", + "name_si": "දෙවිනුවර [දෙවුන්දර]", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81160", + "location": { + "type": "Point", + "coordinates": [ + 80.6069, + 5.9319 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e501" + }, + "id": 1378, + "district_id": 17, + "name_en": "Dikwella", + "name_si": "දික්වැල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81200", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 5.9667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e502" + }, + "id": 1379, + "district_id": 17, + "name_en": "Diyagaha", + "name_si": "දියගහ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81038", + "location": { + "type": "Point", + "coordinates": [ + 80.5667, + 5.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e503" + }, + "id": 1380, + "district_id": 17, + "name_en": "Diyalape", + "name_si": "දියලපේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81422", + "location": { + "type": "Point", + "coordinates": [ + 80.447911, + 6.121802 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e504" + }, + "id": 1381, + "district_id": 17, + "name_en": "Gandara", + "name_si": "ගන්දර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81170", + "location": { + "type": "Point", + "coordinates": [ + 80.61575, + 5.933629 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e505" + }, + "id": 1382, + "district_id": 17, + "name_en": "Godapitiya", + "name_si": "ගොඩපිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81408", + "location": { + "type": "Point", + "coordinates": [ + 80.480996, + 6.121801 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e506" + }, + "id": 1383, + "district_id": 17, + "name_en": "Gomilamawarala", + "name_si": "ගොමිලමවරල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81072", + "location": { + "type": "Point", + "coordinates": [ + 80.5667, + 6.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e507" + }, + "id": 1384, + "district_id": 17, + "name_en": "Hawpe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80132", + "location": { + "type": "Point", + "coordinates": [ + 80.489743, + 6.129973 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e508" + }, + "id": 1385, + "district_id": 17, + "name_en": "Horapawita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81108", + "location": { + "type": "Point", + "coordinates": [ + 80.5833, + 6.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e509" + }, + "id": 1386, + "district_id": 17, + "name_en": "Kalubowitiyana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81478", + "location": { + "type": "Point", + "coordinates": [ + 80.4, + 6.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e50a" + }, + "id": 1387, + "district_id": 17, + "name_en": "Kamburugamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81750", + "location": { + "type": "Point", + "coordinates": [ + 80.496449, + 5.940612 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e50b" + }, + "id": 1388, + "district_id": 17, + "name_en": "Kamburupitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81100", + "location": { + "type": "Point", + "coordinates": [ + 80.56473, + 6.069847 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e50c" + }, + "id": 1389, + "district_id": 17, + "name_en": "Karagoda Uyangoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81082", + "location": { + "type": "Point", + "coordinates": [ + 80.5193, + 6.0715 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e50d" + }, + "id": 1390, + "district_id": 17, + "name_en": "Karaputugala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81106", + "location": { + "type": "Point", + "coordinates": [ + 80.603484, + 6.07377 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e50e" + }, + "id": 1391, + "district_id": 17, + "name_en": "Karatota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81318", + "location": { + "type": "Point", + "coordinates": [ + 80.6667, + 6.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e50f" + }, + "id": 1392, + "district_id": 17, + "name_en": "Kekanadurra", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81020", + "location": { + "type": "Point", + "coordinates": [ + 80.5193, + 6.0715 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e510" + }, + "id": 1393, + "district_id": 17, + "name_en": "Kiriweldola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81514", + "location": { + "type": "Point", + "coordinates": [ + 80.533507, + 6.372272 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e511" + }, + "id": 1394, + "district_id": 17, + "name_en": "Kiriwelkele", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81456", + "location": { + "type": "Point", + "coordinates": [ + 80.451047, + 6.249957 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e512" + }, + "id": 1395, + "district_id": 17, + "name_en": "Kolawenigama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81522", + "location": { + "type": "Point", + "coordinates": [ + 80.500227, + 6.321671 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e513" + }, + "id": 1396, + "district_id": 17, + "name_en": "Kotapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81480", + "location": { + "type": "Point", + "coordinates": [ + 80.533957, + 6.292393 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e514" + }, + "id": 1397, + "district_id": 17, + "name_en": "Lankagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81526", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 6.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e515" + }, + "id": 1398, + "district_id": 17, + "name_en": "Makandura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81070", + "location": { + "type": "Point", + "coordinates": [ + 80.571982, + 6.137036 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e516" + }, + "id": 1399, + "district_id": 17, + "name_en": "Maliduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81424", + "location": { + "type": "Point", + "coordinates": [ + 80.4167, + 6.1333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e517" + }, + "id": 1400, + "district_id": 17, + "name_en": "Maramba", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81416", + "location": { + "type": "Point", + "coordinates": [ + 80.5035, + 6.1614 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e518" + }, + "id": 1401, + "district_id": 17, + "name_en": "Matara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81000", + "location": { + "type": "Point", + "coordinates": [ + 80.5428, + 5.9486 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e519" + }, + "id": 1402, + "district_id": 17, + "name_en": "Mediripitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81524", + "location": { + "type": "Point", + "coordinates": [ + 80.4667, + 6.35 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e51a" + }, + "id": 1403, + "district_id": 17, + "name_en": "Miella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81312", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e51b" + }, + "id": 1404, + "district_id": 17, + "name_en": "Mirissa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81740", + "location": { + "type": "Point", + "coordinates": [ + 80.452288, + 5.94679 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e51c" + }, + "id": 1405, + "district_id": 17, + "name_en": "Morawaka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81470", + "location": { + "type": "Point", + "coordinates": [ + 80.4833, + 6.25 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e51d" + }, + "id": 1406, + "district_id": 17, + "name_en": "Mulatiyana Junction", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81071", + "location": { + "type": "Point", + "coordinates": [ + 80.5667, + 6.1833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e51e" + }, + "id": 1407, + "district_id": 17, + "name_en": "Nadugala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81092", + "location": { + "type": "Point", + "coordinates": [ + 80.548935, + 5.975464 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e51f" + }, + "id": 1408, + "district_id": 17, + "name_en": "Naimana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81017", + "location": { + "type": "Point", + "coordinates": [ + 80.5193, + 6.0715 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e520" + }, + "id": 1409, + "district_id": 17, + "name_en": "Palatuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81050", + "location": { + "type": "Point", + "coordinates": [ + 80.518656, + 5.984516 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e521" + }, + "id": 1410, + "district_id": 17, + "name_en": "Parapamulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81322", + "location": { + "type": "Point", + "coordinates": [ + 80.61675, + 6.150219 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e522" + }, + "id": 1411, + "district_id": 17, + "name_en": "Pasgoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81615", + "location": { + "type": "Point", + "coordinates": [ + 80.616175, + 6.242998 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e523" + }, + "id": 1412, + "district_id": 17, + "name_en": "Penetiyana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81722", + "location": { + "type": "Point", + "coordinates": [ + 80.450626, + 6.034813 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e524" + }, + "id": 1413, + "district_id": 17, + "name_en": "Pitabeddara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81450", + "location": { + "type": "Point", + "coordinates": [ + 80.45, + 6.2167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e525" + }, + "id": 1414, + "district_id": 17, + "name_en": "Puhulwella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81290", + "location": { + "type": "Point", + "coordinates": [ + 80.619203, + 6.045752 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e526" + }, + "id": 1415, + "district_id": 17, + "name_en": "Radawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81316", + "location": { + "type": "Point", + "coordinates": [ + 80.60726, + 6.124672 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e527" + }, + "id": 1416, + "district_id": 17, + "name_en": "Ransegoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81064", + "location": { + "type": "Point", + "coordinates": [ + 80.5193, + 6.0715 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e528" + }, + "id": 1417, + "district_id": 17, + "name_en": "Rotumba", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81074", + "location": { + "type": "Point", + "coordinates": [ + 80.571151, + 6.229142 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e529" + }, + "id": 1418, + "district_id": 17, + "name_en": "Sultanagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81051", + "location": { + "type": "Point", + "coordinates": [ + 80.5, + 5.9667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e52a" + }, + "id": 1419, + "district_id": 17, + "name_en": "Telijjawila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81060", + "location": { + "type": "Point", + "coordinates": [ + 80.5193, + 6.0715 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e52b" + }, + "id": 1420, + "district_id": 17, + "name_en": "Thihagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81280", + "location": { + "type": "Point", + "coordinates": [ + 80.561851, + 6.011602 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e52c" + }, + "id": 1421, + "district_id": 17, + "name_en": "Urubokka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81600", + "location": { + "type": "Point", + "coordinates": [ + 80.631175, + 6.302863 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e52d" + }, + "id": 1422, + "district_id": 17, + "name_en": "Urugamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81230", + "location": { + "type": "Point", + "coordinates": [ + 80.6437, + 6.0116 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e52e" + }, + "id": 1423, + "district_id": 17, + "name_en": "Urumutta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81414", + "location": { + "type": "Point", + "coordinates": [ + 80.519582, + 6.150181 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e52f" + }, + "id": 1424, + "district_id": 17, + "name_en": "Viharahena", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81508", + "location": { + "type": "Point", + "coordinates": [ + 80.598006, + 6.379073 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e530" + }, + "id": 1425, + "district_id": 17, + "name_en": "Walakanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81294", + "location": { + "type": "Point", + "coordinates": [ + 80.649889, + 6.01655 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e531" + }, + "id": 1426, + "district_id": 17, + "name_en": "Walasgala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81220", + "location": { + "type": "Point", + "coordinates": [ + 80.693678, + 5.981913 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e532" + }, + "id": 1427, + "district_id": 17, + "name_en": "Waralla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81479", + "location": { + "type": "Point", + "coordinates": [ + 80.522519, + 6.277439 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e533" + }, + "id": 1428, + "district_id": 17, + "name_en": "Weligama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81700", + "location": { + "type": "Point", + "coordinates": [ + 80.4167, + 5.9667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e534" + }, + "id": 1429, + "district_id": 17, + "name_en": "Wilpita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81404", + "location": { + "type": "Point", + "coordinates": [ + 80.5167, + 6.1 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e535" + }, + "id": 1430, + "district_id": 17, + "name_en": "Yatiyana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81034", + "location": { + "type": "Point", + "coordinates": [ + 80.603158, + 6.028888 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e536" + }, + "id": 1431, + "district_id": 18, + "name_en": "Ayiwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91516", + "location": { + "type": "Point", + "coordinates": [ + 81.2333, + 7.1 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e537" + }, + "id": 1432, + "district_id": 18, + "name_en": "Badalkumbura", + "name_si": "බඩල්කුඹුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91070", + "location": { + "type": "Point", + "coordinates": [ + 81.234346, + 6.893287 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e538" + }, + "id": 1433, + "district_id": 18, + "name_en": "Baduluwela", + "name_si": "බදුලුවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91058", + "location": { + "type": "Point", + "coordinates": [ + 81.435299, + 7.11307 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e539" + }, + "id": 1434, + "district_id": 18, + "name_en": "Bakinigahawela", + "name_si": "බකිණිගහවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91554", + "location": { + "type": "Point", + "coordinates": [ + 81.2833, + 6.9333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e53a" + }, + "id": 1435, + "district_id": 18, + "name_en": "Balaharuwa", + "name_si": "බලහරුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91295", + "location": { + "type": "Point", + "coordinates": [ + 81.058519, + 6.520177 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e53b" + }, + "id": 1436, + "district_id": 18, + "name_en": "Bibile", + "name_si": "බිබිලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91500", + "location": { + "type": "Point", + "coordinates": [ + 81.2167, + 7.1667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e53c" + }, + "id": 1437, + "district_id": 18, + "name_en": "Buddama", + "name_si": "බුද්ධගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91038", + "location": { + "type": "Point", + "coordinates": [ + 81.486844, + 7.046413 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e53d" + }, + "id": 1438, + "district_id": 18, + "name_en": "Buttala", + "name_si": "බුත්තල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91100", + "location": { + "type": "Point", + "coordinates": [ + 81.2333, + 6.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e53e" + }, + "id": 1439, + "district_id": 18, + "name_en": "Dambagalla", + "name_si": "දඹගල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91050", + "location": { + "type": "Point", + "coordinates": [ + 81.375946, + 6.955743 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e53f" + }, + "id": 1440, + "district_id": 18, + "name_en": "Diyakobala", + "name_si": "දියකොබල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91514", + "location": { + "type": "Point", + "coordinates": [ + 81.2222, + 7.1056 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e540" + }, + "id": 1441, + "district_id": 18, + "name_en": "Dombagahawela", + "name_si": "දොඹගහවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91010", + "location": { + "type": "Point", + "coordinates": [ + 81.441375, + 6.898197 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e541" + }, + "id": 1442, + "district_id": 18, + "name_en": "Ethimalewewa", + "name_si": "ඇතිමලේවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91020", + "location": { + "type": "Point", + "coordinates": [ + 81.3833, + 6.9216 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e542" + }, + "id": 1443, + "district_id": 18, + "name_en": "Ettiliwewa", + "name_si": "ඇත්තිලිවැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91250", + "location": { + "type": "Point", + "coordinates": [ + 81.12, + 6.73 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e543" + }, + "id": 1444, + "district_id": 18, + "name_en": "Galabedda", + "name_si": "ගලබැද්ද", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91008", + "location": { + "type": "Point", + "coordinates": [ + 81.3833, + 6.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e544" + }, + "id": 1445, + "district_id": 18, + "name_en": "Gamewela", + "name_si": "ගමේවැල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90512", + "location": { + "type": "Point", + "coordinates": [ + 81.2, + 6.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e545" + }, + "id": 1446, + "district_id": 18, + "name_en": "Hambegamuwa", + "name_si": "හම්බෙගමුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91308", + "location": { + "type": "Point", + "coordinates": [ + 80.874695, + 6.503718 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e546" + }, + "id": 1447, + "district_id": 18, + "name_en": "Hingurukaduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90508", + "location": { + "type": "Point", + "coordinates": [ + 81.153429, + 6.817257 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e547" + }, + "id": 1448, + "district_id": 18, + "name_en": "Hulandawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91004", + "location": { + "type": "Point", + "coordinates": [ + 81.333215, + 6.868479 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e548" + }, + "id": 1449, + "district_id": 18, + "name_en": "Inginiyagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91040", + "location": { + "type": "Point", + "coordinates": [ + 81.494496, + 7.198617 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e549" + }, + "id": 1450, + "district_id": 18, + "name_en": "Kandaudapanguwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91032", + "location": { + "type": "Point", + "coordinates": [ + 81.5167, + 6.9667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e54a" + }, + "id": 1451, + "district_id": 18, + "name_en": "Kandawinna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91552", + "location": { + "type": "Point", + "coordinates": [ + 81.2833, + 6.9333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e54b" + }, + "id": 1452, + "district_id": 18, + "name_en": "Kataragama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91400", + "location": { + "type": "Point", + "coordinates": [ + 81.3333, + 6.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e54c" + }, + "id": 1453, + "district_id": 18, + "name_en": "Kotagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91512", + "location": { + "type": "Point", + "coordinates": [ + 81.17788, + 7.116448 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e54d" + }, + "id": 1454, + "district_id": 18, + "name_en": "Kotamuduna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90506", + "location": { + "type": "Point", + "coordinates": [ + 81.177651, + 6.892542 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e54e" + }, + "id": 1455, + "district_id": 18, + "name_en": "Kotawehera Mankada", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91312", + "location": { + "type": "Point", + "coordinates": [ + 81.053, + 6.4636 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e54f" + }, + "id": 1456, + "district_id": 18, + "name_en": "Kudawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61226", + "location": { + "type": "Point", + "coordinates": [ + 81.0333, + 6.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e550" + }, + "id": 1457, + "district_id": 18, + "name_en": "Kumbukkana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91098", + "location": { + "type": "Point", + "coordinates": [ + 81.274913, + 6.814795 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e551" + }, + "id": 1458, + "district_id": 18, + "name_en": "Marawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91006", + "location": { + "type": "Point", + "coordinates": [ + 81.381458, + 6.805944 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e552" + }, + "id": 1459, + "district_id": 18, + "name_en": "Mariarawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91052", + "location": { + "type": "Point", + "coordinates": [ + 81.481047, + 6.975969 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e553" + }, + "id": 1460, + "district_id": 18, + "name_en": "Medagana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91550", + "location": { + "type": "Point", + "coordinates": [ + 81.2833, + 6.9333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e554" + }, + "id": 1461, + "district_id": 18, + "name_en": "Medawelagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90518", + "location": { + "type": "Point", + "coordinates": [ + 81.2, + 6.9167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e555" + }, + "id": 1462, + "district_id": 18, + "name_en": "Miyanakandura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90584", + "location": { + "type": "Point", + "coordinates": [ + 81.152967, + 6.869169 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e556" + }, + "id": 1463, + "district_id": 18, + "name_en": "Monaragala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91000", + "location": { + "type": "Point", + "coordinates": [ + 81.35, + 6.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e557" + }, + "id": 1464, + "district_id": 18, + "name_en": "Moretuwegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91108", + "location": { + "type": "Point", + "coordinates": [ + 81.2333, + 6.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e558" + }, + "id": 1465, + "district_id": 18, + "name_en": "Nakkala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91003", + "location": { + "type": "Point", + "coordinates": [ + 81.306082, + 6.887816 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e559" + }, + "id": 1466, + "district_id": 18, + "name_en": "Namunukula", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90580", + "location": { + "type": "Point", + "coordinates": [ + 81.1167, + 6.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e55a" + }, + "id": 1467, + "district_id": 18, + "name_en": "Nannapurawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91519", + "location": { + "type": "Point", + "coordinates": [ + 81.25, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e55b" + }, + "id": 1468, + "district_id": 18, + "name_en": "Nelliyadda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91042", + "location": { + "type": "Point", + "coordinates": [ + 81.408141, + 7.389929 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e55c" + }, + "id": 1469, + "district_id": 18, + "name_en": "Nilgala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91508", + "location": { + "type": "Point", + "coordinates": [ + 81.312806, + 7.215945 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e55d" + }, + "id": 1470, + "district_id": 18, + "name_en": "Obbegoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91007", + "location": { + "type": "Point", + "coordinates": [ + 81.3476, + 6.8786 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e55e" + }, + "id": 1471, + "district_id": 18, + "name_en": "Okkampitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91060", + "location": { + "type": "Point", + "coordinates": [ + 81.29752, + 6.753201 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e55f" + }, + "id": 1472, + "district_id": 18, + "name_en": "Pangura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91002", + "location": { + "type": "Point", + "coordinates": [ + 81.3167, + 6.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e560" + }, + "id": 1473, + "district_id": 18, + "name_en": "Pitakumbura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91505", + "location": { + "type": "Point", + "coordinates": [ + 81.27524, + 7.191575 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e561" + }, + "id": 1474, + "district_id": 18, + "name_en": "Randeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91204", + "location": { + "type": "Point", + "coordinates": [ + 81.1119, + 6.803474 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e562" + }, + "id": 1475, + "district_id": 18, + "name_en": "Ruwalwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91056", + "location": { + "type": "Point", + "coordinates": [ + 81.386203, + 7.017476 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e563" + }, + "id": 1476, + "district_id": 18, + "name_en": "Sella Kataragama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91405", + "location": { + "type": "Point", + "coordinates": [ + 81.3333, + 6.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e564" + }, + "id": 1477, + "district_id": 18, + "name_en": "Siyambalagune", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91202", + "location": { + "type": "Point", + "coordinates": [ + 81.1333, + 6.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e565" + }, + "id": 1478, + "district_id": 18, + "name_en": "Siyambalanduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91030", + "location": { + "type": "Point", + "coordinates": [ + 81.552112, + 6.910581 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e566" + }, + "id": 1479, + "district_id": 18, + "name_en": "Suriara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91306", + "location": { + "type": "Point", + "coordinates": [ + 81.053, + 6.4636 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e567" + }, + "id": 1480, + "district_id": 18, + "name_en": "Tanamalwila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91300", + "location": { + "type": "Point", + "coordinates": [ + 81.1333, + 6.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e568" + }, + "id": 1481, + "district_id": 18, + "name_en": "Uva Gangodagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91054", + "location": { + "type": "Point", + "coordinates": [ + 81.4222, + 7.0056 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e569" + }, + "id": 1482, + "district_id": 18, + "name_en": "Uva Kudaoya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91298", + "location": { + "type": "Point", + "coordinates": [ + 81.2, + 6.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e56a" + }, + "id": 1483, + "district_id": 18, + "name_en": "Uva Pelwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91112", + "location": { + "type": "Point", + "coordinates": [ + 81.2333, + 6.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e56b" + }, + "id": 1484, + "district_id": 18, + "name_en": "Warunagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91198", + "location": { + "type": "Point", + "coordinates": [ + 81.2333, + 6.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e56c" + }, + "id": 1485, + "district_id": 18, + "name_en": "Wedikumbura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91005", + "location": { + "type": "Point", + "coordinates": [ + 81.3833, + 6.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e56d" + }, + "id": 1486, + "district_id": 18, + "name_en": "Weherayaya Handapanagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91206", + "location": { + "type": "Point", + "coordinates": [ + 81.1167, + 6.7778 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e56e" + }, + "id": 1487, + "district_id": 18, + "name_en": "Wellawaya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91200", + "location": { + "type": "Point", + "coordinates": [ + 81.106295, + 6.719458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e56f" + }, + "id": 1488, + "district_id": 18, + "name_en": "Wilaoya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91022", + "location": { + "type": "Point", + "coordinates": [ + 81.3833, + 6.9216 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e570" + }, + "id": 1489, + "district_id": 18, + "name_en": "Yudaganawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51424", + "location": { + "type": "Point", + "coordinates": [ + 81.229725, + 6.776882 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e571" + }, + "id": 1490, + "district_id": 19, + "name_en": "Mullativu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "42000", + "location": { + "type": "Point", + "coordinates": [ + 80.816667, + 9.266667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e572" + }, + "id": 1491, + "district_id": 20, + "name_en": "Agarapathana", + "name_si": "ආගරපතන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22094", + "location": { + "type": "Point", + "coordinates": [ + 80.709671, + 6.824224 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e573" + }, + "id": 1492, + "district_id": 20, + "name_en": "Ambatalawa", + "name_si": "අඹතලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20686", + "location": { + "type": "Point", + "coordinates": [ + 80.6667, + 7.05 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e574" + }, + "id": 1493, + "district_id": 20, + "name_en": "Ambewela", + "name_si": "අඹේවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22216", + "location": { + "type": "Point", + "coordinates": [ + 80.783603, + 6.899935 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e575" + }, + "id": 1494, + "district_id": 20, + "name_en": "Bogawantalawa", + "name_si": "බොගවන්තලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22060", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e576" + }, + "id": 1495, + "district_id": 20, + "name_en": "Bopattalawa", + "name_si": "බෝපත්තලාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22095", + "location": { + "type": "Point", + "coordinates": [ + 80.6694, + 6.9011 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e577" + }, + "id": 1496, + "district_id": 20, + "name_en": "Dagampitiya", + "name_si": "දාගම්පිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20684", + "location": { + "type": "Point", + "coordinates": [ + 80.466144, + 6.977604 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e578" + }, + "id": 1497, + "district_id": 20, + "name_en": "Dayagama Bazaar", + "name_si": "දයගම බසාර්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22096", + "location": { + "type": "Point", + "coordinates": [ + 80.6694, + 6.9011 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e579" + }, + "id": 1498, + "district_id": 20, + "name_en": "Dikoya", + "name_si": "දික්ඔය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22050", + "location": { + "type": "Point", + "coordinates": [ + 80.6272, + 6.8786 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e57a" + }, + "id": 1499, + "district_id": 20, + "name_en": "Doragala", + "name_si": "දොරගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20567", + "location": { + "type": "Point", + "coordinates": [ + 80.5892, + 7.0731 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e57b" + }, + "id": 1500, + "district_id": 20, + "name_en": "Dunukedeniya", + "name_si": "දුනුකෙදෙණිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22002", + "location": { + "type": "Point", + "coordinates": [ + 80.632911, + 6.982643 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e57c" + }, + "id": 1501, + "district_id": 20, + "name_en": "Egodawela", + "name_si": "එගොඩවෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90013", + "location": { + "type": "Point", + "coordinates": [ + 80.662636, + 7.024081 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e57d" + }, + "id": 1502, + "district_id": 20, + "name_en": "Ekiriya", + "name_si": "ඇකිරිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20732", + "location": { + "type": "Point", + "coordinates": [ + 80.757167, + 7.148834 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e57e" + }, + "id": 1503, + "district_id": 20, + "name_en": "Elamulla", + "name_si": "ඇලමුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20742", + "location": { + "type": "Point", + "coordinates": [ + 80.8, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e57f" + }, + "id": 1504, + "district_id": 20, + "name_en": "Ginigathena", + "name_si": "ගිනිගතැන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20680", + "location": { + "type": "Point", + "coordinates": [ + 80.4894, + 6.9864 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e580" + }, + "id": 1505, + "district_id": 20, + "name_en": "Gonakele", + "name_si": "ගොනාකැලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22226", + "location": { + "type": "Point", + "coordinates": [ + 80.8194, + 6.9917 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e581" + }, + "id": 1506, + "district_id": 20, + "name_en": "Haggala", + "name_si": "හග්ගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22208", + "location": { + "type": "Point", + "coordinates": [ + 80.77, + 6.9697 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e582" + }, + "id": 1507, + "district_id": 20, + "name_en": "Halgranoya", + "name_si": "හාල්ගරනඔය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22240", + "location": { + "type": "Point", + "coordinates": [ + 80.8917, + 7.0417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e583" + }, + "id": 1508, + "district_id": 20, + "name_en": "Hangarapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22044", + "location": { + "type": "Point", + "coordinates": [ + 80.464959, + 6.932637 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e584" + }, + "id": 1509, + "district_id": 20, + "name_en": "Hapugastalawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20668", + "location": { + "type": "Point", + "coordinates": [ + 80.5667, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e585" + }, + "id": 1510, + "district_id": 20, + "name_en": "Harasbedda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22262", + "location": { + "type": "Point", + "coordinates": [ + 80.876477, + 7.04738 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e586" + }, + "id": 1511, + "district_id": 20, + "name_en": "Hatton", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22000", + "location": { + "type": "Point", + "coordinates": [ + 80.599855, + 6.899356 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e587" + }, + "id": 1512, + "district_id": 20, + "name_en": "Hewaheta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20440", + "location": { + "type": "Point", + "coordinates": [ + 80.7547, + 7.1108 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e588" + }, + "id": 1513, + "district_id": 20, + "name_en": "Hitigegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22046", + "location": { + "type": "Point", + "coordinates": [ + 80.457154, + 6.947521 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e589" + }, + "id": 1514, + "district_id": 20, + "name_en": "Jangulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90063", + "location": { + "type": "Point", + "coordinates": [ + 80.8917, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e58a" + }, + "id": 1515, + "district_id": 20, + "name_en": "Kalaganwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22282", + "location": { + "type": "Point", + "coordinates": [ + 80.902715, + 7.104232 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e58b" + }, + "id": 1516, + "district_id": 20, + "name_en": "Kandapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22220", + "location": { + "type": "Point", + "coordinates": [ + 80.802798, + 6.981495 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e58c" + }, + "id": 1517, + "district_id": 20, + "name_en": "Karandagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20738", + "location": { + "type": "Point", + "coordinates": [ + 80.899844, + 7.057024 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e58d" + }, + "id": 1518, + "district_id": 20, + "name_en": "Keerthi Bandarapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22274", + "location": { + "type": "Point", + "coordinates": [ + 80.8581, + 7.1108 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e58e" + }, + "id": 1519, + "district_id": 20, + "name_en": "Kiribathkumbura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20442", + "location": { + "type": "Point", + "coordinates": [ + 80.7547, + 7.1108 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e58f" + }, + "id": 1520, + "district_id": 20, + "name_en": "Kotiyagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "91024", + "location": { + "type": "Point", + "coordinates": [ + 80.68557, + 6.784171 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e590" + }, + "id": 1521, + "district_id": 20, + "name_en": "Kotmale", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20560", + "location": { + "type": "Point", + "coordinates": [ + 80.5942, + 7.0214 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e591" + }, + "id": 1522, + "district_id": 20, + "name_en": "Kottellena", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22040", + "location": { + "type": "Point", + "coordinates": [ + 80.50215, + 6.893287 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e592" + }, + "id": 1523, + "district_id": 20, + "name_en": "Kumbalgamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22272", + "location": { + "type": "Point", + "coordinates": [ + 80.853852, + 7.109883 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e593" + }, + "id": 1524, + "district_id": 20, + "name_en": "Kumbukwela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22246", + "location": { + "type": "Point", + "coordinates": [ + 80.887479, + 7.055729 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e594" + }, + "id": 1525, + "district_id": 20, + "name_en": "Kurupanawela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22252", + "location": { + "type": "Point", + "coordinates": [ + 80.920981, + 7.01894 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e595" + }, + "id": 1526, + "district_id": 20, + "name_en": "Labukele", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20592", + "location": { + "type": "Point", + "coordinates": [ + 80.6919, + 7.0442 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e596" + }, + "id": 1527, + "district_id": 20, + "name_en": "Laxapana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22034", + "location": { + "type": "Point", + "coordinates": [ + 80.5088, + 6.8952 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e597" + }, + "id": 1528, + "district_id": 20, + "name_en": "Lindula", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22090", + "location": { + "type": "Point", + "coordinates": [ + 80.684129, + 6.920326 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e598" + }, + "id": 1529, + "district_id": 20, + "name_en": "Madulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22256", + "location": { + "type": "Point", + "coordinates": [ + 80.918204, + 7.047667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e599" + }, + "id": 1530, + "district_id": 20, + "name_en": "Mandaram Nuwara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20744", + "location": { + "type": "Point", + "coordinates": [ + 80.8, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e59a" + }, + "id": 1531, + "district_id": 20, + "name_en": "Maskeliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22070", + "location": { + "type": "Point", + "coordinates": [ + 80.568585, + 6.831379 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e59b" + }, + "id": 1532, + "district_id": 20, + "name_en": "Maswela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20566", + "location": { + "type": "Point", + "coordinates": [ + 80.6439, + 7.072503 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e59c" + }, + "id": 1533, + "district_id": 20, + "name_en": "Maturata", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20748", + "location": { + "type": "Point", + "coordinates": [ + 80.8, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e59d" + }, + "id": 1534, + "district_id": 20, + "name_en": "Mipanawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22254", + "location": { + "type": "Point", + "coordinates": [ + 80.9167, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e59e" + }, + "id": 1535, + "district_id": 20, + "name_en": "Mipilimana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22214", + "location": { + "type": "Point", + "coordinates": [ + 80.8167, + 6.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e59f" + }, + "id": 1536, + "district_id": 20, + "name_en": "Morahenagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22036", + "location": { + "type": "Point", + "coordinates": [ + 80.478482, + 6.942625 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a0" + }, + "id": 1537, + "district_id": 20, + "name_en": "Munwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20752", + "location": { + "type": "Point", + "coordinates": [ + 80.809403, + 7.11534 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a1" + }, + "id": 1538, + "district_id": 20, + "name_en": "Nayapana Janapadaya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20568", + "location": { + "type": "Point", + "coordinates": [ + 80.5892, + 7.0731 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a2" + }, + "id": 1539, + "district_id": 20, + "name_en": "Nildandahinna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22280", + "location": { + "type": "Point", + "coordinates": [ + 80.8833, + 7.0833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a3" + }, + "id": 1540, + "district_id": 20, + "name_en": "Nissanka Uyana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22075", + "location": { + "type": "Point", + "coordinates": [ + 80.5703, + 6.8358 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a4" + }, + "id": 1541, + "district_id": 20, + "name_en": "Norwood", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22058", + "location": { + "type": "Point", + "coordinates": [ + 80.602181, + 6.835736 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a5" + }, + "id": 1542, + "district_id": 20, + "name_en": "Nuwara Eliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22200", + "location": { + "type": "Point", + "coordinates": [ + 80.77, + 6.9697 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a6" + }, + "id": 1543, + "district_id": 20, + "name_en": "Padiyapelella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20750", + "location": { + "type": "Point", + "coordinates": [ + 80.798544, + 7.092506 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a7" + }, + "id": 1544, + "district_id": 20, + "name_en": "Pallebowala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20734", + "location": { + "type": "Point", + "coordinates": [ + 80.8108, + 7.1151 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a8" + }, + "id": 1545, + "district_id": 20, + "name_en": "Panvila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20830", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5a9" + }, + "id": 1546, + "district_id": 20, + "name_en": "Pitawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20682", + "location": { + "type": "Point", + "coordinates": [ + 80.452257, + 6.998608 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5aa" + }, + "id": 1547, + "district_id": 20, + "name_en": "Pundaluoya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22120", + "location": { + "type": "Point", + "coordinates": [ + 80.676081, + 7.018255 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5ab" + }, + "id": 1548, + "district_id": 20, + "name_en": "Ramboda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20590", + "location": { + "type": "Point", + "coordinates": [ + 80.69534, + 7.060427 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5ac" + }, + "id": 1549, + "district_id": 20, + "name_en": "Rikillagaskada", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20730", + "location": { + "type": "Point", + "coordinates": [ + 80.78095, + 7.145849 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5ad" + }, + "id": 1550, + "district_id": 20, + "name_en": "Rozella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22008", + "location": { + "type": "Point", + "coordinates": [ + 80.5531, + 6.9306 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5ae" + }, + "id": 1551, + "district_id": 20, + "name_en": "Rupaha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22245", + "location": { + "type": "Point", + "coordinates": [ + 80.9, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5af" + }, + "id": 1552, + "district_id": 20, + "name_en": "Ruwaneliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22212", + "location": { + "type": "Point", + "coordinates": [ + 80.772258, + 6.93721 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b0" + }, + "id": 1553, + "district_id": 20, + "name_en": "Santhipura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22202", + "location": { + "type": "Point", + "coordinates": [ + 80.77, + 6.9697 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b1" + }, + "id": 1554, + "district_id": 20, + "name_en": "Talawakele", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22100", + "location": { + "type": "Point", + "coordinates": [ + 80.6611, + 6.9367 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b2" + }, + "id": 1555, + "district_id": 20, + "name_en": "Tawalantenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "20838", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 7.0667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b3" + }, + "id": 1556, + "district_id": 20, + "name_en": "Teripeha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22287", + "location": { + "type": "Point", + "coordinates": [ + 80.9244, + 7.1189 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b4" + }, + "id": 1557, + "district_id": 20, + "name_en": "Udamadura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22285", + "location": { + "type": "Point", + "coordinates": [ + 80.914817, + 7.094106 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b5" + }, + "id": 1558, + "district_id": 20, + "name_en": "Udapussallawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22250", + "location": { + "type": "Point", + "coordinates": [ + 80.9111, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b6" + }, + "id": 1559, + "district_id": 20, + "name_en": "Uva Deegalla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90062", + "location": { + "type": "Point", + "coordinates": [ + 80.8917, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b7" + }, + "id": 1560, + "district_id": 20, + "name_en": "Uva Uduwara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90061", + "location": { + "type": "Point", + "coordinates": [ + 80.8917, + 7.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b8" + }, + "id": 1561, + "district_id": 20, + "name_en": "Uvaparanagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90230", + "location": { + "type": "Point", + "coordinates": [ + 80.7912, + 6.8832 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5b9" + }, + "id": 1562, + "district_id": 20, + "name_en": "Walapane", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22270", + "location": { + "type": "Point", + "coordinates": [ + 80.860522, + 7.091924 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5ba" + }, + "id": 1563, + "district_id": 20, + "name_en": "Watawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22010", + "location": { + "type": "Point", + "coordinates": [ + 80.533199, + 6.951339 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5bb" + }, + "id": 1564, + "district_id": 20, + "name_en": "Widulipura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22032", + "location": { + "type": "Point", + "coordinates": [ + 80.5088, + 6.8952 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5bc" + }, + "id": 1565, + "district_id": 20, + "name_en": "Wijebahukanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "22018", + "location": { + "type": "Point", + "coordinates": [ + 80.6167, + 7.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5bd" + }, + "id": 1566, + "district_id": 21, + "name_en": "Attanakadawala", + "name_si": "අත්තනගඩවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51235", + "location": { + "type": "Point", + "coordinates": [ + 80.828104, + 7.903734 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5be" + }, + "id": 1567, + "district_id": 21, + "name_en": "Bakamuna", + "name_si": "බකමූණ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51250", + "location": { + "type": "Point", + "coordinates": [ + 80.8167, + 7.7833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5bf" + }, + "id": 1568, + "district_id": 21, + "name_en": "Diyabeduma", + "name_si": "දියබෙදුම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51225", + "location": { + "type": "Point", + "coordinates": [ + 80.898332, + 7.89851 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c0" + }, + "id": 1569, + "district_id": 21, + "name_en": "Elahera", + "name_si": "ඇලහැර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51258", + "location": { + "type": "Point", + "coordinates": [ + 80.7883, + 7.7244 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c1" + }, + "id": 1570, + "district_id": 21, + "name_en": "Giritale", + "name_si": "ගිරිතලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51026", + "location": { + "type": "Point", + "coordinates": [ + 80.9333, + 7.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c2" + }, + "id": 1571, + "district_id": 21, + "name_en": "Hingurakdamana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51408", + "location": { + "type": "Point", + "coordinates": [ + 81.011875, + 8.055896 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c3" + }, + "id": 1572, + "district_id": 21, + "name_en": "Hingurakgoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51400", + "location": { + "type": "Point", + "coordinates": [ + 80.948686, + 8.036505 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c4" + }, + "id": 1573, + "district_id": 21, + "name_en": "Jayanthipura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51024", + "location": { + "type": "Point", + "coordinates": [ + 81, + 8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c5" + }, + "id": 1574, + "district_id": 21, + "name_en": "Kalingaela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51002", + "location": { + "type": "Point", + "coordinates": [ + 81.0417, + 7.9583 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c6" + }, + "id": 1575, + "district_id": 21, + "name_en": "Lakshauyana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51006", + "location": { + "type": "Point", + "coordinates": [ + 81.0417, + 7.9583 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c7" + }, + "id": 1576, + "district_id": 21, + "name_en": "Mankemi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30442", + "location": { + "type": "Point", + "coordinates": [ + 81.25, + 7.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c8" + }, + "id": 1577, + "district_id": 21, + "name_en": "Minneriya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51410", + "location": { + "type": "Point", + "coordinates": [ + 80.903215, + 8.036343 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5c9" + }, + "id": 1578, + "district_id": 21, + "name_en": "Onegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51004", + "location": { + "type": "Point", + "coordinates": [ + 81.090758, + 7.992203 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5ca" + }, + "id": 1579, + "district_id": 21, + "name_en": "Orubendi Siyambalawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51256", + "location": { + "type": "Point", + "coordinates": [ + 80.812093, + 7.751972 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5cb" + }, + "id": 1580, + "district_id": 21, + "name_en": "Palugasdamana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51046", + "location": { + "type": "Point", + "coordinates": [ + 81.0833, + 8.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5cc" + }, + "id": 1581, + "district_id": 21, + "name_en": "Panichankemi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30444", + "location": { + "type": "Point", + "coordinates": [ + 81.25, + 7.9833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5cd" + }, + "id": 1582, + "district_id": 21, + "name_en": "Polonnaruwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51000", + "location": { + "type": "Point", + "coordinates": [ + 81.007138, + 7.940295 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5ce" + }, + "id": 1583, + "district_id": 21, + "name_en": "Talpotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51044", + "location": { + "type": "Point", + "coordinates": [ + 81.0833, + 8.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5cf" + }, + "id": 1584, + "district_id": 21, + "name_en": "Tambala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51049", + "location": { + "type": "Point", + "coordinates": [ + 81.0833, + 8.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d0" + }, + "id": 1585, + "district_id": 21, + "name_en": "Unagalavehera", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51008", + "location": { + "type": "Point", + "coordinates": [ + 80.995549, + 8.001006 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d1" + }, + "id": 1586, + "district_id": 21, + "name_en": "Wijayabapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51042", + "location": { + "type": "Point", + "coordinates": [ + 81.0833, + 8.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d2" + }, + "id": 1587, + "district_id": 22, + "name_en": "Adippala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61012", + "location": { + "type": "Point", + "coordinates": [ + 79.8417, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d3" + }, + "id": 1588, + "district_id": 22, + "name_en": "Alutgama", + "name_si": "අළුත්ගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "12080", + "location": { + "type": "Point", + "coordinates": [ + 79.9333, + 7.7667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d4" + }, + "id": 1589, + "district_id": 22, + "name_en": "Alutwewa", + "name_si": "අළුත්වැව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51014", + "location": { + "type": "Point", + "coordinates": [ + 79.95, + 7.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d5" + }, + "id": 1590, + "district_id": 22, + "name_en": "Ambakandawila", + "name_si": "අඹකඳවිල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61024", + "location": { + "type": "Point", + "coordinates": [ + 79.8, + 7.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d6" + }, + "id": 1591, + "district_id": 22, + "name_en": "Anamaduwa", + "name_si": "ආනමඩුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61500", + "location": { + "type": "Point", + "coordinates": [ + 80.00353, + 7.881625 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d7" + }, + "id": 1592, + "district_id": 22, + "name_en": "Andigama", + "name_si": "අඬිගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61508", + "location": { + "type": "Point", + "coordinates": [ + 79.9528, + 7.7775 + ] + } +}, +{ + "_id": { + "$oid": "66b9b85904d6a7445fc4e5d8" + }, + "id": 1593, + "district_id": 22, + "name_en": "Angunawila", + "name_si": "අඟුණවිල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61264", + "location": { + "type": "Point", + "coordinates": [ + 79.85, + 7.7667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e49b" + }, + "id": 1594, + "district_id": 22, + "name_en": "Attawilluwa", + "name_si": "අත්තවිල්ලුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61328", + "location": { + "type": "Point", + "coordinates": [ + 79.8833, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e49c" + }, + "id": 1595, + "district_id": 22, + "name_en": "Bangadeniya", + "name_si": "බංගදෙණිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61238", + "location": { + "type": "Point", + "coordinates": [ + 79.809055, + 7.619471 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e49d" + }, + "id": 1596, + "district_id": 22, + "name_en": "Baranankattuwa", + "name_si": "බරණන්කට්ටුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61262", + "location": { + "type": "Point", + "coordinates": [ + 79.872624, + 7.803253 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e49e" + }, + "id": 1597, + "district_id": 22, + "name_en": "Battuluoya", + "name_si": "බත්තුලුඔය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61246", + "location": { + "type": "Point", + "coordinates": [ + 79.817455, + 7.734655 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e49f" + }, + "id": 1598, + "district_id": 22, + "name_en": "Bujjampola", + "name_si": "බුජ්ජම්පොල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61136", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 7.3333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a0" + }, + "id": 1599, + "district_id": 22, + "name_en": "Chilaw", + "name_si": "හලාවත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61000", + "location": { + "type": "Point", + "coordinates": [ + 79.7953, + 7.5758 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a1" + }, + "id": 1600, + "district_id": 22, + "name_en": "Dalukana", + "name_si": "දලුකන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51092", + "location": { + "type": "Point", + "coordinates": [ + 79.85, + 7.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a2" + }, + "id": 1601, + "district_id": 22, + "name_en": "Dankotuwa", + "name_si": "දංකොටුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61130", + "location": { + "type": "Point", + "coordinates": [ + 79.88505, + 7.300443 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a3" + }, + "id": 1602, + "district_id": 22, + "name_en": "Dewagala", + "name_si": "දේවගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51094", + "location": { + "type": "Point", + "coordinates": [ + 79.85, + 7.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a4" + }, + "id": 1603, + "district_id": 22, + "name_en": "Dummalasuriya", + "name_si": "දුම්මලසූරිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "60260", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 7.4833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a5" + }, + "id": 1604, + "district_id": 22, + "name_en": "Dunkannawa", + "name_si": "දුන්කන්නාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61192", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a6" + }, + "id": 1605, + "district_id": 22, + "name_en": "Eluwankulama", + "name_si": "එළුවන්කුලම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61308", + "location": { + "type": "Point", + "coordinates": [ + 79.859928, + 8.332832 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a7" + }, + "id": 1606, + "district_id": 22, + "name_en": "Ettale", + "name_si": "ඇත්තලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61343", + "location": { + "type": "Point", + "coordinates": [ + 79.717306, + 8.097416 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a8" + }, + "id": 1607, + "district_id": 22, + "name_en": "Galamuna", + "name_si": "ගලමුන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51416", + "location": { + "type": "Point", + "coordinates": [ + 79.872371, + 7.464661 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4a9" + }, + "id": 1608, + "district_id": 22, + "name_en": "Galmuruwa", + "name_si": "ගල්මුරුව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61233", + "location": { + "type": "Point", + "coordinates": [ + 79.895774, + 7.501718 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4aa" + }, + "id": 1609, + "district_id": 22, + "name_en": "Hansayapalama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51098", + "location": { + "type": "Point", + "coordinates": [ + 79.85, + 7.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ab" + }, + "id": 1610, + "district_id": 22, + "name_en": "Ihala Kottaramulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61154", + "location": { + "type": "Point", + "coordinates": [ + 79.871755, + 7.383069 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ac" + }, + "id": 1611, + "district_id": 22, + "name_en": "Ilippadeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61018", + "location": { + "type": "Point", + "coordinates": [ + 79.826233, + 7.567036 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ad" + }, + "id": 1612, + "district_id": 22, + "name_en": "Inginimitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61514", + "location": { + "type": "Point", + "coordinates": [ + 80.112055, + 7.964099 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ae" + }, + "id": 1613, + "district_id": 22, + "name_en": "Ismailpuram", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61302", + "location": { + "type": "Point", + "coordinates": [ + 79.8167, + 8.0333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4af" + }, + "id": 1614, + "district_id": 22, + "name_en": "Jayasiripura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51246", + "location": { + "type": "Point", + "coordinates": [ + 79.8167, + 7.6333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b0" + }, + "id": 1615, + "district_id": 22, + "name_en": "Kakkapalliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61236", + "location": { + "type": "Point", + "coordinates": [ + 79.8267, + 7.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b1" + }, + "id": 1616, + "district_id": 22, + "name_en": "Kalkudah", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30410", + "location": { + "type": "Point", + "coordinates": [ + 79.7167, + 8.1167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b2" + }, + "id": 1617, + "district_id": 22, + "name_en": "Kalladiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61534", + "location": { + "type": "Point", + "coordinates": [ + 79.9333, + 7.95 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b3" + }, + "id": 1618, + "district_id": 22, + "name_en": "Kandakuliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61358", + "location": { + "type": "Point", + "coordinates": [ + 79.9569, + 7.98 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b4" + }, + "id": 1619, + "district_id": 22, + "name_en": "Karathivu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61307", + "location": { + "type": "Point", + "coordinates": [ + 79.832662, + 8.192511 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b5" + }, + "id": 1620, + "district_id": 22, + "name_en": "Karawitagara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61022", + "location": { + "type": "Point", + "coordinates": [ + 79.86173, + 7.572417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b6" + }, + "id": 1621, + "district_id": 22, + "name_en": "Karuwalagaswewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61314", + "location": { + "type": "Point", + "coordinates": [ + 79.94267, + 8.037625 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b7" + }, + "id": 1622, + "district_id": 22, + "name_en": "Katuneriya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61180", + "location": { + "type": "Point", + "coordinates": [ + 79.8333, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b8" + }, + "id": 1623, + "district_id": 22, + "name_en": "Koswatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61158", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 7.3667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4b9" + }, + "id": 1624, + "district_id": 22, + "name_en": "Kottantivu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61252", + "location": { + "type": "Point", + "coordinates": [ + 79.7833, + 7.85 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ba" + }, + "id": 1625, + "district_id": 22, + "name_en": "Kottapitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51244", + "location": { + "type": "Point", + "coordinates": [ + 79.815394, + 7.63568 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4bb" + }, + "id": 1626, + "district_id": 22, + "name_en": "Kottukachchiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61532", + "location": { + "type": "Point", + "coordinates": [ + 79.954577, + 7.938617 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4bc" + }, + "id": 1627, + "district_id": 22, + "name_en": "Kumarakattuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61032", + "location": { + "type": "Point", + "coordinates": [ + 79.886873, + 7.661964 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4bd" + }, + "id": 1628, + "district_id": 22, + "name_en": "Kurinjanpitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61356", + "location": { + "type": "Point", + "coordinates": [ + 79.9569, + 7.98 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4be" + }, + "id": 1629, + "district_id": 22, + "name_en": "Kuruketiyawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61516", + "location": { + "type": "Point", + "coordinates": [ + 80.05, + 8.0167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4bf" + }, + "id": 1630, + "district_id": 22, + "name_en": "Lunuwila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61150", + "location": { + "type": "Point", + "coordinates": [ + 79.85725, + 7.350819 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c0" + }, + "id": 1631, + "district_id": 22, + "name_en": "Madampe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61230", + "location": { + "type": "Point", + "coordinates": [ + 79.8333, + 7.5 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c1" + }, + "id": 1632, + "district_id": 22, + "name_en": "Madurankuliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61270", + "location": { + "type": "Point", + "coordinates": [ + 79.836449, + 7.896391 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c2" + }, + "id": 1633, + "district_id": 22, + "name_en": "Mahakumbukkadawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61272", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 7.85 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c3" + }, + "id": 1634, + "district_id": 22, + "name_en": "Mahauswewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61512", + "location": { + "type": "Point", + "coordinates": [ + 80.0683, + 7.9575 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c4" + }, + "id": 1635, + "district_id": 22, + "name_en": "Mampitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51090", + "location": { + "type": "Point", + "coordinates": [ + 79.85, + 7.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c5" + }, + "id": 1636, + "district_id": 22, + "name_en": "Mampuri", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61341", + "location": { + "type": "Point", + "coordinates": [ + 79.7411, + 7.9964 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c6" + }, + "id": 1637, + "district_id": 22, + "name_en": "Mangalaeliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61266", + "location": { + "type": "Point", + "coordinates": [ + 79.85, + 7.775 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c7" + }, + "id": 1638, + "district_id": 22, + "name_en": "Marawila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61210", + "location": { + "type": "Point", + "coordinates": [ + 79.8322, + 7.4094 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c8" + }, + "id": 1639, + "district_id": 22, + "name_en": "Mudalakkuliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61506", + "location": { + "type": "Point", + "coordinates": [ + 79.977428, + 7.799533 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4c9" + }, + "id": 1640, + "district_id": 22, + "name_en": "Mugunuwatawana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61014", + "location": { + "type": "Point", + "coordinates": [ + 79.854684, + 7.58487 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ca" + }, + "id": 1641, + "district_id": 22, + "name_en": "Mukkutoduwawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61274", + "location": { + "type": "Point", + "coordinates": [ + 79.75648, + 7.928236 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4cb" + }, + "id": 1642, + "district_id": 22, + "name_en": "Mundel", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61250", + "location": { + "type": "Point", + "coordinates": [ + 79.8283, + 7.7958 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4cc" + }, + "id": 1643, + "district_id": 22, + "name_en": "Muttibendiwila", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61195", + "location": { + "type": "Point", + "coordinates": [ + 79.8833, + 7.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4cd" + }, + "id": 1644, + "district_id": 22, + "name_en": "Nainamadama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61120", + "location": { + "type": "Point", + "coordinates": [ + 79.8837, + 7.3714 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ce" + }, + "id": 1645, + "district_id": 22, + "name_en": "Nalladarankattuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61244", + "location": { + "type": "Point", + "coordinates": [ + 79.844243, + 7.689152 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4cf" + }, + "id": 1646, + "district_id": 22, + "name_en": "Nattandiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61190", + "location": { + "type": "Point", + "coordinates": [ + 79.8683, + 7.4086 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d0" + }, + "id": 1647, + "district_id": 22, + "name_en": "Nawagattegama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61520", + "location": { + "type": "Point", + "coordinates": [ + 80.1167, + 8 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d1" + }, + "id": 1648, + "district_id": 22, + "name_en": "Nelumwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51096", + "location": { + "type": "Point", + "coordinates": [ + 79.85, + 7.3167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d2" + }, + "id": 1649, + "district_id": 22, + "name_en": "Norachcholai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61342", + "location": { + "type": "Point", + "coordinates": [ + 79.7411, + 7.9964 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d3" + }, + "id": 1650, + "district_id": 22, + "name_en": "Pallama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61040", + "location": { + "type": "Point", + "coordinates": [ + 79.918239, + 7.681225 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d4" + }, + "id": 1651, + "district_id": 22, + "name_en": "Palliwasalturai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61354", + "location": { + "type": "Point", + "coordinates": [ + 79.9569, + 7.98 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d5" + }, + "id": 1652, + "district_id": 22, + "name_en": "Panirendawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61234", + "location": { + "type": "Point", + "coordinates": [ + 79.886377, + 7.542426 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d6" + }, + "id": 1653, + "district_id": 22, + "name_en": "Parakramasamudraya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51016", + "location": { + "type": "Point", + "coordinates": [ + 79.95, + 7.8667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d7" + }, + "id": 1654, + "district_id": 22, + "name_en": "Pothuwatawana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61162", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 7.4833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d8" + }, + "id": 1655, + "district_id": 22, + "name_en": "Puttalam", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61300", + "location": { + "type": "Point", + "coordinates": [ + 79.841209, + 8.043613 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4d9" + }, + "id": 1656, + "district_id": 22, + "name_en": "Puttalam Cement Factory", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61326", + "location": { + "type": "Point", + "coordinates": [ + 79.8833, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4da" + }, + "id": 1657, + "district_id": 22, + "name_en": "Rajakadaluwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61242", + "location": { + "type": "Point", + "coordinates": [ + 79.828283, + 7.650515 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4db" + }, + "id": 1658, + "district_id": 22, + "name_en": "Saliyawewa Junction", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61324", + "location": { + "type": "Point", + "coordinates": [ + 79.8833, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4dc" + }, + "id": 1659, + "district_id": 22, + "name_en": "Serukele", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61042", + "location": { + "type": "Point", + "coordinates": [ + 79.9167, + 7.7333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4dd" + }, + "id": 1660, + "district_id": 22, + "name_en": "Siyambalagashene", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61504", + "location": { + "type": "Point", + "coordinates": [ + 79.978, + 7.8239 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4de" + }, + "id": 1661, + "district_id": 22, + "name_en": "Tabbowa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61322", + "location": { + "type": "Point", + "coordinates": [ + 79.8833, + 7.4167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4df" + }, + "id": 1662, + "district_id": 22, + "name_en": "Talawila Church", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61344", + "location": { + "type": "Point", + "coordinates": [ + 79.7411, + 7.9964 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e0" + }, + "id": 1663, + "district_id": 22, + "name_en": "Toduwawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61224", + "location": { + "type": "Point", + "coordinates": [ + 79.8022, + 7.4861 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e1" + }, + "id": 1664, + "district_id": 22, + "name_en": "Udappuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61004", + "location": { + "type": "Point", + "coordinates": [ + 79.7953, + 7.5758 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e2" + }, + "id": 1665, + "district_id": 22, + "name_en": "Uridyawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61502", + "location": { + "type": "Point", + "coordinates": [ + 79.978, + 7.8239 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e3" + }, + "id": 1666, + "district_id": 22, + "name_en": "Vanathawilluwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61306", + "location": { + "type": "Point", + "coordinates": [ + 79.8461, + 8.17001 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e4" + }, + "id": 1667, + "district_id": 22, + "name_en": "Waikkal", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61110", + "location": { + "type": "Point", + "coordinates": [ + 79.85, + 7.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e5" + }, + "id": 1668, + "district_id": 22, + "name_en": "Watugahamulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61198", + "location": { + "type": "Point", + "coordinates": [ + 79.9, + 7.4667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e6" + }, + "id": 1669, + "district_id": 22, + "name_en": "Wennappuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61170", + "location": { + "type": "Point", + "coordinates": [ + 79.850112, + 7.35048 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e7" + }, + "id": 1670, + "district_id": 22, + "name_en": "Wijeyakatupotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61006", + "location": { + "type": "Point", + "coordinates": [ + 79.7953, + 7.5758 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e8" + }, + "id": 1671, + "district_id": 22, + "name_en": "Wilpotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61008", + "location": { + "type": "Point", + "coordinates": [ + 79.7953, + 7.5758 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4e9" + }, + "id": 1672, + "district_id": 22, + "name_en": "Yodaela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "51422", + "location": { + "type": "Point", + "coordinates": [ + 79.8667, + 7.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ea" + }, + "id": 1673, + "district_id": 22, + "name_en": "Yogiyana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "61144", + "location": { + "type": "Point", + "coordinates": [ + 79.924213, + 7.286035 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4eb" + }, + "id": 1674, + "district_id": 23, + "name_en": "Akarella", + "name_si": "අකරැල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70082", + "location": { + "type": "Point", + "coordinates": [ + 80.644197, + 6.59053 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ec" + }, + "id": 1675, + "district_id": 23, + "name_en": "Amunumulla", + "name_si": "අමුනුමුල්ල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90204", + "location": { + "type": "Point", + "coordinates": [ + 80.75, + 6.7333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ed" + }, + "id": 1676, + "district_id": 23, + "name_en": "Atakalanpanna", + "name_si": "අටකලන්පන්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70294", + "location": { + "type": "Point", + "coordinates": [ + 80.6, + 6.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ee" + }, + "id": 1677, + "district_id": 23, + "name_en": "Ayagama", + "name_si": "අයගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70024", + "location": { + "type": "Point", + "coordinates": [ + 80.317329, + 6.63662 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ef" + }, + "id": 1678, + "district_id": 23, + "name_en": "Balangoda", + "name_si": "බලන්ගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70100", + "location": { + "type": "Point", + "coordinates": [ + 80.69371, + 6.661743 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f0" + }, + "id": 1679, + "district_id": 23, + "name_en": "Batatota", + "name_si": "බටතොට", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70504", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 6.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f1" + }, + "id": 1680, + "district_id": 23, + "name_en": "Beralapanathara", + "name_si": "බෙරලපනතර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81541", + "location": { + "type": "Point", + "coordinates": [ + 80.4894, + 6.4521 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f2" + }, + "id": 1681, + "district_id": 23, + "name_en": "Bogahakumbura", + "name_si": "බෝගහකුඹුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90354", + "location": { + "type": "Point", + "coordinates": [ + 80.7667, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f3" + }, + "id": 1682, + "district_id": 23, + "name_en": "Bolthumbe", + "name_si": "බොල්තුඹෙ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70131", + "location": { + "type": "Point", + "coordinates": [ + 80.664956, + 6.739114 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f4" + }, + "id": 1683, + "district_id": 23, + "name_en": "Bomluwageaina", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70344", + "location": { + "type": "Point", + "coordinates": [ + 80.6333, + 6.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f5" + }, + "id": 1684, + "district_id": 23, + "name_en": "Bowalagama", + "name_si": "බෝවලගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82458", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.3917 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f6" + }, + "id": 1685, + "district_id": 23, + "name_en": "Bulutota", + "name_si": "බුලුතොට", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70346", + "location": { + "type": "Point", + "coordinates": [ + 80.65, + 6.4333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f7" + }, + "id": 1686, + "district_id": 23, + "name_en": "Dambuluwana", + "name_si": "දඹුලුවාන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70019", + "location": { + "type": "Point", + "coordinates": [ + 80.3333, + 6.7167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f8" + }, + "id": 1687, + "district_id": 23, + "name_en": "Daugala", + "name_si": "දවුගල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70455", + "location": { + "type": "Point", + "coordinates": [ + 80.4248, + 6.4901 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4f9" + }, + "id": 1688, + "district_id": 23, + "name_en": "Dela", + "name_si": "දෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70042", + "location": { + "type": "Point", + "coordinates": [ + 80.4486, + 6.6258 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4fa" + }, + "id": 1689, + "district_id": 23, + "name_en": "Delwala", + "name_si": "දෙල්වල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70046", + "location": { + "type": "Point", + "coordinates": [ + 80.473993, + 6.513055 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4fb" + }, + "id": 1690, + "district_id": 23, + "name_en": "Dodampe", + "name_si": "දොඩම්පෙ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70017", + "location": { + "type": "Point", + "coordinates": [ + 80.301105, + 6.73603 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4fc" + }, + "id": 1691, + "district_id": 23, + "name_en": "Doloswalakanda", + "name_si": "දොලොස්වලකන්ද", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70404", + "location": { + "type": "Point", + "coordinates": [ + 80.470258, + 6.55133 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4fd" + }, + "id": 1692, + "district_id": 23, + "name_en": "Dumbara Manana", + "name_si": "දුම්බර මනන", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70495", + "location": { + "type": "Point", + "coordinates": [ + 80.247485, + 6.680322 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4fe" + }, + "id": 1693, + "district_id": 23, + "name_en": "Eheliyagoda", + "name_si": "ඇහැළියගොඩ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70600", + "location": { + "type": "Point", + "coordinates": [ + 80.2667, + 6.85 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e4ff" + }, + "id": 1694, + "district_id": 23, + "name_en": "Ekamutugama", + "name_si": "එකමුතුගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70254", + "location": { + "type": "Point", + "coordinates": [ + 80.7804, + 6.3406 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e500" + }, + "id": 1695, + "district_id": 23, + "name_en": "Elapatha", + "name_si": "ඇලපාත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70032", + "location": { + "type": "Point", + "coordinates": [ + 80.366828, + 6.66081 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e501" + }, + "id": 1696, + "district_id": 23, + "name_en": "Ellagawa", + "name_si": "ඇල්ලගාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70492", + "location": { + "type": "Point", + "coordinates": [ + 80.363, + 6.5687 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e502" + }, + "id": 1697, + "district_id": 23, + "name_en": "Ellaulla", + "name_si": "", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70552", + "location": { + "type": "Point", + "coordinates": [ + 80.3083, + 6.8583 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e503" + }, + "id": 1698, + "district_id": 23, + "name_en": "Ellawala", + "name_si": "ඇල්ලවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70606", + "location": { + "type": "Point", + "coordinates": [ + 80.259547, + 6.809945 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e504" + }, + "id": 1699, + "district_id": 23, + "name_en": "Embilipitiya", + "name_si": "ඇඹිලිපිටිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70200", + "location": { + "type": "Point", + "coordinates": [ + 80.8489, + 6.3439 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e505" + }, + "id": 1700, + "district_id": 23, + "name_en": "Eratna", + "name_si": "එරත්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70506", + "location": { + "type": "Point", + "coordinates": [ + 80.3784, + 6.7986 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e506" + }, + "id": 1701, + "district_id": 23, + "name_en": "Erepola", + "name_si": "එරෙපොල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70602", + "location": { + "type": "Point", + "coordinates": [ + 80.242773, + 6.804277 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e507" + }, + "id": 1702, + "district_id": 23, + "name_en": "Gabbela", + "name_si": "ගබ්බෙල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70156", + "location": { + "type": "Point", + "coordinates": [ + 80.35, + 6.7167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e508" + }, + "id": 1703, + "district_id": 23, + "name_en": "Gangeyaya", + "name_si": "ගන්ගෙයාය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70195", + "location": { + "type": "Point", + "coordinates": [ + 80.5927, + 6.7516 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e509" + }, + "id": 1704, + "district_id": 23, + "name_en": "Gawaragiriya", + "name_si": "ගවරගිරිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70026", + "location": { + "type": "Point", + "coordinates": [ + 80.2667, + 6.6422 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e50a" + }, + "id": 1705, + "district_id": 23, + "name_en": "Gillimale", + "name_si": "ගිලීමලේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70002", + "location": { + "type": "Point", + "coordinates": [ + 80.4415, + 6.729 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e50b" + }, + "id": 1706, + "district_id": 23, + "name_en": "Godakawela", + "name_si": "ගොඩකවැල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70160", + "location": { + "type": "Point", + "coordinates": [ + 80.647268, + 6.505599 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e50c" + }, + "id": 1707, + "district_id": 23, + "name_en": "Gurubewilagama", + "name_si": "ගුරුබෙවිලගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70136", + "location": { + "type": "Point", + "coordinates": [ + 80.5667, + 6.7 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e50d" + }, + "id": 1708, + "district_id": 23, + "name_en": "Halwinna", + "name_si": "හල්වින්න", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70171", + "location": { + "type": "Point", + "coordinates": [ + 80.7167, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e50e" + }, + "id": 1709, + "district_id": 23, + "name_en": "Handagiriya", + "name_si": "හඳගිරිය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70106", + "location": { + "type": "Point", + "coordinates": [ + 80.780347, + 6.562839 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e50f" + }, + "id": 1710, + "district_id": 23, + "name_en": "Hatangala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70105", + "location": { + "type": "Point", + "coordinates": [ + 80.739407, + 6.532527 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e510" + }, + "id": 1711, + "district_id": 23, + "name_en": "Hatarabage", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70108", + "location": { + "type": "Point", + "coordinates": [ + 80.75, + 6.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e511" + }, + "id": 1712, + "district_id": 23, + "name_en": "Hewanakumbura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90358", + "location": { + "type": "Point", + "coordinates": [ + 80.7667, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e512" + }, + "id": 1713, + "district_id": 23, + "name_en": "Hidellana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70012", + "location": { + "type": "Point", + "coordinates": [ + 80.3842, + 6.7192 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e513" + }, + "id": 1714, + "district_id": 23, + "name_en": "Hiramadagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70296", + "location": { + "type": "Point", + "coordinates": [ + 80.60045, + 6.533544 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e514" + }, + "id": 1715, + "district_id": 23, + "name_en": "Horewelagoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82456", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.3917 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e515" + }, + "id": 1716, + "district_id": 23, + "name_en": "Ittakanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70342", + "location": { + "type": "Point", + "coordinates": [ + 80.636458, + 6.403532 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e516" + }, + "id": 1717, + "district_id": 23, + "name_en": "Kahangama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70016", + "location": { + "type": "Point", + "coordinates": [ + 80.362927, + 6.704217 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e517" + }, + "id": 1718, + "district_id": 23, + "name_en": "Kahawatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70150", + "location": { + "type": "Point", + "coordinates": [ + 80.303805, + 6.708145 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e518" + }, + "id": 1719, + "district_id": 23, + "name_en": "Kalawana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70450", + "location": { + "type": "Point", + "coordinates": [ + 80.407285, + 6.531595 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e519" + }, + "id": 1720, + "district_id": 23, + "name_en": "Kaltota", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70122", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e51a" + }, + "id": 1721, + "district_id": 23, + "name_en": "Kalubululanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90352", + "location": { + "type": "Point", + "coordinates": [ + 80.7667, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e51b" + }, + "id": 1722, + "district_id": 23, + "name_en": "Kananke Bazaar", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80136", + "location": { + "type": "Point", + "coordinates": [ + 80.4354, + 6.7361 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e51c" + }, + "id": 1723, + "district_id": 23, + "name_en": "Kandepuhulpola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90356", + "location": { + "type": "Point", + "coordinates": [ + 80.7667, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e51d" + }, + "id": 1724, + "district_id": 23, + "name_en": "Karandana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70488", + "location": { + "type": "Point", + "coordinates": [ + 80.206883, + 6.77254 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e51e" + }, + "id": 1725, + "district_id": 23, + "name_en": "Karangoda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70018", + "location": { + "type": "Point", + "coordinates": [ + 80.368723, + 6.677224 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e51f" + }, + "id": 1726, + "district_id": 23, + "name_en": "Kella Junction", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70352", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e520" + }, + "id": 1727, + "district_id": 23, + "name_en": "Keppetipola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "90350", + "location": { + "type": "Point", + "coordinates": [ + 80.7667, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e521" + }, + "id": 1728, + "district_id": 23, + "name_en": "Kiriella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70480", + "location": { + "type": "Point", + "coordinates": [ + 80.265838, + 6.753583 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e522" + }, + "id": 1729, + "district_id": 23, + "name_en": "Kiriibbanwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70252", + "location": { + "type": "Point", + "coordinates": [ + 80.7804, + 6.3406 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e523" + }, + "id": 1730, + "district_id": 23, + "name_en": "Kolambageara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70180", + "location": { + "type": "Point", + "coordinates": [ + 80.5927, + 6.7516 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e524" + }, + "id": 1731, + "district_id": 23, + "name_en": "Kolombugama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70403", + "location": { + "type": "Point", + "coordinates": [ + 80.4833, + 6.5667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e525" + }, + "id": 1732, + "district_id": 23, + "name_en": "Kolonna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70350", + "location": { + "type": "Point", + "coordinates": [ + 80.681552, + 6.404095 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e526" + }, + "id": 1733, + "district_id": 23, + "name_en": "Kudawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70005", + "location": { + "type": "Point", + "coordinates": [ + 80.504485, + 6.757336 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e527" + }, + "id": 1734, + "district_id": 23, + "name_en": "Kuruwita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70500", + "location": { + "type": "Point", + "coordinates": [ + 80.3686, + 6.7792 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e528" + }, + "id": 1735, + "district_id": 23, + "name_en": "Lellopitiya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70056", + "location": { + "type": "Point", + "coordinates": [ + 80.471348, + 6.655172 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e529" + }, + "id": 1736, + "district_id": 23, + "name_en": "lmaduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80130", + "location": { + "type": "Point", + "coordinates": [ + 80.4354, + 6.7361 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e52a" + }, + "id": 1737, + "district_id": 23, + "name_en": "lmbulpe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70134", + "location": { + "type": "Point", + "coordinates": [ + 80.6375, + 6.7159 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e52b" + }, + "id": 1738, + "district_id": 23, + "name_en": "Mahagama Colony", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70256", + "location": { + "type": "Point", + "coordinates": [ + 80.7804, + 6.3406 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e52c" + }, + "id": 1739, + "district_id": 23, + "name_en": "Mahawalatenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70112", + "location": { + "type": "Point", + "coordinates": [ + 80.75, + 6.5833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e52d" + }, + "id": 1740, + "district_id": 23, + "name_en": "Makandura Sabara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70298", + "location": { + "type": "Point", + "coordinates": [ + 80.6, + 6.5333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e52e" + }, + "id": 1741, + "district_id": 23, + "name_en": "Malwala Junction", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70001", + "location": { + "type": "Point", + "coordinates": [ + 80.4333, + 6.7 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e52f" + }, + "id": 1742, + "district_id": 23, + "name_en": "Malwatta", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "32198", + "location": { + "type": "Point", + "coordinates": [ + 80.4167, + 6.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e530" + }, + "id": 1743, + "district_id": 23, + "name_en": "Matuwagalagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70482", + "location": { + "type": "Point", + "coordinates": [ + 80.2333, + 6.7667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e531" + }, + "id": 1744, + "district_id": 23, + "name_en": "Medagalatur", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70021", + "location": { + "type": "Point", + "coordinates": [ + 80.2882, + 6.6414 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e532" + }, + "id": 1745, + "district_id": 23, + "name_en": "Meddekanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70127", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e533" + }, + "id": 1746, + "district_id": 23, + "name_en": "Minipura Dumbara", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70494", + "location": { + "type": "Point", + "coordinates": [ + 80.363, + 6.5687 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e534" + }, + "id": 1747, + "district_id": 23, + "name_en": "Mitipola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70604", + "location": { + "type": "Point", + "coordinates": [ + 80.221949, + 6.836923 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e535" + }, + "id": 1748, + "district_id": 23, + "name_en": "Moragala Kirillapone", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81532", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 6.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e536" + }, + "id": 1749, + "district_id": 23, + "name_en": "Morahela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70129", + "location": { + "type": "Point", + "coordinates": [ + 80.691531, + 6.679967 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e537" + }, + "id": 1750, + "district_id": 23, + "name_en": "Mulendiyawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70212", + "location": { + "type": "Point", + "coordinates": [ + 80.760239, + 6.291657 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e538" + }, + "id": 1751, + "district_id": 23, + "name_en": "Mulgama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70117", + "location": { + "type": "Point", + "coordinates": [ + 80.817832, + 6.645942 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e539" + }, + "id": 1752, + "district_id": 23, + "name_en": "Nawalakanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70469", + "location": { + "type": "Point", + "coordinates": [ + 80.3333, + 6.5167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e53a" + }, + "id": 1753, + "district_id": 23, + "name_en": "NawinnaPinnakanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70165", + "location": { + "type": "Point", + "coordinates": [ + 80.4999, + 6.7168 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e53b" + }, + "id": 1754, + "district_id": 23, + "name_en": "Niralagama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70038", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 6.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e53c" + }, + "id": 1755, + "district_id": 23, + "name_en": "Nivitigala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70400", + "location": { + "type": "Point", + "coordinates": [ + 80.4553, + 6.6 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e53d" + }, + "id": 1756, + "district_id": 23, + "name_en": "Omalpe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70215", + "location": { + "type": "Point", + "coordinates": [ + 80.694691, + 6.327391 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e53e" + }, + "id": 1757, + "district_id": 23, + "name_en": "Opanayaka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70080", + "location": { + "type": "Point", + "coordinates": [ + 80.625134, + 6.608359 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e53f" + }, + "id": 1758, + "district_id": 23, + "name_en": "Padalangala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70230", + "location": { + "type": "Point", + "coordinates": [ + 80.916029, + 6.244961 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e540" + }, + "id": 1759, + "district_id": 23, + "name_en": "Pallebedda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70170", + "location": { + "type": "Point", + "coordinates": [ + 80.7333, + 6.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e541" + }, + "id": 1760, + "district_id": 23, + "name_en": "Pallekanda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "82454", + "location": { + "type": "Point", + "coordinates": [ + 80.6667, + 6.6333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e542" + }, + "id": 1761, + "district_id": 23, + "name_en": "Pambagolla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70133", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.7333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e543" + }, + "id": 1762, + "district_id": 23, + "name_en": "Panamura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70218", + "location": { + "type": "Point", + "coordinates": [ + 80.776404, + 6.351417 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e544" + }, + "id": 1763, + "district_id": 23, + "name_en": "Panapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70461", + "location": { + "type": "Point", + "coordinates": [ + 80.445421, + 6.425337 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e545" + }, + "id": 1764, + "district_id": 23, + "name_en": "Paragala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81474", + "location": { + "type": "Point", + "coordinates": [ + 80.343575, + 6.601317 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e546" + }, + "id": 1765, + "district_id": 23, + "name_en": "Parakaduwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70550", + "location": { + "type": "Point", + "coordinates": [ + 80.299049, + 6.825482 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e547" + }, + "id": 1766, + "district_id": 23, + "name_en": "Pebotuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70045", + "location": { + "type": "Point", + "coordinates": [ + 80.452191, + 6.540192 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e548" + }, + "id": 1767, + "district_id": 23, + "name_en": "Pelmadulla", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70070", + "location": { + "type": "Point", + "coordinates": [ + 80.542243, + 6.620071 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e549" + }, + "id": 1768, + "district_id": 23, + "name_en": "Pinnawala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70130", + "location": { + "type": "Point", + "coordinates": [ + 80.672146, + 6.731251 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e54a" + }, + "id": 1769, + "district_id": 23, + "name_en": "Pothdeniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "81538", + "location": { + "type": "Point", + "coordinates": [ + 80.3, + 6.8333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e54b" + }, + "id": 1770, + "district_id": 23, + "name_en": "Rajawaka", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70116", + "location": { + "type": "Point", + "coordinates": [ + 80.797987, + 6.609347 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e54c" + }, + "id": 1771, + "district_id": 23, + "name_en": "Ranwala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70162", + "location": { + "type": "Point", + "coordinates": [ + 80.665495, + 6.553121 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e54d" + }, + "id": 1772, + "district_id": 23, + "name_en": "Rassagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70135", + "location": { + "type": "Point", + "coordinates": [ + 80.617304, + 6.695227 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e54e" + }, + "id": 1773, + "district_id": 23, + "name_en": "Ratgama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "80260", + "location": { + "type": "Point", + "coordinates": [ + 80.4833, + 6.7333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e54f" + }, + "id": 1774, + "district_id": 23, + "name_en": "Ratna Hangamuwa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70036", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 6.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e550" + }, + "id": 1775, + "district_id": 23, + "name_en": "Ratnapura", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70000", + "location": { + "type": "Point", + "coordinates": [ + 80.405592, + 6.677603 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e551" + }, + "id": 1776, + "district_id": 23, + "name_en": "Sewanagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70250", + "location": { + "type": "Point", + "coordinates": [ + 80.7804, + 6.3406 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e552" + }, + "id": 1777, + "district_id": 23, + "name_en": "Sri Palabaddala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70004", + "location": { + "type": "Point", + "coordinates": [ + 80.476202, + 6.800198 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e553" + }, + "id": 1778, + "district_id": 23, + "name_en": "Sudagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70502", + "location": { + "type": "Point", + "coordinates": [ + 80.4, + 6.7833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e554" + }, + "id": 1779, + "district_id": 23, + "name_en": "Talakolahinna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70101", + "location": { + "type": "Point", + "coordinates": [ + 80.7332, + 6.5844 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e555" + }, + "id": 1780, + "district_id": 23, + "name_en": "Tanjantenna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70118", + "location": { + "type": "Point", + "coordinates": [ + 80.8536, + 6.6361 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e556" + }, + "id": 1781, + "district_id": 23, + "name_en": "Teppanawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70512", + "location": { + "type": "Point", + "coordinates": [ + 80.3167, + 6.75 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e557" + }, + "id": 1782, + "district_id": 23, + "name_en": "Tunkama", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70205", + "location": { + "type": "Point", + "coordinates": [ + 80.8833, + 6.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e558" + }, + "id": 1783, + "district_id": 23, + "name_en": "Udakarawita", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70044", + "location": { + "type": "Point", + "coordinates": [ + 80.4287, + 6.7317 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e559" + }, + "id": 1784, + "district_id": 23, + "name_en": "Udaniriella", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70034", + "location": { + "type": "Point", + "coordinates": [ + 80.3667, + 6.65 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e55a" + }, + "id": 1785, + "district_id": 23, + "name_en": "Udawalawe", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70190", + "location": { + "type": "Point", + "coordinates": [ + 80.5927, + 6.7516 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e55b" + }, + "id": 1786, + "district_id": 23, + "name_en": "Ullinduwawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70345", + "location": { + "type": "Point", + "coordinates": [ + 80.631196, + 6.367322 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e55c" + }, + "id": 1787, + "district_id": 23, + "name_en": "Veddagala", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70459", + "location": { + "type": "Point", + "coordinates": [ + 80.4333, + 6.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e55d" + }, + "id": 1788, + "district_id": 23, + "name_en": "Vijeriya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70348", + "location": { + "type": "Point", + "coordinates": [ + 80.6333, + 6.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e55e" + }, + "id": 1789, + "district_id": 23, + "name_en": "Waleboda", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70138", + "location": { + "type": "Point", + "coordinates": [ + 80.64106, + 6.726367 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e55f" + }, + "id": 1790, + "district_id": 23, + "name_en": "Watapotha", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70408", + "location": { + "type": "Point", + "coordinates": [ + 80.510709, + 6.577958 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e560" + }, + "id": 1791, + "district_id": 23, + "name_en": "Waturawa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70456", + "location": { + "type": "Point", + "coordinates": [ + 80.4333, + 6.4833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e561" + }, + "id": 1792, + "district_id": 23, + "name_en": "Weligepola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70104", + "location": { + "type": "Point", + "coordinates": [ + 80.707078, + 6.567212 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e562" + }, + "id": 1793, + "district_id": 23, + "name_en": "Welipathayaya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70124", + "location": { + "type": "Point", + "coordinates": [ + 80.6833, + 6.6833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e563" + }, + "id": 1794, + "district_id": 23, + "name_en": "Wikiliya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "70114", + "location": { + "type": "Point", + "coordinates": [ + 80.7467, + 6.6203 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e564" + }, + "id": 1795, + "district_id": 24, + "name_en": "Agbopura", + "name_si": "අග්බෝපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31304", + "location": { + "type": "Point", + "coordinates": [ + 80.97191, + 8.330575 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e565" + }, + "id": 1796, + "district_id": 24, + "name_en": "Buckmigama", + "name_si": "බක්මීගම", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31028", + "location": { + "type": "Point", + "coordinates": [ + 80.95, + 8.6667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e566" + }, + "id": 1797, + "district_id": 24, + "name_en": "China Bay", + "name_si": "චීන වරාය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31050", + "location": { + "type": "Point", + "coordinates": [ + 81.187386, + 8.561664 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e567" + }, + "id": 1798, + "district_id": 24, + "name_en": "Dehiwatte", + "name_si": "දෙහිවත්ත", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31226", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e568" + }, + "id": 1799, + "district_id": 24, + "name_en": "Echchilampattai", + "name_si": "එච්චිලම්පට්ටෙයි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31236", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e569" + }, + "id": 1800, + "district_id": 24, + "name_en": "Galmetiyawa", + "name_si": "ගල්මැටියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31318", + "location": { + "type": "Point", + "coordinates": [ + 81.0281, + 8.3683 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e56a" + }, + "id": 1801, + "district_id": 24, + "name_en": "Gomarankadawala", + "name_si": "ගෝමරන්කඩවල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31026", + "location": { + "type": "Point", + "coordinates": [ + 80.960417, + 8.677731 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e56b" + }, + "id": 1802, + "district_id": 24, + "name_en": "Kaddaiparichchan", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31212", + "location": { + "type": "Point", + "coordinates": [ + 81.278164, + 8.459198 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e56c" + }, + "id": 1803, + "district_id": 24, + "name_en": "Kallar", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30250", + "location": { + "type": "Point", + "coordinates": [ + 81.2667, + 8.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e56d" + }, + "id": 1804, + "district_id": 24, + "name_en": "Kanniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31032", + "location": { + "type": "Point", + "coordinates": [ + 81.0167, + 8.6333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e56e" + }, + "id": 1805, + "district_id": 24, + "name_en": "Kantalai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31300", + "location": { + "type": "Point", + "coordinates": [ + 80.966897, + 8.365483 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e56f" + }, + "id": 1806, + "district_id": 24, + "name_en": "Kantalai Sugar Factory", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31306", + "location": { + "type": "Point", + "coordinates": [ + 81.0281, + 8.3683 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e570" + }, + "id": 1807, + "district_id": 24, + "name_en": "Kiliveddy", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31220", + "location": { + "type": "Point", + "coordinates": [ + 81.275605, + 8.354092 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e571" + }, + "id": 1808, + "district_id": 24, + "name_en": "Kinniya", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31100", + "location": { + "type": "Point", + "coordinates": [ + 81.179214, + 8.497717 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e572" + }, + "id": 1809, + "district_id": 24, + "name_en": "Kuchchaveli", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31014", + "location": { + "type": "Point", + "coordinates": [ + 81.036113, + 8.792709 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e573" + }, + "id": 1810, + "district_id": 24, + "name_en": "Kumburupiddy", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31012", + "location": { + "type": "Point", + "coordinates": [ + 81.15, + 8.7333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e574" + }, + "id": 1811, + "district_id": 24, + "name_en": "Kurinchakemy", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31112", + "location": { + "type": "Point", + "coordinates": [ + 81.1897, + 8.4989 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e575" + }, + "id": 1812, + "district_id": 24, + "name_en": "Lankapatuna", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31234", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e576" + }, + "id": 1813, + "district_id": 24, + "name_en": "Mahadivulwewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31036", + "location": { + "type": "Point", + "coordinates": [ + 80.9518, + 8.613863 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e577" + }, + "id": 1814, + "district_id": 24, + "name_en": "Maharugiramam", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31106", + "location": { + "type": "Point", + "coordinates": [ + 81.1897, + 8.4989 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e578" + }, + "id": 1815, + "district_id": 24, + "name_en": "Mallikativu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31224", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e579" + }, + "id": 1816, + "district_id": 24, + "name_en": "Mawadichenai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31238", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e57a" + }, + "id": 1817, + "district_id": 24, + "name_en": "Mullipothana", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31312", + "location": { + "type": "Point", + "coordinates": [ + 81.0281, + 8.3683 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e57b" + }, + "id": 1818, + "district_id": 24, + "name_en": "Mutur", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31200", + "location": { + "type": "Point", + "coordinates": [ + 81.2667, + 8.45 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e57c" + }, + "id": 1819, + "district_id": 24, + "name_en": "Neelapola", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31228", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e57d" + }, + "id": 1820, + "district_id": 24, + "name_en": "Nilaveli", + "name_si": "නිලාවැලි", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31010", + "location": { + "type": "Point", + "coordinates": [ + 81.148516, + 8.658756 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e57e" + }, + "id": 1821, + "district_id": 24, + "name_en": "Pankulam", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31034", + "location": { + "type": "Point", + "coordinates": [ + 81.0167, + 8.6333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e57f" + }, + "id": 1822, + "district_id": 24, + "name_en": "Pulmoddai", + "name_si": "පුල්මුඩේ", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "50567", + "location": { + "type": "Point", + "coordinates": [ + 80.9833, + 8.9333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e580" + }, + "id": 1823, + "district_id": 24, + "name_en": "Rottawewa", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31038", + "location": { + "type": "Point", + "coordinates": [ + 81.0167, + 8.6333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e581" + }, + "id": 1824, + "district_id": 24, + "name_en": "Sampaltivu", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31006", + "location": { + "type": "Point", + "coordinates": [ + 81.2, + 8.6167 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e582" + }, + "id": 1825, + "district_id": 24, + "name_en": "Sampoor", + "name_si": "සාම්පූර්", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31216", + "location": { + "type": "Point", + "coordinates": [ + 81.284828, + 8.493354 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e583" + }, + "id": 1826, + "district_id": 24, + "name_en": "Serunuwara", + "name_si": "සේනුවර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31232", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e584" + }, + "id": 1827, + "district_id": 24, + "name_en": "Seruwila", + "name_si": "සේරුවිල", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31260", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e585" + }, + "id": 1828, + "district_id": 24, + "name_en": "Sirajnagar", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31314", + "location": { + "type": "Point", + "coordinates": [ + 81.0281, + 8.3683 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e586" + }, + "id": 1829, + "district_id": 24, + "name_en": "Somapura", + "name_si": "සෝමපුර", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31222", + "location": { + "type": "Point", + "coordinates": [ + 81.2875, + 8.4458 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e587" + }, + "id": 1830, + "district_id": 24, + "name_en": "Tampalakamam", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31046", + "location": { + "type": "Point", + "coordinates": [ + 81.0964, + 8.4925 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e588" + }, + "id": 1831, + "district_id": 24, + "name_en": "Thuraineelavanai", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "30254", + "location": { + "type": "Point", + "coordinates": [ + 81.2667, + 8.2833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e589" + }, + "id": 1832, + "district_id": 24, + "name_en": "Tiriyayi", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31016", + "location": { + "type": "Point", + "coordinates": [ + 81.15, + 8.7444 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e58a" + }, + "id": 1833, + "district_id": 24, + "name_en": "Toppur", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31250", + "location": { + "type": "Point", + "coordinates": [ + 81.3167, + 8.4 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e58b" + }, + "id": 1834, + "district_id": 24, + "name_en": "Trincomalee", + "name_si": "තිරිකුණාමලය", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31000", + "location": { + "type": "Point", + "coordinates": [ + 81.2333, + 8.5667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e58c" + }, + "id": 1835, + "district_id": 24, + "name_en": "Wanela", + "name_si": null, + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "31308", + "location": { + "type": "Point", + "coordinates": [ + 81.0281, + 8.3683 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e58d" + }, + "id": 1836, + "district_id": 25, + "name_en": "Vavuniya", + "name_si": "වව්නියාව", + "name_ta": null, + "sub_name_en": null, + "sub_name_si": null, + "sub_name_ta": null, + "postcode": "43000", + "location": { + "type": "Point", + "coordinates": [ + 80.493461, + 8.758818 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e58e" + }, + "id": 1837, + "district_id": 5, + "name_en": "Colombo 1", + "name_si": "කොළඹ 1", + "name_ta": "கொழும்பு 1", + "sub_name_en": "Fort", + "sub_name_si": "කොටුව", + "sub_name_ta": "கோட்டை", + "postcode": "100", + "location": { + "type": "Point", + "coordinates": [ + 79.841667, + 6.925833 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e58f" + }, + "id": 1838, + "district_id": 5, + "name_en": "Colombo 3", + "name_si": "කොළඹ 3", + "name_ta": "கொழும்பு 3", + "sub_name_en": "Colpetty", + "sub_name_si": "කොල්ලුපිටිය", + "sub_name_ta": "கொள்ளுபிட்டி", + "postcode": "300", + "location": { + "type": "Point", + "coordinates": [ + 79.853333, + 6.900556 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e590" + }, + "id": 1839, + "district_id": 5, + "name_en": "Colombo 4", + "name_si": "කොළඹ 4", + "name_ta": "கொழும்பு 4", + "sub_name_en": "Bambalapitiya", + "sub_name_si": "බම්බලපිටිය", + "sub_name_ta": "பம்பலப்பிட்டி", + "postcode": "400", + "location": { + "type": "Point", + "coordinates": [ + 79.856667, + 6.888889 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e591" + }, + "id": 1840, + "district_id": 5, + "name_en": "Colombo 5", + "name_si": "කොළඹ 5", + "name_ta": "கொழும்பு 5", + "sub_name_en": "Havelock Town", + "sub_name_si": "තිඹිරිගස්යාය", + "sub_name_ta": "ஹெவ்லொக் நகரம்", + "postcode": "500", + "location": { + "type": "Point", + "coordinates": [ + 79.865278, + 6.879444 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e592" + }, + "id": 1841, + "district_id": 5, + "name_en": "Colombo 7", + "name_si": "කොළඹ 7", + "name_ta": "கொழும்பு 7", + "sub_name_en": "Cinnamon Gardens", + "sub_name_si": "කුරුඳු වත්ත", + "sub_name_ta": "கறுவாத் தோட்டம்", + "postcode": "700", + "location": { + "type": "Point", + "coordinates": [ + 79.863333, + 6.906667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e593" + }, + "id": 1842, + "district_id": 5, + "name_en": "Colombo 9", + "name_si": "කොළඹ 9", + "name_ta": "கொழும்பு 9", + "sub_name_en": "Dematagoda", + "sub_name_si": "දෙමටගොඩ", + "sub_name_ta": "தெமட்டகொடை", + "postcode": "900", + "location": { + "type": "Point", + "coordinates": [ + 79.877778, + 6.93 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e594" + }, + "id": 1843, + "district_id": 5, + "name_en": "Colombo 10", + "name_si": "කොළඹ 10", + "name_ta": "கொழும்பு 10", + "sub_name_en": "Maradana", + "sub_name_si": "මරදාන", + "sub_name_ta": "மருதானை", + "postcode": "1000", + "location": { + "type": "Point", + "coordinates": [ + 79.864167, + 6.928333 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e595" + }, + "id": 1844, + "district_id": 5, + "name_en": "Colombo 11", + "name_si": "කොළඹ 11", + "name_ta": "கொழும்பு 11", + "sub_name_en": "Pettah", + "sub_name_si": "පිට කොටුව", + "sub_name_ta": "புறக் கோட்டை", + "postcode": "1100", + "location": { + "type": "Point", + "coordinates": [ + 79.849722, + 6.936667 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e596" + }, + "id": 1845, + "district_id": 5, + "name_en": "Colombo 12", + "name_si": "කොළඹ 12", + "name_ta": "கொழும்பு 12", + "sub_name_en": "Hulftsdorp", + "sub_name_si": "අලුත් කඩේ", + "sub_name_ta": "புதுக்கடை", + "postcode": "1200", + "location": { + "type": "Point", + "coordinates": [ + 79.858333, + 6.9425 + ] + } +}, +{ + "_id": { + "$oid": "66b9b97fdd9de6dd0bc4e597" + }, + "id": 1846, + "district_id": 5, + "name_en": "Colombo 14", + "name_si": "කොළඹ 14", + "name_ta": "கொழும்பு 14", + "sub_name_en": "Grandpass", + "sub_name_si": "ග්‍රන්ඩ්පාස්", + "sub_name_ta": "பாலத்துறை", + "postcode": "1400", + "location": { + "type": "Point", + "coordinates": [ + 79.874722, + 6.9475 + ] + } +}] \ No newline at end of file diff --git a/src/assets/Collections/test.districts.json b/src/assets/Collections/test.districts.json new file mode 100644 index 0000000..745f2b3 --- /dev/null +++ b/src/assets/Collections/test.districts.json @@ -0,0 +1,250 @@ +[{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e49b" + }, + "id": 1, + "province_id": 6, + "name_en": "Ampara", + "name_si": "අම්පාර", + "name_ta": "அம்பாறை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e49c" + }, + "id": 2, + "province_id": 8, + "name_en": "Anuradhapura", + "name_si": "අනුරාධපුරය", + "name_ta": "அனுராதபுரம்" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e49d" + }, + "id": 3, + "province_id": 7, + "name_en": "Badulla", + "name_si": "බදුල්ල", + "name_ta": "பதுளை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e49e" + }, + "id": 4, + "province_id": 6, + "name_en": "Batticaloa", + "name_si": "මඩකලපුව", + "name_ta": "மட்டக்களப்பு" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e49f" + }, + "id": 5, + "province_id": 1, + "name_en": "Colombo", + "name_si": "කොළඹ", + "name_ta": "கொழும்பு" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a0" + }, + "id": 6, + "province_id": 3, + "name_en": "Galle", + "name_si": "ගාල්ල", + "name_ta": "காலி" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a1" + }, + "id": 7, + "province_id": 1, + "name_en": "Gampaha", + "name_si": "ගම්පහ", + "name_ta": "கம்பஹா" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a2" + }, + "id": 8, + "province_id": 3, + "name_en": "Hambantota", + "name_si": "හම්බන්තොට", + "name_ta": "அம்பாந்தோட்டை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a3" + }, + "id": 9, + "province_id": 9, + "name_en": "Jaffna", + "name_si": "යාපනය", + "name_ta": "யாழ்ப்பாணம்" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a4" + }, + "id": 10, + "province_id": 1, + "name_en": "Kalutara", + "name_si": "කළුතර", + "name_ta": "களுத்துறை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a5" + }, + "id": 11, + "province_id": 2, + "name_en": "Kandy", + "name_si": "මහනුවර", + "name_ta": "கண்டி" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a6" + }, + "id": 12, + "province_id": 5, + "name_en": "Kegalle", + "name_si": "කෑගල්ල", + "name_ta": "கேகாலை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a7" + }, + "id": 13, + "province_id": 9, + "name_en": "Kilinochchi", + "name_si": "කිලිනොච්චිය", + "name_ta": "கிளிநொச்சி" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a8" + }, + "id": 14, + "province_id": 4, + "name_en": "Kurunegala", + "name_si": "කුරුණෑගල", + "name_ta": "குருணாகல்" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4a9" + }, + "id": 15, + "province_id": 9, + "name_en": "Mannar", + "name_si": "මන්නාරම", + "name_ta": "மன்னார்" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4aa" + }, + "id": 16, + "province_id": 2, + "name_en": "Matale", + "name_si": "මාතලේ", + "name_ta": "மாத்தளை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4ab" + }, + "id": 17, + "province_id": 3, + "name_en": "Matara", + "name_si": "මාතර", + "name_ta": "மாத்தறை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4ac" + }, + "id": 18, + "province_id": 7, + "name_en": "Monaragala", + "name_si": "මොණරාගල", + "name_ta": "மொணராகலை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4ad" + }, + "id": 19, + "province_id": 9, + "name_en": "Mullaitivu", + "name_si": "මුලතිව්", + "name_ta": "முல்லைத்தீவு" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4ae" + }, + "id": 20, + "province_id": 2, + "name_en": "Nuwara Eliya", + "name_si": "නුවර එළිය", + "name_ta": "நுவரேலியா" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4af" + }, + "id": 21, + "province_id": 8, + "name_en": "Polonnaruwa", + "name_si": "පොළොන්නරුව", + "name_ta": "பொலன்னறுவை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4b0" + }, + "id": 22, + "province_id": 4, + "name_en": "Puttalam", + "name_si": "පුත්තලම", + "name_ta": "புத்தளம்" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4b1" + }, + "id": 23, + "province_id": 5, + "name_en": "Ratnapura", + "name_si": "රත්නපුර", + "name_ta": "இரத்தினபுரி" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4b2" + }, + "id": 24, + "province_id": 6, + "name_en": "Trincomalee", + "name_si": "ත්‍රිකුණාමලය", + "name_ta": "திருகோணமலை" +}, +{ + "_id": { + "$oid": "66b9c3a49cafb60a4dc4e4b3" + }, + "id": 25, + "province_id": 9, + "name_en": "Vavuniya", + "name_si": "වව්නියාව", + "name_ta": "வவுனியா" +}] \ No newline at end of file diff --git a/src/modules/kite-players/dto/create-kite-player-dto.ts b/src/modules/kite-players/dto/create-kite-player-dto.ts index 9da7c7f..b3572d8 100644 --- a/src/modules/kite-players/dto/create-kite-player-dto.ts +++ b/src/modules/kite-players/dto/create-kite-player-dto.ts @@ -7,6 +7,8 @@ export class CreateKitePlayerDto { readonly birthday: Date; readonly city: string; readonly img_url: string; + readonly nearest_city: string; + readonly nearest_district: string; @IsOptional() readonly isBot?: boolean; diff --git a/src/modules/kite-players/dto/get-kite-player-dto.ts b/src/modules/kite-players/dto/get-kite-player-dto.ts index 356cd87..4a16856 100644 --- a/src/modules/kite-players/dto/get-kite-player-dto.ts +++ b/src/modules/kite-players/dto/get-kite-player-dto.ts @@ -7,4 +7,6 @@ export class GetKitePlayerDto { readonly coordinates: ICoordinates; readonly city: string; readonly img_url: string; + readonly nearest_city: string; + readonly nearest_district: string; } diff --git a/src/modules/kite-players/entities/cities.schema.ts b/src/modules/kite-players/entities/cities.schema.ts new file mode 100644 index 0000000..9a95e21 --- /dev/null +++ b/src/modules/kite-players/entities/cities.schema.ts @@ -0,0 +1,40 @@ +import { Document, model, ObjectId, Schema } from "mongoose"; + +export class CityData { + _id: ObjectId; + district_id: number; + name_en: string; + name_si?: string; + name_ta?: string; + sub_name_en?: string; + sub_name_si?: string; + sub_name_ta?: string; + postcode: string; + location: { + type: string; + coordinates: [number, number]; + }; +} + +export const CityDataSchema = new Schema({ + district_id: { type: Number }, + name_en: { type: String, default: null }, + name_si: { type: String, default: null }, + name_ta: { type: String, default: null }, + sub_name_en: { type: String, default: null }, + sub_name_si: { type: String, default: null }, + sub_name_ta: { type: String, default: null }, + postcode: { type: String, default: null }, + location: { + type: { type: String, default: "Point" }, + coordinates: { type: [Number] } + } +}, { + collection: 'cities' +}); + +// Create the 2dsphere index on the `location` field +CityDataSchema.index({ location: '2dsphere' }); + +export type CityDataDocument = CityData & Document; +export const CityDataModel = model('CityData', CityDataSchema, 'cities'); \ No newline at end of file diff --git a/src/modules/kite-players/entities/districts.schema.ts b/src/modules/kite-players/entities/districts.schema.ts new file mode 100644 index 0000000..d9808d0 --- /dev/null +++ b/src/modules/kite-players/entities/districts.schema.ts @@ -0,0 +1,22 @@ +import { model, ObjectId, Schema } from "mongoose"; + +export class DistrictData{ +_id: ObjectId; +province_id: number; +name_en: string; +name_si?: string; +name_ta?: string; +} + +export const DistrictDataSchema = new Schema({ + id: { type: Number }, + province_id: { type: Number }, + name_en: { type: String, default: null }, + name_si: { type: String, default: null }, + name_ta: { type: String, default: null } +},{ + collection: 'districts' +}); + +export type DistrictDataDocument = DistrictData & Document; +export const DistrictDataModel = model('DistrictData', DistrictDataSchema, 'districts'); \ No newline at end of file diff --git a/src/modules/kite-players/entities/kite-player.entity.ts b/src/modules/kite-players/entities/kite-player.entity.ts index 444e3b7..e3d64d8 100644 --- a/src/modules/kite-players/entities/kite-player.entity.ts +++ b/src/modules/kite-players/entities/kite-player.entity.ts @@ -25,6 +25,12 @@ export class KitePlayer { @Prop({ required: true }) city: string; + @Prop() + nearest_city: string; + + @Prop() + nearest_district: string; + @Prop() client_id: string; diff --git a/src/modules/kite-players/kite-players.controller.ts b/src/modules/kite-players/kite-players.controller.ts index 6023300..cab8b24 100644 --- a/src/modules/kite-players/kite-players.controller.ts +++ b/src/modules/kite-players/kite-players.controller.ts @@ -41,6 +41,11 @@ export class KitePlayersController { ); } + @Get('nearest-district') + async getKitePlayersCountByNearestDistrict() { + return this.kiteplayersService.getKitePlayersCountByNearestDistrict(); + } + @Get() findAll(): Promise { return this.kiteplayersService.findAll(); diff --git a/src/modules/kite-players/kite-players.module.ts b/src/modules/kite-players/kite-players.module.ts index b5e8743..29692ec 100644 --- a/src/modules/kite-players/kite-players.module.ts +++ b/src/modules/kite-players/kite-players.module.ts @@ -3,6 +3,8 @@ import { MongooseModule } from '@nestjs/mongoose'; import { KiteDataModule } from '../kite-data/kite-data.module'; import { TokenModule } from '../users/token/token.module'; import { UsersModule } from '../users/users.module'; +import { CityDataSchema } from './entities/cities.schema'; +import { DistrictDataSchema } from './entities/districts.schema'; import { KitePlayer, KitePlayerSchema } from './entities/kite-player.entity'; import { KitePlayersController } from './kite-players.controller'; import { KitePlayersService } from './kite-players.service'; @@ -14,6 +16,8 @@ import { KitePlayersService } from './kite-players.service'; TokenModule, MongooseModule.forFeature([ { name: KitePlayer.name, schema: KitePlayerSchema }, + { name: 'CityData', schema: CityDataSchema}, + { name: 'DistrictData', schema: DistrictDataSchema}, ]), ], controllers: [KitePlayersController], diff --git a/src/modules/kite-players/kite-players.service.ts b/src/modules/kite-players/kite-players.service.ts index 6693f71..fb591e2 100644 --- a/src/modules/kite-players/kite-players.service.ts +++ b/src/modules/kite-players/kite-players.service.ts @@ -6,6 +6,7 @@ import { CreateKitePlayerDto } from './dto/create-kite-player-dto'; import { GetKitePlayerDto } from './dto/get-kite-player-dto'; import { KitePlayerCreatedResponseDto } from './dto/kite-player-created-response.dto'; import { UpdateKitePlayerDto } from './dto/update-kite-player-dto'; +import { CityDataDocument } from './entities/cities.schema'; import { KitePlayer, KitePlayerDocument } from './entities/kite-player.entity'; @Injectable() @@ -14,6 +15,8 @@ export class KitePlayersService { constructor( @InjectModel(KitePlayer.name) private readonly kitePlayerModel: Model, + @InjectModel('CityData') + private readonly CityDataModel: Model, @InjectConnection() private readonly mongoConnection: Connection, private readonly jwtService: JwtService, ) {} @@ -81,11 +84,19 @@ export class KitePlayersService { kitePlayer = existingKitePlayer; } else { + const coordinatesArray: [number, number] = [ + createKitePlayerDto.coordinates.long, + createKitePlayerDto.coordinates.lat, + ]; + + const nearestCity = await this.findNearestCity(coordinatesArray); const randomAvatarUrl = this.getRandomAvatarUrl(); const newKitePlayer = new this.kitePlayerModel({ ...createKitePlayerDto, user_id: result._id, img_url: randomAvatarUrl, + nearest_city: nearestCity.city_name_en, + nearest_district: nearestCity.district_name_en, }); kitePlayer = await newKitePlayer.save(); } @@ -96,6 +107,8 @@ export class KitePlayersService { coordinates: kitePlayer.coordinates, city: kitePlayer.city, img_url: kitePlayer.img_url, + nearest_city: kitePlayer.nearest_city, + nearest_district: kitePlayer.nearest_district, }; return response; @@ -138,4 +151,86 @@ export class KitePlayersService { } return kitePlayer; } + + async findNearestCity(coordinates: [number, number]) { + const nearestCity = await this.CityDataModel.aggregate([ + { + $geoNear: { + near: { + type: 'Point', + coordinates: coordinates, + }, + distanceField: 'distance', + spherical: true, + }, + }, + { + $lookup: { + from: 'districts', + localField: 'district_id', + foreignField: 'id', + as: 'district', + }, + }, + { + $unwind: '$district', + }, + { + $project: { + city_name_en: '$name_en', + district_name_en: '$district.name_en', + _id: 0, + }, + }, + { + $limit: 1, + }, + ]).exec(); + + if (!nearestCity || nearestCity.length === 0) { + throw new Error('No city found near these coordinates'); + } + return nearestCity[0]; + } + + async getKitePlayersCountByNearestDistrict() { + return this.kitePlayerModel.aggregate([ + { + $group: { + _id: "$nearest_district", + kite_player_ids: { $addToSet: "$_id" }, + total_players: { $sum: 1 } + } + }, + { + $lookup: { + from: "kite_data", + localField: "kite_player_ids", + foreignField: "metadata.kite_player_id", + as: "kite_data" + } + }, + { + $unwind: { + path: "$kite_data", + preserveNullAndEmptyArrays: false + } + }, + { + $group: { + _id: "$_id", + total_players: { $first: "$total_players" }, + unique_attempt_timestamps: { $addToSet: "$kite_data.metadata.attempt_timestamp" } + } + }, + { + $project: { + _id: 0, + nearest_district: "$_id", + total_players: 1, + total_attempts: { $size: "$unique_attempt_timestamps" } + } + } + ]); + } } From b93490198e7370fe8e31b8ebc154e94fdd59459e Mon Sep 17 00:00:00 2001 From: Hirushan Prabhashana Date: Thu, 15 Aug 2024 18:42:45 +0530 Subject: [PATCH 3/9] Feat: create findHexagonByCoordinates method and findWeatherStationByHexagonName method (#45) --- .../dto/create-weather-station.dto.ts | 1 + .../dto/get-weather-station.dto.ts | 1 + .../entities/geojson-hexagon-coordinates.ts | 28 +++++++++ .../entities/weather-station.entity.ts | 3 + .../weather-stations.controller.ts | 34 +++++++---- .../weather-stations.module.ts | 14 +++-- .../weather-stations.service.ts | 61 +++++++++++++++++-- 7 files changed, 120 insertions(+), 22 deletions(-) create mode 100644 src/modules/weather-stations/entities/geojson-hexagon-coordinates.ts diff --git a/src/modules/weather-stations/dto/create-weather-station.dto.ts b/src/modules/weather-stations/dto/create-weather-station.dto.ts index 110637d..54b5085 100644 --- a/src/modules/weather-stations/dto/create-weather-station.dto.ts +++ b/src/modules/weather-stations/dto/create-weather-station.dto.ts @@ -4,4 +4,5 @@ export class CreateWeatherStationDto { readonly name: string; readonly coordinates: ICoordinates; readonly user_ids: string[]; + readonly hexagon_name: string; } diff --git a/src/modules/weather-stations/dto/get-weather-station.dto.ts b/src/modules/weather-stations/dto/get-weather-station.dto.ts index 4e78fae..c3a8348 100644 --- a/src/modules/weather-stations/dto/get-weather-station.dto.ts +++ b/src/modules/weather-stations/dto/get-weather-station.dto.ts @@ -5,4 +5,5 @@ export class GetWeatherStationDto { readonly name: string; readonly coordinates: ICoordinates; readonly user_ids: string[]; + readonly hexagon_name: string; } diff --git a/src/modules/weather-stations/entities/geojson-hexagon-coordinates.ts b/src/modules/weather-stations/entities/geojson-hexagon-coordinates.ts new file mode 100644 index 0000000..924ac82 --- /dev/null +++ b/src/modules/weather-stations/entities/geojson-hexagon-coordinates.ts @@ -0,0 +1,28 @@ +import { model, ObjectId, Schema } from 'mongoose'; + +export class GeoJsonHexagon { + _id: ObjectId; + hexagon_name: string; + location: { + type: 'Polygon'; + coordinates: [][][]; + }; +} + +export const GeoJsonHexagonSchema = new Schema({ + hexagon_name: { type: String }, + location: { + type: { + type: String, + enum: ['Polygon'], + }, + coordinates: { + type: [[[Number]]], + }, + }, +},{collection: 'geo_json_hexagon_coordinates'}); + +GeoJsonHexagonSchema.index({ location: '2dsphere' }); + +export type GeoJsonHexagonDocument = GeoJsonHexagon & Document; +export const GeoJsonHexagonCoordinatesModel = model('GeoJsonHexagonCoordinates', GeoJsonHexagonSchema); \ No newline at end of file diff --git a/src/modules/weather-stations/entities/weather-station.entity.ts b/src/modules/weather-stations/entities/weather-station.entity.ts index 712b91b..a871741 100644 --- a/src/modules/weather-stations/entities/weather-station.entity.ts +++ b/src/modules/weather-stations/entities/weather-station.entity.ts @@ -18,6 +18,9 @@ export class WeatherStation { @Prop({ required: true, type: Object }) coordinates: ICoordinates; + @Prop() + hexagon_name: string; + @Prop({ type: [{ type: String, default: uuidv4, ref: User.name }] }) user_ids: string[]; diff --git a/src/modules/weather-stations/weather-stations.controller.ts b/src/modules/weather-stations/weather-stations.controller.ts index 78c2e37..2fda80b 100644 --- a/src/modules/weather-stations/weather-stations.controller.ts +++ b/src/modules/weather-stations/weather-stations.controller.ts @@ -1,26 +1,26 @@ import { - Controller, - Get, - Post, Body, - Patch, - Param, + Controller, Delete, - UseGuards, + Get, Headers, + Param, ParseUUIDPipe, + Patch, + Post, + UseGuards, } from '@nestjs/common'; -import { WeatherStationsService } from './weather-stations.service'; -import { CreateWeatherStationDto } from './dto/create-weather-station.dto'; -import { UpdateWeatherStationDto } from './dto/update-weather-station.dto'; -import { GetWeatherStationDto } from './dto/get-weather-station.dto'; -import { AddUsersToWeatherStationDto } from './dto/add-users-to-weather-station.dto'; import { ApiTags } from '@nestjs/swagger'; import { ValidateGaveshaClientGuard } from '../common/guards/gavesha-client.guard'; import { ValidateGaveshaUserGuard } from '../common/guards/gavesha-user.guard'; -import { WeatherDataService } from '../weather-data/weather-data.service'; import { PointsService } from '../points/points.service'; +import { WeatherDataService } from '../weather-data/weather-data.service'; +import { AddUsersToWeatherStationDto } from './dto/add-users-to-weather-station.dto'; +import { CreateWeatherStationDto } from './dto/create-weather-station.dto'; +import { GetWeatherStationDto } from './dto/get-weather-station.dto'; +import { UpdateWeatherStationDto } from './dto/update-weather-station.dto'; import { WeatherStationUpdatedResponseDto } from './dto/weather-station-updated-response.dto'; +import { WeatherStationsService } from './weather-stations.service'; @Controller('weather-stations') @ApiTags('weather-stations') @@ -48,6 +48,16 @@ export class WeatherStationsController { return this.weatherStationsService.findAll(); } + @Get('hexagon/:hexagonName') + async findWeatherStationByHexagonId(@Param('hexagonName') hexagonName: string) { + const weatherStationData = await this.weatherStationsService.findWeatherStationByHexagonName(hexagonName); + if (!weatherStationData) { + return { message: `No weather stations found for hexagon name: ${hexagonName}` }; + } + return weatherStationData; + } + + @Get(':id') findOne(@Param('id') id: string) { return this.weatherStationsService.findOne(id); diff --git a/src/modules/weather-stations/weather-stations.module.ts b/src/modules/weather-stations/weather-stations.module.ts index d0cd6fe..2ef562b 100644 --- a/src/modules/weather-stations/weather-stations.module.ts +++ b/src/modules/weather-stations/weather-stations.module.ts @@ -1,15 +1,16 @@ import { Module, forwardRef } from '@nestjs/common'; -import { WeatherStationsService } from './weather-stations.service'; -import { WeatherStationsController } from './weather-stations.controller'; import { MongooseModule } from '@nestjs/mongoose'; +import { PointsModule } from '../points/points.module'; +import { TokenModule } from '../users/token/token.module'; +import { UsersModule } from '../users/users.module'; +import { WeatherDataModule } from '../weather-data/weather-data.module'; +import { GeoJsonHexagonSchema } from './entities/geojson-hexagon-coordinates'; import { WeatherStation, WeatherStationSchema, } from './entities/weather-station.entity'; -import { UsersModule } from '../users/users.module'; -import { WeatherDataModule } from '../weather-data/weather-data.module'; -import { PointsModule } from '../points/points.module'; -import { TokenModule } from '../users/token/token.module'; +import { WeatherStationsController } from './weather-stations.controller'; +import { WeatherStationsService } from './weather-stations.service'; @Module({ imports: [ @@ -19,6 +20,7 @@ import { TokenModule } from '../users/token/token.module'; TokenModule, MongooseModule.forFeature([ { name: WeatherStation.name, schema: WeatherStationSchema }, + {name:'GeoJsonHexaCoordinates', schema: GeoJsonHexagonSchema} ]), ], controllers: [WeatherStationsController], diff --git a/src/modules/weather-stations/weather-stations.service.ts b/src/modules/weather-stations/weather-stations.service.ts index 6917821..f0d41ec 100644 --- a/src/modules/weather-stations/weather-stations.service.ts +++ b/src/modules/weather-stations/weather-stations.service.ts @@ -8,6 +8,7 @@ import { CreateWeatherStationDto } from './dto/create-weather-station.dto'; import { GetWeatherStationDto } from './dto/get-weather-station.dto'; import { UpdateWeatherStationDto } from './dto/update-weather-station.dto'; import { WeatherStationCreatedResponseDto } from './dto/weather-station-created-response.dto'; +import { GeoJsonHexagonDocument } from './entities/geojson-hexagon-coordinates'; import { WeatherStation, WeatherStationDocument, @@ -18,7 +19,8 @@ export class WeatherStationsService { constructor( @InjectModel(WeatherStation.name) private readonly weatherStationModel: Model, - + @InjectModel('GeoJsonHexaCoordinates') + private geojsonhexagonModel: Model, @InjectConnection() private readonly mongoConnection: Connection, private readonly jwtService: JwtService, @@ -36,9 +38,15 @@ export class WeatherStationsService { try { // Step 1: Save the new weather station - const newWeatherStation = new this.weatherStationModel( - createWeatherStationDto, - ); + const coordinates = createWeatherStationDto.coordinates; + const point = [coordinates.long, coordinates.lat]; + const hexagon_name = await this.findHexagonByCoordinates(point[0], point[1]); + + // Step 2: Save the new weather station with hexagon_name + const newWeatherStation = new this.weatherStationModel({ + ...createWeatherStationDto, + hexagon_name, + }); const savedWeatherStation = await newWeatherStation.save({ session }); // Step 2: Update the user API key with the new weather station ID @@ -87,6 +95,7 @@ export class WeatherStationsService { coordinates: savedWeatherStation.coordinates, user_ids: savedWeatherStation.user_ids, gavesha_user_api_key: updatedApiKey, + hexagon_name: savedWeatherStation.hexagon_name, }; return response; @@ -192,4 +201,48 @@ export class WeatherStationsService { return updatedWeatherStation; } + + async findHexagonByCoordinates(lng: number, lat: number): Promise { + const point = { + type: 'Point', + coordinates: [lng, lat], + }; + + const hexagon = await this.geojsonhexagonModel.findOne({ + location: { + $geoIntersects: { + $geometry: point, + }, + }, + }); + + return hexagon ? hexagon.hexagon_name : null; + } + + async findWeatherStationByHexagonName(hexagonName: string) { + const aggregationPipeline = [ + { + $match: { + hexagon_name: hexagonName + } + }, + { + $group: { + _id: "$hexagon_name", + count: { $sum: 1 }, + names: { $push: "$name" } + } + }, + { + $project: { + _id: 1, + count: 1, + names: 1 + } + } + ]; + + const result = await this.weatherStationModel.aggregate(aggregationPipeline).exec(); + return result.length ? result[0] : null; + } } From fac51ad27c05b652433883e4bf11b0d9b7846879 Mon Sep 17 00:00:00 2001 From: Hirushan Prabhashana Date: Fri, 16 Aug 2024 14:56:52 +0530 Subject: [PATCH 4/9] feat: create age-group endpoint to get kite play attempts by age group (#43) * feat: create age-group endpoint * Fix: make changes in aggregration pipeline in getKitePlayerStatsByAgeRange method. --- .../kite-players/kite-players.controller.ts | 10 +++ .../kite-players/kite-players.service.ts | 85 +++++++++++++++++++ 2 files changed, 95 insertions(+) diff --git a/src/modules/kite-players/kite-players.controller.ts b/src/modules/kite-players/kite-players.controller.ts index cab8b24..66c3ea1 100644 --- a/src/modules/kite-players/kite-players.controller.ts +++ b/src/modules/kite-players/kite-players.controller.ts @@ -40,6 +40,16 @@ export class KitePlayersController { gaveshaUserApiKey, ); } + + @Get('age-group') + async getKitePlayerStatsByAgeRange(): Promise { + try { + const stats = await this.kiteplayersService.getKitePlayerStatsByAgeRange(); + return stats; + } catch (error) { + throw new Error('Failed to retrieve kite player statistics by age group.'); + } + } @Get('nearest-district') async getKitePlayersCountByNearestDistrict() { diff --git a/src/modules/kite-players/kite-players.service.ts b/src/modules/kite-players/kite-players.service.ts index fb591e2..187e70d 100644 --- a/src/modules/kite-players/kite-players.service.ts +++ b/src/modules/kite-players/kite-players.service.ts @@ -152,6 +152,91 @@ export class KitePlayersService { return kitePlayer; } + async getKitePlayerStatsByAgeRange(): Promise { + const pipeline = [ + { + $addFields: { + age: { + $floor: { + $divide: [ + { + $subtract: [new Date(), "$birthday"] + }, + 1000 * 60 * 60 * 24 * 365.25 + ] + } + } + } + }, + { + $bucket: { + groupBy: "$age", + boundaries: [0, 6, 11, 16, 21, 26, 31, 36, 41, 46, 51, 56, 61], + default: "Other", + output: { + total_kite_players: { $sum: 1 }, + kite_player_ids: { $push: "$_id" } + } + } + }, + { + $addFields: { + age_group: { + $switch: { + branches: [ + { case: { $eq: ["$_id", 0] }, then: "0-5" }, + { case: { $eq: ["$_id", 6] }, then: "6-10" }, + { case: { $eq: ["$_id", 11] }, then: "11-15" }, + { case: { $eq: ["$_id", 16] }, then: "16-20" }, + { case: { $eq: ["$_id", 21] }, then: "21-25" }, + { case: { $eq: ["$_id", 26] }, then: "26-30" }, + { case: { $eq: ["$_id", 31] }, then: "31-35" }, + { case: { $eq: ["$_id", 36] }, then: "36-40" }, + { case: { $eq: ["$_id", 41] }, then: "41-45" }, + { case: { $eq: ["$_id", 46] }, then: "46-50" }, + { case: { $eq: ["$_id", 51] }, then: "51-55" }, + { case: { $eq: ["$_id", 56] }, then: "56-60" } + ], + default: "Other" + } + } + } + }, + { + $lookup: { + from: "kite_data", + localField: "kite_player_ids", + foreignField: "metadata.kite_player_id", + as: "kite_data" + } + }, + { + $unwind: { + path: "$kite_data", + preserveNullAndEmptyArrays: true + } + }, + { + $group: { + _id: "$age_group", + total_kite_players: { $first: "$total_kite_players" }, + unique_attempt_timestamps: { $addToSet: "$kite_data.metadata.attempt_timestamp" } + } + }, + { + $project: { + _id: 0, + age_group: "$_id", + total_kite_players: 1, + total_attempts: { $size: "$unique_attempt_timestamps" } + } + } + ]; + + const results = await this.kitePlayerModel.aggregate(pipeline).exec(); + return results; + } + async findNearestCity(coordinates: [number, number]) { const nearestCity = await this.CityDataModel.aggregate([ { From 4130f7c590d1e159425af1cde6e5468af26e7320 Mon Sep 17 00:00:00 2001 From: Hirushan Prabhashana Date: Fri, 16 Aug 2024 17:55:39 +0530 Subject: [PATCH 5/9] Feat: create firmware download endpoint (#46) * Feat: create firmware download endpoint * Fix: Move bussiness logic of the firmware/weathercom endpoint to controll layer --- nest-cli.json | 8 +- src/app.module.ts | 2 + src/assets/firmware/Version_1.2.3.txt | 3 + .../downloads/downloads.controller.spec.ts | 18 +++++ src/modules/downloads/downloads.controller.ts | 22 ++++++ src/modules/downloads/downloads.module.ts | 11 +++ .../downloads/downloads.service.spec.ts | 18 +++++ src/modules/downloads/downloads.service.ts | 77 +++++++++++++++++++ 8 files changed, 158 insertions(+), 1 deletion(-) create mode 100644 src/assets/firmware/Version_1.2.3.txt create mode 100644 src/modules/downloads/downloads.controller.spec.ts create mode 100644 src/modules/downloads/downloads.controller.ts create mode 100644 src/modules/downloads/downloads.module.ts create mode 100644 src/modules/downloads/downloads.service.spec.ts create mode 100644 src/modules/downloads/downloads.service.ts diff --git a/nest-cli.json b/nest-cli.json index f9aa683..ad44baa 100644 --- a/nest-cli.json +++ b/nest-cli.json @@ -3,6 +3,12 @@ "collection": "@nestjs/schematics", "sourceRoot": "src", "compilerOptions": { - "deleteOutDir": true + "deleteOutDir": true, + "assets": [ + { + "include": "assets/firmware/**/*", + "outDir": "dist" + } + ] } } diff --git a/src/app.module.ts b/src/app.module.ts index a479142..0053fba 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -9,6 +9,7 @@ import { AppController } from './app.controller'; import { AppService } from './app.service'; import { ClientsModule } from './modules/clients/clients.module'; import { GuardsModule } from './modules/common/guards/guards.module'; +import { DownloadsModule } from './modules/downloads/downloads.module'; import { KiteDataModule } from './modules/kite-data/kite-data.module'; import { KitePlayersModule } from './modules/kite-players/kite-players.module'; import { PointsModule } from './modules/points/points.module'; @@ -55,6 +56,7 @@ import { WeatherStationsModule } from './modules/weather-stations/weather-statio KitePlayersModule, KiteDataModule, ScheduleModule.forRoot(), + DownloadsModule, ], controllers: [AppController], providers: [AppService], diff --git a/src/assets/firmware/Version_1.2.3.txt b/src/assets/firmware/Version_1.2.3.txt new file mode 100644 index 0000000..4fa4abf --- /dev/null +++ b/src/assets/firmware/Version_1.2.3.txt @@ -0,0 +1,3 @@ +{ + Version 1.2.3 +} \ No newline at end of file diff --git a/src/modules/downloads/downloads.controller.spec.ts b/src/modules/downloads/downloads.controller.spec.ts new file mode 100644 index 0000000..2ad768e --- /dev/null +++ b/src/modules/downloads/downloads.controller.spec.ts @@ -0,0 +1,18 @@ +import { Test, TestingModule } from '@nestjs/testing'; +import { DownloadsController } from './downloads.controller'; + +describe('DownloadsController', () => { + let controller: DownloadsController; + + beforeEach(async () => { + const module: TestingModule = await Test.createTestingModule({ + controllers: [DownloadsController], + }).compile(); + + controller = module.get(DownloadsController); + }); + + it('should be defined', () => { + expect(controller).toBeDefined(); + }); +}); diff --git a/src/modules/downloads/downloads.controller.ts b/src/modules/downloads/downloads.controller.ts new file mode 100644 index 0000000..4fa5e5c --- /dev/null +++ b/src/modules/downloads/downloads.controller.ts @@ -0,0 +1,22 @@ +import { BadRequestException, Controller, Get, Param, Res } from '@nestjs/common'; +import { Response } from 'express'; +import { DownloadsService } from './downloads.service'; + +@Controller('downloads') +export class DownloadsController { + constructor(private readonly downloadsService: DownloadsService) {} + + @Get('firmware/weathercom/:version_number') + async downloadFile( + @Param('version_number') versionNumber: string, + @Res() res: Response, + ): Promise { + try { + const filePath = this.downloadsService.getFilePath(versionNumber); + this.downloadsService.streamFile(filePath, res); + } catch (error) { + console.error(`Error downloading file: ${error.message}`); + throw new BadRequestException('Could not download the file.'); + } + } +} diff --git a/src/modules/downloads/downloads.module.ts b/src/modules/downloads/downloads.module.ts new file mode 100644 index 0000000..ec8d7eb --- /dev/null +++ b/src/modules/downloads/downloads.module.ts @@ -0,0 +1,11 @@ +import { Module } from '@nestjs/common'; +import { DownloadsController } from './downloads.controller'; +import { DownloadsService } from './downloads.service'; + +@Module({ + imports: [], + controllers: [DownloadsController], + providers: [DownloadsService], + exports: [DownloadsService], +}) +export class DownloadsModule {} diff --git a/src/modules/downloads/downloads.service.spec.ts b/src/modules/downloads/downloads.service.spec.ts new file mode 100644 index 0000000..12fc296 --- /dev/null +++ b/src/modules/downloads/downloads.service.spec.ts @@ -0,0 +1,18 @@ +import { Test, TestingModule } from '@nestjs/testing'; +import { DownloadsService } from './downloads.service'; + +describe('DownloadsService', () => { + let service: DownloadsService; + + beforeEach(async () => { + const module: TestingModule = await Test.createTestingModule({ + providers: [DownloadsService], + }).compile(); + + service = module.get(DownloadsService); + }); + + it('should be defined', () => { + expect(service).toBeDefined(); + }); +}); diff --git a/src/modules/downloads/downloads.service.ts b/src/modules/downloads/downloads.service.ts new file mode 100644 index 0000000..818c1d5 --- /dev/null +++ b/src/modules/downloads/downloads.service.ts @@ -0,0 +1,77 @@ +import { BadRequestException, Injectable } from '@nestjs/common'; +import { Response } from 'express'; +import * as fs from 'fs'; +import * as path from 'path'; + +@Injectable() +export class DownloadsService { + private firmwareFiles = [ + { + version_number: 123, + filename: 'Version_1.2.3.txt', + crc: 'Defined', + }, + { + version_number: 124, + filename: 'Version_1.2.4.txt', + crc: 'Defined', + }, + { + version_number: 125, + filename: 'Version_1.2.5.txt', + crc: 'Defined', + }, + { + version_number: 126, + filename: 'Version_1.2.6.txt', + crc: 'Defined', + }, + { + version_number: 127, + filename: 'Version_1.2.7.txt', + crc: 'Defined', + }, + ]; + + getDirectoryPath(): string { + if (process.env.NODE_ENV === 'local') { + return path.join(__dirname, '../../../src/assets/firmware'); + } else if (process.env.NODE_ENV === 'production') { + return path.join(__dirname, '../../../dist/assets/firmware'); + } else { + throw new Error('NODE_ENV not set or unrecognized'); + } + } + + mapFilename(versionNumber: number): string { + const firmware = this.firmwareFiles.find( + (file) => file.version_number === versionNumber, + ); + + if (firmware) { + return firmware.filename; + } else { + throw new BadRequestException('Invalid version identifier'); + } + } + + getFilePath(versionNumber: string): string { + const actualFilename = this.mapFilename(parseInt(versionNumber)); + const directoryPath = this.getDirectoryPath(); + const filePath = path.join(directoryPath, actualFilename); + + if (fs.existsSync(filePath)) { + return filePath; + } else { + throw new BadRequestException('File not found'); + } + } + + streamFile(filePath: string, res: Response): void { + res.setHeader('Content-Disposition', `attachment; filename=${path.basename(filePath)}`); + res.setHeader('Content-Type', 'application/octet-stream'); + + const fileStream = fs.createReadStream(filePath); + fileStream.pipe(res); + } +} From 08c58c51ecc9402a85cefc0ddbe6ad7c783bf766 Mon Sep 17 00:00:00 2001 From: Lihini Senanayake Date: Wed, 21 Aug 2024 20:04:03 +0530 Subject: [PATCH 6/9] fix: weathercom: set auth token and refresh token expiry time --- src/modules/auth/auth.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/auth/auth.service.ts b/src/modules/auth/auth.service.ts index 6677ff1..7f19aa1 100644 --- a/src/modules/auth/auth.service.ts +++ b/src/modules/auth/auth.service.ts @@ -73,11 +73,12 @@ export class AuthService { const accessToken = await this.tokenService.generateClientAccessToken({ payload, subject: clientId, - expiresIn: '1y', + expiresIn: '1d', }); const refreshToken = await this.tokenService.generateRefreshToken({ payload, subject: clientId, + expiresIn: '60d', }); return { From c868aab5d238fcd15ff253fc96a0551ff6b309cf Mon Sep 17 00:00:00 2001 From: Chethana Dissanayaka <150318307+chethana-dissanayka@users.noreply.github.com> Date: Thu, 22 Aug 2024 15:31:13 +0530 Subject: [PATCH 7/9] =?UTF-8?q?Feat:=20create=20two=20new=20endpoints=20to?= =?UTF-8?q?=20get=20all=20time=20and=20current=20week=20=20data=E2=80=A6?= =?UTF-8?q?=20(#47)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Feat: create two new endpoints to get all time and current week data with player data using player id and user id * fix: requested changes done --- package-lock.json | 12 + package.json | 1 + src/modules/kite-data/kite-data.controller.ts | 71 ++- src/modules/kite-data/kite-data.module.ts | 1 + src/modules/kite-data/kite-data.service.ts | 500 ++++++++++++------ .../kite-players/kite-players.module.ts | 5 +- 6 files changed, 424 insertions(+), 166 deletions(-) diff --git a/package-lock.json b/package-lock.json index 355c83c..ce1e27f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,6 +26,7 @@ "firebase-functions": "^4.9.0", "google-auth-library": "^9.2.0", "moment": "^2.30.1", + "moment-timezone": "^0.5.45", "mongoose": "^7.5.3", "reflect-metadata": "^0.1.13", "rxjs": "^7.8.1", @@ -9532,6 +9533,17 @@ "node": "*" } }, + "node_modules/moment-timezone": { + "version": "0.5.45", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.45.tgz", + "integrity": "sha512-HIWmqA86KcmCAhnMAN0wuDOARV/525R2+lOLotuGFzn4HO+FH+/645z2wx0Dt3iDv6/p61SIvKnDstISainhLQ==", + "dependencies": { + "moment": "^2.29.4" + }, + "engines": { + "node": "*" + } + }, "node_modules/mongodb": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.3.0.tgz", diff --git a/package.json b/package.json index c742077..e76222c 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,7 @@ "firebase-functions": "^4.9.0", "google-auth-library": "^9.2.0", "moment": "^2.30.1", + "moment-timezone": "^0.5.45", "mongoose": "^7.5.3", "reflect-metadata": "^0.1.13", "rxjs": "^7.8.1", diff --git a/src/modules/kite-data/kite-data.controller.ts b/src/modules/kite-data/kite-data.controller.ts index f7be374..b92251b 100644 --- a/src/modules/kite-data/kite-data.controller.ts +++ b/src/modules/kite-data/kite-data.controller.ts @@ -24,8 +24,8 @@ import { KiteDataService } from './kite-data.service'; export class KiteDataController { constructor( private readonly kiteDataService: KiteDataService, - private readonly kitePlayerService: KitePlayersService, - ) {} + private readonly kiteplayersService: KitePlayersService, + ) { } @UseGuards(ValidateGaveshaClientGuard, ValidateGaveshaUserGuard) @Post('bulk') @@ -49,7 +49,7 @@ export class KiteDataController { return res; } - @Get('latest') + @Get('latest/player') async findLatestByAllKitePlayers( @Query('include') include?: string, ): Promise { @@ -59,26 +59,75 @@ export class KiteDataController { ); } + //this is the old version of endpoint.mobile app used this endpoint so that not removed it yet. + // this is replace with latest/player/:kite_player_id' new endoint in desktop application. + @Get('latest/:kite_player_id') async findLatestByKitePlayerId( - @Param('kite_player_id', new ParseUUIDPipe({ version: '4' })) - kitePlayerId: string, + @Param('kite_player_id', new ParseUUIDPipe({ version: '4' })) kitePlayerId: string, @Query('include') include?: string, ) { const includeCurrentWeek = include === 'current_week'; - const kiteData = await this.kiteDataService.findLatestByKitePlayerId( - kitePlayerId, - includeCurrentWeek, - ); + const kiteData = await this.kiteDataService.findLatestByKitePlayerId(kitePlayerId, includeCurrentWeek); + + if (!kiteData) { + return { + + all_time: { max_height: null, total_attempts: null, total_flying_mins: null, total_height: null }, + current_week: { total_height: null, total_attempts: null, total_flying_mins: null, max_height: null, min_height: null }, + + }; + } + return kiteData; + } + + //this is the new endpoint for 'latest/:kite_player_id' + @Get('latest/player/:kite_player_id') + async findLatestByKitePlayerIdNewFunction( + @Param('kite_player_id', new ParseUUIDPipe({ version: '4' })) kitePlayerId: string, + @Query('include') include?: string, + ) { + const includeCurrentWeek = include === 'current_week'; + const kiteData = await this.kiteDataService.findLatestByKitePlayerIdNewFunction(kitePlayerId, includeCurrentWeek); + + if (!kiteData) { + return { + player: null, + stat: { + all_time: { max_height: null, total_attempts: null, total_flying_mins: null, total_height: null }, + current_week: { total_height: null, total_attempts: null, total_flying_mins: null, max_height: null, min_height: null }, + }, + }; + } + return kiteData; + } + + + @Get('latest/user/:user_id') + async findLatestByKiteUserId( + @Param('user_id', new ParseUUIDPipe({ version: '4' })) kiteUserId: string, + @Query('include') include?: string, + ) { + const includeCurrentWeek = include === 'current_week'; + const kiteData = await this.kiteDataService.findLatestByKiteUserId(kiteUserId, includeCurrentWeek); if (!kiteData) { - return { flying_mins: null, max_height: null, total_attempts: null }; + return { + player: null, + stat: { + all_time: { max_height: null, total_attempts: null, total_flying_mins: null, total_height: null }, + current_week: { total_height: null, total_attempts: null, total_flying_mins: null, max_height: null, min_height: null }, + }, + }; } return kiteData; } - + @Get('players-leaderboard') async getPlayersLeaderBoard() { return await this.kiteDataService.getPlayersLeaderBoard(); } + + + } diff --git a/src/modules/kite-data/kite-data.module.ts b/src/modules/kite-data/kite-data.module.ts index 230479a..9e47895 100644 --- a/src/modules/kite-data/kite-data.module.ts +++ b/src/modules/kite-data/kite-data.module.ts @@ -8,6 +8,7 @@ import { KiteDataService } from './kite-data.service'; @Module({ imports: [ + KitePlayersModule, MongooseModule.forFeature([ { name: KiteDatum.name, schema: KiteDatumSchema }, ]), diff --git a/src/modules/kite-data/kite-data.service.ts b/src/modules/kite-data/kite-data.service.ts index 21df7e7..a458bc8 100644 --- a/src/modules/kite-data/kite-data.service.ts +++ b/src/modules/kite-data/kite-data.service.ts @@ -7,15 +7,17 @@ import { CreateBulkKiteDataDto } from './dto/create-bulk-kite-data.dto'; import { KiteDataPoint } from './dto/kite-datapoint.dto'; import { KiteDatum, KiteDatumDocument } from './entities/kite-datum-entity'; import { KiteDataMetaData } from './schema/kitedata-metadata.schema'; +import { KitePlayer } from '../kite-players/entities/kite-player.entity'; @Injectable() export class KiteDataService { constructor( + @InjectModel(KitePlayer.name) private readonly kitePlayerModel: Model, @InjectModel(KiteDatum.name) private readonly kiteDatumModel: Model, @InjectConnection() private readonly mongoConnection: Connection, - ) {} + ) { } async bulkCommit( createBulkKiteData: CreateBulkKiteDataDto, @@ -108,8 +110,38 @@ export class KiteDataService { return finalKiteResponse; } + + async findLatestByKiteUserId(kiteUserId: string, includeCurrentWeek: boolean = false): Promise { + try { + // Find the kitePlayerId associated with the given kiteUserId + const kitePlayerId = await this.getKitePlayerIdByUserId(kiteUserId); + + if (!kitePlayerId) { + return null; + } + + // Use the existing findLatestByKitePlayerId method + return this.findLatestByKitePlayerIdNewFunction(kitePlayerId, includeCurrentWeek); + } catch (error) { + console.error('Error in findLatestByKiteUserId:', error); + throw error; + } + } + + // Method to get kitePlayerId from kiteUserId + async getKitePlayerIdByUserId(kiteUserId: string): Promise { + const player = await this.kitePlayerModel + .findOne({ user_id: kiteUserId }) // Query based on user_id + .select('_id') // Select the _id field which corresponds to kite_player_id + .exec(); + + return player ? player._id : null; + } + + async findLatestByKitePlayerId(kitePlayerId: string, includeCurrentWeek: boolean = false): Promise { try { + const [ allTimeMaxHeight, allTimeTotalAttempts, @@ -121,7 +153,63 @@ export class KiteDataService { this.getFlyingMinsByKitePlayerId(kitePlayerId), this.getTotalHeightByKitePlayerId(kitePlayerId) ]); - + + let currentWeekData = {}; + if (includeCurrentWeek) { + const [ + currentWeekTotalHeight, + currentWeekTotalAttempts, + currentWeekTotalFlyingMins, + currentWeekMaxHeight, + ] = await Promise.all([ + this.getTotalHeightForCurrentWeekByPlayerId(kitePlayerId), + this.getTotalAttemptsForCurrentWeekByPlayerId(kitePlayerId), + this.getTotalFlyingMinsForCurrentWeekByPlayerId(kitePlayerId), + this.getMaxHeightForCurrentWeekByPlayerId(kitePlayerId) + ]); + + currentWeekData = { + current_week: { + total_height: currentWeekTotalHeight, + total_attempts: currentWeekTotalAttempts, + total_flying_mins: currentWeekTotalFlyingMins, + max_height: currentWeekMaxHeight, + } + }; + } + + return { + all_time: { + max_height: allTimeMaxHeight, + total_attempts: allTimeTotalAttempts, + total_flying_mins: allTimeTotalFlyingMins, + total_height: allTimeTotalHeight + }, + ...currentWeekData, + } + + } catch (error) { + console.error("Error in findLatestByKitePlayerId:", error); + throw error; + } + } + + + async findLatestByKitePlayerIdNewFunction(kitePlayerId: string, includeCurrentWeek: boolean = false): Promise { + try { + const playerDetails = await this.getPlayerDetailsByKitePlayerId(kitePlayerId); + const [ + allTimeMaxHeight, + allTimeTotalAttempts, + allTimeTotalFlyingMins, + allTimeTotalHeight + ] = await Promise.all([ + this.getMaxHeightByKitePlayerId(kitePlayerId), + this.getTotalAttemptsByKitePlayerId(kitePlayerId), + this.getFlyingMinsByKitePlayerId(kitePlayerId), + this.getTotalHeightByKitePlayerId(kitePlayerId) + ]); + let currentWeekData = {}; if (includeCurrentWeek) { const [ @@ -129,50 +217,139 @@ export class KiteDataService { currentWeekTotalAttempts, currentWeekTotalFlyingMins, currentWeekMaxHeight, - currentWeekMinHeight ] = await Promise.all([ this.getTotalHeightForCurrentWeekByPlayerId(kitePlayerId), this.getTotalAttemptsForCurrentWeekByPlayerId(kitePlayerId), this.getTotalFlyingMinsForCurrentWeekByPlayerId(kitePlayerId), this.getMaxHeightForCurrentWeekByPlayerId(kitePlayerId), - this.getMinHeightForCurrentWeekByPlayerId(kitePlayerId) ]); - + currentWeekData = { current_week: { total_height: currentWeekTotalHeight, total_attempts: currentWeekTotalAttempts, total_flying_mins: currentWeekTotalFlyingMins, max_height: currentWeekMaxHeight, - min_height: currentWeekMinHeight, } }; } - + return { - all_time: { - max_height: allTimeMaxHeight, - total_attempts: allTimeTotalAttempts, - total_flying_mins: allTimeTotalFlyingMins, - total_height: allTimeTotalHeight - }, - ...currentWeekData, + "player": { + name: playerDetails?.name ?? null, + city: playerDetails?.city ?? null, + rank: playerDetails?.rank ?? null, + img_url: playerDetails?.img_url ?? null, + user_id: playerDetails?.user_id ?? null, + }, + + "stat": { + all_time: { + max_height: allTimeMaxHeight, + total_attempts: allTimeTotalAttempts, + total_flying_mins: allTimeTotalFlyingMins, + total_height: allTimeTotalHeight + }, + ...currentWeekData, + } }; } catch (error) { console.error("Error in findLatestByKitePlayerId:", error); throw error; } } - + + + async getPlayerDetailsByKitePlayerId(kitePlayerId: string): Promise { + const aggregationPipeline: any[] = [ + + { + $group: { + _id: { + kite_player_id: "$metadata.kite_player_id", + attempt_timestamp: "$metadata.attempt_timestamp" + }, + max_altitude: { $max: "$altitude" }, + min_altitude: { $min: "$altitude" } + } + }, + { + $group: { + _id: "$_id.kite_player_id", + attempts: { + $push: { + attempt_timestamp: "$_id.attempt_timestamp", + maxAltitude: "$max_altitude", + minAltitude: "$min_altitude", + height: { $subtract: ["$max_altitude", "$min_altitude"] } + } + }, + kite_height: { $max: { $subtract: ["$max_altitude", "$min_altitude"] } } + } + }, + { + $sort: { kite_height: -1 } + }, + { + $setWindowFields: { + sortBy: { kite_height: -1 }, + output: { + rank: { + $rank: {} + } + } + } + }, + { + $lookup: { + from: "kite_players", + localField: "_id", + foreignField: "_id", + as: "player_details" + } + }, + { + $unwind: { + path: "$player_details", + preserveNullAndEmptyArrays: true + } + }, + { + $project: { + _id: 0, + id: "$_id", + user_id: "$player_details.user_id", + name: "$player_details.name", + city: "$player_details.city", + img_url: "$player_details.img_url", + kite_height: 1, + rank: 1 + } + }, + { + $match: { + id: kitePlayerId + } + } + ]; + + const result = await this.kiteDatumModel.aggregate(aggregationPipeline).exec(); + return result.length > 0 ? result[0] : null; + } + + + async findLatestByAllKitePlayers(includeCurrentWeek: boolean = false): Promise { try { - const [totalHeight, totalAttempts, totalFlyingMins, totalMaxHeight] = await Promise.all([ + + const [totalHeight, totalAttempts, totalFlyingMins, totalMaxHeight,playerCount] = await Promise.all([ this.getTotalHeightByAllKitePlayers(), this.getTotalAttemptsByAllKitePlayers(), this.getTotalFlyingMinsByAllKitePlayers(), - this.getTotalMaxHeightByAllKitePlayers() + this.getTotalMaxHeightByAllKitePlayers(), + this.getTotalPlayersCount(), ]); - + let currentWeekData = {}; if (includeCurrentWeek) { const [ @@ -180,15 +357,17 @@ export class KiteDataService { currentWeekTotalAttempts, currentWeekTotalFlyingMins, currentWeekMaxHeight, - currentWeekMinHeight + currentWeekMinHeight, + currentWeekPlayerCount, ] = await Promise.all([ this.getTotalHeightForCurrentWeek(), this.getTotalAttemptsForCurrentWeek(), this.getTotalFlyingMinsForCurrentWeek(), this.getMaxHeightForCurrentWeek(), this.getMinHeightForCurrentWeek(), + this.getCurrentWeekPlayersCount(), ]); - + currentWeekData = { current_week: { total_height: currentWeekTotalHeight, @@ -196,25 +375,31 @@ export class KiteDataService { total_flying_mins: currentWeekTotalFlyingMins, max_height: currentWeekMaxHeight, min_height: currentWeekMinHeight, + player_count:currentWeekPlayerCount, } }; } - + return { - all_time: { - total_height: totalHeight, - total_attempts: totalAttempts, - total_flying_mins: totalFlyingMins, - max_height: totalMaxHeight - }, - ...currentWeekData, + "stat": { + all_time: { + total_height: totalHeight, + total_attempts: totalAttempts, + total_flying_mins: totalFlyingMins, + max_height: totalMaxHeight, + player_count:playerCount + }, + ...currentWeekData, + } }; } catch (error) { console.error("Error in findLatestByAllKitePlayers:", error); throw error; } } - + + + async getPlayersLeaderBoard() { const aggregationPipeline: any[] = [ { @@ -244,9 +429,20 @@ export class KiteDataService { { $sort: { kite_height: -1 } }, + { + $setWindowFields: { + sortBy: { kite_height: -1 }, + output: { + rank: { + $rank: {} + } + } + } + }, + { $lookup: { - from: "kite_players", + from: "kite_players", localField: "_id", foreignField: "_id", as: "player_details" @@ -266,16 +462,71 @@ export class KiteDataService { city: "$player_details.city", img_url: "$player_details.img_url", kite_height: 1, + rank: 1 } } // { // $limit: 10 // } ]; - + return await this.kiteDatumModel.aggregate(aggregationPipeline).exec(); } + + + async getTotalPlayersCount() { + const aggregationPipeline: any[] = [ + { // Group by unique player ID + $group: { + _id: "$metadata.kite_player_id" + } + }, + { + // Count the unique players + $count: "playerCount" + } + ]; + + const result = await this.kiteDatumModel.aggregate(aggregationPipeline).exec(); + return result.length > 0 ? result[0].playerCount : 0; +} + + +async getCurrentWeekPlayersCount() { + try { + // Define the start and end of the current week + const startOfCurrentWeek = moment().startOf('week').toDate(); + const endOfCurrentWeek = moment().endOf('week').toDate(); + + const aggregationPipeline = [ + { + $match: { + "metadata.attempt_timestamp": { + $gte: startOfCurrentWeek, + $lte: endOfCurrentWeek, + }, + }, + }, + { + $group: { + _id: "$metadata.kite_player_id", + }, + }, + { + $count: "current_week_player_count" + } + ]; + + const result = await this.kiteDatumModel.aggregate(aggregationPipeline).exec(); + return result.length > 0 ? result[0].current_week_player_count : 0; // Return the count or 0 if none + } catch (error) { + console.error("Error in getCurrentWeekPlayersCount:", error); + throw error; + } +} + + async getTotalHeightByAllKitePlayers(): Promise { const aggregationPipeline: any[] = [ { @@ -390,7 +641,7 @@ export class KiteDataService { timestampDifference: { $divide: [ { $subtract: ["$maxTimestamp", "$minTimestamp"] }, - 60000 + 60000 ] } } @@ -421,7 +672,7 @@ export class KiteDataService { return result.length > 0 ? result[0].total_flying_mins : 0; } - async getTotalMaxHeightByAllKitePlayers(): Promise{ + async getTotalMaxHeightByAllKitePlayers(): Promise { const aggregationPipeline: any[] = [ { $group: { @@ -449,23 +700,23 @@ export class KiteDataService { }, { $sort: { - max_height: -1 - } + max_height: -1 + } }, { - $limit : 1 - }, + $limit: 1 + }, { $project: { max_height: 1 - } + } } ] const result = await this.kiteDatumModel.aggregate(aggregationPipeline).exec(); return result.length > 0 ? result[0].max_height : 0; } - - async getFlyingMinsByKitePlayerId(kitePlayerId:string): Promise { + + async getFlyingMinsByKitePlayerId(kitePlayerId: string): Promise { const aggregationPipeline: any[] = [ { $match: { @@ -513,7 +764,7 @@ export class KiteDataService { timestampDifference: { $divide: [ { $subtract: ["$maxTimestamp", "$minTimestamp"] }, - 60000 + 60000 ] } } @@ -539,10 +790,10 @@ export class KiteDataService { return result.length > 0 ? result[0].flying_mins : 0; } - async getMaxHeightByKitePlayerId(kitePlayerId: string): Promise{ + async getMaxHeightByKitePlayerId(kitePlayerId: string): Promise { const aggregationPipeline: any[] = [ { - $match:{ + $match: { "metadata.kite_player_id": kitePlayerId } }, @@ -578,7 +829,7 @@ export class KiteDataService { ]; const result = await this.kiteDatumModel.aggregate(aggregationPipeline).exec(); - return result.length>0 ? result[0].max_height : 0; + return result.length > 0 ? result[0].max_height : 0; } async getTotalAttemptsByKitePlayerId(kitePlayerId: string): Promise { @@ -613,7 +864,7 @@ export class KiteDataService { return result.length > 0 ? result[0].attempts : 0; } - async getTotalHeightByKitePlayerId(kitePlayerId: string): Promise{ + async getTotalHeightByKitePlayerId(kitePlayerId: string): Promise { const aggregationPipeline = [ { $match: { @@ -628,7 +879,7 @@ export class KiteDataService { }, max_altitude: { $max: "$altitude" }, min_altitude: { $min: "$altitude" } - } + } }, { $addFields: { @@ -681,7 +932,7 @@ export class KiteDataService { { $group: { _id: "$kite_player_id", - unique_attempts: { $addToSet: "$attempt_timestamp" }, + unique_attempts: { $addToSet: "$attempt_timestamp" }, }, }, { @@ -754,7 +1005,7 @@ export class KiteDataService { { $group: { _id: null, - max_height_for_week: { $max: "$max_height" } + max_height_for_week: { $max: "$max_height" } }, }, { @@ -814,7 +1065,7 @@ export class KiteDataService { { $group: { _id: null, - min_height_for_week: { $min: "$min_height" } + min_height_for_week: { $min: "$min_height" } }, }, { @@ -1093,66 +1344,7 @@ export class KiteDataService { } } - async getMinHeightForCurrentWeekByPlayerId(kitePlayerId: string): Promise { - try { - const startOfCurrentWeek = moment().startOf('week').toDate(); - const endOfCurrentWeek = moment().endOf('week').toDate(); - - const aggregationPipeline = [ - { - $match: { - "metadata.kite_player_id": kitePlayerId, - "metadata.attempt_timestamp": { - $gte: startOfCurrentWeek, - $lte: endOfCurrentWeek, - }, - }, - }, - { - $group: { - _id: { - kite_player_id: "$metadata.kite_player_id", - attempt_timestamp: "$metadata.attempt_timestamp", - }, - max_altitude: { $max: "$altitude" }, - min_altitude: { $min: "$altitude" }, - }, - }, - { - $group: { - _id: "$_id.kite_player_id", - attempts: { - $push: { - attempt_timestamp: "$_id.attempt_timestamp", - maxAltitude: "$max_altitude", - minAltitude: "$min_altitude", - height: { $subtract: ["$max_altitude", "$min_altitude"] }, - }, - }, - min_height: { $min: { $subtract: ["$max_altitude", "$min_altitude"] } }, - }, - }, - { - $group: { - _id: null, - min_height_for_week: { $min: "$min_height" }, - }, - }, - { - $project: { - _id: 0, - min_height_for_week: 1, - }, - }, - ]; - - const result = await this.kiteDatumModel.aggregate(aggregationPipeline).exec(); - return result.length > 0 ? result[0].min_height_for_week : 0; - } catch (error) { - console.error("Error in getMinHeightForCurrentWeek:", error); - throw error; - } - } + async getTotalFlyingMinsForCurrentWeekByPlayerId(kitePlayerId: string): Promise { try { @@ -1334,21 +1526,21 @@ export class KiteDataService { if (sortByHeight === 'desc') { pipeline.push({ - $sort: { height: -1 } as any + $sort: { height: -1 } as any }); } else if (sortByHeight === 'asc') { pipeline.push({ - $sort: { height: 1 } as any + $sort: { height: 1 } as any }); } if (sortByAttempt === 'desc') { pipeline.push({ - $sort: { attempt_timestamp: -1 } as any + $sort: { attempt_timestamp: -1 } as any }); } else if (sortByAttempt === 'asc') { pipeline.push({ - $sort: { attempt_timestamp: 1 } as any + $sort: { attempt_timestamp: 1 } as any }); } @@ -1364,53 +1556,53 @@ export class KiteDataService { attemptTimestamp: Date ): Promise<{ data: { timestamp: string, height: number }[] }> { - const pipeline: any[] = [ - { - $match: { - "metadata.kite_player_id": kitePlayerId, - "metadata.attempt_timestamp": attemptTimestamp - } - }, - { - $group: { - _id: "$metadata.kite_player_id", - min_altitude: { $min: "$altitude" }, - data: { - $push: { - timestamp: "$timestamp", - altitude: "$altitude", - } + const pipeline: any[] = [ + { + $match: { + "metadata.kite_player_id": kitePlayerId, + "metadata.attempt_timestamp": attemptTimestamp + } + }, + { + $group: { + _id: "$metadata.kite_player_id", + min_altitude: { $min: "$altitude" }, + data: { + $push: { + timestamp: "$timestamp", + altitude: "$altitude", } } - }, - { - $addFields: { - data: { - $map: { - input: "$data", - as: "pair", - in: { - timestamp: "$$pair.timestamp", - altitude: "$$pair.altitude", - height: { $subtract: ["$$pair.altitude", "$min_altitude"] } - } + } + }, + { + $addFields: { + data: { + $map: { + input: "$data", + as: "pair", + in: { + timestamp: "$$pair.timestamp", + altitude: "$$pair.altitude", + height: { $subtract: ["$$pair.altitude", "$min_altitude"] } } } } - }, - { - $project: { - _id: 0, - data: { - timestamp: 1, - height: 1 - } + } + }, + { + $project: { + _id: 0, + data: { + timestamp: 1, + height: 1 } } - ]; - const result = await this.kiteDatumModel.aggregate(pipeline).exec(); - return { - data: result.length > 0 ? result[0].data : [] - }; + } + ]; + const result = await this.kiteDatumModel.aggregate(pipeline).exec(); + return { + data: result.length > 0 ? result[0].data : [] + }; } } diff --git a/src/modules/kite-players/kite-players.module.ts b/src/modules/kite-players/kite-players.module.ts index 29692ec..547a501 100644 --- a/src/modules/kite-players/kite-players.module.ts +++ b/src/modules/kite-players/kite-players.module.ts @@ -22,6 +22,9 @@ import { KitePlayersService } from './kite-players.service'; ], controllers: [KitePlayersController], providers: [KitePlayersService, KitePlayer], - exports: [KitePlayersService], + exports: [ + KitePlayersService, + MongooseModule.forFeature([{ name: KitePlayer.name, schema: KitePlayerSchema }]), + ], }) export class KitePlayersModule {} From 148370a9358f489bfe9eff1c7f7b51780e74f47f Mon Sep 17 00:00:00 2001 From: Chethana Dissanayaka <150318307+chethana-dissanayka@users.noreply.github.com> Date: Wed, 28 Aug 2024 14:13:23 +0530 Subject: [PATCH 8/9] Include player id when retrieving player details in /latest/player endpoint --- src/modules/kite-data/kite-data.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/kite-data/kite-data.service.ts b/src/modules/kite-data/kite-data.service.ts index a458bc8..035b9a9 100644 --- a/src/modules/kite-data/kite-data.service.ts +++ b/src/modules/kite-data/kite-data.service.ts @@ -241,6 +241,7 @@ export class KiteDataService { rank: playerDetails?.rank ?? null, img_url: playerDetails?.img_url ?? null, user_id: playerDetails?.user_id ?? null, + id:playerDetails?.id ?? null, }, "stat": { From b613e52d3b9b68b71e3e28ea71f9982e2d820d70 Mon Sep 17 00:00:00 2001 From: chethana-dissanayaka Date: Thu, 29 Aug 2024 13:04:43 +0530 Subject: [PATCH 9/9] Fix: remove sri lankan time from the getAttemptsByPlayerId method --- src/modules/kite-data/kite-data.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/kite-data/kite-data.service.ts b/src/modules/kite-data/kite-data.service.ts index 035b9a9..d1c3628 100644 --- a/src/modules/kite-data/kite-data.service.ts +++ b/src/modules/kite-data/kite-data.service.ts @@ -1547,7 +1547,8 @@ async getCurrentWeekPlayersCount() { const results = await this.kiteDatumModel.aggregate(pipeline).exec(); return results.map(result => ({ - attempt_timestamp: moment(result.attempt_timestamp).tz('Asia/Colombo').format('YYYY-MM-DDTHH:mm:ss'), + // attempt_timestamp: moment(result.attempt_timestamp).tz('Asia/Colombo').format('YYYY-MM-DDTHH:mm:ss'), + attempt_timestamp: result.attempt_timestamp, height: result.height })); }