diff --git a/server/database/icedb-journal b/server/database/icedb-journal
new file mode 100644
index 0000000000000000000000000000000000000000..eede3c9c9083ed7ac7144f5566f64dd1417883ab
Binary files /dev/null and b/server/database/icedb-journal differ
diff --git a/server/main.py b/server/main.py
index b5da7f0b78f59f4ffbd10e5abc9d213dd210986d..7158a57fc97339963bd6fcda87bf0b49b4a9f6c9 100644
--- a/server/main.py
+++ b/server/main.py
@@ -6,7 +6,7 @@ from urllib.parse import urlparse, parse_qs, unquote
 from consts import SSL_CERT_PATH, SSL_KEY_PATH, HOST, PORT
 from http.server import HTTPServer, BaseHTTPRequestHandler
 
-from map_handler.add_lake import cut_map
+from map_handler.add_new_lake import cut_map
 from server.consts import LAKE_RELATIONS_PATH
 from map_handler.get_lake_relation import get_divided_map
 from map_handler.get_measurements import get_measurements
diff --git a/server/map_handler/__pycache__/add_lake.cpython-311.pyc b/server/map_handler/__pycache__/add_lake.cpython-311.pyc
deleted file mode 100644
index 0d77e9519bd32398199d7cec00dd815e8bd81763..0000000000000000000000000000000000000000
Binary files a/server/map_handler/__pycache__/add_lake.cpython-311.pyc and /dev/null differ
diff --git a/server/map_handler/__pycache__/add_new_lake.cpython-311.pyc b/server/map_handler/__pycache__/add_new_lake.cpython-311.pyc
index 1ebfb30e892fc06a0ebe716236c82ae01c6ae030..b9605380da74de9664e3748aaab67cd6a1f49f85 100644
Binary files a/server/map_handler/__pycache__/add_new_lake.cpython-311.pyc and b/server/map_handler/__pycache__/add_new_lake.cpython-311.pyc differ
diff --git a/server/map_handler/__pycache__/get_measurements.cpython-311.pyc b/server/map_handler/__pycache__/get_measurements.cpython-311.pyc
index db0b79580febc268c6c34e7399aa04b8e684dc71..62768300f47550b86289036a61c962087e6bda21 100644
Binary files a/server/map_handler/__pycache__/get_measurements.cpython-311.pyc and b/server/map_handler/__pycache__/get_measurements.cpython-311.pyc differ
diff --git a/server/map_handler/add_lake.py b/server/map_handler/add_new_lake.py
similarity index 90%
rename from server/map_handler/add_lake.py
rename to server/map_handler/add_new_lake.py
index 6c22ed5bd575349fc6b120eab337ce986d4fadd4..0aac9eb90536f51a3afa9bd860ec8b058e2d9edf 100644
--- a/server/map_handler/add_lake.py
+++ b/server/map_handler/add_new_lake.py
@@ -45,8 +45,7 @@ def cut_map(self, cursor, lake_name: str):
 
             # Calculate tile center based on bounds, and round down to two decimals
             min_x, min_y, max_x, max_y = tile.bounds
-            center = round(max_x - min_x, 4), round(max_y - min_y, 4)
-            # center = round(tile.centroid.coords[0][0], 4), round(tile.centroid.coords[0][1], 4)
+            center = round(max_y - (max_y - min_y), 6), round(max_x - (max_x - min_x), 6)
 
             rounded_coordinates = []
             if isinstance(tile, Polygon):
@@ -55,8 +54,6 @@ def cut_map(self, cursor, lake_name: str):
                     rounded_coordinates.append(rounded_coords)
                 rounded_tile = Polygon(rounded_coordinates)
 
-            sub_div_center_list.append((sub_div_id, center[0], center[1]))
-
             tile_feature = {
                 'type': 'Feature',
                 'properties': {
@@ -74,11 +71,6 @@ def cut_map(self, cursor, lake_name: str):
             'tile_count': sub_div_id,  # Add the last subdivision ID as number of tiles
         }
 
-        # Create a text file containing all subdivision ids and center coordinates
-        with open(LAKE_RELATIONS_PATH + lake_name + "_centers.txt", 'w') as file:
-            for sub_div_id, x, y in sub_div_center_list:
-                file.write(f"{sub_div_id}, {x}, {y}\n")  # Write each list entry on a new line
-
         # Add lake name to database
         cursor.execute('''
             INSERT INTO BodyOfWater(Name) VALUES 
diff --git a/server/map_handler/get_measurements.py b/server/map_handler/get_measurements.py
index dcca78cd892121accd0435d0c0dafebd54bdf80f..152362efac0b5c41f143022104e2d7994399beb5 100644
--- a/server/map_handler/get_measurements.py
+++ b/server/map_handler/get_measurements.py
@@ -25,11 +25,6 @@ def get_measurements(self, cursor, lake_name):
         # List of all fetched measurement objects
         measurement_data = {}
 
-        '''
-        f = open('server/?')
-        data = json.load(f)
-
-        '''
         # Iterate over all fetched rows
         for row in rows:
             measurement_id = row[0]
@@ -37,16 +32,6 @@ def get_measurements(self, cursor, lake_name):
             center_lat = row[12]
             center_lng = row[13]
 
-            '''
-            curr_stat = []
-
-            # Find matching ice stat
-            for stat in data['stats']
-                if ice_stats.sub_div_id == sub_div_id
-                    curr_stat = stat
-                    break
-            '''
-
             # Create subdivision new object
             sub_division = {
                 'SubdivID': sub_div_id,
@@ -81,11 +66,6 @@ def get_measurements(self, cursor, lake_name):
                     'Subdivisions': [sub_division],  # Array of sub_division objects
                 }
 
-        # Add remaining stuff
-
-        # NB remember to clos file after implementation
-        # f.close()
-
         # Convert dictionary values to list of measurements
         data = list(measurement_data.values())
 
@@ -123,4 +103,4 @@ def calculateColor(thickness: float):  # NB neither final colors nor ranges
     elif thickness > 8:
         return 0xFF00d6ff  # Blue
     else:
-        return 0xFF939393  # Gray
+        return 0xFF939393  # Grey
diff --git a/server/map_handler/lake_relations/all_lake_names.json b/server/map_handler/lake_relations/all_lake_names.json
index 939b10a49233538e2b3f640e1bfe95d354ad51a7..0f2b942301bdabb1c185dcc13b7936efa34ddd3b 100644
--- a/server/map_handler/lake_relations/all_lake_names.json
+++ b/server/map_handler/lake_relations/all_lake_names.json
@@ -1,4 +1,12 @@
 [
   "Mj\u00c3\u00b8sa",
-  "Skumsj\u00c3\u00b8en"
+  "Skumsj\u00c3\u00b8en",
+  "skumsj\u00f8en",
+  "skumsj\u00f8en",
+  "skumsj\u00f8en",
+  "skumsj\u00f8en",
+  "skumsj\u00f8en",
+  "skumsj\u00f8en",
+  "skumsj\u00f8en",
+  "skumsj\u00f8en"
 ]
\ No newline at end of file
diff --git "a/server/map_handler/lake_relations/skumsj\303\270en_centers.txt" "b/server/map_handler/lake_relations/skumsj\303\270en_centers.txt"
index 991bc039919de9e21ac0c7b88c59c2e5320b2478..fe5062c697db11c296a43a085b5792c1aea2ea9d 100644
--- "a/server/map_handler/lake_relations/skumsj\303\270en_centers.txt"
+++ "b/server/map_handler/lake_relations/skumsj\303\270en_centers.txt"
@@ -1,8 +1,8 @@
-0, 0.0217, 0.0112
-1, 0.017, 0.02
-2, 0.0008, 0.001
-3, 0.0005, 0.0003
-4, 0.0002, 0.0001
-5, 0.0004, 0.0002
-6, 0.0004, 0.0004
-7, 0.0003, 0.0002
\ No newline at end of file
+0, 60.759476, 10.528021
+1, 60.739476, 10.530733
+2, 60.742282, 10.536377
+3, 60.7481, 10.544887
+4, 60.750731, 10.543055
+5, 60.750735, 10.542226
+6, 60.751169, 10.54319
+7, 60.749417, 10.543726
diff --git "a/server/map_handler/lake_relations/skumsj\303\270en_div.json" "b/server/map_handler/lake_relations/skumsj\303\270en_div.json"
index 5594f0a6850cfc5c65b11bc1e8584414401a979a..81acb8d635b3089f21674e16fa56dbb2660c4310 100644
--- "a/server/map_handler/lake_relations/skumsj\303\270en_div.json"
+++ "b/server/map_handler/lake_relations/skumsj\303\270en_div.json"
@@ -1 +1 @@
-{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"sub_div_id": "0", "sub_div_center": [0.0217, 0.0112]}, "geometry": {"type": "Polygon", "coordinates": [[[10.528, 60.7707], [10.5281, 60.7707], [10.5282, 60.7707], [10.5284, 60.7706], [10.5286, 60.7706], [10.5287, 60.7703], [10.5288, 60.7702], [10.529, 60.7701], [10.5291, 60.7699], [10.5292, 60.7698], [10.5293, 60.7698], [10.5293, 60.7696], [10.5293, 60.7695], [10.5294, 60.7694], [10.5295, 60.7694], [10.5295, 60.7694], [10.5296, 60.7694], [10.5297, 60.7693], [10.5299, 60.7692], [10.5299, 60.7692], [10.53, 60.7692], [10.5302, 60.7692], [10.5304, 60.7692], [10.5305, 60.7691], [10.5308, 60.769], [10.5312, 60.769], [10.5314, 60.7689], [10.5318, 60.7688], [10.5319, 60.7687], [10.5319, 60.7687], [10.5319, 60.7686], [10.532, 60.7686], [10.532, 60.7686], [10.532, 60.7685], [10.532, 60.7684], [10.5321, 60.7683], [10.5322, 60.7682], [10.5323, 60.768], [10.5326, 60.7677], [10.5329, 60.7676], [10.533, 60.7674], [10.5332, 60.7674], [10.5338, 60.7672], [10.5341, 60.7672], [10.5344, 60.7671], [10.5347, 60.7671], [10.5348, 60.7671], [10.535, 60.7671], [10.5353, 60.7672], [10.5355, 60.7672], [10.536, 60.7672], [10.5361, 60.7672], [10.5364, 60.7672], [10.5366, 60.7672], [10.5367, 60.7673], [10.5367, 60.7673], [10.5367, 60.7674], [10.5367, 60.7674], [10.5366, 60.7675], [10.5365, 60.7675], [10.5364, 60.7677], [10.5362, 60.7678], [10.5362, 60.7679], [10.5363, 60.768], [10.5363, 60.768], [10.5363, 60.768], [10.5363, 60.7681], [10.5363, 60.7683], [10.5364, 60.7684], [10.5364, 60.7686], [10.5365, 60.7687], [10.5366, 60.7688], [10.5367, 60.769], [10.5368, 60.769], [10.5369, 60.769], [10.537, 60.769], [10.5373, 60.769], [10.5375, 60.769], [10.5377, 60.769], [10.5381, 60.769], [10.5382, 60.7689], [10.5385, 60.7688], [10.5387, 60.7686], [10.5387, 60.7686], [10.5388, 60.7686], [10.5391, 60.7684], [10.5392, 60.7684], [10.5393, 60.7683], [10.5394, 60.7682], [10.5394, 60.7682], [10.5395, 60.7682], [10.5395, 60.7683], [10.5396, 60.7683], [10.5396, 60.7684], [10.5396, 60.7684], [10.5396, 60.7684], [10.5398, 60.7685], [10.54, 60.7685], [10.5402, 60.7684], [10.5403, 60.7684], [10.5404, 60.7683], [10.5405, 60.7683], [10.5407, 60.7681], [10.5408, 60.7681], [10.5409, 60.768], [10.5411, 60.768], [10.5414, 60.7679], [10.5414, 60.7679], [10.5415, 60.7677], [10.5417, 60.7676], [10.5418, 60.7675], [10.5418, 60.7675], [10.5419, 60.7674], [10.5421, 60.7674], [10.5422, 60.7674], [10.5423, 60.7674], [10.5424, 60.7673], [10.5424, 60.7672], [10.5424, 60.7672], [10.5425, 60.7672], [10.5426, 60.7671], [10.5428, 60.767], [10.5428, 60.767], [10.543, 60.7669], [10.5432, 60.7669], [10.5434, 60.7669], [10.5434, 60.7669], [10.5434, 60.7671], [10.5434, 60.7671], [10.5434, 60.7672], [10.5434, 60.7672], [10.5437, 60.7672], [10.5437, 60.7672], [10.5439, 60.7672], [10.544, 60.7672], [10.5441, 60.7672], [10.5442, 60.7671], [10.5443, 60.7671], [10.5443, 60.767], [10.5443, 60.7669], [10.5443, 60.7669], [10.5443, 60.7669], [10.5442, 60.7669], [10.5441, 60.7669], [10.5441, 60.7668], [10.5441, 60.7668], [10.5442, 60.7668], [10.5444, 60.7667], [10.5446, 60.7666], [10.5448, 60.7665], [10.5449, 60.7664], [10.5451, 60.7662], [10.5454, 60.766], [10.5456, 60.7659], [10.5456, 60.7659], [10.5456, 60.7659], [10.5455, 60.7658], [10.5454, 60.7657], [10.5454, 60.7656], [10.5454, 60.7655], [10.5453, 60.7654], [10.5452, 60.7653], [10.5451, 60.7652], [10.5451, 60.7652], [10.5452, 60.7652], [10.5452, 60.7652], [10.5453, 60.7652], [10.5454, 60.7652], [10.5455, 60.7653], [10.5457, 60.7654], [10.5458, 60.7655], [10.5459, 60.7655], [10.5463, 60.7655], [10.5463, 60.7655], [10.5464, 60.7656], [10.5464, 60.7656], [10.5464, 60.7656], [10.5465, 60.7657], [10.5467, 60.7657], [10.5469, 60.7658], [10.5471, 60.7658], [10.5473, 60.7658], [10.5473, 60.7658], [10.5475, 60.7657], [10.5476, 60.7656], [10.5477, 60.7656], [10.5478, 60.7655], [10.5481, 60.7655], [10.5483, 60.7655], [10.5487, 60.7655], [10.5488, 60.7654], [10.549, 60.7653], [10.5492, 60.7652], [10.5492, 60.7651], [10.5492, 60.7651], [10.5491, 60.765], [10.5491, 60.765], [10.5491, 60.7649], [10.5491, 60.7649], [10.5491, 60.7648], [10.5491, 60.7647], [10.5493, 60.7647], [10.5496, 60.7645], [10.5497, 60.7645], [10.5497, 60.7644], [10.5497, 60.7643], [10.5497, 60.7642], [10.5496, 60.7641], [10.5496, 60.764], [10.5492, 60.7637], [10.549, 60.7636], [10.5488, 60.7634], [10.5487, 60.7633], [10.5484, 60.7631], [10.5483, 60.7631], [10.5483, 60.763], [10.5482, 60.7628], [10.5482, 60.7627], [10.5481, 60.7627], [10.5478, 60.7624], [10.5477, 60.7624], [10.5477, 60.7623], [10.5477, 60.7622], [10.5478, 60.7622], [10.5479, 60.7621], [10.548, 60.7621], [10.548, 60.7621], [10.5481, 60.7621], [10.5482, 60.7621], [10.5483, 60.7622], [10.5484, 60.7622], [10.5485, 60.7621], [10.5486, 60.7621], [10.5487, 60.7621], [10.5488, 60.762], [10.549, 60.762], [10.5491, 60.7619], [10.5491, 60.7619], [10.5491, 60.7617], [10.5493, 60.7616], [10.5493, 60.7615], [10.5493, 60.7614], [10.5493, 60.7614], [10.5492, 60.7613], [10.5488, 60.761], [10.5486, 60.7609], [10.5482, 60.7607], [10.548, 60.7607], [10.5479, 60.7606], [10.5478, 60.7605], [10.5478, 60.7604], [10.5478, 60.7604], [10.5478, 60.7602], [10.5477, 60.7601], [10.5476, 60.7599], [10.5476, 60.7598], [10.5476, 60.7595], [10.5476, 60.7595], [10.5382, 60.7595], [10.5382, 60.7595], [10.5379, 60.7598], [10.5378, 60.76], [10.5379, 60.76], [10.538, 60.7601], [10.538, 60.7601], [10.5381, 60.7602], [10.5381, 60.7604], [10.5381, 60.7605], [10.538, 60.7605], [10.5379, 60.7606], [10.5378, 60.7607], [10.5377, 60.7609], [10.5377, 60.7611], [10.5377, 60.7612], [10.5376, 60.7613], [10.5375, 60.7614], [10.5374, 60.7615], [10.5373, 60.7616], [10.5372, 60.7617], [10.5371, 60.7619], [10.537, 60.7619], [10.537, 60.762], [10.5368, 60.762], [10.5367, 60.7621], [10.5367, 60.7621], [10.5366, 60.7622], [10.5366, 60.7623], [10.5364, 60.7623], [10.5363, 60.7624], [10.5362, 60.7625], [10.5361, 60.7626], [10.536, 60.7628], [10.536, 60.7628], [10.5359, 60.7628], [10.5359, 60.7628], [10.5358, 60.7628], [10.5356, 60.763], [10.5356, 60.763], [10.5355, 60.763], [10.5354, 60.7631], [10.5353, 60.7631], [10.5352, 60.7632], [10.5352, 60.7632], [10.5352, 60.7634], [10.5353, 60.7634], [10.5353, 60.7634], [10.5355, 60.7633], [10.5356, 60.7633], [10.5357, 60.7633], [10.5358, 60.7634], [10.5358, 60.7634], [10.5359, 60.7634], [10.5361, 60.7634], [10.5363, 60.7634], [10.5366, 60.7635], [10.5366, 60.7636], [10.5366, 60.7637], [10.5367, 60.7637], [10.5369, 60.7638], [10.5369, 60.7639], [10.537, 60.764], [10.537, 60.7641], [10.537, 60.7641], [10.5371, 60.7641], [10.5373, 60.764], [10.5374, 60.7639], [10.5375, 60.7638], [10.5376, 60.7638], [10.5376, 60.7639], [10.5377, 60.7639], [10.5377, 60.764], [10.5377, 60.7643], [10.5377, 60.7644], [10.5375, 60.7646], [10.5373, 60.7647], [10.5372, 60.7649], [10.5371, 60.7649], [10.537, 60.765], [10.5369, 60.7651], [10.5368, 60.7651], [10.5367, 60.7651], [10.5367, 60.7651], [10.5366, 60.765], [10.5365, 60.765], [10.5366, 60.7649], [10.5366, 60.7648], [10.5368, 60.7646], [10.5368, 60.7646], [10.5368, 60.7645], [10.5368, 60.7645], [10.5367, 60.7645], [10.5366, 60.7645], [10.5365, 60.7646], [10.5365, 60.7646], [10.5363, 60.7649], [10.5362, 60.765], [10.536, 60.7651], [10.536, 60.7651], [10.536, 60.7653], [10.536, 60.7653], [10.5359, 60.7653], [10.5359, 60.7653], [10.5357, 60.7653], [10.5355, 60.7653], [10.5353, 60.7653], [10.5352, 60.7653], [10.5349, 60.7653], [10.5349, 60.7653], [10.5348, 60.7654], [10.5347, 60.7654], [10.5346, 60.7654], [10.5345, 60.7654], [10.5344, 60.7654], [10.5342, 60.7653], [10.5341, 60.7653], [10.534, 60.7653], [10.5338, 60.7653], [10.5337, 60.7653], [10.5335, 60.7653], [10.5333, 60.7654], [10.5331, 60.7655], [10.533, 60.7655], [10.5329, 60.7656], [10.5328, 60.7657], [10.5326, 60.7659], [10.5323, 60.766], [10.5323, 60.7661], [10.5322, 60.7662], [10.5321, 60.7663], [10.5318, 60.7664], [10.5317, 60.7665], [10.5317, 60.7665], [10.5317, 60.7668], [10.5316, 60.7669], [10.5316, 60.767], [10.5316, 60.7672], [10.5314, 60.7673], [10.5314, 60.7673], [10.5314, 60.7675], [10.5313, 60.7676], [10.5311, 60.7679], [10.5307, 60.7681], [10.5306, 60.7682], [10.5305, 60.7683], [10.5304, 60.7684], [10.5304, 60.7684], [10.5304, 60.7687], [10.5304, 60.7688], [10.5303, 60.7688], [10.5302, 60.7688], [10.5301, 60.7687], [10.53, 60.7687], [10.53, 60.7687], [10.5298, 60.7688], [10.5296, 60.7689], [10.5295, 60.7689], [10.5293, 60.769], [10.5293, 60.769], [10.5291, 60.7691], [10.5289, 60.7691], [10.5282, 60.7691], [10.5282, 60.7691], [10.5281, 60.7691], [10.5282, 60.7691], [10.5282, 60.7691], [10.5289, 60.7692], [10.529, 60.7692], [10.5291, 60.7692], [10.5292, 60.7692], [10.5292, 60.7692], [10.529, 60.7693], [10.5289, 60.7694], [10.5288, 60.7694], [10.5287, 60.7694], [10.5287, 60.7696], [10.5287, 60.7696], [10.5287, 60.7697], [10.5285, 60.7697], [10.5285, 60.7697], [10.5282, 60.7698], [10.5281, 60.7698], [10.528, 60.7698], [10.5281, 60.7699], [10.5282, 60.7699], [10.5282, 60.77], [10.5281, 60.7701], [10.5281, 60.7703], [10.5282, 60.7704], [10.5282, 60.7704], [10.5282, 60.7705], [10.5282, 60.7705], [10.528, 60.7706], [10.528, 60.7707], [10.528, 60.7707]]]}}, {"type": "Feature", "properties": {"sub_div_id": "1", "sub_div_center": [0.017, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5475, 60.7593], [10.5475, 60.759], [10.5474, 60.7589], [10.5474, 60.7587], [10.5473, 60.7586], [10.5473, 60.7585], [10.5472, 60.7585], [10.547, 60.7583], [10.5468, 60.7581], [10.5468, 60.7581], [10.5465, 60.7579], [10.5465, 60.7579], [10.5464, 60.7576], [10.5464, 60.7575], [10.5462, 60.7574], [10.5461, 60.7573], [10.5459, 60.7571], [10.5456, 60.7568], [10.5453, 60.7566], [10.5452, 60.7565], [10.5451, 60.7565], [10.5451, 60.7563], [10.5451, 60.7563], [10.545, 60.7562], [10.5449, 60.7561], [10.5447, 60.7559], [10.5447, 60.7558], [10.5446, 60.7556], [10.5446, 60.7554], [10.5445, 60.7551], [10.5444, 60.755], [10.5443, 60.7549], [10.5443, 60.7548], [10.5443, 60.7547], [10.5442, 60.7546], [10.5442, 60.7544], [10.5441, 60.7543], [10.5441, 60.7539], [10.5441, 60.7538], [10.544, 60.7537], [10.544, 60.7534], [10.5439, 60.7531], [10.5439, 60.7531], [10.5439, 60.753], [10.5439, 60.7528], [10.5439, 60.7528], [10.544, 60.7527], [10.5441, 60.7526], [10.5443, 60.7525], [10.5443, 60.7524], [10.5449, 60.7522], [10.5453, 60.752], [10.5456, 60.7518], [10.5458, 60.7517], [10.546, 60.7516], [10.5461, 60.7516], [10.5462, 60.7515], [10.5462, 60.7514], [10.5462, 60.7514], [10.5462, 60.7513], [10.5462, 60.7513], [10.546, 60.7512], [10.5459, 60.7512], [10.5459, 60.7511], [10.5459, 60.751], [10.5459, 60.751], [10.546, 60.7509], [10.5459, 60.7509], [10.5459, 60.7509], [10.5457, 60.7509], [10.5455, 60.7509], [10.5453, 60.751], [10.5451, 60.751], [10.545, 60.751], [10.5449, 60.751], [10.5447, 60.7511], [10.5446, 60.7511], [10.5444, 60.7511], [10.5444, 60.7511], [10.5443, 60.7511], [10.5443, 60.751], [10.5444, 60.7509], [10.5445, 60.7508], [10.5445, 60.7507], [10.5445, 60.7507], [10.5444, 60.7506], [10.5444, 60.7506], [10.5445, 60.7505], [10.5446, 60.7505], [10.5446, 60.7504], [10.5447, 60.7502], [10.5448, 60.7501], [10.5449, 60.7501], [10.5449, 60.75], [10.5448, 60.75], [10.5446, 60.7499], [10.5446, 60.7499], [10.5445, 60.7498], [10.5446, 60.7497], [10.5446, 60.7497], [10.5445, 60.7496], [10.5444, 60.7496], [10.5444, 60.7496], [10.5443, 60.7496], [10.5442, 60.7495], [10.5441, 60.7495], [10.5441, 60.7495], [10.5441, 60.7494], [10.5441, 60.7494], [10.5441, 60.7492], [10.5442, 60.7491], [10.5442, 60.749], [10.5442, 60.7489], [10.5443, 60.7488], [10.5443, 60.7488], [10.5443, 60.7488], [10.5443, 60.7487], [10.5443, 60.7487], [10.5446, 60.7486], [10.5446, 60.7486], [10.5446, 60.7485], [10.5447, 60.7485], [10.5447, 60.7485], [10.5448, 60.7485], [10.545, 60.7484], [10.5451, 60.7484], [10.5452, 60.7484], [10.5453, 60.7484], [10.5454, 60.7484], [10.5455, 60.7483], [10.5456, 60.7483], [10.5457, 60.7482], [10.5457, 60.7481], [10.5457, 60.7481], [10.5459, 60.748], [10.546, 60.7479], [10.5464, 60.7479], [10.5465, 60.7479], [10.5466, 60.7479], [10.5467, 60.7478], [10.5468, 60.7478], [10.5468, 60.7478], [10.5469, 60.7478], [10.547, 60.7477], [10.547, 60.7477], [10.5471, 60.7477], [10.5472, 60.7477], [10.5473, 60.7476], [10.5477, 60.7475], [10.5477, 60.7474], [10.5478, 60.7473], [10.5477, 60.7472], [10.5477, 60.7472], [10.5477, 60.7472], [10.5477, 60.7471], [10.5476, 60.7471], [10.5475, 60.7471], [10.5472, 60.747], [10.5469, 60.747], [10.5467, 60.747], [10.5465, 60.7471], [10.5465, 60.7472], [10.5464, 60.7472], [10.5463, 60.7472], [10.5462, 60.7472], [10.5462, 60.7472], [10.5461, 60.7472], [10.546, 60.7472], [10.5459, 60.7472], [10.5459, 60.7471], [10.5459, 60.7471], [10.5461, 60.7471], [10.5462, 60.7471], [10.5463, 60.7471], [10.5463, 60.747], [10.5462, 60.747], [10.5462, 60.747], [10.5462, 60.7469], [10.5461, 60.7469], [10.546, 60.7469], [10.5459, 60.7469], [10.5458, 60.7468], [10.5458, 60.7468], [10.5458, 60.7468], [10.5457, 60.7467], [10.5457, 60.7466], [10.5457, 60.7466], [10.5457, 60.7464], [10.5456, 60.7464], [10.5455, 60.7463], [10.5454, 60.7462], [10.5453, 60.7462], [10.5452, 60.7461], [10.5452, 60.7461], [10.5453, 60.7461], [10.5453, 60.746], [10.5452, 60.746], [10.5452, 60.7457], [10.5452, 60.7457], [10.5451, 60.7457], [10.5449, 60.7456], [10.5445, 60.7455], [10.5441, 60.7453], [10.544, 60.7452], [10.5439, 60.7451], [10.5439, 60.745], [10.5439, 60.7448], [10.5438, 60.7448], [10.5436, 60.7448], [10.5435, 60.7448], [10.5433, 60.7447], [10.5432, 60.7446], [10.5432, 60.7445], [10.5432, 60.7444], [10.5433, 60.7444], [10.5433, 60.7443], [10.5434, 60.7442], [10.5434, 60.7442], [10.5435, 60.7442], [10.5435, 60.7441], [10.5435, 60.7441], [10.5435, 60.744], [10.5436, 60.744], [10.5436, 60.744], [10.5437, 60.7439], [10.5437, 60.7439], [10.5436, 60.7439], [10.5436, 60.7438], [10.5436, 60.7438], [10.5436, 60.7438], [10.5437, 60.7437], [10.5436, 60.7436], [10.5434, 60.7435], [10.5433, 60.7433], [10.5432, 60.7433], [10.5433, 60.7432], [10.5434, 60.7432], [10.5434, 60.7431], [10.5434, 60.743], [10.5433, 60.743], [10.543, 60.7431], [10.543, 60.7431], [10.543, 60.7431], [10.5429, 60.7432], [10.5429, 60.7432], [10.5428, 60.7432], [10.5428, 60.7432], [10.5427, 60.7432], [10.5427, 60.7431], [10.5426, 60.7431], [10.5422, 60.743], [10.542, 60.7429], [10.5418, 60.7428], [10.5415, 60.7427], [10.5416, 60.7427], [10.5416, 60.7426], [10.5416, 60.7426], [10.5413, 60.7424], [10.5412, 60.7423], [10.5411, 60.7422], [10.541, 60.7422], [10.541, 60.7422], [10.5409, 60.7421], [10.5409, 60.7421], [10.5408, 60.7421], [10.5408, 60.742], [10.5407, 60.7419], [10.5406, 60.7419], [10.5404, 60.7419], [10.5402, 60.7419], [10.5402, 60.7419], [10.5401, 60.7419], [10.5401, 60.742], [10.54, 60.742], [10.54, 60.742], [10.5398, 60.742], [10.5398, 60.742], [10.5397, 60.742], [10.5397, 60.7421], [10.5395, 60.7422], [10.5394, 60.7422], [10.5393, 60.7423], [10.5393, 60.7424], [10.5393, 60.7424], [10.5394, 60.7424], [10.5394, 60.7424], [10.5395, 60.7424], [10.5393, 60.7425], [10.5393, 60.7425], [10.5391, 60.7425], [10.539, 60.7426], [10.539, 60.7426], [10.539, 60.7426], [10.5389, 60.7427], [10.5389, 60.7427], [10.5388, 60.7427], [10.5388, 60.7426], [10.5388, 60.7426], [10.5387, 60.7426], [10.5386, 60.7427], [10.5386, 60.7427], [10.5386, 60.7427], [10.5386, 60.7428], [10.5387, 60.7428], [10.5388, 60.7428], [10.5389, 60.7429], [10.5389, 60.7429], [10.5389, 60.7429], [10.5388, 60.7429], [10.5387, 60.743], [10.5386, 60.743], [10.5385, 60.743], [10.5384, 60.743], [10.5381, 60.743], [10.538, 60.743], [10.5379, 60.743], [10.5378, 60.7429], [10.5378, 60.7429], [10.5378, 60.7429], [10.5377, 60.7429], [10.5377, 60.7428], [10.5377, 60.7428], [10.5376, 60.7427], [10.5376, 60.7427], [10.5377, 60.7426], [10.5378, 60.7426], [10.5378, 60.7426], [10.5379, 60.7426], [10.5379, 60.7425], [10.538, 60.7425], [10.538, 60.7425], [10.538, 60.7424], [10.538, 60.7424], [10.5379, 60.7424], [10.5376, 60.7424], [10.5375, 60.7424], [10.5375, 60.7423], [10.5375, 60.7423], [10.5376, 60.7423], [10.5377, 60.7423], [10.5377, 60.7422], [10.5377, 60.742], [10.5377, 60.742], [10.5377, 60.7418], [10.5379, 60.7418], [10.5381, 60.7417], [10.5382, 60.7417], [10.5383, 60.7416], [10.5385, 60.7416], [10.5386, 60.7416], [10.5387, 60.7416], [10.5388, 60.7416], [10.539, 60.7417], [10.5392, 60.7416], [10.5392, 60.7416], [10.5392, 60.7416], [10.539, 60.7415], [10.539, 60.7415], [10.5389, 60.7414], [10.5387, 60.7414], [10.5385, 60.7413], [10.5383, 60.7413], [10.5382, 60.7413], [10.5381, 60.7412], [10.5378, 60.7411], [10.5377, 60.7411], [10.5376, 60.741], [10.5376, 60.741], [10.5376, 60.7409], [10.5376, 60.7409], [10.5377, 60.7409], [10.5376, 60.7409], [10.5376, 60.7409], [10.5376, 60.7407], [10.5376, 60.7407], [10.5376, 60.7406], [10.5374, 60.7404], [10.5373, 60.7403], [10.5373, 60.7403], [10.5373, 60.7403], [10.5373, 60.7403], [10.5372, 60.7402], [10.5372, 60.7402], [10.5373, 60.7402], [10.5375, 60.7401], [10.5376, 60.74], [10.5376, 60.74], [10.5374, 60.7399], [10.5374, 60.7399], [10.5374, 60.7398], [10.5374, 60.7397], [10.5373, 60.7397], [10.5373, 60.7396], [10.5371, 60.7396], [10.5369, 60.7395], [10.5368, 60.7395], [10.5367, 60.7395], [10.5366, 60.7395], [10.5365, 60.7395], [10.5364, 60.7395], [10.5363, 60.7396], [10.5362, 60.7397], [10.5361, 60.7398], [10.5359, 60.7399], [10.5359, 60.7399], [10.5357, 60.74], [10.5355, 60.7401], [10.5353, 60.7401], [10.5352, 60.7401], [10.535, 60.7402], [10.5348, 60.7403], [10.5347, 60.7404], [10.5345, 60.7404], [10.5345, 60.7405], [10.5345, 60.7405], [10.5343, 60.7405], [10.5342, 60.7406], [10.5341, 60.7406], [10.534, 60.7405], [10.5339, 60.7405], [10.5338, 60.7405], [10.5337, 60.7405], [10.5334, 60.7406], [10.5332, 60.7407], [10.5331, 60.7407], [10.533, 60.7407], [10.5328, 60.7407], [10.5327, 60.7408], [10.5326, 60.7408], [10.5324, 60.7408], [10.5323, 60.7408], [10.5321, 60.7408], [10.532, 60.7408], [10.5319, 60.7407], [10.5317, 60.7407], [10.5315, 60.7407], [10.5313, 60.7407], [10.5311, 60.7408], [10.5311, 60.7408], [10.531, 60.7408], [10.5308, 60.7408], [10.5307, 60.7409], [10.5307, 60.741], [10.5308, 60.7411], [10.5308, 60.7412], [10.5308, 60.7412], [10.5308, 60.7412], [10.5308, 60.7414], [10.531, 60.7414], [10.5311, 60.7415], [10.5311, 60.7415], [10.5312, 60.7416], [10.5311, 60.7416], [10.5311, 60.7417], [10.5313, 60.7418], [10.5314, 60.7418], [10.5315, 60.7419], [10.5315, 60.742], [10.5316, 60.7421], [10.5317, 60.7421], [10.5317, 60.7422], [10.532, 60.7422], [10.5322, 60.7423], [10.5322, 60.7423], [10.5323, 60.7423], [10.5324, 60.7423], [10.5325, 60.7424], [10.5326, 60.7425], [10.5328, 60.7426], [10.5329, 60.7426], [10.5329, 60.7427], [10.5328, 60.7428], [10.5328, 60.7429], [10.5328, 60.743], [10.5328, 60.7431], [10.533, 60.7431], [10.533, 60.7432], [10.5328, 60.7432], [10.5328, 60.7432], [10.533, 60.7433], [10.533, 60.7433], [10.5332, 60.7434], [10.5333, 60.7434], [10.5333, 60.7433], [10.5333, 60.7434], [10.5334, 60.7434], [10.5333, 60.7434], [10.5333, 60.7435], [10.5334, 60.7435], [10.5335, 60.7436], [10.5335, 60.7436], [10.5335, 60.7438], [10.5336, 60.7439], [10.5336, 60.744], [10.5337, 60.744], [10.5337, 60.7441], [10.5337, 60.7441], [10.5337, 60.7442], [10.5337, 60.7443], [10.5337, 60.7443], [10.5338, 60.7443], [10.5338, 60.7444], [10.5338, 60.7444], [10.5339, 60.7445], [10.5339, 60.7446], [10.5339, 60.7446], [10.5338, 60.7446], [10.5338, 60.7447], [10.5338, 60.745], [10.5338, 60.7451], [10.5339, 60.7453], [10.534, 60.7454], [10.534, 60.7456], [10.5341, 60.7456], [10.5341, 60.7457], [10.5341, 60.7458], [10.5341, 60.7459], [10.5341, 60.7459], [10.5342, 60.746], [10.5342, 60.746], [10.5342, 60.7461], [10.5343, 60.7461], [10.5343, 60.7462], [10.5344, 60.7462], [10.5344, 60.7462], [10.5344, 60.7464], [10.5344, 60.7464], [10.5345, 60.7465], [10.5346, 60.7466], [10.5346, 60.7466], [10.5346, 60.7468], [10.5346, 60.7469], [10.5346, 60.7472], [10.5345, 60.7472], [10.5345, 60.7474], [10.5346, 60.7475], [10.5346, 60.7475], [10.5347, 60.7476], [10.5347, 60.7476], [10.5349, 60.7476], [10.535, 60.7477], [10.535, 60.7478], [10.5351, 60.7478], [10.535, 60.7479], [10.5351, 60.748], [10.5351, 60.748], [10.535, 60.7481], [10.535, 60.7481], [10.5349, 60.7482], [10.5349, 60.7483], [10.5349, 60.7483], [10.5348, 60.7484], [10.5348, 60.7484], [10.5346, 60.7486], [10.5345, 60.7486], [10.5343, 60.7487], [10.5343, 60.7487], [10.5343, 60.7487], [10.5342, 60.7488], [10.5341, 60.7488], [10.534, 60.7488], [10.5337, 60.7487], [10.5336, 60.7487], [10.5335, 60.7487], [10.5334, 60.7487], [10.5332, 60.7487], [10.533, 60.7487], [10.533, 60.7487], [10.5327, 60.7488], [10.5326, 60.7488], [10.5326, 60.7488], [10.5326, 60.7488], [10.5327, 60.7489], [10.5327, 60.749], [10.5327, 60.749], [10.5325, 60.749], [10.5325, 60.749], [10.5325, 60.7491], [10.5326, 60.7491], [10.5327, 60.7491], [10.5328, 60.7491], [10.5328, 60.7491], [10.5329, 60.7492], [10.5333, 60.7493], [10.5333, 60.7493], [10.5332, 60.7494], [10.5332, 60.7494], [10.5336, 60.7495], [10.5338, 60.7495], [10.5338, 60.7496], [10.5339, 60.7496], [10.5339, 60.7496], [10.5341, 60.7497], [10.5343, 60.7497], [10.5344, 60.7497], [10.5344, 60.7498], [10.5344, 60.7499], [10.5344, 60.7499], [10.5345, 60.75], [10.5346, 60.75], [10.5347, 60.75], [10.5349, 60.7502], [10.535, 60.7503], [10.5352, 60.7503], [10.5352, 60.7503], [10.5353, 60.7503], [10.5353, 60.7504], [10.5354, 60.7505], [10.5355, 60.7505], [10.5355, 60.7507], [10.5356, 60.7508], [10.5356, 60.7509], [10.5357, 60.751], [10.5358, 60.751], [10.5359, 60.7511], [10.5359, 60.7513], [10.5358, 60.7513], [10.5358, 60.7514], [10.5356, 60.7514], [10.5356, 60.7514], [10.5355, 60.7516], [10.5355, 60.7516], [10.5354, 60.7516], [10.5353, 60.7517], [10.5349, 60.7517], [10.5348, 60.7516], [10.5345, 60.7516], [10.5344, 60.7515], [10.5343, 60.7515], [10.5342, 60.7516], [10.5337, 60.7516], [10.5336, 60.7516], [10.5334, 60.7515], [10.5333, 60.7515], [10.5332, 60.7515], [10.5332, 60.7515], [10.5332, 60.7515], [10.5331, 60.7515], [10.5329, 60.7516], [10.5328, 60.7516], [10.5328, 60.7517], [10.5326, 60.7518], [10.5325, 60.7519], [10.5325, 60.7519], [10.5326, 60.7521], [10.5326, 60.7522], [10.5326, 60.7523], [10.5326, 60.7523], [10.5325, 60.7523], [10.5325, 60.7524], [10.5325, 60.7524], [10.5326, 60.7526], [10.5326, 60.7526], [10.5327, 60.7526], [10.5328, 60.7527], [10.5328, 60.7528], [10.5329, 60.7528], [10.5328, 60.7528], [10.5328, 60.7529], [10.5329, 60.7529], [10.533, 60.753], [10.5331, 60.7531], [10.5333, 60.7531], [10.5335, 60.7531], [10.5336, 60.7531], [10.5339, 60.7531], [10.534, 60.7531], [10.5341, 60.7531], [10.5341, 60.7531], [10.5341, 60.7531], [10.5339, 60.7532], [10.5338, 60.7533], [10.5335, 60.7534], [10.5335, 60.7535], [10.5334, 60.7535], [10.5333, 60.7536], [10.5333, 60.7539], [10.5333, 60.754], [10.5333, 60.754], [10.5332, 60.7541], [10.5331, 60.7541], [10.5329, 60.7542], [10.5328, 60.7542], [10.5327, 60.7543], [10.5327, 60.7544], [10.5326, 60.7545], [10.5326, 60.7547], [10.5324, 60.7548], [10.5324, 60.7548], [10.5324, 60.7549], [10.5323, 60.755], [10.5323, 60.755], [10.5323, 60.755], [10.5324, 60.7551], [10.5325, 60.7551], [10.5326, 60.7551], [10.5327, 60.7551], [10.5329, 60.7551], [10.5332, 60.755], [10.5333, 60.755], [10.5333, 60.755], [10.5334, 60.755], [10.5334, 60.755], [10.5334, 60.7552], [10.5335, 60.7554], [10.5335, 60.7555], [10.5335, 60.7558], [10.5335, 60.7559], [10.5334, 60.7559], [10.5334, 60.756], [10.5335, 60.7561], [10.5336, 60.7561], [10.5336, 60.7562], [10.5335, 60.7562], [10.5334, 60.7562], [10.5333, 60.7563], [10.5332, 60.7564], [10.5332, 60.7564], [10.5332, 60.7565], [10.5332, 60.7566], [10.5332, 60.7567], [10.5331, 60.7567], [10.5331, 60.7568], [10.5331, 60.7568], [10.5332, 60.7569], [10.5332, 60.757], [10.5331, 60.7571], [10.5331, 60.7573], [10.533, 60.7574], [10.533, 60.7575], [10.5329, 60.7575], [10.5329, 60.7575], [10.5327, 60.7576], [10.5327, 60.7576], [10.5327, 60.7576], [10.5327, 60.7577], [10.5327, 60.7578], [10.5328, 60.7579], [10.5327, 60.7579], [10.5327, 60.758], [10.5326, 60.758], [10.5326, 60.7582], [10.5325, 60.7583], [10.5323, 60.7584], [10.5321, 60.7586], [10.5319, 60.7586], [10.5318, 60.7588], [10.5316, 60.759], [10.5316, 60.7591], [10.5315, 60.7592], [10.5315, 60.7592], [10.5315, 60.7593], [10.5315, 60.7593], [10.5315, 60.7594], [10.5317, 60.7594], [10.5317, 60.7594], [10.5318, 60.7594], [10.532, 60.7593], [10.5323, 60.7592], [10.5327, 60.7589], [10.5329, 60.7588], [10.5329, 60.7587], [10.5329, 60.7586], [10.533, 60.7585], [10.533, 60.7585], [10.5332, 60.7584], [10.5334, 60.7584], [10.5335, 60.7583], [10.5336, 60.7582], [10.5338, 60.7582], [10.5339, 60.7582], [10.534, 60.7581], [10.5341, 60.758], [10.5342, 60.758], [10.5343, 60.7579], [10.5345, 60.7579], [10.5346, 60.7578], [10.5348, 60.7577], [10.535, 60.7576], [10.5351, 60.7576], [10.5351, 60.7575], [10.5352, 60.7575], [10.5353, 60.7576], [10.5357, 60.7576], [10.5357, 60.7576], [10.5357, 60.7577], [10.5358, 60.7577], [10.5359, 60.7578], [10.5359, 60.7578], [10.5359, 60.758], [10.536, 60.7581], [10.5361, 60.7581], [10.5361, 60.7581], [10.5362, 60.758], [10.5363, 60.758], [10.5363, 60.7581], [10.5363, 60.7582], [10.5364, 60.7582], [10.5364, 60.7582], [10.5365, 60.7583], [10.5366, 60.7582], [10.5367, 60.7582], [10.5368, 60.7581], [10.537, 60.758], [10.5371, 60.7579], [10.5372, 60.7579], [10.5373, 60.7578], [10.5372, 60.7577], [10.5372, 60.7577], [10.5372, 60.7576], [10.5373, 60.7576], [10.5374, 60.7575], [10.5375, 60.7575], [10.5376, 60.7575], [10.5377, 60.7576], [10.5378, 60.7576], [10.5378, 60.7576], [10.5379, 60.7575], [10.5379, 60.7574], [10.5379, 60.7574], [10.538, 60.7574], [10.538, 60.7575], [10.538, 60.7576], [10.5379, 60.7577], [10.5379, 60.7578], [10.538, 60.7579], [10.538, 60.7579], [10.5379, 60.758], [10.5379, 60.7581], [10.5378, 60.7582], [10.5378, 60.7583], [10.538, 60.7584], [10.538, 60.7585], [10.538, 60.7586], [10.538, 60.7586], [10.5383, 60.7586], [10.5384, 60.7587], [10.5384, 60.7587], [10.5383, 60.7587], [10.5382, 60.7587], [10.5381, 60.7588], [10.5381, 60.7588], [10.5382, 60.7589], [10.5382, 60.759], [10.5384, 60.7591], [10.5384, 60.7592], [10.5384, 60.7592], [10.5382, 60.7593], [10.5382, 60.7595], [10.5476, 60.7595], [10.5475, 60.7593]]]}}, {"type": "Feature", "properties": {"sub_div_id": "2", "sub_div_center": [0.0008, 0.001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5364, 60.7432], [10.5365, 60.7433], [10.5366, 60.7433], [10.5367, 60.7433], [10.5368, 60.7433], [10.5368, 60.7432], [10.5369, 60.7432], [10.537, 60.7431], [10.537, 60.7431], [10.537, 60.743], [10.5371, 60.7429], [10.5371, 60.7429], [10.5371, 60.7428], [10.5371, 60.7425], [10.5372, 60.7424], [10.5372, 60.7424], [10.5371, 60.7423], [10.537, 60.7423], [10.5369, 60.7423], [10.5368, 60.7423], [10.5367, 60.7423], [10.5366, 60.7423], [10.5365, 60.7425], [10.5364, 60.7426], [10.5364, 60.7429], [10.5364, 60.743], [10.5364, 60.7431], [10.5364, 60.7431], [10.5364, 60.7432], [10.5364, 60.7432]]]}}, {"type": "Feature", "properties": {"sub_div_id": "3", "sub_div_center": [0.0005, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5449, 60.7483], [10.545, 60.7484], [10.5452, 60.7484], [10.5452, 60.7484], [10.5453, 60.7483], [10.5454, 60.7482], [10.5454, 60.7482], [10.5452, 60.7481], [10.5452, 60.7481], [10.545, 60.7482], [10.5449, 60.7482], [10.5449, 60.7482], [10.5449, 60.7483]]]}}, {"type": "Feature", "properties": {"sub_div_id": "4", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5431, 60.7509], [10.5431, 60.7509], [10.5432, 60.7509], [10.5432, 60.7508], [10.5433, 60.7508], [10.5433, 60.7507], [10.5432, 60.7507], [10.5431, 60.7508], [10.5431, 60.7508], [10.5431, 60.7508], [10.5431, 60.7509]]]}}, {"type": "Feature", "properties": {"sub_div_id": "5", "sub_div_center": [0.0004, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5422, 60.7509], [10.5423, 60.7509], [10.5424, 60.7508], [10.5425, 60.7508], [10.5426, 60.7508], [10.5426, 60.7508], [10.5425, 60.7507], [10.5424, 60.7507], [10.5423, 60.7508], [10.5422, 60.7508], [10.5422, 60.7509], [10.5422, 60.7509]]]}}, {"type": "Feature", "properties": {"sub_div_id": "6", "sub_div_center": [0.0004, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5432, 60.7516], [10.5433, 60.7515], [10.5433, 60.7515], [10.5434, 60.7514], [10.5436, 60.7513], [10.5436, 60.7513], [10.5436, 60.7512], [10.5436, 60.7512], [10.5435, 60.7512], [10.5435, 60.7512], [10.5434, 60.7513], [10.5433, 60.7513], [10.5432, 60.7515], [10.5432, 60.7516]]]}}, {"type": "Feature", "properties": {"sub_div_id": "7", "sub_div_center": [0.0003, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5438, 60.7495], [10.5438, 60.7496], [10.5438, 60.7496], [10.5439, 60.7496], [10.5439, 60.7496], [10.544, 60.7496], [10.544, 60.7495], [10.5439, 60.7495], [10.5439, 60.7495], [10.5438, 60.7494], [10.5438, 60.7494], [10.5437, 60.7494], [10.5437, 60.7495], [10.5438, 60.7495]]]}}], "tile_count": 8}
\ No newline at end of file
+{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"sub_div_id": "0", "sub_div_center": [60.759476, 10.528021]}, "geometry": {"type": "Polygon", "coordinates": [[[10.528, 60.7707], [10.5281, 60.7707], [10.5282, 60.7707], [10.5284, 60.7706], [10.5286, 60.7706], [10.5287, 60.7703], [10.5288, 60.7702], [10.529, 60.7701], [10.5291, 60.7699], [10.5292, 60.7698], [10.5293, 60.7698], [10.5293, 60.7696], [10.5293, 60.7695], [10.5294, 60.7694], [10.5295, 60.7694], [10.5295, 60.7694], [10.5296, 60.7694], [10.5297, 60.7693], [10.5299, 60.7692], [10.5299, 60.7692], [10.53, 60.7692], [10.5302, 60.7692], [10.5304, 60.7692], [10.5305, 60.7691], [10.5308, 60.769], [10.5312, 60.769], [10.5314, 60.7689], [10.5318, 60.7688], [10.5319, 60.7687], [10.5319, 60.7687], [10.5319, 60.7686], [10.532, 60.7686], [10.532, 60.7686], [10.532, 60.7685], [10.532, 60.7684], [10.5321, 60.7683], [10.5322, 60.7682], [10.5323, 60.768], [10.5326, 60.7677], [10.5329, 60.7676], [10.533, 60.7674], [10.5332, 60.7674], [10.5338, 60.7672], [10.5341, 60.7672], [10.5344, 60.7671], [10.5347, 60.7671], [10.5348, 60.7671], [10.535, 60.7671], [10.5353, 60.7672], [10.5355, 60.7672], [10.536, 60.7672], [10.5361, 60.7672], [10.5364, 60.7672], [10.5366, 60.7672], [10.5367, 60.7673], [10.5367, 60.7673], [10.5367, 60.7674], [10.5367, 60.7674], [10.5366, 60.7675], [10.5365, 60.7675], [10.5364, 60.7677], [10.5362, 60.7678], [10.5362, 60.7679], [10.5363, 60.768], [10.5363, 60.768], [10.5363, 60.768], [10.5363, 60.7681], [10.5363, 60.7683], [10.5364, 60.7684], [10.5364, 60.7686], [10.5365, 60.7687], [10.5366, 60.7688], [10.5367, 60.769], [10.5368, 60.769], [10.5369, 60.769], [10.537, 60.769], [10.5373, 60.769], [10.5375, 60.769], [10.5377, 60.769], [10.5381, 60.769], [10.5382, 60.7689], [10.5385, 60.7688], [10.5387, 60.7686], [10.5387, 60.7686], [10.5388, 60.7686], [10.5391, 60.7684], [10.5392, 60.7684], [10.5393, 60.7683], [10.5394, 60.7682], [10.5394, 60.7682], [10.5395, 60.7682], [10.5395, 60.7683], [10.5396, 60.7683], [10.5396, 60.7684], [10.5396, 60.7684], [10.5396, 60.7684], [10.5398, 60.7685], [10.54, 60.7685], [10.5402, 60.7684], [10.5403, 60.7684], [10.5404, 60.7683], [10.5405, 60.7683], [10.5407, 60.7681], [10.5408, 60.7681], [10.5409, 60.768], [10.5411, 60.768], [10.5414, 60.7679], [10.5414, 60.7679], [10.5415, 60.7677], [10.5417, 60.7676], [10.5418, 60.7675], [10.5418, 60.7675], [10.5419, 60.7674], [10.5421, 60.7674], [10.5422, 60.7674], [10.5423, 60.7674], [10.5424, 60.7673], [10.5424, 60.7672], [10.5424, 60.7672], [10.5425, 60.7672], [10.5426, 60.7671], [10.5428, 60.767], [10.5428, 60.767], [10.543, 60.7669], [10.5432, 60.7669], [10.5434, 60.7669], [10.5434, 60.7669], [10.5434, 60.7671], [10.5434, 60.7671], [10.5434, 60.7672], [10.5434, 60.7672], [10.5437, 60.7672], [10.5437, 60.7672], [10.5439, 60.7672], [10.544, 60.7672], [10.5441, 60.7672], [10.5442, 60.7671], [10.5443, 60.7671], [10.5443, 60.767], [10.5443, 60.7669], [10.5443, 60.7669], [10.5443, 60.7669], [10.5442, 60.7669], [10.5441, 60.7669], [10.5441, 60.7668], [10.5441, 60.7668], [10.5442, 60.7668], [10.5444, 60.7667], [10.5446, 60.7666], [10.5448, 60.7665], [10.5449, 60.7664], [10.5451, 60.7662], [10.5454, 60.766], [10.5456, 60.7659], [10.5456, 60.7659], [10.5456, 60.7659], [10.5455, 60.7658], [10.5454, 60.7657], [10.5454, 60.7656], [10.5454, 60.7655], [10.5453, 60.7654], [10.5452, 60.7653], [10.5451, 60.7652], [10.5451, 60.7652], [10.5452, 60.7652], [10.5452, 60.7652], [10.5453, 60.7652], [10.5454, 60.7652], [10.5455, 60.7653], [10.5457, 60.7654], [10.5458, 60.7655], [10.5459, 60.7655], [10.5463, 60.7655], [10.5463, 60.7655], [10.5464, 60.7656], [10.5464, 60.7656], [10.5464, 60.7656], [10.5465, 60.7657], [10.5467, 60.7657], [10.5469, 60.7658], [10.5471, 60.7658], [10.5473, 60.7658], [10.5473, 60.7658], [10.5475, 60.7657], [10.5476, 60.7656], [10.5477, 60.7656], [10.5478, 60.7655], [10.5481, 60.7655], [10.5483, 60.7655], [10.5487, 60.7655], [10.5488, 60.7654], [10.549, 60.7653], [10.5492, 60.7652], [10.5492, 60.7651], [10.5492, 60.7651], [10.5491, 60.765], [10.5491, 60.765], [10.5491, 60.7649], [10.5491, 60.7649], [10.5491, 60.7648], [10.5491, 60.7647], [10.5493, 60.7647], [10.5496, 60.7645], [10.5497, 60.7645], [10.5497, 60.7644], [10.5497, 60.7643], [10.5497, 60.7642], [10.5496, 60.7641], [10.5496, 60.764], [10.5492, 60.7637], [10.549, 60.7636], [10.5488, 60.7634], [10.5487, 60.7633], [10.5484, 60.7631], [10.5483, 60.7631], [10.5483, 60.763], [10.5482, 60.7628], [10.5482, 60.7627], [10.5481, 60.7627], [10.5478, 60.7624], [10.5477, 60.7624], [10.5477, 60.7623], [10.5477, 60.7622], [10.5478, 60.7622], [10.5479, 60.7621], [10.548, 60.7621], [10.548, 60.7621], [10.5481, 60.7621], [10.5482, 60.7621], [10.5483, 60.7622], [10.5484, 60.7622], [10.5485, 60.7621], [10.5486, 60.7621], [10.5487, 60.7621], [10.5488, 60.762], [10.549, 60.762], [10.5491, 60.7619], [10.5491, 60.7619], [10.5491, 60.7617], [10.5493, 60.7616], [10.5493, 60.7615], [10.5493, 60.7614], [10.5493, 60.7614], [10.5492, 60.7613], [10.5488, 60.761], [10.5486, 60.7609], [10.5482, 60.7607], [10.548, 60.7607], [10.5479, 60.7606], [10.5478, 60.7605], [10.5478, 60.7604], [10.5478, 60.7604], [10.5478, 60.7602], [10.5477, 60.7601], [10.5476, 60.7599], [10.5476, 60.7598], [10.5476, 60.7595], [10.5476, 60.7595], [10.5382, 60.7595], [10.5382, 60.7595], [10.5379, 60.7598], [10.5378, 60.76], [10.5379, 60.76], [10.538, 60.7601], [10.538, 60.7601], [10.5381, 60.7602], [10.5381, 60.7604], [10.5381, 60.7605], [10.538, 60.7605], [10.5379, 60.7606], [10.5378, 60.7607], [10.5377, 60.7609], [10.5377, 60.7611], [10.5377, 60.7612], [10.5376, 60.7613], [10.5375, 60.7614], [10.5374, 60.7615], [10.5373, 60.7616], [10.5372, 60.7617], [10.5371, 60.7619], [10.537, 60.7619], [10.537, 60.762], [10.5368, 60.762], [10.5367, 60.7621], [10.5367, 60.7621], [10.5366, 60.7622], [10.5366, 60.7623], [10.5364, 60.7623], [10.5363, 60.7624], [10.5362, 60.7625], [10.5361, 60.7626], [10.536, 60.7628], [10.536, 60.7628], [10.5359, 60.7628], [10.5359, 60.7628], [10.5358, 60.7628], [10.5356, 60.763], [10.5356, 60.763], [10.5355, 60.763], [10.5354, 60.7631], [10.5353, 60.7631], [10.5352, 60.7632], [10.5352, 60.7632], [10.5352, 60.7634], [10.5353, 60.7634], [10.5353, 60.7634], [10.5355, 60.7633], [10.5356, 60.7633], [10.5357, 60.7633], [10.5358, 60.7634], [10.5358, 60.7634], [10.5359, 60.7634], [10.5361, 60.7634], [10.5363, 60.7634], [10.5366, 60.7635], [10.5366, 60.7636], [10.5366, 60.7637], [10.5367, 60.7637], [10.5369, 60.7638], [10.5369, 60.7639], [10.537, 60.764], [10.537, 60.7641], [10.537, 60.7641], [10.5371, 60.7641], [10.5373, 60.764], [10.5374, 60.7639], [10.5375, 60.7638], [10.5376, 60.7638], [10.5376, 60.7639], [10.5377, 60.7639], [10.5377, 60.764], [10.5377, 60.7643], [10.5377, 60.7644], [10.5375, 60.7646], [10.5373, 60.7647], [10.5372, 60.7649], [10.5371, 60.7649], [10.537, 60.765], [10.5369, 60.7651], [10.5368, 60.7651], [10.5367, 60.7651], [10.5367, 60.7651], [10.5366, 60.765], [10.5365, 60.765], [10.5366, 60.7649], [10.5366, 60.7648], [10.5368, 60.7646], [10.5368, 60.7646], [10.5368, 60.7645], [10.5368, 60.7645], [10.5367, 60.7645], [10.5366, 60.7645], [10.5365, 60.7646], [10.5365, 60.7646], [10.5363, 60.7649], [10.5362, 60.765], [10.536, 60.7651], [10.536, 60.7651], [10.536, 60.7653], [10.536, 60.7653], [10.5359, 60.7653], [10.5359, 60.7653], [10.5357, 60.7653], [10.5355, 60.7653], [10.5353, 60.7653], [10.5352, 60.7653], [10.5349, 60.7653], [10.5349, 60.7653], [10.5348, 60.7654], [10.5347, 60.7654], [10.5346, 60.7654], [10.5345, 60.7654], [10.5344, 60.7654], [10.5342, 60.7653], [10.5341, 60.7653], [10.534, 60.7653], [10.5338, 60.7653], [10.5337, 60.7653], [10.5335, 60.7653], [10.5333, 60.7654], [10.5331, 60.7655], [10.533, 60.7655], [10.5329, 60.7656], [10.5328, 60.7657], [10.5326, 60.7659], [10.5323, 60.766], [10.5323, 60.7661], [10.5322, 60.7662], [10.5321, 60.7663], [10.5318, 60.7664], [10.5317, 60.7665], [10.5317, 60.7665], [10.5317, 60.7668], [10.5316, 60.7669], [10.5316, 60.767], [10.5316, 60.7672], [10.5314, 60.7673], [10.5314, 60.7673], [10.5314, 60.7675], [10.5313, 60.7676], [10.5311, 60.7679], [10.5307, 60.7681], [10.5306, 60.7682], [10.5305, 60.7683], [10.5304, 60.7684], [10.5304, 60.7684], [10.5304, 60.7687], [10.5304, 60.7688], [10.5303, 60.7688], [10.5302, 60.7688], [10.5301, 60.7687], [10.53, 60.7687], [10.53, 60.7687], [10.5298, 60.7688], [10.5296, 60.7689], [10.5295, 60.7689], [10.5293, 60.769], [10.5293, 60.769], [10.5291, 60.7691], [10.5289, 60.7691], [10.5282, 60.7691], [10.5282, 60.7691], [10.5281, 60.7691], [10.5282, 60.7691], [10.5282, 60.7691], [10.5289, 60.7692], [10.529, 60.7692], [10.5291, 60.7692], [10.5292, 60.7692], [10.5292, 60.7692], [10.529, 60.7693], [10.5289, 60.7694], [10.5288, 60.7694], [10.5287, 60.7694], [10.5287, 60.7696], [10.5287, 60.7696], [10.5287, 60.7697], [10.5285, 60.7697], [10.5285, 60.7697], [10.5282, 60.7698], [10.5281, 60.7698], [10.528, 60.7698], [10.5281, 60.7699], [10.5282, 60.7699], [10.5282, 60.77], [10.5281, 60.7701], [10.5281, 60.7703], [10.5282, 60.7704], [10.5282, 60.7704], [10.5282, 60.7705], [10.5282, 60.7705], [10.528, 60.7706], [10.528, 60.7707], [10.528, 60.7707]]]}}, {"type": "Feature", "properties": {"sub_div_id": "1", "sub_div_center": [60.739476, 10.530733]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5475, 60.7593], [10.5475, 60.759], [10.5474, 60.7589], [10.5474, 60.7587], [10.5473, 60.7586], [10.5473, 60.7585], [10.5472, 60.7585], [10.547, 60.7583], [10.5468, 60.7581], [10.5468, 60.7581], [10.5465, 60.7579], [10.5465, 60.7579], [10.5464, 60.7576], [10.5464, 60.7575], [10.5462, 60.7574], [10.5461, 60.7573], [10.5459, 60.7571], [10.5456, 60.7568], [10.5453, 60.7566], [10.5452, 60.7565], [10.5451, 60.7565], [10.5451, 60.7563], [10.5451, 60.7563], [10.545, 60.7562], [10.5449, 60.7561], [10.5447, 60.7559], [10.5447, 60.7558], [10.5446, 60.7556], [10.5446, 60.7554], [10.5445, 60.7551], [10.5444, 60.755], [10.5443, 60.7549], [10.5443, 60.7548], [10.5443, 60.7547], [10.5442, 60.7546], [10.5442, 60.7544], [10.5441, 60.7543], [10.5441, 60.7539], [10.5441, 60.7538], [10.544, 60.7537], [10.544, 60.7534], [10.5439, 60.7531], [10.5439, 60.7531], [10.5439, 60.753], [10.5439, 60.7528], [10.5439, 60.7528], [10.544, 60.7527], [10.5441, 60.7526], [10.5443, 60.7525], [10.5443, 60.7524], [10.5449, 60.7522], [10.5453, 60.752], [10.5456, 60.7518], [10.5458, 60.7517], [10.546, 60.7516], [10.5461, 60.7516], [10.5462, 60.7515], [10.5462, 60.7514], [10.5462, 60.7514], [10.5462, 60.7513], [10.5462, 60.7513], [10.546, 60.7512], [10.5459, 60.7512], [10.5459, 60.7511], [10.5459, 60.751], [10.5459, 60.751], [10.546, 60.7509], [10.5459, 60.7509], [10.5459, 60.7509], [10.5457, 60.7509], [10.5455, 60.7509], [10.5453, 60.751], [10.5451, 60.751], [10.545, 60.751], [10.5449, 60.751], [10.5447, 60.7511], [10.5446, 60.7511], [10.5444, 60.7511], [10.5444, 60.7511], [10.5443, 60.7511], [10.5443, 60.751], [10.5444, 60.7509], [10.5445, 60.7508], [10.5445, 60.7507], [10.5445, 60.7507], [10.5444, 60.7506], [10.5444, 60.7506], [10.5445, 60.7505], [10.5446, 60.7505], [10.5446, 60.7504], [10.5447, 60.7502], [10.5448, 60.7501], [10.5449, 60.7501], [10.5449, 60.75], [10.5448, 60.75], [10.5446, 60.7499], [10.5446, 60.7499], [10.5445, 60.7498], [10.5446, 60.7497], [10.5446, 60.7497], [10.5445, 60.7496], [10.5444, 60.7496], [10.5444, 60.7496], [10.5443, 60.7496], [10.5442, 60.7495], [10.5441, 60.7495], [10.5441, 60.7495], [10.5441, 60.7494], [10.5441, 60.7494], [10.5441, 60.7492], [10.5442, 60.7491], [10.5442, 60.749], [10.5442, 60.7489], [10.5443, 60.7488], [10.5443, 60.7488], [10.5443, 60.7488], [10.5443, 60.7487], [10.5443, 60.7487], [10.5446, 60.7486], [10.5446, 60.7486], [10.5446, 60.7485], [10.5447, 60.7485], [10.5447, 60.7485], [10.5448, 60.7485], [10.545, 60.7484], [10.5451, 60.7484], [10.5452, 60.7484], [10.5453, 60.7484], [10.5454, 60.7484], [10.5455, 60.7483], [10.5456, 60.7483], [10.5457, 60.7482], [10.5457, 60.7481], [10.5457, 60.7481], [10.5459, 60.748], [10.546, 60.7479], [10.5464, 60.7479], [10.5465, 60.7479], [10.5466, 60.7479], [10.5467, 60.7478], [10.5468, 60.7478], [10.5468, 60.7478], [10.5469, 60.7478], [10.547, 60.7477], [10.547, 60.7477], [10.5471, 60.7477], [10.5472, 60.7477], [10.5473, 60.7476], [10.5477, 60.7475], [10.5477, 60.7474], [10.5478, 60.7473], [10.5477, 60.7472], [10.5477, 60.7472], [10.5477, 60.7472], [10.5477, 60.7471], [10.5476, 60.7471], [10.5475, 60.7471], [10.5472, 60.747], [10.5469, 60.747], [10.5467, 60.747], [10.5465, 60.7471], [10.5465, 60.7472], [10.5464, 60.7472], [10.5463, 60.7472], [10.5462, 60.7472], [10.5462, 60.7472], [10.5461, 60.7472], [10.546, 60.7472], [10.5459, 60.7472], [10.5459, 60.7471], [10.5459, 60.7471], [10.5461, 60.7471], [10.5462, 60.7471], [10.5463, 60.7471], [10.5463, 60.747], [10.5462, 60.747], [10.5462, 60.747], [10.5462, 60.7469], [10.5461, 60.7469], [10.546, 60.7469], [10.5459, 60.7469], [10.5458, 60.7468], [10.5458, 60.7468], [10.5458, 60.7468], [10.5457, 60.7467], [10.5457, 60.7466], [10.5457, 60.7466], [10.5457, 60.7464], [10.5456, 60.7464], [10.5455, 60.7463], [10.5454, 60.7462], [10.5453, 60.7462], [10.5452, 60.7461], [10.5452, 60.7461], [10.5453, 60.7461], [10.5453, 60.746], [10.5452, 60.746], [10.5452, 60.7457], [10.5452, 60.7457], [10.5451, 60.7457], [10.5449, 60.7456], [10.5445, 60.7455], [10.5441, 60.7453], [10.544, 60.7452], [10.5439, 60.7451], [10.5439, 60.745], [10.5439, 60.7448], [10.5438, 60.7448], [10.5436, 60.7448], [10.5435, 60.7448], [10.5433, 60.7447], [10.5432, 60.7446], [10.5432, 60.7445], [10.5432, 60.7444], [10.5433, 60.7444], [10.5433, 60.7443], [10.5434, 60.7442], [10.5434, 60.7442], [10.5435, 60.7442], [10.5435, 60.7441], [10.5435, 60.7441], [10.5435, 60.744], [10.5436, 60.744], [10.5436, 60.744], [10.5437, 60.7439], [10.5437, 60.7439], [10.5436, 60.7439], [10.5436, 60.7438], [10.5436, 60.7438], [10.5436, 60.7438], [10.5437, 60.7437], [10.5436, 60.7436], [10.5434, 60.7435], [10.5433, 60.7433], [10.5432, 60.7433], [10.5433, 60.7432], [10.5434, 60.7432], [10.5434, 60.7431], [10.5434, 60.743], [10.5433, 60.743], [10.543, 60.7431], [10.543, 60.7431], [10.543, 60.7431], [10.5429, 60.7432], [10.5429, 60.7432], [10.5428, 60.7432], [10.5428, 60.7432], [10.5427, 60.7432], [10.5427, 60.7431], [10.5426, 60.7431], [10.5422, 60.743], [10.542, 60.7429], [10.5418, 60.7428], [10.5415, 60.7427], [10.5416, 60.7427], [10.5416, 60.7426], [10.5416, 60.7426], [10.5413, 60.7424], [10.5412, 60.7423], [10.5411, 60.7422], [10.541, 60.7422], [10.541, 60.7422], [10.5409, 60.7421], [10.5409, 60.7421], [10.5408, 60.7421], [10.5408, 60.742], [10.5407, 60.7419], [10.5406, 60.7419], [10.5404, 60.7419], [10.5402, 60.7419], [10.5402, 60.7419], [10.5401, 60.7419], [10.5401, 60.742], [10.54, 60.742], [10.54, 60.742], [10.5398, 60.742], [10.5398, 60.742], [10.5397, 60.742], [10.5397, 60.7421], [10.5395, 60.7422], [10.5394, 60.7422], [10.5393, 60.7423], [10.5393, 60.7424], [10.5393, 60.7424], [10.5394, 60.7424], [10.5394, 60.7424], [10.5395, 60.7424], [10.5393, 60.7425], [10.5393, 60.7425], [10.5391, 60.7425], [10.539, 60.7426], [10.539, 60.7426], [10.539, 60.7426], [10.5389, 60.7427], [10.5389, 60.7427], [10.5388, 60.7427], [10.5388, 60.7426], [10.5388, 60.7426], [10.5387, 60.7426], [10.5386, 60.7427], [10.5386, 60.7427], [10.5386, 60.7427], [10.5386, 60.7428], [10.5387, 60.7428], [10.5388, 60.7428], [10.5389, 60.7429], [10.5389, 60.7429], [10.5389, 60.7429], [10.5388, 60.7429], [10.5387, 60.743], [10.5386, 60.743], [10.5385, 60.743], [10.5384, 60.743], [10.5381, 60.743], [10.538, 60.743], [10.5379, 60.743], [10.5378, 60.7429], [10.5378, 60.7429], [10.5378, 60.7429], [10.5377, 60.7429], [10.5377, 60.7428], [10.5377, 60.7428], [10.5376, 60.7427], [10.5376, 60.7427], [10.5377, 60.7426], [10.5378, 60.7426], [10.5378, 60.7426], [10.5379, 60.7426], [10.5379, 60.7425], [10.538, 60.7425], [10.538, 60.7425], [10.538, 60.7424], [10.538, 60.7424], [10.5379, 60.7424], [10.5376, 60.7424], [10.5375, 60.7424], [10.5375, 60.7423], [10.5375, 60.7423], [10.5376, 60.7423], [10.5377, 60.7423], [10.5377, 60.7422], [10.5377, 60.742], [10.5377, 60.742], [10.5377, 60.7418], [10.5379, 60.7418], [10.5381, 60.7417], [10.5382, 60.7417], [10.5383, 60.7416], [10.5385, 60.7416], [10.5386, 60.7416], [10.5387, 60.7416], [10.5388, 60.7416], [10.539, 60.7417], [10.5392, 60.7416], [10.5392, 60.7416], [10.5392, 60.7416], [10.539, 60.7415], [10.539, 60.7415], [10.5389, 60.7414], [10.5387, 60.7414], [10.5385, 60.7413], [10.5383, 60.7413], [10.5382, 60.7413], [10.5381, 60.7412], [10.5378, 60.7411], [10.5377, 60.7411], [10.5376, 60.741], [10.5376, 60.741], [10.5376, 60.7409], [10.5376, 60.7409], [10.5377, 60.7409], [10.5376, 60.7409], [10.5376, 60.7409], [10.5376, 60.7407], [10.5376, 60.7407], [10.5376, 60.7406], [10.5374, 60.7404], [10.5373, 60.7403], [10.5373, 60.7403], [10.5373, 60.7403], [10.5373, 60.7403], [10.5372, 60.7402], [10.5372, 60.7402], [10.5373, 60.7402], [10.5375, 60.7401], [10.5376, 60.74], [10.5376, 60.74], [10.5374, 60.7399], [10.5374, 60.7399], [10.5374, 60.7398], [10.5374, 60.7397], [10.5373, 60.7397], [10.5373, 60.7396], [10.5371, 60.7396], [10.5369, 60.7395], [10.5368, 60.7395], [10.5367, 60.7395], [10.5366, 60.7395], [10.5365, 60.7395], [10.5364, 60.7395], [10.5363, 60.7396], [10.5362, 60.7397], [10.5361, 60.7398], [10.5359, 60.7399], [10.5359, 60.7399], [10.5357, 60.74], [10.5355, 60.7401], [10.5353, 60.7401], [10.5352, 60.7401], [10.535, 60.7402], [10.5348, 60.7403], [10.5347, 60.7404], [10.5345, 60.7404], [10.5345, 60.7405], [10.5345, 60.7405], [10.5343, 60.7405], [10.5342, 60.7406], [10.5341, 60.7406], [10.534, 60.7405], [10.5339, 60.7405], [10.5338, 60.7405], [10.5337, 60.7405], [10.5334, 60.7406], [10.5332, 60.7407], [10.5331, 60.7407], [10.533, 60.7407], [10.5328, 60.7407], [10.5327, 60.7408], [10.5326, 60.7408], [10.5324, 60.7408], [10.5323, 60.7408], [10.5321, 60.7408], [10.532, 60.7408], [10.5319, 60.7407], [10.5317, 60.7407], [10.5315, 60.7407], [10.5313, 60.7407], [10.5311, 60.7408], [10.5311, 60.7408], [10.531, 60.7408], [10.5308, 60.7408], [10.5307, 60.7409], [10.5307, 60.741], [10.5308, 60.7411], [10.5308, 60.7412], [10.5308, 60.7412], [10.5308, 60.7412], [10.5308, 60.7414], [10.531, 60.7414], [10.5311, 60.7415], [10.5311, 60.7415], [10.5312, 60.7416], [10.5311, 60.7416], [10.5311, 60.7417], [10.5313, 60.7418], [10.5314, 60.7418], [10.5315, 60.7419], [10.5315, 60.742], [10.5316, 60.7421], [10.5317, 60.7421], [10.5317, 60.7422], [10.532, 60.7422], [10.5322, 60.7423], [10.5322, 60.7423], [10.5323, 60.7423], [10.5324, 60.7423], [10.5325, 60.7424], [10.5326, 60.7425], [10.5328, 60.7426], [10.5329, 60.7426], [10.5329, 60.7427], [10.5328, 60.7428], [10.5328, 60.7429], [10.5328, 60.743], [10.5328, 60.7431], [10.533, 60.7431], [10.533, 60.7432], [10.5328, 60.7432], [10.5328, 60.7432], [10.533, 60.7433], [10.533, 60.7433], [10.5332, 60.7434], [10.5333, 60.7434], [10.5333, 60.7433], [10.5333, 60.7434], [10.5334, 60.7434], [10.5333, 60.7434], [10.5333, 60.7435], [10.5334, 60.7435], [10.5335, 60.7436], [10.5335, 60.7436], [10.5335, 60.7438], [10.5336, 60.7439], [10.5336, 60.744], [10.5337, 60.744], [10.5337, 60.7441], [10.5337, 60.7441], [10.5337, 60.7442], [10.5337, 60.7443], [10.5337, 60.7443], [10.5338, 60.7443], [10.5338, 60.7444], [10.5338, 60.7444], [10.5339, 60.7445], [10.5339, 60.7446], [10.5339, 60.7446], [10.5338, 60.7446], [10.5338, 60.7447], [10.5338, 60.745], [10.5338, 60.7451], [10.5339, 60.7453], [10.534, 60.7454], [10.534, 60.7456], [10.5341, 60.7456], [10.5341, 60.7457], [10.5341, 60.7458], [10.5341, 60.7459], [10.5341, 60.7459], [10.5342, 60.746], [10.5342, 60.746], [10.5342, 60.7461], [10.5343, 60.7461], [10.5343, 60.7462], [10.5344, 60.7462], [10.5344, 60.7462], [10.5344, 60.7464], [10.5344, 60.7464], [10.5345, 60.7465], [10.5346, 60.7466], [10.5346, 60.7466], [10.5346, 60.7468], [10.5346, 60.7469], [10.5346, 60.7472], [10.5345, 60.7472], [10.5345, 60.7474], [10.5346, 60.7475], [10.5346, 60.7475], [10.5347, 60.7476], [10.5347, 60.7476], [10.5349, 60.7476], [10.535, 60.7477], [10.535, 60.7478], [10.5351, 60.7478], [10.535, 60.7479], [10.5351, 60.748], [10.5351, 60.748], [10.535, 60.7481], [10.535, 60.7481], [10.5349, 60.7482], [10.5349, 60.7483], [10.5349, 60.7483], [10.5348, 60.7484], [10.5348, 60.7484], [10.5346, 60.7486], [10.5345, 60.7486], [10.5343, 60.7487], [10.5343, 60.7487], [10.5343, 60.7487], [10.5342, 60.7488], [10.5341, 60.7488], [10.534, 60.7488], [10.5337, 60.7487], [10.5336, 60.7487], [10.5335, 60.7487], [10.5334, 60.7487], [10.5332, 60.7487], [10.533, 60.7487], [10.533, 60.7487], [10.5327, 60.7488], [10.5326, 60.7488], [10.5326, 60.7488], [10.5326, 60.7488], [10.5327, 60.7489], [10.5327, 60.749], [10.5327, 60.749], [10.5325, 60.749], [10.5325, 60.749], [10.5325, 60.7491], [10.5326, 60.7491], [10.5327, 60.7491], [10.5328, 60.7491], [10.5328, 60.7491], [10.5329, 60.7492], [10.5333, 60.7493], [10.5333, 60.7493], [10.5332, 60.7494], [10.5332, 60.7494], [10.5336, 60.7495], [10.5338, 60.7495], [10.5338, 60.7496], [10.5339, 60.7496], [10.5339, 60.7496], [10.5341, 60.7497], [10.5343, 60.7497], [10.5344, 60.7497], [10.5344, 60.7498], [10.5344, 60.7499], [10.5344, 60.7499], [10.5345, 60.75], [10.5346, 60.75], [10.5347, 60.75], [10.5349, 60.7502], [10.535, 60.7503], [10.5352, 60.7503], [10.5352, 60.7503], [10.5353, 60.7503], [10.5353, 60.7504], [10.5354, 60.7505], [10.5355, 60.7505], [10.5355, 60.7507], [10.5356, 60.7508], [10.5356, 60.7509], [10.5357, 60.751], [10.5358, 60.751], [10.5359, 60.7511], [10.5359, 60.7513], [10.5358, 60.7513], [10.5358, 60.7514], [10.5356, 60.7514], [10.5356, 60.7514], [10.5355, 60.7516], [10.5355, 60.7516], [10.5354, 60.7516], [10.5353, 60.7517], [10.5349, 60.7517], [10.5348, 60.7516], [10.5345, 60.7516], [10.5344, 60.7515], [10.5343, 60.7515], [10.5342, 60.7516], [10.5337, 60.7516], [10.5336, 60.7516], [10.5334, 60.7515], [10.5333, 60.7515], [10.5332, 60.7515], [10.5332, 60.7515], [10.5332, 60.7515], [10.5331, 60.7515], [10.5329, 60.7516], [10.5328, 60.7516], [10.5328, 60.7517], [10.5326, 60.7518], [10.5325, 60.7519], [10.5325, 60.7519], [10.5326, 60.7521], [10.5326, 60.7522], [10.5326, 60.7523], [10.5326, 60.7523], [10.5325, 60.7523], [10.5325, 60.7524], [10.5325, 60.7524], [10.5326, 60.7526], [10.5326, 60.7526], [10.5327, 60.7526], [10.5328, 60.7527], [10.5328, 60.7528], [10.5329, 60.7528], [10.5328, 60.7528], [10.5328, 60.7529], [10.5329, 60.7529], [10.533, 60.753], [10.5331, 60.7531], [10.5333, 60.7531], [10.5335, 60.7531], [10.5336, 60.7531], [10.5339, 60.7531], [10.534, 60.7531], [10.5341, 60.7531], [10.5341, 60.7531], [10.5341, 60.7531], [10.5339, 60.7532], [10.5338, 60.7533], [10.5335, 60.7534], [10.5335, 60.7535], [10.5334, 60.7535], [10.5333, 60.7536], [10.5333, 60.7539], [10.5333, 60.754], [10.5333, 60.754], [10.5332, 60.7541], [10.5331, 60.7541], [10.5329, 60.7542], [10.5328, 60.7542], [10.5327, 60.7543], [10.5327, 60.7544], [10.5326, 60.7545], [10.5326, 60.7547], [10.5324, 60.7548], [10.5324, 60.7548], [10.5324, 60.7549], [10.5323, 60.755], [10.5323, 60.755], [10.5323, 60.755], [10.5324, 60.7551], [10.5325, 60.7551], [10.5326, 60.7551], [10.5327, 60.7551], [10.5329, 60.7551], [10.5332, 60.755], [10.5333, 60.755], [10.5333, 60.755], [10.5334, 60.755], [10.5334, 60.755], [10.5334, 60.7552], [10.5335, 60.7554], [10.5335, 60.7555], [10.5335, 60.7558], [10.5335, 60.7559], [10.5334, 60.7559], [10.5334, 60.756], [10.5335, 60.7561], [10.5336, 60.7561], [10.5336, 60.7562], [10.5335, 60.7562], [10.5334, 60.7562], [10.5333, 60.7563], [10.5332, 60.7564], [10.5332, 60.7564], [10.5332, 60.7565], [10.5332, 60.7566], [10.5332, 60.7567], [10.5331, 60.7567], [10.5331, 60.7568], [10.5331, 60.7568], [10.5332, 60.7569], [10.5332, 60.757], [10.5331, 60.7571], [10.5331, 60.7573], [10.533, 60.7574], [10.533, 60.7575], [10.5329, 60.7575], [10.5329, 60.7575], [10.5327, 60.7576], [10.5327, 60.7576], [10.5327, 60.7576], [10.5327, 60.7577], [10.5327, 60.7578], [10.5328, 60.7579], [10.5327, 60.7579], [10.5327, 60.758], [10.5326, 60.758], [10.5326, 60.7582], [10.5325, 60.7583], [10.5323, 60.7584], [10.5321, 60.7586], [10.5319, 60.7586], [10.5318, 60.7588], [10.5316, 60.759], [10.5316, 60.7591], [10.5315, 60.7592], [10.5315, 60.7592], [10.5315, 60.7593], [10.5315, 60.7593], [10.5315, 60.7594], [10.5317, 60.7594], [10.5317, 60.7594], [10.5318, 60.7594], [10.532, 60.7593], [10.5323, 60.7592], [10.5327, 60.7589], [10.5329, 60.7588], [10.5329, 60.7587], [10.5329, 60.7586], [10.533, 60.7585], [10.533, 60.7585], [10.5332, 60.7584], [10.5334, 60.7584], [10.5335, 60.7583], [10.5336, 60.7582], [10.5338, 60.7582], [10.5339, 60.7582], [10.534, 60.7581], [10.5341, 60.758], [10.5342, 60.758], [10.5343, 60.7579], [10.5345, 60.7579], [10.5346, 60.7578], [10.5348, 60.7577], [10.535, 60.7576], [10.5351, 60.7576], [10.5351, 60.7575], [10.5352, 60.7575], [10.5353, 60.7576], [10.5357, 60.7576], [10.5357, 60.7576], [10.5357, 60.7577], [10.5358, 60.7577], [10.5359, 60.7578], [10.5359, 60.7578], [10.5359, 60.758], [10.536, 60.7581], [10.5361, 60.7581], [10.5361, 60.7581], [10.5362, 60.758], [10.5363, 60.758], [10.5363, 60.7581], [10.5363, 60.7582], [10.5364, 60.7582], [10.5364, 60.7582], [10.5365, 60.7583], [10.5366, 60.7582], [10.5367, 60.7582], [10.5368, 60.7581], [10.537, 60.758], [10.5371, 60.7579], [10.5372, 60.7579], [10.5373, 60.7578], [10.5372, 60.7577], [10.5372, 60.7577], [10.5372, 60.7576], [10.5373, 60.7576], [10.5374, 60.7575], [10.5375, 60.7575], [10.5376, 60.7575], [10.5377, 60.7576], [10.5378, 60.7576], [10.5378, 60.7576], [10.5379, 60.7575], [10.5379, 60.7574], [10.5379, 60.7574], [10.538, 60.7574], [10.538, 60.7575], [10.538, 60.7576], [10.5379, 60.7577], [10.5379, 60.7578], [10.538, 60.7579], [10.538, 60.7579], [10.5379, 60.758], [10.5379, 60.7581], [10.5378, 60.7582], [10.5378, 60.7583], [10.538, 60.7584], [10.538, 60.7585], [10.538, 60.7586], [10.538, 60.7586], [10.5383, 60.7586], [10.5384, 60.7587], [10.5384, 60.7587], [10.5383, 60.7587], [10.5382, 60.7587], [10.5381, 60.7588], [10.5381, 60.7588], [10.5382, 60.7589], [10.5382, 60.759], [10.5384, 60.7591], [10.5384, 60.7592], [10.5384, 60.7592], [10.5382, 60.7593], [10.5382, 60.7595], [10.5476, 60.7595], [10.5475, 60.7593]]]}}, {"type": "Feature", "properties": {"sub_div_id": "2", "sub_div_center": [60.742282, 10.536377]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5364, 60.7432], [10.5365, 60.7433], [10.5366, 60.7433], [10.5367, 60.7433], [10.5368, 60.7433], [10.5368, 60.7432], [10.5369, 60.7432], [10.537, 60.7431], [10.537, 60.7431], [10.537, 60.743], [10.5371, 60.7429], [10.5371, 60.7429], [10.5371, 60.7428], [10.5371, 60.7425], [10.5372, 60.7424], [10.5372, 60.7424], [10.5371, 60.7423], [10.537, 60.7423], [10.5369, 60.7423], [10.5368, 60.7423], [10.5367, 60.7423], [10.5366, 60.7423], [10.5365, 60.7425], [10.5364, 60.7426], [10.5364, 60.7429], [10.5364, 60.743], [10.5364, 60.7431], [10.5364, 60.7431], [10.5364, 60.7432], [10.5364, 60.7432]]]}}, {"type": "Feature", "properties": {"sub_div_id": "3", "sub_div_center": [60.7481, 10.544887]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5449, 60.7483], [10.545, 60.7484], [10.5452, 60.7484], [10.5452, 60.7484], [10.5453, 60.7483], [10.5454, 60.7482], [10.5454, 60.7482], [10.5452, 60.7481], [10.5452, 60.7481], [10.545, 60.7482], [10.5449, 60.7482], [10.5449, 60.7482], [10.5449, 60.7483]]]}}, {"type": "Feature", "properties": {"sub_div_id": "4", "sub_div_center": [60.750731, 10.543055]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5431, 60.7509], [10.5431, 60.7509], [10.5432, 60.7509], [10.5432, 60.7508], [10.5433, 60.7508], [10.5433, 60.7507], [10.5432, 60.7507], [10.5431, 60.7508], [10.5431, 60.7508], [10.5431, 60.7508], [10.5431, 60.7509]]]}}, {"type": "Feature", "properties": {"sub_div_id": "5", "sub_div_center": [60.750735, 10.542226]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5422, 60.7509], [10.5423, 60.7509], [10.5424, 60.7508], [10.5425, 60.7508], [10.5426, 60.7508], [10.5426, 60.7508], [10.5425, 60.7507], [10.5424, 60.7507], [10.5423, 60.7508], [10.5422, 60.7508], [10.5422, 60.7509], [10.5422, 60.7509]]]}}, {"type": "Feature", "properties": {"sub_div_id": "6", "sub_div_center": [60.751169, 10.54319]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5432, 60.7516], [10.5433, 60.7515], [10.5433, 60.7515], [10.5434, 60.7514], [10.5436, 60.7513], [10.5436, 60.7513], [10.5436, 60.7512], [10.5436, 60.7512], [10.5435, 60.7512], [10.5435, 60.7512], [10.5434, 60.7513], [10.5433, 60.7513], [10.5432, 60.7515], [10.5432, 60.7516]]]}}, {"type": "Feature", "properties": {"sub_div_id": "7", "sub_div_center": [60.749417, 10.543726]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5438, 60.7495], [10.5438, 60.7496], [10.5438, 60.7496], [10.5439, 60.7496], [10.5439, 60.7496], [10.544, 60.7496], [10.544, 60.7495], [10.5439, 60.7495], [10.5439, 60.7495], [10.5438, 60.7494], [10.5438, 60.7494], [10.5437, 60.7494], [10.5437, 60.7495], [10.5438, 60.7495]]]}}], "tile_count": 8}
\ No newline at end of file