{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Interaktiva kartor" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "I det tidigare exemplet ritade vi en karta, som snabbt gav en bra helhetsbild över världens utsläppsfördelning. På kartan var nationerna färgade, så att mörkare färg innebar större utsläpp. Hur gör vi om vi vill kunna använda kartan för att se utsläppen eller annan statistik mer exakt?\n", "\n", "\n", "I den här övningen ska vi göra en karta i samma stil, men vi ska också lägga till interaktiva egenskaper. Vi gör en sådan karta, som visar information om området i en pop-up-ruta när vi för pekaren över dem. För omväxlingens skull ska vi använda andra exempeldata än förra gången. Vi undersöker denna gång Finlands kommuner och pensionärernas andel av befolkningen.\n", "\n", "\n", "Finlands kommungränser kan laddas ned från [Lantmäteriverkets databank](https://tiedostopalvelu.maanmittauslaitos.fi/tp/kartta). \n", "Kartfilen hittas med namnet \"SuomenKuntajako_2020_250k.mid\".\n", "\n", "Pensionärernas andel av befolkningen är också öppna data, och finns tillgängligt på [Statistikcentralens hemsida](https://pxnet2.stat.fi/PXWeb/pxweb/fi/Kuntien_avainluvut/). Vi har sparat och förberett filen lite för att den ska passa detta exempel bättre. Den hittas i datamappen som hör till detta dokument, under namnet \"elakelaisten_osuus_2018_kuntajako_2020.csv\". Namnet antyder att statistiken är från 2018, men den återges enligt kommunindelningen från 2020." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Läsa in data" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Vi påbörjar övningen likadant som tidigare, genom att ladda in datafilerna och förena dem till ett dataset. Vi använder funktionspaketen [pandas](https://pandas.pydata.org/) och [geopandas](https://geopandas.org/) för att göra detta." ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
gml_idnatcodenamefinnameswelandareafreshwareaseawareatotalareageometry
01601100430691ReisjärviReisjärvi474.6028.740.00503.34MULTIPOLYGON (((418701.443 7055306.898, 418485...
11601100624853TurkuÅbo245.663.4757.22306.35POLYGON ((249073.975 6725828.546, 248775.530 6...
21601100110318KökarKökar63.570.432101.022165.02POLYGON ((172798.744 6674623.732, 173415.386 6...
31601100668859TyrnäväTyrnävä491.823.040.00494.86POLYGON ((440372.786 7197460.702, 440107.431 7...
41601100521747SiikainenSiikainen463.2928.020.00491.31POLYGON ((236801.933 6882124.138, 236897.467 6...
\n", "
" ], "text/plain": [ " gml_id natcode namefin nameswe landarea freshwarea seawarea \\\n", "0 1601100430 691 Reisjärvi Reisjärvi 474.60 28.74 0.00 \n", "1 1601100624 853 Turku Åbo 245.66 3.47 57.22 \n", "2 1601100110 318 Kökar Kökar 63.57 0.43 2101.02 \n", "3 1601100668 859 Tyrnävä Tyrnävä 491.82 3.04 0.00 \n", "4 1601100521 747 Siikainen Siikainen 463.29 28.02 0.00 \n", "\n", " totalarea geometry \n", "0 503.34 MULTIPOLYGON (((418701.443 7055306.898, 418485... \n", "1 306.35 POLYGON ((249073.975 6725828.546, 248775.530 6... \n", "2 2165.02 POLYGON ((172798.744 6674623.732, 173415.386 6... \n", "3 494.86 POLYGON ((440372.786 7197460.702, 440107.431 7... \n", "4 491.31 POLYGON ((236801.933 6882124.138, 236897.467 6... " ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import pandas as pd\n", "import geopandas as gpd\n", "\n", "# Vi läser in kommungränserna med geopandas' read_file()-funktion\n", "# encoding='latin1' gör att åäö fungerar som de ska.\n", "cities = gpd.read_file('../data/SuomenKuntajako_2020_250k.mid', encoding='latin1')\n", "\n", "# Vi kontrollerar hur datan ser ut.\n", "cities.head()" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
alueelakelaisten_osuus
0Akaa27.3
1Alajärvi33.0
2Alavieska28.7
3Alavus32.7
4Asikkala37.2
\n", "
" ], "text/plain": [ " alue elakelaisten_osuus\n", "0 Akaa 27.3\n", "1 Alajärvi 33.0\n", "2 Alavieska 28.7\n", "3 Alavus 32.7\n", "4 Asikkala 37.2" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Vi läser in filen med information om pensionärsbefolkningen med pandas' read_csv-funktion.\n", "pensioners = pd.read_csv('../data/elakelaisten_osuus_2018_kuntajako_2020.csv')\n", "\n", "# Vi kontrollerar hur tabellen ser ut.\n", "pensioners.head()" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
gml_idnatcodenamefinnameswelandareafreshwareaseawareatotalareageometryalueelakelaisten_osuus
01601100430691ReisjärviReisjärvi474.6028.740.00503.34MULTIPOLYGON (((418701.443 7055306.898, 418485...Reisjärvi32.0
11601100624853TurkuÅbo245.663.4757.22306.35POLYGON ((249073.975 6725828.546, 248775.530 6...Turku24.2
21601100110318KökarKökar63.570.432101.022165.02POLYGON ((172798.744 6674623.732, 173415.386 6...Kökar36.4
31601100668859TyrnäväTyrnävä491.823.040.00494.86POLYGON ((440372.786 7197460.702, 440107.431 7...Tyrnävä16.2
41601100521747SiikainenSiikainen463.2928.020.00491.31POLYGON ((236801.933 6882124.138, 236897.467 6...Siikainen41.9
\n", "
" ], "text/plain": [ " gml_id natcode namefin nameswe landarea freshwarea seawarea \\\n", "0 1601100430 691 Reisjärvi Reisjärvi 474.60 28.74 0.00 \n", "1 1601100624 853 Turku Åbo 245.66 3.47 57.22 \n", "2 1601100110 318 Kökar Kökar 63.57 0.43 2101.02 \n", "3 1601100668 859 Tyrnävä Tyrnävä 491.82 3.04 0.00 \n", "4 1601100521 747 Siikainen Siikainen 463.29 28.02 0.00 \n", "\n", " totalarea geometry alue \\\n", "0 503.34 MULTIPOLYGON (((418701.443 7055306.898, 418485... Reisjärvi \n", "1 306.35 POLYGON ((249073.975 6725828.546, 248775.530 6... Turku \n", "2 2165.02 POLYGON ((172798.744 6674623.732, 173415.386 6... Kökar \n", "3 494.86 POLYGON ((440372.786 7197460.702, 440107.431 7... Tyrnävä \n", "4 491.31 POLYGON ((236801.933 6882124.138, 236897.467 6... Siikainen \n", "\n", " elakelaisten_osuus \n", "0 32.0 \n", "1 24.2 \n", "2 36.4 \n", "3 16.2 \n", "4 41.9 " ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Vi kombinerar tabellerna baserat på kolumnerna med kommunnamn.\n", "data = cities.merge(pensioners, left_on='namefin', right_on='alue')\n", "\n", "# Vi kontrollerar resultatet\n", "data.head()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Rita en karta med hjälp av Bokeh" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Vi lyckades läsa in informationen! Nu ska vi få informationen att synas med hjälp av [Bokeh](https://bokeh.org/)-paketet. För att få fram bilden behöver vi följande funktioner:\n", "\n", "- [`figure()`](https://docs.bokeh.org/en/latest/docs/reference/plotting.html#bokeh.plotting.figure): Grundar bilden. Här kan man lägga till en titel för kartan med title-parametern.\n", "- [`GeoJSONDataSource`](https://docs.bokeh.org/en/latest/docs/reference/models/sources.html#bokeh.models.sources.GeoJSONDataSource): Ändrar vår data till GeoJSONDataSource-format, så att den fungerar bättre med Bokeh.\n", "- [`LinearColorMapper`](https://docs.bokeh.org/en/latest/docs/reference/models/mappers.html#bokeh.models.mappers.LinearColorMapper): Lägger till färg på kartan.\n", "- [`Greens`](https://docs.bokeh.org/en/latest/docs/reference/palettes.html#brewer-palettes): Områdena markeras med toner av grönt.\n", "- [`output_notebook()`](https://docs.bokeh.org/en/latest/docs/reference/io.html#bokeh.io.output.output_notebook): Med detta kommando syns kartan under kodcellen (förutsatt att vi också använder show-kommandot). Annars skulle kartan öppnas i en annan flik.\n", "- [`show()`](https://docs.bokeh.org/en/latest/docs/reference/io.html#bokeh.io.show): Detta kommando gör att bilden visas." ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", "
\n", " \n", " Loading BokehJS ...\n", "
" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "\n", "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " var force = true;\n", "\n", " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", " root._bokeh_onload_callbacks = [];\n", " root._bokeh_is_loading = undefined;\n", " }\n", "\n", " var JS_MIME_TYPE = 'application/javascript';\n", " var HTML_MIME_TYPE = 'text/html';\n", " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", " var CLASS_NAME = 'output_bokeh rendered_html';\n", "\n", " /**\n", " * Render data to the DOM node\n", " */\n", " function render(props, node) {\n", " var script = document.createElement(\"script\");\n", " node.appendChild(script);\n", " }\n", "\n", " /**\n", " * Handle when an output is cleared or removed\n", " */\n", " function handleClearOutput(event, handle) {\n", " var cell = handle.cell;\n", "\n", " var id = cell.output_area._bokeh_element_id;\n", " var server_id = cell.output_area._bokeh_server_id;\n", " // Clean up Bokeh references\n", " if (id != null && id in Bokeh.index) {\n", " Bokeh.index[id].model.document.clear();\n", " delete Bokeh.index[id];\n", " }\n", "\n", " if (server_id !== undefined) {\n", " // Clean up Bokeh references\n", " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", " cell.notebook.kernel.execute(cmd, {\n", " iopub: {\n", " output: function(msg) {\n", " var id = msg.content.text.trim();\n", " if (id in Bokeh.index) {\n", " Bokeh.index[id].model.document.clear();\n", " delete Bokeh.index[id];\n", " }\n", " }\n", " }\n", " });\n", " // Destroy server and session\n", " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", " cell.notebook.kernel.execute(cmd);\n", " }\n", " }\n", "\n", " /**\n", " * Handle when a new output is added\n", " */\n", " function handleAddOutput(event, handle) {\n", " var output_area = handle.output_area;\n", " var output = handle.output;\n", "\n", " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", " return\n", " }\n", "\n", " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", "\n", " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", " // store reference to embed id on output_area\n", " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " }\n", " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " var bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " var script_attrs = bk_div.children[0].attributes;\n", " for (var i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", " }\n", "\n", " function register_renderer(events, OutputArea) {\n", "\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " var toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[toinsert.length - 1]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " /* Handle when an output is cleared or removed */\n", " events.on('clear_output.CodeCell', handleClearOutput);\n", " events.on('delete.Cell', handleClearOutput);\n", "\n", " /* Handle when a new output is added */\n", " events.on('output_added.OutputArea', handleAddOutput);\n", "\n", " /**\n", " * Register the mime type and append_mime function with output_area\n", " */\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " /* Is output safe? */\n", " safe: true,\n", " /* Index of renderer in `output_area.display_order` */\n", " index: 0\n", " });\n", " }\n", "\n", " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", " if (root.Jupyter !== undefined) {\n", " var events = require('base/js/events');\n", " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", "\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " }\n", "\n", " \n", " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " var NB_LOAD_WARNING = {'data': {'text/html':\n", " \"
\\n\"+\n", " \"

\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"

\\n\"+\n", " \"\\n\"+\n", " \"\\n\"+\n", " \"from bokeh.resources import INLINE\\n\"+\n", " \"output_notebook(resources=INLINE)\\n\"+\n", " \"\\n\"+\n", " \"
\"}};\n", "\n", " function display_loaded() {\n", " var el = document.getElementById(\"1463\");\n", " if (el != null) {\n", " el.textContent = \"BokehJS is loading...\";\n", " }\n", " if (root.Bokeh !== undefined) {\n", " if (el != null) {\n", " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(display_loaded, 100)\n", " }\n", " }\n", "\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", " if (root._bokeh_is_loading > 0) {\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " }\n", " if (js_urls == null || js_urls.length === 0) {\n", " run_callbacks();\n", " return null;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", "\n", " function on_error(url) {\n", " console.error(\"failed to load \" + url);\n", " }\n", "\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " }\n", "\n", " const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js\": \"dM3QQsP+wXdHg42wTqW85BjZQdLNNIXqlPw/BgKoExPmTG7ZLML4EGqLMfqHT6ON\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.3.min.js\": \"8x57I4YuIfu8XyZfFo0XVr2WAT8EK4rh/uDe3wF7YuW2FNUSNEpJbsPaB1nJ2fz2\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js\": \"3QTqdz9LyAm2i0sG5XTePsHec3UHWwVsrOL68SYRoAXsafvfAyqtQ+h440+qIBhS\"};\n", "\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.async = false;\n", " element.src = url;\n", " if (url in hashes) {\n", " element.crossOrigin = \"anonymous\";\n", " element.integrity = \"sha384-\" + hashes[url];\n", " }\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " \n", " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.3.min.js\"];\n", " var css_urls = [];\n", " \n", "\n", " var inline_js = [\n", " function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", " function(Bokeh) {\n", " \n", " \n", " }\n", " ];\n", "\n", " function run_inline_js() {\n", " \n", " if (root.Bokeh !== undefined || force === true) {\n", " \n", " for (var i = 0; i < inline_js.length; i++) {\n", " inline_js[i].call(root, root.Bokeh);\n", " }\n", " if (force === true) {\n", " display_loaded();\n", " }} else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " } else if (force !== true) {\n", " var cell = $(document.getElementById(\"1463\")).parents('.cell').data().cell;\n", " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", " }\n", "\n", " }\n", "\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", " run_inline_js();\n", " } else {\n", " load_libs(css_urls, js_urls, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", "}(window));" ], "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"1463\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js\": \"dM3QQsP+wXdHg42wTqW85BjZQdLNNIXqlPw/BgKoExPmTG7ZLML4EGqLMfqHT6ON\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.3.min.js\": \"8x57I4YuIfu8XyZfFo0XVr2WAT8EK4rh/uDe3wF7YuW2FNUSNEpJbsPaB1nJ2fz2\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js\": \"3QTqdz9LyAm2i0sG5XTePsHec3UHWwVsrOL68SYRoAXsafvfAyqtQ+h440+qIBhS\"};\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n if (url in hashes) {\n element.crossOrigin = \"anonymous\";\n element.integrity = \"sha384-\" + hashes[url];\n }\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n \n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.3.min.js\"];\n var css_urls = [];\n \n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n function(Bokeh) {\n \n \n }\n ];\n\n function run_inline_js() {\n \n if (root.Bokeh !== undefined || force === true) {\n \n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"1463\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " \n", " var docs_json = {\"615f3746-0034-4292-8c5c-6064141ba5fc\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1434\"}],\"center\":[{\"id\":\"1437\"},{\"id\":\"1441\"}],\"left\":[{\"id\":\"1438\"}],\"renderers\":[{\"id\":\"1461\"}],\"title\":{\"id\":\"1424\"},\"toolbar\":{\"id\":\"1449\"},\"x_range\":{\"id\":\"1426\"},\"x_scale\":{\"id\":\"1430\"},\"y_range\":{\"id\":\"1428\"},\"y_scale\":{\"id\":\"1432\"}},\"id\":\"1423\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1448\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"geojson\":\"{\\\"type\\\": \\\"FeatureCollection\\\", \\\"features\\\": [{\\\"id\\\": \\\"0\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Reisj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 32.0, \\\"freshwarea\\\": 28.74, \\\"gml_id\\\": 1601100430, \\\"landarea\\\": 474.6, \\\"namefin\\\": \\\"Reisj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Reisj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"691\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 503.34}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[418701.443, 7055306.898], [418485.792, 7054001.707], [417581.224, 7053873.772], [417362.019, 7055296.974], [418235.255, 7056066.626], [418701.443, 7055306.898]]], [[[389116.555, 7071632.1], [389374.26, 7070643.179], [389688.93, 7070238.472], [389610.528, 7069940.564], [389372.326, 7069854.524], [389091.691, 7069936.651], [388812.242, 7071310.981], [388079.034, 7071246.667], [387655.765, 7072185.048], [387873.911, 7072207.187], [388212.335, 7071840.756], [388838.687, 7071634.967], [388643.78, 7072242.091], [388625.724, 7072707.16], [388749.673, 7072774.295], [389116.555, 7071632.1]]], [[[406550.481, 7071631.232], [406277.927, 7070869.142], [406372.229, 7070198.322], [405959.33, 7069904.897], [406267.167, 7069478.074], [406036.303, 7069089.489], [406557.795, 7068613.364], [406698.212, 7068232.278], [406892.445, 7067970.528], [406872.32, 7067754.169], [406546.368, 7067664.027], [406497.714, 7067265.547], [407052.113, 7067331.05], [407254.409, 7066688.361], [407503.513, 7066435.975], [407993.512, 7066422.911], [408252.135, 7066087.42], [408555.479, 7066273.134], [408589.61, 7066563.033], [408476.117, 7067165.432], [409017.747, 7067196.34], [409041.152, 7066948.29], [409355.501, 7067277.841], [409199.816, 7067708.582], [409536.879, 7067739.631], [409656.252, 7067595.437], [409642.429, 7067107.224], [408877.152, 7066247.035], [408742.1, 7065701.829], [409367.791, 7065462.568], [410047.51, 7064925.544], [409137.936, 7064653.964], [408911.117, 7064491.545], [409263.006, 7064375.245], [410652.149, 7063553.71], [410797.436, 7063215.181], [410332.849, 7062647.402], [410546.542, 7062374.1], [410484.467, 7061759.534], [410881.037, 7061777.96], [411340.281, 7060620.229], [411307.598, 7060145.806], [411571.319, 7060348.785], [412036.997, 7060394.735], [412261.232, 7059937.798], [411617.589, 7059751.508], [411730.979, 7059315.922], [412510.55, 7059106.793], [412626.643, 7058893.788], [412087.739, 7058445.592], [412733.309, 7057537.184], [413205.377, 7057847.259], [413627.8, 7057246.097], [413101.212, 7057274.888], [413151.118, 7056735.373], [412321.577, 7055698.715], [412982.72, 7054781.153], [407657.217, 7050922.609], [406076.256, 7042943.258], [404408.486, 7039073.207], [402107.619, 7038128.976], [396223.967, 7045813.228], [391823.151, 7052793.048], [388640.584, 7055639.208], [382074.78, 7060027.664], [382095.705, 7060308.614], [382441.533, 7060047.087], [382516.652, 7060212.749], [384316.07, 7062468.734], [383242.41, 7063430.535], [382528.059, 7064157.977], [382598.281, 7064210.307], [383899.512, 7063387.13], [384488.109, 7062662.534], [385214.342, 7063404.681], [384495.951, 7063814.001], [384512.039, 7064353.708], [384044.296, 7064559.518], [383416.175, 7065152.83], [382644.532, 7066065.687], [382461.436, 7066771.926], [382700.634, 7066947.351], [382835.103, 7066292.478], [383114.849, 7066095.15], [383826.376, 7065142.315], [384012.991, 7064847.849], [384479.572, 7064840.283], [384888.834, 7064229.273], [384967.969, 7063800.25], [385366.498, 7063566.582], [388181.098, 7066578.281], [388144.807, 7066976.413], [388902.338, 7066713.881], [389161.497, 7066283.394], [395724.234, 7062689.163], [397258.568, 7061945.667], [397676.71, 7063185.945], [397107.482, 7063224.888], [396743.194, 7063587.272], [397124.355, 7063757.215], [397421.014, 7064018.072], [396925.723, 7064253.882], [396828.944, 7064995.382], [396318.042, 7064771.779], [395785.178, 7065035.54], [395107.458, 7065699.103], [395203.356, 7065827.809], [395667.932, 7065647.804], [395939.935, 7065333.838], [396302.796, 7065765.531], [396468.89, 7065168.543], [397023.242, 7065544.031], [397467.158, 7065285.512], [397123.47, 7065056.144], [397784.538, 7064248.101], [397628.898, 7063521.442], [397897.74, 7063511.032], [399151.964, 7071604.938], [399710.4, 7071681.336], [401564.872, 7070691.202], [402135.964, 7069761.974], [402925.18, 7071093.19], [403774.699, 7070415.486], [403539.708, 7070152.711], [405349.819, 7068795.945], [405808.43, 7069404.76], [405366.243, 7069689.757], [406026.243, 7070483.217], [405677.328, 7070842.391], [406387.545, 7071758.781], [406550.481, 7071631.232]], [[404713.93, 7067951.36], [404899.143, 7068199.265], [405577.833, 7067691.095], [404636.193, 7066662.826], [404260.3, 7067202.146], [404531.902, 7067424.486], [404269.734, 7067678.253], [404004.276, 7067569.56], [403827.46, 7067826.28], [404019.677, 7068074.543], [403768.422, 7068345.63], [403962.631, 7068579.026], [404713.93, 7067951.36]]]]}}, {\\\"id\\\": \\\"1\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Turku\\\", \\\"elakelaisten_osuus\\\": 24.2, \\\"freshwarea\\\": 3.47, \\\"gml_id\\\": 1601100624, \\\"landarea\\\": 245.66, \\\"namefin\\\": \\\"Turku\\\", \\\"nameswe\\\": \\\"\\\\u00c5bo\\\", \\\"natcode\\\": \\\"853\\\", \\\"seawarea\\\": 57.22, \\\"totalarea\\\": 306.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[249073.975, 6725828.546], [248775.53, 6725491.379], [248460.65, 6725741.379], [246830.533, 6722844.979], [246300.199, 6721309.72], [246294.932, 6721075.124], [246228.54, 6719343.719], [246667.202, 6718822.446], [245701.558, 6716884.842], [244825.727, 6715370.219], [245363.859, 6714707.18], [245832.073, 6714528.813], [245370.121, 6713650.59], [245058.936, 6713448.535], [244279.15, 6714124.228], [243438.857, 6712982.504], [243762.982, 6712390.701], [244095.139, 6712519.864], [244460.089, 6711826.499], [245266.866, 6709451.216], [244869.462, 6709369.222], [245139.861, 6708768.784], [244865.892, 6708294.322], [243575.088, 6707737.168], [242897.594, 6707103.652], [241776.984, 6706438.115], [241030.459, 6706214.132], [240582.211, 6706184.043], [239767.447, 6705590.767], [240036.254, 6705106.084], [240200.39, 6704259.06], [240051.274, 6703759.665], [240373.16, 6703192.745], [241197.924, 6703081.102], [241384.58, 6701972.949], [241174.872, 6701432.765], [241481.885, 6700941.815], [241681.605, 6700245.15], [241259.876, 6699404.627], [240956.864, 6699162.204], [240008.098, 6699378.475], [239241.198, 6698998.88], [238235.56, 6699101.525], [237727.773, 6698846.377], [237284.214, 6698507.348], [236900.355, 6698434.226], [236347.31, 6698852.852], [235792.214, 6698209.134], [234899.196, 6698220.645], [234204.039, 6698501.413], [233449.271, 6699015.245], [232909.428, 6698932.925], [231638.026, 6699229.97], [231163.917, 6699468.75], [230061.904, 6699111.899], [228597.413, 6699757.856], [228193.083, 6699615.667], [228253.615, 6700171.949], [229188.53, 6701412.634], [228691.925, 6701676.26], [228333.285, 6701715.552], [228284.797, 6701799.795], [228011.532, 6702274.564], [228155.912, 6702439.352], [228185.398, 6702828.43], [228348.717, 6703323.663], [228858.24, 6703886.203], [229590.134, 6705435.827], [229470.172, 6708168.048], [229216.712, 6708422.847], [229072.472, 6709282.223], [229303.005, 6709852.733], [229751.474, 6710366.715], [230780.77, 6710476.329], [230992.164, 6711298.417], [231097.55, 6712047.676], [231342.832, 6711884.384], [231867.009, 6712835.119], [232691.064, 6713037.804], [233676.802, 6712936.049], [233881.452, 6712612.212], [234312.124, 6712653.628], [235620.049, 6712433.718], [235719.426, 6712962.695], [236077.69, 6713302.323], [236433.342, 6714042.766], [236744.25, 6713917.739], [236800.025, 6714774.117], [237925.619, 6715645.233], [237999.991, 6715302.327], [239212.053, 6716883.621], [239031.602, 6717088.129], [238650.348, 6717524.717], [238408.189, 6717771.664], [238887.308, 6718239.33], [237832.263, 6719201.024], [238266.697, 6719326.242], [239225.506, 6718845.252], [239613.159, 6718301.412], [239844.47, 6718435.527], [239720.651, 6718819.753], [239865.075, 6718991.8], [240176.902, 6718406.035], [240966.093, 6719689.578], [241438.801, 6720231.044], [241582.428, 6720831.328], [242019.815, 6721658.12], [242636.725, 6724182.534], [244013.124, 6726471.69], [246270.765, 6728419.956], [246938.099, 6729125.065], [247806.495, 6730482.339], [248030.263, 6731020.237], [247772.946, 6731373.64], [248104.726, 6731563.523], [250110.717, 6742255.941], [251719.145, 6736864.75], [251757.892, 6734926.868], [251652.34, 6734393.748], [251589.987, 6732957.986], [251038.068, 6731421.609], [250828.344, 6730648.815], [251061.931, 6730032.491], [250772.145, 6729961.492], [249886.998, 6727200.66], [248898.263, 6726195.203], [249073.975, 6725828.546]]]}}, {\\\"id\\\": \\\"2\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"K\\\\u00f6kar\\\", \\\"elakelaisten_osuus\\\": 36.4, \\\"freshwarea\\\": 0.43, \\\"gml_id\\\": 1601100110, \\\"landarea\\\": 63.5700000000002, \\\"namefin\\\": \\\"K\\\\u00f6kar\\\", \\\"nameswe\\\": \\\"K\\\\u00f6kar\\\", \\\"natcode\\\": \\\"318\\\", \\\"seawarea\\\": 2101.02, \\\"totalarea\\\": 2165.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[172798.744, 6674623.732], [173415.386, 6671793.648], [173445.193, 6670509.506], [173499.649, 6664445.477], [174684.898, 6660201.744], [177862.179, 6658560.503], [183780.112, 6652180.833], [181097.209, 6646222.985], [177959.57, 6638840.211], [170739.665, 6610069.233], [147435.516, 6615916.902], [125351.327, 6609670.918], [125144.229, 6609616.618], [124724.496, 6609532.048], [124299.565, 6609480.065], [123871.836, 6609460.869], [123443.907, 6609474.66], [123230.692, 6609493.851], [123018.378, 6609521.238], [122597.547, 6609600.502], [122389.83, 6609652.18], [121980.995, 6609779.325], [121780.577, 6609854.594], [121389.035, 6610028.021], [121198.612, 6610125.88], [120829.763, 6610343.289], [120651.835, 6610462.44], [120310.475, 6610720.833], [119990.006, 6611004.717], [119817.787, 6611176.886], [140847.33, 6640542.36], [149751.188, 6651665.109], [151992.085, 6657754.958], [152284.008, 6666717.923], [154848.253, 6672553.746], [155895.65, 6673202.687], [157041.536, 6672621.379], [159977.1, 6672068.394], [170185.666, 6677823.73], [172798.744, 6674623.732]]]}}, {\\\"id\\\": \\\"3\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tyrn\\\\u00e4v\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 16.2, \\\"freshwarea\\\": 3.04, \\\"gml_id\\\": 1601100668, \\\"landarea\\\": 491.82, \\\"namefin\\\": \\\"Tyrn\\\\u00e4v\\\\u00e4\\\", \\\"nameswe\\\": \\\"Tyrn\\\\u00e4v\\\\u00e4\\\", \\\"natcode\\\": \\\"859\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 494.86}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[440372.786, 7197460.702], [440107.431, 7197265.781], [440361.296, 7196882.91], [439980.948, 7196840.426], [440331.054, 7196554.657], [440834.202, 7196667.966], [441281.21, 7195919.457], [441112.556, 7195487.279], [441416.879, 7194904.382], [441619.044, 7195182.552], [442335.54, 7194094.239], [442144.708, 7193834.808], [442667.33, 7193524.14], [447198.763, 7185761.643], [446637.653, 7185607.771], [445383.118, 7186907.282], [445620.562, 7187234.492], [445386.793, 7187555.681], [444519.351, 7187367.943], [444123.769, 7187429.344], [443546.24, 7187308.11], [443421.94, 7187634.156], [443174.505, 7187233.633], [443334.793, 7186854.713], [444150.067, 7187150.846], [444714.513, 7187014.911], [446877.828, 7184877.676], [447081.722, 7185157.294], [447485.415, 7185259.291], [452067.264, 7177393.754], [450828.917, 7176675.778], [452394.372, 7173984.081], [450146.725, 7171080.342], [449103.854, 7169736.852], [458252.749, 7162548.499], [457121.429, 7161098.095], [457450.166, 7160845.3], [456863.654, 7160163.334], [455773.633, 7161005.771], [455206.871, 7160054.659], [453603.28, 7160912.731], [452316.221, 7162050.94], [451409.886, 7160874.61], [450275.357, 7161750.766], [451542.341, 7163383.652], [451142.808, 7163402.81], [451020.677, 7163787.127], [450722.405, 7163834.569], [450521.727, 7164167.831], [450267.14, 7164075.088], [449478.493, 7164312.677], [448890.707, 7163530.105], [447838.076, 7164348.928], [448398.158, 7164833.748], [448136.343, 7165057.832], [448156.385, 7165496.382], [447919.367, 7165637.492], [447547.258, 7166044.129], [447171.306, 7165484.684], [446868.66, 7165907.493], [447031.142, 7166242.482], [447049.248, 7166719.752], [446547.932, 7167037.149], [445962.01, 7167303.434], [445542.703, 7167654.54], [445052.843, 7167787.09], [444613.197, 7168101.23], [444197.027, 7168314.142], [443969.656, 7168582.061], [443573.702, 7168563.908], [442329.908, 7170193.697], [442181.564, 7170062.761], [441563.211, 7170643.739], [441555.621, 7170949.927], [441225.755, 7171163.734], [440595.916, 7171403.574], [436269.05, 7167581.282], [436873.929, 7167791.167], [437630.676, 7167544.06], [437901.767, 7167982.905], [438220.936, 7167773.293], [438064.587, 7167619.884], [439700.775, 7166978.622], [439537.43, 7166560.395], [439080.588, 7166176.445], [439644.237, 7165579.812], [439222.223, 7165081.026], [439584.708, 7165036.503], [439956.656, 7165361.136], [440147.368, 7165121.044], [439773.794, 7164786.113], [439925.378, 7164519.999], [439586.076, 7164214.208], [439712.478, 7163725.631], [440207.444, 7163411.28], [439917.232, 7163145.538], [438980.185, 7162550.155], [438513.233, 7162911.109], [439061.554, 7163403.513], [438744.48, 7163861.375], [439040.874, 7164128.172], [438916.04, 7164552.066], [438603.063, 7164943.195], [438202.78, 7164781.744], [437764.111, 7165106.64], [437555.316, 7165681.538], [437673.413, 7165970.499], [437245.761, 7165782.021], [436842.049, 7166127.356], [436030.445, 7166381.362], [435916.408, 7166622.307], [435437.433, 7167062.535], [434924.626, 7167371.682], [434859.525, 7167515.856], [434968.701, 7167616.204], [434076.495, 7167775.031], [434247.645, 7167399.967], [434119.506, 7166766.209], [433735.846, 7166207.043], [433467.853, 7166790.336], [433657.77, 7167350.849], [433486.117, 7167882.68], [432659.211, 7168021.288], [432516.172, 7167653.266], [432153.802, 7167575.178], [431908.873, 7168161.204], [430334.388, 7174202.806], [428546.164, 7176629.556], [429412.836, 7177358.785], [429822.748, 7179205.98], [429420.136, 7179042.382], [429316.921, 7179437.34], [429643.466, 7179507.324], [429704.379, 7180197.482], [430279.332, 7180088.187], [430271.555, 7179388.337], [431339.337, 7179312.941], [432018.778, 7179067.88], [432263.129, 7178872.138], [432548.317, 7178970.313], [432660.387, 7178541.389], [433690.692, 7178700.047], [433477.701, 7179314.342], [433632.368, 7180511.624], [432017.139, 7185676.308], [431800.396, 7185111.024], [431352.319, 7185458.657], [431452.45, 7185794.665], [431937.705, 7185944.349], [431830.334, 7186519.7], [431494.889, 7187130.44], [430979.087, 7186715.076], [429498.851, 7187876.267], [429659.98, 7188246.185], [430081.27, 7187732.078], [430318.471, 7188798.123], [430295.178, 7189344.059], [431744.024, 7188971.85], [431853.529, 7189396.728], [430870.37, 7189577.897], [431391.035, 7190803.573], [431577.269, 7190768.915], [431760.105, 7191284.834], [430790.805, 7191988.669], [431165.599, 7192479.234], [431325.486, 7192284.297], [431494.369, 7192393.78], [432658.919, 7191727.399], [432727.568, 7192047.491], [433847.015, 7191627.856], [433960.389, 7192115.759], [434669.573, 7191858.349], [435115.25, 7191830.112], [435235.839, 7191654.739], [435656.934, 7191684.974], [436231.204, 7192063.566], [436196.13, 7192290.351], [439204.069, 7197562.745], [439819.994, 7198411.25], [440372.786, 7197460.702]]]}}, {\\\"id\\\": \\\"4\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siikainen\\\", \\\"elakelaisten_osuus\\\": 41.9, \\\"freshwarea\\\": 28.02, \\\"gml_id\\\": 1601100521, \\\"landarea\\\": 463.29, \\\"namefin\\\": \\\"Siikainen\\\", \\\"nameswe\\\": \\\"Siikainen\\\", \\\"natcode\\\": \\\"747\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 491.31}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[236801.933, 6882124.138], [236897.467, 6879387.39], [237047.308, 6878978.76], [237365.378, 6878989.949], [238242.343, 6876940.779], [242738.497, 6875436.609], [244656.662, 6872188.992], [245098.428, 6871537.786], [246466.189, 6870105.136], [244142.652, 6867718.005], [244652.974, 6867353.269], [242548.493, 6866327.658], [240715.686, 6866123.581], [238454.466, 6862380.77], [241042.32, 6859759.356], [240817.593, 6858942.275], [240044.205, 6858523.641], [239455.984, 6858478.339], [238230.858, 6855951.77], [235043.787, 6858477.361], [231655.348, 6858683.093], [226884.686, 6857279.844], [221808.002, 6857384.242], [219842.221, 6865149.052], [221130.561, 6871412.635], [222758.819, 6871542.319], [224521.152, 6878170.413], [224763.833, 6878131.636], [225346.628, 6887071.612], [236801.933, 6882124.138]]]}}, {\\\"id\\\": \\\"5\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Keitele\\\", \\\"elakelaisten_osuus\\\": 41.8, \\\"freshwarea\\\": 95.39, \\\"gml_id\\\": 1601100401, \\\"landarea\\\": 482.91, \\\"namefin\\\": \\\"Keitele\\\", \\\"nameswe\\\": \\\"Keitele\\\", \\\"natcode\\\": \\\"239\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 578.3}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[465986.445, 7023688.687], [465665.504, 7020106.898], [466336.531, 7019284.364], [467160.883, 7019232.168], [469144.225, 7017346.139], [470408.713, 7015591.471], [470846.145, 7014733.361], [470765.557, 7014193.089], [471163.848, 7013845.147], [471020.996, 7013398.967], [471656.724, 7009249.643], [472982.817, 7005226.325], [472898.302, 7003263.217], [472616.43, 7003071.744], [473529.025, 7001661.141], [474439.419, 6998182.904], [480114.214, 6990337.464], [480904.221, 6987909.067], [476882.933, 6985539.054], [475433.865, 6984772.006], [473815.855, 6986724.259], [467254.785, 6989706.3], [466320.21, 6989673.188], [466088.266, 6990545.334], [464760.626, 6991231.596], [463873.038, 6992141.201], [462095.686, 6993306.522], [461785.333, 6993699.555], [461831.317, 6994161.022], [460684.115, 6995532.969], [460559.19, 6995814.834], [460641.066, 6996155.147], [460458.111, 6996447.503], [460267.908, 6996562.365], [460268.331, 6997007.19], [460024.958, 6997314.793], [460021.93, 6998166.958], [459768.844, 6998480.163], [459286.173, 6999085.392], [459074.029, 6999229.576], [458977.646, 6999987.567], [459242.826, 7000494.399], [457843.939, 7002246.838], [457141.634, 7009276.441], [459013.652, 7009603.22], [458600.908, 7012749.306], [458378.495, 7012885.682], [458397.887, 7013210.974], [456944.478, 7016484.555], [456372.244, 7022676.481], [454305.846, 7025328.552], [453493.984, 7025455.896], [456080.03, 7031129.764], [458926.46, 7034751.371], [460022.611, 7035242.768], [465986.445, 7023688.687]]]}}, {\\\"id\\\": \\\"6\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Masku\\\", \\\"elakelaisten_osuus\\\": 21.3, \\\"freshwarea\\\": 1.17, \\\"gml_id\\\": 1601100156, \\\"landarea\\\": 174.75, \\\"namefin\\\": \\\"Masku\\\", \\\"nameswe\\\": \\\"Masku\\\", \\\"natcode\\\": \\\"481\\\", \\\"seawarea\\\": 28.09, \\\"totalarea\\\": 204.01}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[240730.172, 6733240.591], [240846.328, 6732915.201], [241213.81, 6732550.218], [241278.359, 6732400.636], [240716.944, 6732538.198], [240143.44, 6731614.483], [239688.003, 6731394.397], [239371.667, 6731678.987], [239677.811, 6732531.799], [240325.913, 6733245.318], [240730.172, 6733240.591]]], [[[247230.068, 6738232.614], [244908.882, 6736272.14], [243709.331, 6735398.724], [243397.56, 6736082.221], [244474.933, 6737078.488], [245139.829, 6737034.406], [245539.754, 6737254.385], [245380.87, 6737457.472], [245022.848, 6737335.197], [244902.339, 6737470.818], [248820.721, 6741084.805], [250110.717, 6742255.941], [247230.068, 6738232.614]]], [[[247002.795, 6742308.512], [247491.614, 6741082.34], [247439.622, 6740754.706], [247189.82, 6740193.301], [246904.169, 6741014.688], [246413.692, 6740822.634], [245416.085, 6741988.415], [246797.013, 6742473.879], [247002.795, 6742308.512]]], [[[238261.155, 6730253.268], [238132.365, 6730077.84], [237966.451, 6730200.965], [237739.155, 6729922.582], [238138.388, 6729791.972], [238050.58, 6729129.155], [237680.78, 6729237.52], [237426.886, 6728888.411], [237627.055, 6728742.048], [237983.956, 6728778.245], [238020.747, 6728172.343], [237807.737, 6727878.114], [237803.37, 6727309.803], [237783.639, 6727106.648], [238151.842, 6727052.079], [238006.628, 6726547.95], [237793.53, 6726147.712], [237754.212, 6725583.851], [237288.056, 6724956.928], [236874.82, 6724725.158], [236527.634, 6723919.15], [236088.898, 6724075.872], [235695.126, 6723266.63], [235824.324, 6723135.847], [234532.975, 6721474.227], [234218.548, 6721263.963], [233684.64, 6720534.296], [233641.175, 6720243.662], [232449.699, 6719681.379], [231838.288, 6719410.016], [232047.144, 6718436.723], [231813.44, 6718394.52], [231432.346, 6719221.529], [230299.548, 6718842.165], [229222.228, 6718744.638], [229329.751, 6718497.834], [227942.206, 6718041.726], [226840.298, 6717728.306], [226503.52, 6717984.744], [226425.797, 6717608.291], [226067.459, 6717326.551], [226108.258, 6716514.079], [226425.659, 6716001.766], [225518.294, 6715245.698], [224969.253, 6715404.941], [224600.522, 6716354.963], [224291.95, 6716710.128], [223993.953, 6716848.608], [223220.476, 6716213.93], [222668.953, 6716797.078], [222068.043, 6716812.246], [221784.181, 6717062.411], [221277.387, 6716924.233], [220890.714, 6717250.501], [220643.823, 6718091.578], [220693.96, 6718790.38], [221190.623, 6719246.801], [220809.825, 6720182.538], [220363.283, 6720151.551], [220054.069, 6719934.094], [219852.224, 6719632.751], [219647.97, 6719757.941], [219240.266, 6719420.246], [219086.463, 6719751.116], [218253.119, 6719700.01], [216599.045, 6719761.778], [215429.819, 6719711.561], [214634.917, 6719503.675], [214087.684, 6719498.749], [214230.514, 6720145.005], [214528.441, 6720697.793], [214577.92, 6720831.455], [214640.195, 6720968.01], [214665.476, 6721026.874], [214698.878, 6721104.647], [214797.831, 6721335.05], [214844.586, 6721378.805], [215116.349, 6721633.135], [215155.067, 6721903.175], [215181.584, 6722097.633], [215234.762, 6722487.617], [215302.359, 6722983.309], [215336.795, 6723204.646], [215157.497, 6723775.283], [215266.993, 6724215.947], [215135.324, 6724409.346], [214867.692, 6724763.287], [214543.966, 6725191.59], [214200.438, 6724859.907], [213876.098, 6724546.863], [213838.526, 6725252.75], [216812.833, 6728284.115], [218330.687, 6727542.367], [219031.072, 6727662.931], [219232.917, 6727086.224], [219486.322, 6726942.395], [219774.628, 6727270.398], [219663.096, 6727909.513], [219839.239, 6728367.315], [220172.966, 6727873.096], [220457.886, 6727889.002], [221142.584, 6728143.92], [221887.687, 6728162.348], [222128.468, 6729102.305], [222406.589, 6729193.856], [223261.984, 6730002.466], [223861.228, 6730154.694], [224103.94, 6729981.013], [223736.899, 6729652.412], [223755.39, 6729401.034], [224480.304, 6729790.118], [224809.007, 6730032.395], [225039.142, 6729798.131], [225364.27, 6730101.313], [225590.913, 6729543.134], [226198.756, 6728803.795], [226431.747, 6728845.683], [226500.884, 6726669.14], [226459.284, 6725878.959], [227171.619, 6726251.093], [227588.497, 6726198.708], [227606.72, 6725868.164], [228363.554, 6725983.442], [228409.355, 6725828.025], [227886.956, 6725412.79], [228271.614, 6724502.485], [229025.249, 6724682.14], [228956.852, 6724952.333], [228462.299, 6724789.424], [228450.596, 6725074.604], [229667.022, 6725541.493], [229931.659, 6725391.984], [230076.229, 6726097.314], [230345.644, 6726284.734], [230795.019, 6726292.264], [231060.675, 6726739.522], [231283.038, 6726705.46], [231341.847, 6725943.021], [233005.104, 6726976.1], [233668.459, 6727198.936], [234371.997, 6727352.742], [234802.524, 6727058.424], [234918.401, 6727794.668], [235462.007, 6727855.397], [235415.837, 6728119.909], [236020.921, 6728527.591], [236306.435, 6728774.167], [236788.603, 6729126.526], [237537.962, 6729528.443], [237307.454, 6729862.806], [237906.849, 6730554.857], [238261.155, 6730253.268]]]]}}, {\\\"id\\\": \\\"7\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Liminka\\\", \\\"elakelaisten_osuus\\\": 12.6, \\\"freshwarea\\\": 5.37, \\\"gml_id\\\": 1601100662, \\\"landarea\\\": 637.31, \\\"namefin\\\": \\\"Liminka\\\", \\\"nameswe\\\": \\\"Limingo\\\", \\\"natcode\\\": \\\"425\\\", \\\"seawarea\\\": 9.03, \\\"totalarea\\\": 651.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[426861.943, 7196873.546], [427244.4, 7196946.35], [427551.769, 7196734.489], [427685.054, 7196393.942], [427639.798, 7196168.853], [428168.936, 7195555.679], [428061.891, 7194854.602], [428478.902, 7194468.784], [429085.411, 7194342.518], [430017.755, 7194316.509], [430559.788, 7193536.526], [431116.938, 7193247.659], [431010.451, 7192923.102], [431317.272, 7192754.537], [431494.369, 7192393.78], [431325.486, 7192284.297], [431165.599, 7192479.234], [430790.805, 7191988.669], [431760.105, 7191284.834], [431577.269, 7190768.915], [431391.035, 7190803.573], [430870.37, 7189577.897], [431853.529, 7189396.728], [431744.024, 7188971.85], [430295.178, 7189344.059], [430318.471, 7188798.123], [430081.27, 7187732.078], [429659.98, 7188246.185], [429498.851, 7187876.267], [430979.087, 7186715.076], [431494.889, 7187130.44], [431830.334, 7186519.7], [431937.705, 7185944.349], [431452.45, 7185794.665], [431352.319, 7185458.657], [431800.396, 7185111.024], [432017.139, 7185676.308], [433632.368, 7180511.624], [433477.701, 7179314.342], [433690.692, 7178700.047], [432660.387, 7178541.389], [432548.317, 7178970.313], [432263.129, 7178872.138], [432018.778, 7179067.88], [431339.337, 7179312.941], [430271.555, 7179388.337], [430279.332, 7180088.187], [429704.379, 7180197.482], [429643.466, 7179507.324], [429316.921, 7179437.34], [429420.136, 7179042.382], [429822.748, 7179205.98], [429412.836, 7177358.785], [428546.164, 7176629.556], [430334.388, 7174202.806], [431908.873, 7168161.204], [432153.802, 7167575.178], [432516.172, 7167653.266], [432659.211, 7168021.288], [433486.117, 7167882.68], [433657.77, 7167350.849], [433467.853, 7166790.336], [433735.846, 7166207.043], [434119.506, 7166766.209], [434247.645, 7167399.967], [434076.495, 7167775.031], [434968.701, 7167616.204], [434859.525, 7167515.856], [434924.626, 7167371.682], [435437.433, 7167062.535], [435916.408, 7166622.307], [436030.445, 7166381.362], [436842.049, 7166127.356], [437245.761, 7165782.021], [437673.413, 7165970.499], [437555.316, 7165681.538], [437764.111, 7165106.64], [438202.78, 7164781.744], [438603.063, 7164943.195], [438916.04, 7164552.066], [439040.874, 7164128.172], [438744.48, 7163861.375], [439061.554, 7163403.513], [438513.233, 7162911.109], [438980.185, 7162550.155], [439917.232, 7163145.538], [440207.444, 7163411.28], [439712.478, 7163725.631], [439586.076, 7164214.208], [439925.378, 7164519.999], [439773.794, 7164786.113], [440147.368, 7165121.044], [439956.656, 7165361.136], [439584.708, 7165036.503], [439222.223, 7165081.026], [439644.237, 7165579.812], [439080.588, 7166176.445], [439537.43, 7166560.395], [439700.775, 7166978.622], [438064.587, 7167619.884], [438220.936, 7167773.293], [437901.767, 7167982.905], [437630.676, 7167544.06], [436873.929, 7167791.167], [436269.05, 7167581.282], [440595.916, 7171403.574], [441225.755, 7171163.734], [441555.621, 7170949.927], [441563.211, 7170643.739], [442181.564, 7170062.761], [442329.908, 7170193.697], [443573.702, 7168563.908], [443969.656, 7168582.061], [444197.027, 7168314.142], [444613.197, 7168101.23], [445052.843, 7167787.09], [445542.703, 7167654.54], [445962.01, 7167303.434], [446547.932, 7167037.149], [447049.248, 7166719.752], [447031.142, 7166242.482], [446868.66, 7165907.493], [447171.306, 7165484.684], [447547.258, 7166044.129], [447919.367, 7165637.492], [448156.385, 7165496.382], [448136.343, 7165057.832], [448398.158, 7164833.748], [447838.076, 7164348.928], [448890.707, 7163530.105], [449478.493, 7164312.677], [450267.14, 7164075.088], [450521.727, 7164167.831], [450722.405, 7163834.569], [451020.677, 7163787.127], [451142.808, 7163402.81], [451542.341, 7163383.652], [450275.357, 7161750.766], [451409.886, 7160874.61], [452316.221, 7162050.94], [453603.28, 7160912.731], [455206.871, 7160054.659], [455773.633, 7161005.771], [456863.654, 7160163.334], [457450.166, 7160845.3], [457121.429, 7161098.095], [458252.749, 7162548.499], [449103.854, 7169736.852], [450146.725, 7171080.342], [460177.576, 7163264.791], [461347.983, 7161266.402], [461084.665, 7160696.266], [460370.263, 7161159.321], [459948.927, 7160687.425], [461205.699, 7160030.506], [461432.029, 7160084.914], [461191.867, 7160556.81], [461705.066, 7160648.768], [465653.13, 7153899.931], [465921.867, 7150589.585], [464549.54, 7149280.512], [462321.252, 7148806.18], [448539.905, 7159514.905], [445466.2, 7155537.221], [444551.397, 7156468.143], [443722.135, 7157287.389], [442833.377, 7158835.212], [442180.607, 7158739.112], [441531.592, 7159066.216], [441366.398, 7158767.705], [441155.496, 7159062.516], [440713.661, 7158644.107], [441525.511, 7158017.46], [439513.348, 7155303.517], [438848.783, 7156006.923], [437715.304, 7158066.377], [437444.732, 7158312.799], [437619.716, 7158849.768], [437351.51, 7159064.997], [437187.63, 7159422.794], [436872.249, 7159608.408], [433830.793, 7165105.402], [431897.75, 7166463.678], [429259.375, 7167927.441], [420381.774, 7172517.5], [419805.875, 7173300.101], [418789.999, 7174092.083], [419021.416, 7174277.218], [419752.112, 7173788.375], [419973.536, 7174052.416], [418391.302, 7174868.258], [418872.652, 7175376.409], [418294.864, 7175778.667], [417846.452, 7174999.858], [417599.491, 7175103.672], [417960.861, 7175970.273], [418030.937, 7176323.531], [417716.272, 7176605.045], [417471.512, 7176530.737], [417593.225, 7176247.576], [417372.041, 7175591.868], [416967.364, 7175958.76], [416929.572, 7176750.551], [416674.091, 7176231.788], [413260.624, 7179728.339], [412772.128, 7180091.469], [418219.879, 7188914.111], [420782.008, 7196394.278], [423581.433, 7195557.463], [424311.252, 7196521.252], [426230.992, 7196134.158], [426386.798, 7197366.2], [426861.943, 7196873.546]]]}}, {\\\"id\\\": \\\"8\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Savonlinna\\\", \\\"elakelaisten_osuus\\\": 36.2, \\\"freshwarea\\\": 1359.6, \\\"gml_id\\\": 1601100511, \\\"landarea\\\": 2238.09, \\\"namefin\\\": \\\"Savonlinna\\\", \\\"nameswe\\\": \\\"Nyslott\\\", \\\"natcode\\\": \\\"740\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3597.69}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[617168.754, 6921653.408], [618711.242, 6919371.21], [619516.589, 6913557.644], [622960.253, 6907154.988], [624342.554, 6904369.474], [626271.814, 6902900.183], [625230.644, 6898987.177], [626445.571, 6894193.259], [628425.304, 6886302.137], [628458.24, 6885658.01], [628963.409, 6885115.301], [629753.474, 6882978.749], [630085.335, 6882507.293], [630409.129, 6882220.079], [631243.588, 6880984.983], [631481.922, 6881156.918], [633105.098, 6880639.799], [633881.244, 6880519.399], [634579.396, 6880205.069], [634288.533, 6879602.465], [635835.704, 6878362.882], [636908.78, 6876762.035], [639420.601, 6874464.818], [637292.456, 6869786.78], [637321.821, 6867290.204], [638146.805, 6866699.62], [638232.128, 6866159.579], [641850.718, 6862018.777], [640241.788, 6860913.261], [641527.646, 6859027.668], [641733.531, 6858267.698], [641672.678, 6857092.908], [641081.744, 6853884.046], [639246.316, 6850340.19], [638020.68, 6849771.589], [635785.532, 6847461.808], [635242.406, 6845880.073], [634839.303, 6842296.256], [634302.975, 6841586.113], [632517.477, 6840604.555], [630140.5, 6839765.866], [627331.158, 6837973.341], [621766.329, 6831432.381], [621776.811, 6831346.093], [621425.457, 6830874.223], [620548.754, 6828224.691], [620151.114, 6827002.29], [617951.047, 6827182.424], [610697.076, 6824648.54], [608945.766, 6823948.263], [607543.852, 6824001.872], [606818.159, 6824234.436], [604875.308, 6824099.292], [603980.674, 6824572.057], [603189.434, 6824870.647], [602617.762, 6825021.538], [601794.581, 6825409.88], [601124.9, 6825607.088], [600677.44, 6825974.952], [600207.502, 6826183.205], [598821.074, 6827254.708], [598384.79, 6827171.081], [597404.378, 6827658.561], [597192.748, 6828461.972], [597619.8, 6828645.344], [597940.423, 6829208.426], [598533.421, 6829144.652], [599307.567, 6829455.968], [599241.086, 6829990.462], [598745.625, 6830730.874], [599227.439, 6831146.244], [598618.328, 6831627.659], [597505.819, 6831469.189], [595617.233, 6831851.773], [595744.224, 6832068.957], [595452.44, 6832789.965], [595048.802, 6833545.281], [594777.368, 6833733.909], [594443.507, 6833696.3], [594302.583, 6834050.464], [593760.326, 6833995.264], [593234.68, 6834183.751], [592269.497, 6833254.819], [591888.926, 6833882.028], [591330.327, 6834387.747], [590992.797, 6835136.22], [590690.235, 6834915.923], [588371.796, 6834849.04], [587907.779, 6835183.09], [585808.047, 6835501.285], [586226.732, 6836547.557], [585505.73, 6837137.831], [585243.391, 6837605.558], [585848.52, 6838514.172], [585683.497, 6838833.284], [585672.466, 6840005.076], [586014.405, 6840074.388], [586606.364, 6840652.376], [586864.438, 6841335.645], [585601.548, 6841869.583], [584710.723, 6841188.944], [584199.803, 6841838.929], [584460.462, 6842858.541], [584161.911, 6843449.375], [582394.833, 6845036.051], [582066.02, 6846002.735], [583612.384, 6847307.347], [584629.018, 6847549.209], [584268.17, 6849070.799], [584348.251, 6850064.972], [583556.609, 6852186.287], [584009.397, 6853432.433], [582749.534, 6854104.132], [582587.374, 6854590.476], [582053.076, 6855096.052], [581915.595, 6855542.005], [581561.015, 6855432.359], [581500.695, 6855171.999], [580462.632, 6855405.232], [580353.34, 6855718.407], [579392.448, 6856223.265], [579123.274, 6857126.366], [578792.378, 6856946.138], [578542.674, 6857368.964], [578607.844, 6857763.004], [578238.59, 6857970.916], [578087.577, 6858608.223], [577579.692, 6858291.87], [577070.452, 6858768.382], [577690.969, 6859027.608], [576786.161, 6859344.045], [576588.838, 6859605.037], [577402.966, 6860082.385], [574849.124, 6860992.758], [574348.622, 6861391.991], [574682.579, 6862212.461], [574342.413, 6862559.617], [574906.976, 6863589.304], [574259.232, 6864085.096], [573455.45, 6864577.089], [573303.502, 6865558.489], [572562.287, 6866049.4], [571941.44, 6866547.775], [572459.725, 6867160.331], [573055.79, 6866725.313], [573711.432, 6866159.649], [574198.334, 6866355.374], [575157.357, 6865410.566], [575528.304, 6865853.39], [575788.401, 6865647.176], [576304.194, 6865603.498], [577706.518, 6866817.418], [577654.337, 6867025.633], [578733.716, 6867655.208], [579237.68, 6867282.452], [579683.838, 6867400.798], [580305.185, 6866919.142], [580054.604, 6867440.911], [580404.363, 6867728.928], [580504.45, 6868052.31], [580922.506, 6868543.229], [580683.053, 6868976.026], [580807.196, 6869150.279], [581639.77, 6868683.337], [581817.76, 6868897.776], [580998.768, 6869474.11], [581237.585, 6869754.137], [582145.489, 6869228.648], [582360.759, 6869422.829], [582833.256, 6869009.112], [583001.161, 6869408.418], [583631.897, 6869585.692], [584065.093, 6869174.373], [585191.582, 6869152.684], [585258.297, 6868572.776], [585695.654, 6867909.143], [585502.755, 6867752.973], [586150.649, 6867473.55], [587873.581, 6867234.803], [588046.025, 6867632.421], [587258.29, 6868072.246], [587799.535, 6869432.751], [587815.282, 6869942.591], [589560.183, 6870451.04], [590242.401, 6870729.177], [591178.033, 6872219.382], [588731.706, 6872874.024], [588259.997, 6872048.684], [587646.156, 6871844.552], [586791.364, 6872949.66], [586772.587, 6873948.086], [587957.279, 6874681.976], [587387.794, 6875073.117], [587034.263, 6874945.18], [586552.783, 6875445.663], [588151.542, 6876035.107], [588014.88, 6876810.63], [586715.373, 6876801.925], [585198.226, 6877286.095], [586471.488, 6878592.39], [585400.855, 6881160.144], [584321.59, 6881428.596], [584885.173, 6883751.874], [584212.136, 6884689.074], [583551.588, 6884904.596], [583167.512, 6886596.132], [582811.916, 6886599.644], [581463.085, 6887277.647], [580218.097, 6888476.674], [578952.397, 6889164.997], [578423.635, 6888585.021], [577773.764, 6888530.074], [576991.587, 6888950.347], [576537.076, 6888611.817], [575189.738, 6888964.557], [574844.872, 6888912.239], [574011.605, 6888136.158], [573711.419, 6888945.229], [574018.891, 6889429.637], [573424.726, 6889907.94], [573499.694, 6890145.144], [572825.862, 6890575.466], [572407.725, 6891108.249], [573582.74, 6892415.227], [573001.371, 6892831.255], [572168.705, 6893011.178], [572032.048, 6894442.298], [572308.63, 6895139.418], [572390.887, 6896305.646], [573005.139, 6896377.221], [573472.447, 6896765.367], [573145.575, 6897241.472], [573392.071, 6897690.092], [572240.425, 6898837.522], [575272.311, 6898072.148], [576521.513, 6897469.199], [578274.261, 6897539.476], [579019.719, 6896221.716], [579050.822, 6896196.194], [579034.89, 6896194.896], [579310.086, 6895708.428], [580189.111, 6896275.529], [580868.756, 6895759.96], [581374.259, 6894141.672], [582304.399, 6893854.453], [582588.03, 6893618.326], [582520.981, 6893197.332], [584253.633, 6890939.409], [584631.09, 6891136.022], [584040.289, 6892824.633], [585012.721, 6892678.663], [584742.603, 6893961.945], [584979.064, 6894111.0], [585884.866, 6893796.331], [586161.654, 6893979.978], [585504.669, 6894755.692], [585545.237, 6895560.131], [585960.522, 6896574.876], [584925.668, 6897037.561], [585014.321, 6897458.661], [584782.655, 6897640.055], [584864.057, 6898603.896], [585580.921, 6898037.013], [586269.922, 6897984.796], [586279.404, 6898809.814], [585905.795, 6901046.669], [586255.473, 6901934.997], [588474.989, 6900270.072], [588909.078, 6900766.84], [588737.246, 6900989.336], [588766.648, 6901317.732], [589169.839, 6901596.014], [590109.837, 6900263.92], [590376.916, 6899571.399], [592579.054, 6898281.328], [593308.936, 6898932.266], [591708.226, 6901604.331], [590719.665, 6903621.69], [590669.451, 6904611.474], [590881.388, 6905304.296], [590890.457, 6906406.456], [591288.03, 6906636.355], [591281.377, 6907080.634], [590932.573, 6907098.973], [590936.648, 6907357.79], [592289.706, 6908130.639], [592625.815, 6907353.45], [592905.561, 6906415.375], [594187.255, 6905332.276], [595348.621, 6905318.597], [595927.682, 6904998.276], [596589.617, 6903739.484], [596961.627, 6903930.018], [598055.181, 6904986.29], [599640.93, 6904441.281], [599895.119, 6903886.845], [600211.888, 6904115.278], [600317.407, 6904777.746], [600685.993, 6905778.115], [601243.225, 6906545.713], [600391.455, 6907544.063], [601026.758, 6908263.057], [601761.099, 6907553.248], [602293.542, 6908110.351], [601193.338, 6909039.881], [600254.493, 6908663.442], [601603.144, 6910192.73], [602910.696, 6910362.572], [603880.838, 6912267.078], [603838.969, 6912774.996], [604477.528, 6912537.573], [605757.718, 6911626.959], [606820.185, 6912634.7], [606686.682, 6912965.819], [608193.916, 6914136.811], [609156.826, 6913486.666], [609522.29, 6912616.673], [610061.359, 6912362.89], [611088.831, 6912872.824], [612313.37, 6913054.212], [612174.122, 6913547.465], [611689.128, 6913781.463], [611633.985, 6914099.06], [611813.406, 6914275.291], [612301.601, 6915338.254], [611773.839, 6915693.888], [611875.448, 6916105.383], [612281.45, 6916194.189], [612470.235, 6916505.098], [612994.501, 6916505.676], [612795.189, 6916971.681], [612969.094, 6917159.583], [612569.223, 6917693.335], [612018.017, 6919096.63], [612163.317, 6919551.828], [611682.145, 6920380.801], [611859.168, 6920812.636], [612342.095, 6921457.937], [612545.462, 6921224.958], [612976.709, 6921191.487], [613650.869, 6920896.829], [613965.636, 6921162.962], [614426.258, 6921976.043], [615224.056, 6922708.652], [617168.754, 6921653.408]], [[595524.696, 6904086.598], [596082.087, 6903375.284], [596486.176, 6903489.355], [597138.102, 6902984.723], [597490.036, 6903290.879], [597811.516, 6903400.549], [598592.449, 6903354.599], [599634.351, 6903532.391], [599721.984, 6903138.256], [599559.91, 6901518.826], [599438.513, 6900733.411], [598684.571, 6901045.631], [598796.643, 6900415.651], [598603.792, 6900082.442], [599369.426, 6899288.56], [599448.996, 6898234.868], [601222.508, 6898110.954], [601772.416, 6898733.377], [602480.251, 6898110.022], [603609.099, 6897827.623], [603629.128, 6896778.147], [604452.747, 6896314.238], [605140.645, 6896197.97], [605418.454, 6895714.803], [605374.086, 6895501.784], [605104.948, 6895300.33], [604925.06, 6895101.906], [604851.931, 6894984.9], [604991.439, 6894659.758], [605112.866, 6894312.634], [604925.547, 6893348.852], [605733.047, 6893079.437], [606429.468, 6892438.488], [608402.441, 6891131.121], [609289.989, 6890028.444], [609175.667, 6889392.826], [608872.0, 6888994.225], [608899.536, 6888719.103], [608642.008, 6888007.9], [608240.311, 6887321.891], [608344.426, 6886975.8], [609169.448, 6886814.43], [609112.66, 6887074.946], [609697.733, 6887334.453], [610110.478, 6887339.639], [610594.1, 6887204.064], [610975.544, 6886871.678], [610492.702, 6884517.676], [610902.915, 6884224.026], [610523.108, 6883655.804], [611441.179, 6883154.272], [610534.767, 6882187.186], [609112.36, 6882797.472], [608682.265, 6882692.671], [608727.391, 6882335.616], [609190.44, 6881782.499], [609398.372, 6880974.336], [609755.342, 6880702.087], [609799.11, 6880289.032], [609386.165, 6880279.973], [609178.17, 6879983.116], [609218.132, 6879678.789], [609379.934, 6879359.911], [609679.575, 6878983.809], [610019.033, 6878795.86], [609032.451, 6876694.183], [608651.203, 6877476.85], [608066.491, 6877778.497], [606619.031, 6878531.136], [606436.184, 6878292.303], [605890.125, 6878129.436], [604806.56, 6878738.942], [604566.275, 6878431.194], [604295.973, 6877799.53], [604172.715, 6877246.429], [604559.606, 6877012.779], [603624.528, 6875870.959], [602652.062, 6876626.895], [602986.917, 6877016.075], [602396.023, 6877492.275], [601982.622, 6877450.234], [601783.791, 6877238.668], [601320.697, 6877441.097], [600821.376, 6877212.763], [601075.408, 6876617.48], [600534.017, 6876467.434], [601138.034, 6876005.074], [600610.556, 6875620.637], [600832.592, 6875482.9], [600341.481, 6875229.57], [599771.221, 6875320.202], [599080.439, 6875633.316], [598384.483, 6875848.885], [597609.013, 6876609.074], [597954.869, 6877070.264], [598221.983, 6876844.394], [598629.028, 6876984.022], [598022.274, 6877470.621], [597917.537, 6878085.933], [596416.381, 6878698.854], [595799.085, 6879075.1], [595399.847, 6878696.434], [594674.936, 6878808.487], [593890.272, 6878197.808], [593633.579, 6877671.298], [593336.732, 6877971.715], [593418.571, 6879058.255], [591756.27, 6879357.367], [592298.969, 6880176.076], [590926.347, 6880900.69], [590251.782, 6881394.932], [590516.156, 6881513.924], [591712.598, 6881186.268], [592574.669, 6881894.059], [593137.518, 6882482.905], [593927.534, 6882024.044], [594741.004, 6881787.641], [595036.913, 6881551.326], [595335.982, 6881570.902], [595445.81, 6881933.923], [595737.068, 6881805.885], [595996.082, 6882883.375], [592949.0, 6884760.443], [592265.387, 6885745.175], [592380.466, 6886299.34], [592876.699, 6886729.817], [592356.575, 6887722.457], [592005.936, 6888707.235], [591261.233, 6889514.441], [590806.526, 6889466.092], [589708.543, 6890241.979], [588196.756, 6888684.988], [587891.477, 6889228.539], [586981.163, 6889651.393], [586737.1, 6890031.36], [585745.667, 6890753.662], [585588.294, 6891104.921], [585830.764, 6891374.835], [585297.362, 6891885.192], [585996.806, 6892221.782], [585893.742, 6892758.743], [586333.921, 6893078.356], [586730.774, 6893487.813], [586067.196, 6894522.54], [585838.1, 6894800.43], [586196.374, 6895707.738], [586983.668, 6895529.335], [587144.353, 6896201.351], [587150.585, 6896585.01], [586883.423, 6896878.04], [586081.723, 6897004.091], [586445.064, 6897237.199], [586973.718, 6898050.143], [587358.859, 6898039.452], [587106.374, 6898301.195], [587671.537, 6898669.979], [586635.569, 6899087.288], [586299.9, 6899473.76], [586801.14, 6900237.28], [587420.551, 6899727.694], [587919.109, 6899971.856], [588266.04, 6899528.609], [589549.593, 6900345.589], [589848.288, 6900086.787], [590010.275, 6899462.437], [592145.221, 6898063.286], [591895.015, 6897766.277], [592477.905, 6897395.98], [593595.261, 6898464.754], [593795.079, 6899348.636], [593406.229, 6899431.84], [593353.204, 6899669.991], [593020.241, 6900279.965], [592306.756, 6901101.491], [592297.047, 6901362.471], [593042.621, 6901836.116], [592876.184, 6902145.226], [592346.006, 6902448.375], [592448.14, 6902756.307], [593181.751, 6902902.737], [593038.971, 6903255.112], [592711.909, 6903301.203], [592303.146, 6903966.214], [591876.358, 6903946.46], [591612.083, 6904218.034], [591412.145, 6904650.681], [591649.668, 6905031.913], [591546.62, 6905527.494], [591795.078, 6905738.013], [591649.293, 6906014.778], [592206.77, 6906014.811], [592983.742, 6905823.212], [593712.023, 6905316.66], [593948.679, 6904646.346], [594811.999, 6904742.188], [595524.696, 6904086.598]]]}}, {\\\"id\\\": \\\"9\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Br\\\\u00e4nd\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 35.9, \\\"freshwarea\\\": 0.28, \\\"gml_id\\\": 1601100054, \\\"landarea\\\": 108.17, \\\"namefin\\\": \\\"Br\\\\u00e4nd\\\\u00f6\\\", \\\"nameswe\\\": \\\"Br\\\\u00e4nd\\\\u00f6\\\", \\\"natcode\\\": \\\"035\\\", \\\"seawarea\\\": 1534.76, \\\"totalarea\\\": 1643.21}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[158291.161, 6748278.94], [171236.502, 6745919.169], [175482.858, 6737239.366], [177411.693, 6731630.97], [179054.524, 6726682.221], [179095.408, 6725644.63], [179052.698, 6723104.0], [178985.102, 6721226.62], [178778.019, 6720746.968], [177347.626, 6716920.445], [175697.142, 6708678.879], [175811.453, 6706801.338], [175225.004, 6702610.378], [173346.017, 6695594.488], [173474.272, 6694160.65], [172356.227, 6688592.108], [170464.773, 6688053.02], [168214.52, 6680237.598], [161898.989, 6685455.012], [162698.187, 6696875.176], [162720.353, 6696983.512], [163766.399, 6697700.057], [163976.997, 6700158.105], [165740.504, 6700166.92], [165821.178, 6700301.695], [165782.108, 6701735.084], [168428.782, 6705486.325], [167349.537, 6708255.199], [166936.468, 6709814.579], [165147.236, 6711211.154], [164414.003, 6711265.378], [163932.781, 6711227.336], [163020.403, 6710881.917], [161737.54, 6710755.912], [159345.37, 6711369.005], [158635.245, 6715627.489], [156256.469, 6718700.771], [150150.036, 6721068.668], [145221.864, 6720274.746], [143398.803, 6720017.357], [141619.126, 6722542.66], [141855.79, 6724833.279], [141904.572, 6725552.657], [143329.159, 6741792.854], [130489.45, 6759966.542], [140852.31, 6767208.508], [158291.161, 6748278.94]]]}}, {\\\"id\\\": \\\"10\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Korsn\\\\u00e4s\\\", \\\"elakelaisten_osuus\\\": 30.6, \\\"freshwarea\\\": 3.79, \\\"gml_id\\\": 1601100461, \\\"landarea\\\": 236.0, \\\"namefin\\\": \\\"Korsn\\\\u00e4s\\\", \\\"nameswe\\\": \\\"Korsn\\\\u00e4s\\\", \\\"natcode\\\": \\\"280\\\", \\\"seawarea\\\": 1184.91, \\\"totalarea\\\": 1424.7}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[188964.666, 6993360.359], [207929.756, 6991941.097], [211362.421, 6985320.612], [211463.829, 6985242.096], [211518.954, 6985101.118], [211614.156, 6984980.81], [211901.302, 6984714.569], [211703.607, 6984624.119], [213576.758, 6979833.739], [213107.832, 6978860.755], [213243.911, 6978801.705], [212788.814, 6978202.379], [212480.482, 6980265.259], [212076.72, 6980290.345], [211952.749, 6980535.894], [212418.842, 6980512.114], [212423.366, 6980502.445], [212443.567, 6980508.295], [212097.03, 6982800.176], [211384.056, 6982557.919], [211761.258, 6980635.402], [211524.372, 6979534.361], [211310.873, 6979108.339], [211418.027, 6979063.447], [211387.727, 6978801.671], [211192.692, 6978943.918], [210577.112, 6978197.479], [210290.578, 6978386.569], [210243.979, 6978326.707], [210907.292, 6977773.265], [209812.632, 6977271.893], [210923.76, 6975562.38], [211699.911, 6973745.012], [212945.705, 6972207.385], [212960.376, 6971155.43], [212945.489, 6970117.193], [211342.133, 6969221.706], [211747.403, 6968498.363], [212057.982, 6968825.915], [212900.027, 6967883.301], [211840.708, 6966978.485], [211356.009, 6966713.72], [210776.759, 6967190.005], [210228.17, 6966476.101], [210137.175, 6966195.735], [209963.537, 6963446.786], [209243.561, 6963642.885], [209337.541, 6963129.215], [208988.654, 6962794.684], [208463.25, 6963197.29], [208119.84, 6961636.346], [207564.2, 6961622.67], [207666.866, 6961981.637], [207029.228, 6962611.7], [206751.967, 6963204.098], [206232.34, 6963404.521], [205059.947, 6963192.806], [204441.356, 6962338.016], [203929.582, 6962300.586], [204013.334, 6963814.176], [202472.924, 6964448.347], [201873.557, 6964380.894], [201572.233, 6964639.084], [198369.421, 6963987.223], [196943.302, 6963832.484], [196738.526, 6964268.011], [165571.9, 6964248.198], [163916.635, 6972123.066], [163762.083, 6972943.272], [160597.62, 6993385.341], [160279.808, 6995507.005], [188964.666, 6993360.359]]]}}, {\\\"id\\\": \\\"11\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Haapaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 30.1, \\\"freshwarea\\\": 22.93, \\\"gml_id\\\": 1601100108, \\\"landarea\\\": 766.19, \\\"namefin\\\": \\\"Haapaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Haapaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"069\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 789.12}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[404713.93, 7067951.36], [404899.143, 7068199.265], [405577.833, 7067691.095], [404636.193, 7066662.826], [404260.3, 7067202.146], [404531.902, 7067424.486], [404269.734, 7067678.253], [404004.276, 7067569.56], [403827.46, 7067826.28], [404019.677, 7068074.543], [403768.422, 7068345.63], [403962.631, 7068579.026], [404713.93, 7067951.36]]], [[[421489.823, 7090674.493], [421899.65, 7089957.4], [428100.788, 7089104.381], [431776.632, 7088599.14], [433612.181, 7080054.875], [434271.819, 7076962.283], [434376.058, 7076510.066], [434089.189, 7075393.087], [432217.305, 7067992.693], [433449.921, 7068659.957], [433608.488, 7068857.743], [433682.151, 7068499.054], [433051.332, 7068113.759], [433528.523, 7067652.573], [433236.228, 7067254.267], [432720.56, 7067144.178], [432158.656, 7067716.452], [430669.37, 7061831.369], [428750.955, 7058267.187], [421096.89, 7055672.607], [417999.767, 7051437.468], [413282.133, 7054997.821], [412982.72, 7054781.153], [412321.577, 7055698.715], [413151.118, 7056735.373], [413101.212, 7057274.888], [413627.8, 7057246.097], [413205.377, 7057847.259], [412733.309, 7057537.184], [412087.739, 7058445.592], [412626.643, 7058893.788], [412510.55, 7059106.793], [411730.979, 7059315.922], [411617.589, 7059751.508], [412261.232, 7059937.798], [412036.997, 7060394.735], [411571.319, 7060348.785], [411307.598, 7060145.806], [411340.281, 7060620.229], [410881.037, 7061777.96], [410484.467, 7061759.534], [410546.542, 7062374.1], [410332.849, 7062647.402], [410797.436, 7063215.181], [410652.149, 7063553.71], [409263.006, 7064375.245], [408911.117, 7064491.545], [409137.936, 7064653.964], [410047.51, 7064925.544], [409367.791, 7065462.568], [408742.1, 7065701.829], [408877.152, 7066247.035], [409642.429, 7067107.224], [409656.252, 7067595.437], [409536.879, 7067739.631], [409199.816, 7067708.582], [409355.501, 7067277.841], [409041.152, 7066948.29], [409017.747, 7067196.34], [408476.117, 7067165.432], [408589.61, 7066563.033], [408555.479, 7066273.134], [408252.135, 7066087.42], [407993.512, 7066422.911], [407503.513, 7066435.975], [407254.409, 7066688.361], [407052.113, 7067331.05], [406497.714, 7067265.547], [406546.368, 7067664.027], [406872.32, 7067754.169], [406892.445, 7067970.528], [406698.212, 7068232.278], [406557.795, 7068613.364], [406036.303, 7069089.489], [406267.167, 7069478.074], [405959.33, 7069904.897], [406372.229, 7070198.322], [406277.927, 7070869.142], [406550.481, 7071631.232], [406387.545, 7071758.781], [405677.328, 7070842.391], [406026.243, 7070483.217], [405366.243, 7069689.757], [405808.43, 7069404.76], [405349.819, 7068795.945], [403539.708, 7070152.711], [403774.699, 7070415.486], [402925.18, 7071093.19], [402135.964, 7069761.974], [401564.872, 7070691.202], [399710.4, 7071681.336], [399151.964, 7071604.938], [399885.271, 7076388.236], [400177.647, 7076822.285], [400358.469, 7076413.627], [400775.199, 7077005.682], [400388.457, 7077578.697], [400291.869, 7077955.018], [400732.828, 7078209.335], [400767.072, 7077786.483], [401306.411, 7078346.689], [401566.572, 7078085.001], [401917.0, 7078461.884], [401708.039, 7078671.582], [402630.848, 7079703.481], [402779.413, 7079438.759], [402674.889, 7079017.902], [402640.26, 7078442.206], [402245.921, 7077981.178], [402036.017, 7078157.736], [401745.096, 7077840.361], [402034.806, 7077586.607], [402193.632, 7077208.976], [401104.678, 7075899.949], [401513.698, 7075572.464], [401302.158, 7074792.444], [401490.433, 7074152.26], [401137.52, 7074058.722], [400696.224, 7074333.473], [400635.832, 7074148.499], [400866.899, 7073774.739], [401175.352, 7073384.291], [401704.369, 7072939.824], [401969.716, 7072896.756], [402102.784, 7073743.079], [401870.691, 7074062.799], [402146.815, 7074402.628], [401605.894, 7074722.459], [401783.123, 7075402.214], [402210.064, 7075647.829], [402556.635, 7075485.117], [403219.85, 7076031.388], [403762.07, 7076238.82], [404142.546, 7076769.263], [405022.438, 7076854.284], [405132.689, 7076531.792], [404789.889, 7076126.075], [405110.403, 7074211.201], [405405.261, 7073880.057], [405659.317, 7074256.556], [407886.749, 7072601.48], [407914.115, 7072018.809], [408458.155, 7072019.046], [408713.533, 7072335.775], [408490.652, 7072709.498], [410496.984, 7075102.166], [409101.001, 7075419.036], [408257.623, 7075305.542], [408118.418, 7074975.451], [407916.596, 7075261.657], [407639.163, 7075215.199], [407621.704, 7073938.274], [407431.431, 7073536.432], [407007.357, 7074116.141], [407413.988, 7075640.355], [407824.304, 7075756.954], [409031.436, 7078475.134], [407444.567, 7079308.231], [406905.546, 7079112.965], [405937.906, 7079142.823], [405744.857, 7079855.79], [405290.839, 7080332.491], [405062.079, 7081329.262], [404793.148, 7081308.088], [404609.217, 7081761.005], [404782.767, 7081992.238], [405388.511, 7081862.573], [405829.575, 7080735.444], [406444.336, 7081019.872], [406714.469, 7080762.122], [406932.182, 7081001.408], [407140.407, 7080809.136], [406267.643, 7079380.958], [406829.657, 7079361.124], [407517.296, 7079592.544], [409117.389, 7078726.387], [409277.451, 7079122.565], [409565.726, 7079225.77], [410154.647, 7080151.669], [411611.515, 7081667.319], [414213.275, 7084367.63], [414004.609, 7084624.17], [413124.945, 7083966.119], [413719.111, 7086036.375], [413399.394, 7086214.709], [413274.394, 7086803.69], [413821.191, 7086388.723], [415019.832, 7090620.611], [415370.708, 7090286.735], [415736.044, 7090900.859], [419904.813, 7090244.14], [421624.632, 7089997.264], [420783.659, 7090739.358], [421236.256, 7090993.911], [421489.823, 7090674.493]], [[418701.443, 7055306.898], [418485.792, 7054001.707], [417581.224, 7053873.772], [417362.019, 7055296.974], [418235.255, 7056066.626], [418701.443, 7055306.898]], [[405043.635, 7073454.897], [404858.867, 7073060.044], [404427.764, 7072635.765], [404472.013, 7071929.164], [404006.997, 7072193.633], [403724.234, 7071705.817], [404138.666, 7071155.707], [404223.09, 7070845.862], [403821.295, 7071063.138], [403474.216, 7071448.715], [403312.837, 7071674.73], [403811.242, 7072356.267], [403479.644, 7072899.507], [403572.882, 7073129.729], [404211.383, 7072795.469], [404568.424, 7073079.784], [404504.384, 7074074.974], [404695.369, 7074409.123], [405043.635, 7073454.897]]]]}}, {\\\"id\\\": \\\"12\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hausj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 25.1, \\\"freshwarea\\\": 9.41, \\\"gml_id\\\": 1601100135, \\\"landarea\\\": 389.36, \\\"namefin\\\": \\\"Hausj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Hausj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"086\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 398.77}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[394102.316, 6756313.412], [396647.61, 6755267.619], [396795.45, 6753278.804], [397113.617, 6750986.658], [397251.575, 6749240.891], [396700.777, 6749265.014], [396199.855, 6748822.072], [395900.385, 6748189.16], [395563.445, 6746410.355], [396257.43, 6744498.892], [396877.678, 6744551.379], [397258.069, 6744059.536], [396745.352, 6743091.568], [399519.499, 6739515.226], [399355.782, 6738403.414], [395971.924, 6737895.136], [395807.399, 6736903.431], [394084.197, 6733721.417], [394576.094, 6732544.186], [395952.615, 6734129.618], [397192.501, 6735340.434], [397446.714, 6736041.627], [398860.168, 6734306.427], [401427.038, 6733484.123], [398844.389, 6732634.254], [395415.295, 6730809.505], [396881.264, 6726690.999], [396836.372, 6726576.903], [394096.887, 6727510.1], [393672.688, 6728679.497], [393132.974, 6728795.219], [392674.162, 6729306.24], [392330.658, 6728967.769], [391756.354, 6729090.876], [389552.355, 6728855.209], [387050.189, 6728218.131], [386940.094, 6727784.682], [386433.836, 6727552.456], [386372.16, 6727041.281], [384957.056, 6727214.05], [384903.493, 6726773.311], [381699.598, 6726787.923], [381696.299, 6727565.336], [381688.188, 6729294.2], [380749.542, 6731055.025], [380125.805, 6731601.53], [380687.954, 6732372.137], [381462.243, 6732725.878], [381524.265, 6733021.276], [381207.372, 6733483.126], [381590.828, 6734411.79], [382475.85, 6735219.284], [382340.484, 6735875.234], [381758.677, 6736807.905], [382300.014, 6737194.031], [381924.081, 6737705.12], [381322.075, 6737641.349], [382104.263, 6739113.776], [382173.614, 6739788.296], [381721.563, 6739526.994], [380906.846, 6739890.416], [381035.184, 6740207.176], [379117.283, 6740767.647], [378229.843, 6741504.382], [377883.485, 6741513.21], [376693.216, 6742123.692], [376340.832, 6742165.228], [376310.277, 6742687.545], [376025.755, 6742671.284], [375985.623, 6742322.285], [375619.809, 6742282.469], [375556.39, 6742491.036], [375720.805, 6743201.798], [376212.279, 6744342.235], [376787.363, 6746590.588], [377595.446, 6746710.917], [379621.449, 6746898.93], [380009.375, 6746073.235], [380185.421, 6746280.497], [380235.693, 6747555.818], [380664.827, 6748054.807], [380976.248, 6748608.393], [381042.701, 6750156.68], [383010.524, 6749772.808], [382858.784, 6749163.532], [383329.832, 6748383.803], [383723.292, 6748245.25], [384688.652, 6747601.889], [385093.775, 6747119.483], [385491.09, 6746566.133], [385921.916, 6746793.672], [386264.402, 6746792.44], [386636.26, 6747124.063], [386746.525, 6747497.414], [387407.725, 6747200.556], [387673.056, 6747493.55], [388121.993, 6747459.986], [388767.714, 6749581.075], [388267.049, 6751520.239], [387942.203, 6752342.139], [389557.061, 6751831.292], [389523.704, 6752433.973], [391118.12, 6753297.792], [390462.576, 6754177.542], [390652.398, 6754291.249], [390773.765, 6754363.655], [391085.898, 6754545.974], [391393.184, 6754024.755], [391862.438, 6754304.598], [392068.652, 6754424.497], [392285.957, 6754555.794], [392298.898, 6754676.908], [392633.876, 6754644.76], [392626.171, 6754572.658], [392894.326, 6754544.207], [392909.335, 6754619.871], [392898.579, 6754723.321], [392911.994, 6754746.501], [392837.513, 6754808.972], [392784.356, 6754868.477], [392804.956, 6754916.935], [393499.674, 6755137.672], [393432.192, 6755201.166], [393336.445, 6755319.091], [393241.116, 6755301.219], [393148.26, 6755433.733], [393142.062, 6755500.189], [393088.122, 6755596.428], [393045.361, 6755806.097], [393182.282, 6755878.24], [393344.879, 6756010.145], [393186.881, 6756222.594], [393094.362, 6756355.691], [394102.316, 6756313.412]]]}}, {\\\"id\\\": \\\"13\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Luum\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 38.2, \\\"freshwarea\\\": 109.78, \\\"gml_id\\\": 1601100047, \\\"landarea\\\": 750.06, \\\"namefin\\\": \\\"Luum\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Luum\\\\u00e4ki\\\", \\\"natcode\\\": \\\"441\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 859.84}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[519645.127, 6774135.687], [519976.721, 6770687.886], [521244.113, 6770391.816], [522322.29, 6769071.36], [522930.07, 6766315.783], [524672.179, 6765093.691], [525197.762, 6765695.351], [526569.904, 6766359.091], [527149.77, 6766399.579], [527332.398, 6766164.176], [527369.786, 6765852.802], [527537.022, 6765529.635], [529019.825, 6765491.261], [530962.248, 6764893.317], [531577.6, 6764803.659], [532271.916, 6764998.088], [533688.143, 6764560.78], [534092.181, 6764284.996], [534243.522, 6764003.312], [535294.001, 6763332.396], [536057.292, 6763093.601], [536596.77, 6763458.858], [536238.408, 6764279.721], [537181.822, 6764532.329], [538113.145, 6764332.02], [538103.454, 6763785.442], [538374.247, 6763374.511], [539317.869, 6762665.009], [540181.718, 6762616.538], [541987.779, 6763061.877], [544435.285, 6763257.62], [545059.435, 6762856.889], [545466.773, 6762437.263], [546389.998, 6762395.088], [547079.918, 6762426.081], [547765.137, 6762759.051], [547912.775, 6763003.553], [547806.215, 6763468.563], [548112.489, 6763660.188], [548739.337, 6763218.372], [549138.984, 6761967.984], [548602.918, 6759955.899], [548926.591, 6759323.659], [548484.99, 6757138.345], [548819.263, 6756172.54], [548923.831, 6755075.186], [548499.517, 6753757.116], [548344.188, 6752964.236], [548900.68, 6750991.342], [549685.665, 6750501.248], [550588.001, 6750244.661], [550665.574, 6749706.28], [550254.353, 6748572.536], [549522.762, 6747313.94], [549132.524, 6747062.438], [549190.803, 6746780.953], [549153.421, 6746434.193], [548969.299, 6746170.099], [548707.605, 6746182.691], [548299.242, 6746583.463], [548129.58, 6747772.117], [547983.181, 6748113.301], [548934.485, 6749057.227], [548563.022, 6750519.43], [547961.376, 6749534.724], [547330.836, 6749215.348], [546443.714, 6747498.835], [547613.55, 6746242.156], [546038.188, 6744754.174], [545503.729, 6744065.217], [545984.238, 6743561.027], [544873.092, 6743337.606], [541373.51, 6743448.025], [541691.374, 6744512.196], [540435.683, 6744263.384], [540563.741, 6742937.724], [540838.433, 6742555.282], [539427.603, 6742589.654], [539021.866, 6742674.415], [539113.733, 6742055.867], [539105.583, 6740732.412], [538858.65, 6740202.117], [538283.682, 6740269.784], [536909.932, 6740884.321], [536144.442, 6740827.036], [533539.991, 6741280.526], [532977.917, 6741313.207], [532012.909, 6741095.286], [529917.56, 6740394.849], [527469.948, 6740530.869], [524630.075, 6742888.895], [523282.6, 6745336.095], [521260.396, 6747745.906], [520959.512, 6748504.497], [520230.1, 6749366.643], [519048.471, 6750045.86], [518399.63, 6750327.242], [517167.724, 6750607.32], [516535.076, 6750975.267], [515033.378, 6751323.315], [513601.545, 6751574.91], [511567.171, 6752118.872], [509994.189, 6754423.729], [508709.098, 6755740.188], [507372.925, 6757364.722], [506555.544, 6758785.742], [507007.859, 6759106.814], [507520.854, 6758726.77], [507694.189, 6758127.314], [508264.863, 6757575.341], [509124.014, 6757690.199], [509438.09, 6757313.653], [510013.857, 6757328.05], [510232.566, 6757559.458], [510572.929, 6757452.003], [511497.752, 6757863.84], [512028.333, 6758383.332], [512699.358, 6758714.301], [513085.502, 6758743.791], [513443.35, 6759506.184], [513081.494, 6759824.753], [511865.79, 6759443.801], [511506.827, 6760424.102], [511546.767, 6761109.919], [511772.076, 6761350.446], [511283.371, 6761946.395], [511207.832, 6762772.65], [510434.034, 6763656.185], [510310.987, 6763265.942], [509373.972, 6762575.318], [509017.815, 6762770.437], [508744.221, 6763317.014], [507631.866, 6763970.443], [507664.749, 6764433.656], [508000.507, 6765164.96], [508325.074, 6765363.382], [508620.45, 6765887.47], [508143.328, 6767705.53], [507931.81, 6768132.456], [508169.604, 6769334.17], [508078.633, 6770304.276], [508250.36, 6770683.023], [508715.271, 6770768.291], [509379.696, 6771518.39], [509979.247, 6772385.842], [511453.147, 6772797.284], [512322.995, 6772856.064], [513524.409, 6772956.23], [513971.425, 6773356.271], [515145.252, 6773230.728], [515266.699, 6773710.435], [515540.631, 6774107.247], [516643.211, 6774594.16], [517674.249, 6774280.507], [518308.164, 6774695.854], [519645.127, 6774135.687]]]}}, {\\\"id\\\": \\\"14\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pertunmaa\\\", \\\"elakelaisten_osuus\\\": 42.0, \\\"freshwarea\\\": 79.74, \\\"gml_id\\\": 1601100263, \\\"landarea\\\": 374.46, \\\"namefin\\\": \\\"Pertunmaa\\\", \\\"nameswe\\\": \\\"Pertunmaa\\\", \\\"natcode\\\": \\\"588\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 454.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[469230.019, 6835388.211], [470605.068, 6834230.99], [472460.919, 6833469.712], [473837.175, 6832779.338], [474311.498, 6832730.575], [474306.706, 6832530.138], [473940.725, 6832396.158], [475134.054, 6830320.108], [475767.0, 6829576.714], [476011.363, 6828869.551], [476476.415, 6828628.505], [476260.002, 6827931.381], [476560.54, 6827431.591], [477019.038, 6827238.11], [477022.984, 6826661.526], [477392.468, 6826098.548], [478584.167, 6826469.795], [478185.436, 6825472.995], [478759.814, 6822624.445], [479150.991, 6822592.462], [479004.744, 6826593.347], [480064.87, 6825471.009], [479723.971, 6825318.377], [479557.276, 6825664.127], [479263.919, 6825711.749], [479591.739, 6824399.318], [480885.446, 6823691.034], [480161.232, 6823355.334], [479944.789, 6823088.561], [480081.957, 6822875.607], [481405.903, 6823167.127], [481477.031, 6822732.082], [480226.758, 6822544.082], [481441.23, 6822111.476], [481686.051, 6821223.184], [480635.219, 6821216.754], [480990.713, 6820908.142], [480915.616, 6820537.119], [479931.592, 6820827.677], [479912.88, 6820320.634], [480365.195, 6819801.085], [481132.473, 6819113.588], [481340.391, 6818638.082], [481280.618, 6818121.89], [480273.498, 6818002.858], [479651.085, 6817759.426], [479739.292, 6816707.12], [477897.408, 6816286.511], [477268.826, 6815399.854], [476423.92, 6814483.432], [476562.878, 6811889.462], [476749.907, 6811169.478], [476931.338, 6810727.305], [476884.871, 6809980.834], [477109.656, 6809372.583], [477499.511, 6809508.556], [477219.531, 6808543.945], [476467.242, 6807835.927], [474818.77, 6807144.297], [474202.578, 6805962.172], [475903.721, 6805667.052], [475944.574, 6804826.943], [474791.623, 6803786.633], [473925.457, 6804950.324], [473815.343, 6804668.694], [473899.113, 6804014.159], [473519.272, 6803358.723], [473576.864, 6800740.285], [471350.164, 6802116.109], [471160.185, 6802608.584], [470597.462, 6803658.877], [470785.679, 6804629.185], [468518.206, 6804366.969], [467980.827, 6804086.378], [467289.206, 6804566.377], [466923.656, 6804404.938], [466262.524, 6804657.13], [465014.233, 6804642.823], [463557.53, 6804291.851], [462589.725, 6804144.401], [461910.804, 6803800.034], [461784.758, 6804007.952], [461869.214, 6804910.484], [462197.579, 6805150.69], [462573.721, 6805903.189], [463353.098, 6806666.787], [463668.865, 6807388.997], [460772.728, 6810440.832], [459668.964, 6812750.586], [462334.665, 6814715.016], [462003.488, 6816674.719], [461697.513, 6816764.979], [461534.076, 6817342.844], [461294.077, 6817497.606], [460747.0, 6818727.46], [459330.487, 6819700.768], [459318.504, 6819942.511], [460505.237, 6819312.73], [460788.601, 6819327.269], [460732.979, 6819618.318], [460412.44, 6819740.821], [460412.722, 6820345.143], [460940.924, 6820270.533], [461093.244, 6819255.164], [463444.197, 6819069.23], [463761.148, 6819440.814], [464530.944, 6818888.147], [464555.238, 6818309.981], [464832.024, 6818397.848], [464894.316, 6818961.55], [465301.367, 6819144.386], [465145.663, 6819791.397], [464829.535, 6819997.546], [464535.738, 6819677.927], [463914.291, 6819722.903], [464164.044, 6820383.058], [463787.646, 6821422.006], [463336.58, 6821414.916], [463497.038, 6819986.1], [463245.966, 6819355.088], [462452.539, 6819592.21], [461899.222, 6819394.258], [461426.691, 6819659.945], [461395.135, 6820246.214], [461090.232, 6821379.804], [462365.927, 6821469.421], [462759.436, 6823700.982], [462309.718, 6823880.006], [461926.858, 6824648.012], [461957.79, 6825483.531], [462122.378, 6826174.381], [461932.086, 6826528.482], [461481.999, 6827157.305], [460774.416, 6827602.194], [462903.65, 6827425.984], [463867.152, 6826687.506], [463593.465, 6829915.996], [463664.516, 6830753.345], [464199.598, 6830754.149], [464408.608, 6831448.77], [464881.717, 6831202.773], [465788.022, 6832233.159], [465703.58, 6833040.21], [465509.217, 6833059.181], [465488.762, 6833626.389], [465892.6, 6834075.027], [466484.144, 6834020.246], [466571.701, 6834993.652], [467084.991, 6835290.536], [467013.913, 6836218.059], [469230.019, 6835388.211]]]}}, {\\\"id\\\": \\\"15\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Harjavalta\\\", \\\"elakelaisten_osuus\\\": 36.3, \\\"freshwarea\\\": 4.28, \\\"gml_id\\\": 1601100127, \\\"landarea\\\": 123.46, \\\"namefin\\\": \\\"Harjavalta\\\", \\\"nameswe\\\": \\\"Harjavalta\\\", \\\"natcode\\\": \\\"079\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 127.74}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[242615.492, 6819904.237], [243557.511, 6818637.787], [243646.133, 6818153.648], [244149.578, 6817574.745], [244627.987, 6817099.047], [243747.259, 6816498.866], [244812.718, 6814694.687], [245406.169, 6813520.646], [246125.599, 6813001.728], [246167.082, 6812506.022], [246445.529, 6812417.922], [247259.045, 6810958.771], [246684.208, 6810684.98], [247010.391, 6810307.934], [246503.759, 6810017.019], [245688.606, 6809924.623], [245212.673, 6809408.404], [245339.557, 6808975.792], [245679.363, 6809006.975], [245530.933, 6808224.243], [245277.843, 6807615.157], [244336.218, 6807415.127], [244321.937, 6806904.356], [244099.204, 6806169.888], [243441.158, 6804942.157], [244472.782, 6804355.056], [244226.689, 6803166.506], [243698.638, 6802836.576], [243876.903, 6803399.199], [243284.861, 6803458.087], [243240.898, 6803122.737], [240678.433, 6804285.356], [238676.334, 6804822.362], [238188.062, 6803039.945], [238940.819, 6802705.332], [238966.13, 6802053.866], [236238.88, 6803287.985], [235989.293, 6802827.588], [235290.058, 6802798.909], [234311.88, 6803114.678], [233394.317, 6805753.473], [232617.285, 6807931.558], [233500.552, 6808192.746], [235301.15, 6808261.888], [236822.296, 6808826.994], [236374.885, 6809231.085], [237122.207, 6809510.526], [237606.857, 6809119.709], [238975.168, 6810055.049], [238423.304, 6810593.775], [237369.472, 6810497.411], [236480.534, 6810752.991], [236183.252, 6811797.216], [239081.692, 6816384.633], [242061.019, 6817512.722], [241199.626, 6820529.969], [242615.492, 6819904.237]]]}}, {\\\"id\\\": \\\"16\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pello\\\", \\\"elakelaisten_osuus\\\": 45.9, \\\"freshwarea\\\": 126.02, \\\"gml_id\\\": 1601100608, \\\"landarea\\\": 1738.64, \\\"namefin\\\": \\\"Pello\\\", \\\"nameswe\\\": \\\"Pello\\\", \\\"natcode\\\": \\\"854\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1864.66}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[369532.563, 7435182.57], [370760.922, 7434986.159], [371102.52, 7435062.427], [371271.796, 7434832.887], [371504.242, 7435527.34], [371727.693, 7435593.904], [371882.613, 7435430.812], [371637.312, 7435187.429], [371841.62, 7434986.899], [372145.77, 7435304.273], [376198.326, 7435268.207], [378048.544, 7433167.916], [406913.773, 7426046.917], [408258.283, 7419674.536], [408565.452, 7420135.889], [408848.759, 7420090.103], [408640.436, 7419672.575], [408560.891, 7418204.463], [409580.035, 7417959.226], [409423.99, 7417331.926], [408763.358, 7417278.326], [410215.922, 7410585.533], [410405.207, 7411672.258], [410719.948, 7411626.776], [410673.665, 7409834.931], [410393.861, 7409755.931], [410822.204, 7407720.82], [410325.318, 7407457.559], [410269.597, 7407273.587], [410555.001, 7406972.236], [410941.021, 7407214.327], [411402.469, 7405428.684], [410432.901, 7405428.723], [410784.179, 7404046.064], [411208.144, 7403204.607], [410897.513, 7403092.245], [410673.947, 7403504.99], [409805.286, 7403492.33], [409704.07, 7402589.309], [409370.786, 7402666.986], [408933.338, 7403421.081], [409180.963, 7404460.313], [410312.023, 7404169.581], [409669.99, 7405466.501], [409019.912, 7405514.707], [407131.878, 7405982.74], [407141.236, 7406338.065], [405195.844, 7406900.603], [400930.796, 7405995.146], [400910.044, 7405130.897], [400509.669, 7405082.137], [400429.647, 7405554.3], [400571.998, 7406233.458], [400384.722, 7406761.881], [399962.238, 7406563.692], [399323.12, 7404872.413], [398215.928, 7403790.346], [398231.193, 7402574.683], [399016.23, 7400527.224], [398139.564, 7398444.578], [396887.983, 7400847.966], [396697.937, 7401010.873], [396363.795, 7400669.71], [396415.857, 7400204.099], [395959.526, 7400320.459], [395451.998, 7399891.508], [394573.685, 7399441.837], [394865.4, 7398595.81], [393982.613, 7398307.446], [394421.55, 7398085.78], [394626.454, 7397675.495], [395191.322, 7397666.614], [394927.067, 7396548.116], [394577.366, 7396498.411], [392396.412, 7396859.745], [392291.068, 7396323.983], [391885.833, 7396659.402], [391714.807, 7395992.905], [392366.034, 7394468.287], [391311.903, 7394819.072], [391123.418, 7394240.863], [390770.706, 7394365.657], [390340.125, 7393946.418], [390534.912, 7392093.582], [387918.462, 7393185.221], [387811.585, 7391577.251], [386995.896, 7391658.872], [386882.255, 7390815.436], [385770.577, 7390951.547], [384452.725, 7389319.337], [383252.605, 7388847.673], [381942.642, 7389349.549], [381388.299, 7389101.684], [381303.081, 7387578.83], [379595.512, 7386018.158], [380182.229, 7384404.137], [380123.289, 7383810.828], [379548.425, 7383864.17], [378964.329, 7383455.164], [377639.935, 7383307.282], [376373.798, 7384164.594], [375610.252, 7385913.433], [374630.127, 7385773.148], [374375.017, 7386491.0], [373979.822, 7386366.384], [374311.468, 7385569.834], [375540.193, 7385256.254], [376190.216, 7383319.552], [376808.319, 7383341.428], [376816.007, 7382186.719], [374507.15, 7380477.581], [374999.359, 7380042.714], [374880.006, 7379860.34], [372871.049, 7379467.226], [372619.566, 7379730.511], [372024.946, 7381366.52], [370354.787, 7380930.152], [370856.99, 7378554.661], [363936.462, 7375115.105], [361471.629, 7378187.813], [359656.999, 7378966.417], [358764.992, 7379662.425], [358370.344, 7381426.173], [357653.477, 7381647.716], [357679.894, 7381813.57], [357670.717, 7381876.108], [357598.318, 7382003.693], [357493.46, 7382122.765], [357441.346, 7382211.318], [357418.52, 7382282.514], [357396.851, 7382509.968], [357173.002, 7382965.17], [357166.772, 7383091.697], [357247.519, 7383364.472], [357368.782, 7383471.087], [357628.54, 7383491.145], [357691.091, 7383542.36], [357925.897, 7383806.034], [358077.029, 7383907.231], [358197.436, 7383951.761], [358410.75, 7384096.186], [358525.489, 7384279.249], [358580.313, 7384336.809], [358698.557, 7384421.52], [358869.159, 7384509.8], [359090.987, 7384665.866], [359412.282, 7385107.857], [359597.55, 7385253.589], [359694.572, 7385313.23], [359775.768, 7385333.509], [360036.302, 7385327.451], [360222.085, 7385352.926], [360401.836, 7385422.771], [360522.833, 7385523.369], [360564.644, 7385603.578], [360593.593, 7385840.683], [360665.921, 7385973.601], [360721.426, 7386133.348], [360774.293, 7386541.664], [360829.277, 7386733.496], [360894.852, 7386850.677], [361242.043, 7387245.374], [361278.673, 7387343.865], [361372.675, 7387511.847], [361403.192, 7387608.624], [361422.967, 7387820.093], [361495.296, 7387953.009], [361544.657, 7388241.259], [361603.966, 7388352.725], [361608.116, 7388486.782], [361591.224, 7388555.696], [361502.499, 7388720.106], [361482.885, 7388817.192], [361520.346, 7388933.699], [361546.46, 7389108.793], [361550.486, 7389545.436], [361639.881, 7389918.022], [361599.736, 7390266.515], [361610.402, 7390483.316], [361646.154, 7390685.133], [361816.085, 7390993.744], [362021.897, 7391528.274], [362060.355, 7391691.683], [362090.852, 7391948.224], [362081.436, 7392047.49], [362047.091, 7392161.043], [361814.513, 7392446.671], [361785.968, 7392511.456], [361702.862, 7393079.383], [361601.833, 7393373.582], [361524.854, 7393482.824], [361496.948, 7393577.677], [361472.574, 7393804.895], [361476.905, 7393969.266], [361556.846, 7394261.672], [361561.491, 7394659.118], [361673.329, 7395017.041], [361659.831, 7395092.573], [361561.29, 7395300.149], [361525.511, 7395466.059], [361418.929, 7395788.858], [361399.301, 7396116.104], [361404.738, 7396384.904], [361420.905, 7396431.717], [361563.875, 7396616.079], [361601.908, 7396751.41], [361604.344, 7396940.061], [361751.124, 7397168.309], [361793.403, 7397283.179], [361781.054, 7397601.751], [361806.355, 7397798.462], [361937.458, 7398214.937], [361980.998, 7398275.424], [362066.996, 7398338.193], [362353.47, 7398437.66], [362437.815, 7398504.597], [362493.182, 7398608.245], [362547.716, 7398908.873], [362495.387, 7399413.81], [362526.214, 7399581.899], [362587.329, 7399705.144], [362615.207, 7399839.337], [362648.558, 7400173.996], [362618.623, 7400471.601], [362629.405, 7400603.316], [362682.663, 7400859.154], [362780.11, 7400998.442], [362836.286, 7401194.017], [362928.14, 7401341.612], [362999.477, 7401636.592], [363022.532, 7401811.797], [363164.899, 7402044.991], [363153.027, 7402125.778], [363082.784, 7402203.591], [363052.584, 7402279.302], [363051.788, 7402575.996], [363088.787, 7402632.215], [363205.872, 7402724.401], [363266.265, 7402845.556], [363392.472, 7403231.937], [363459.737, 7403330.696], [363599.883, 7403481.791], [363676.21, 7403678.302], [363674.223, 7403756.597], [363635.493, 7403900.915], [363473.386, 7404219.986], [363300.697, 7404724.019], [363158.273, 7405036.062], [362964.126, 7405707.57], [362935.135, 7406001.713], [362961.982, 7406094.558], [362966.481, 7406220.599], [362952.736, 7406265.392], [362970.89, 7406384.735], [362967.95, 7406561.306], [362920.633, 7406850.377], [362856.558, 7407008.054], [362773.958, 7407118.554], [362562.563, 7407259.772], [362503.208, 7407314.941], [362475.791, 7407366.497], [362477.816, 7407522.729], [362529.903, 7407716.48], [362644.494, 7407876.938], [362671.858, 7407979.771], [362684.117, 7408101.392], [362651.613, 7408365.675], [362666.703, 7408425.018], [362735.981, 7408601.852], [362822.45, 7408683.582], [362911.719, 7408703.04], [362984.419, 7408751.378], [363051.794, 7408930.302], [363082.287, 7408976.859], [363153.605, 7409037.307], [363345.139, 7409133.626], [363535.127, 7409199.979], [363703.183, 7409191.299], [363966.944, 7409131.564], [364109.91, 7409142.219], [364216.41, 7409184.798], [364304.94, 7409306.514], [364342.374, 7409527.081], [364329.147, 7409776.32], [364336.878, 7410004.439], [364289.364, 7410351.697], [364195.522, 7410741.866], [364201.578, 7411066.174], [364114.014, 7411247.748], [364072.084, 7411523.794], [364079.058, 7411763.944], [364153.29, 7411871.325], [364232.077, 7411938.498], [364362.467, 7411989.703], [364428.99, 7411997.212], [364576.884, 7411979.666], [364787.348, 7411917.683], [364934.928, 7411838.017], [365044.042, 7411749.772], [365135.949, 7411630.157], [365262.495, 7411308.874], [365312.521, 7411250.895], [365686.726, 7410950.383], [365955.327, 7410563.698], [366040.257, 7410472.366], [366171.888, 7410395.316], [366257.563, 7410378.073], [366600.549, 7410371.221], [366741.465, 7410381.959], [366848.874, 7410410.007], [367020.453, 7410489.714], [367246.865, 7410693.575], [367340.874, 7410846.312], [367369.907, 7410979.433], [367370.089, 7411091.605], [367312.527, 7411324.159], [367109.187, 7411900.731], [367102.606, 7411939.022], [367129.343, 7412118.312], [367213.186, 7412213.321], [367577.158, 7412500.176], [367625.587, 7412560.463], [367741.316, 7413295.331], [367685.022, 7413561.869], [367737.922, 7413742.208], [367904.78, 7414018.388], [367955.823, 7414202.805], [368029.806, 7414356.26], [368070.115, 7414629.216], [368037.929, 7414842.767], [367926.086, 7415073.331], [367557.05, 7416156.95], [367405.154, 7416443.116], [367239.646, 7416633.627], [367160.46, 7416770.85], [367146.807, 7416835.475], [367165.085, 7416948.959], [367112.96, 7417219.374], [367124.029, 7417569.526], [367097.152, 7417816.965], [367061.411, 7417934.498], [366999.516, 7418051.012], [366825.456, 7418496.26], [366717.935, 7418734.705], [366651.65, 7418841.366], [366455.634, 7419343.559], [366442.536, 7419476.288], [366452.033, 7419784.432], [366439.284, 7419818.965], [366053.825, 7420453.035], [366032.416, 7420570.565], [366098.018, 7420735.217], [366099.926, 7420839.378], [366068.75, 7420961.441], [365975.707, 7421161.243], [365821.541, 7421697.378], [365645.144, 7421913.951], [365507.451, 7421963.905], [365264.73, 7422003.844], [365071.102, 7422059.021], [364944.938, 7422170.484], [364838.997, 7422354.972], [364814.451, 7422452.625], [364778.442, 7422877.716], [364749.661, 7422971.603], [364393.358, 7423695.719], [364085.584, 7424108.267], [363933.18, 7424393.671], [363850.251, 7424488.654], [363673.402, 7424627.064], [363594.126, 7424715.804], [363551.617, 7424780.386], [363464.616, 7425050.032], [363188.173, 7425308.434], [363002.898, 7425545.599], [362883.357, 7425772.998], [362856.628, 7425973.027], [362852.227, 7426177.781], [362876.858, 7426433.03], [362879.518, 7426902.062], [362933.478, 7427073.403], [363019.039, 7427271.025], [363044.32, 7427432.012], [363123.7, 7427662.054], [363093.905, 7427737.961], [363015.366, 7427804.596], [362957.901, 7427888.073], [362969.765, 7428095.924], [362898.074, 7428282.507], [362856.255, 7428499.426], [362854.203, 7428850.441], [362935.721, 7429012.204], [362974.886, 7429170.349], [362978.107, 7429332.591], [362944.529, 7429482.881], [362974.583, 7429587.446], [362963.031, 7429736.456], [362388.873, 7430354.328], [362270.677, 7430397.486], [361976.421, 7430358.32], [361811.663, 7430393.742], [361634.324, 7430491.447], [361521.03, 7430623.8], [361477.261, 7430780.482], [361504.187, 7431021.591], [361498.762, 7431332.575], [361301.475, 7431732.018], [361158.222, 7431942.156], [361127.786, 7432047.993], [361129.875, 7432162.15], [361188.816, 7432475.698], [361172.91, 7432590.815], [361120.416, 7432659.757], [361089.264, 7432677.475], [361021.573, 7432687.124], [360915.395, 7432652.723], [360827.258, 7432655.439], [360798.117, 7432673.043], [360768.361, 7432716.732], [360741.197, 7432846.486], [360711.74, 7432896.176], [360483.615, 7433056.718], [360411.231, 7433128.773], [360363.794, 7433217.504], [360350.836, 7433312.393], [360402.012, 7433443.974], [360506.396, 7433594.699], [360526.138, 7433663.821], [360510.624, 7433748.837], [360270.036, 7434126.554], [360200.272, 7434284.64], [360155.022, 7434339.202], [360060.537, 7434410.397], [359881.192, 7434620.481], [359824.759, 7434659.799], [359578.098, 7435379.826], [368743.458, 7435322.348], [368350.029, 7435823.008], [368979.937, 7436211.462], [369532.563, 7435182.57]]]}}, {\\\"id\\\": \\\"17\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kaustinen\\\", \\\"elakelaisten_osuus\\\": 25.6, \\\"freshwarea\\\": 7.2, \\\"gml_id\\\": 1601100397, \\\"landarea\\\": 353.92, \\\"namefin\\\": \\\"Kaustinen\\\", \\\"nameswe\\\": \\\"Kaustby\\\", \\\"natcode\\\": \\\"236\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 361.12}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[340855.74, 7063295.99], [343619.399, 7062277.44], [348181.099, 7059859.886], [349345.832, 7058857.682], [348783.199, 7058670.386], [350662.676, 7055031.222], [352998.076, 7053684.524], [353971.17, 7052391.166], [354000.351, 7052961.844], [354166.053, 7053167.571], [354753.386, 7052693.054], [355234.123, 7053010.949], [355095.879, 7053200.511], [355555.922, 7053529.154], [355999.493, 7053151.35], [354665.976, 7051593.978], [354208.134, 7051862.952], [353432.667, 7050443.076], [353961.746, 7049692.385], [353776.885, 7049560.067], [353508.522, 7048401.236], [353367.545, 7048485.754], [353073.37, 7047984.33], [352920.95, 7047856.85], [352980.019, 7047769.599], [352760.876, 7047634.99], [352645.633, 7047644.051], [352507.231, 7047470.066], [352748.026, 7047233.904], [352789.636, 7047383.2], [352964.543, 7047350.3], [352918.254, 7047105.757], [352829.619, 7047102.871], [352812.718, 7047129.635], [351926.993, 7046892.101], [347840.168, 7044696.36], [346318.951, 7046763.956], [345408.414, 7046129.192], [344901.417, 7046127.144], [344601.802, 7047031.675], [345597.382, 7047744.429], [344977.616, 7048586.201], [343850.803, 7048650.267], [343276.982, 7049332.033], [342693.784, 7048721.573], [342644.203, 7048360.656], [338878.267, 7046765.863], [338746.497, 7046812.896], [338506.426, 7046716.246], [338509.436, 7046591.828], [338225.537, 7046462.149], [337970.702, 7046904.436], [337826.804, 7046897.99], [337865.866, 7046749.578], [337718.876, 7046707.224], [337726.499, 7046583.47], [337549.152, 7046466.442], [337453.455, 7046227.383], [337220.336, 7046144.572], [333567.123, 7043747.806], [333511.413, 7049104.027], [330048.196, 7051796.216], [330505.135, 7052318.143], [329919.754, 7052880.098], [330288.525, 7053176.113], [330117.7, 7053663.605], [329010.342, 7053435.068], [329044.917, 7054532.602], [329488.815, 7054221.312], [330054.905, 7054772.204], [329876.717, 7055049.447], [330167.681, 7055524.439], [329808.909, 7055773.017], [329689.804, 7056775.221], [329586.652, 7057072.159], [329258.998, 7057500.569], [328872.451, 7056975.044], [328348.451, 7057109.247], [327740.45, 7056046.106], [326772.708, 7056566.966], [326642.998, 7056123.089], [326166.776, 7056154.334], [325898.683, 7055701.029], [322684.58, 7059188.11], [323249.655, 7059332.708], [324201.634, 7058549.327], [324397.56, 7058447.331], [324527.743, 7058699.894], [324243.484, 7058969.512], [324769.167, 7059100.098], [324925.453, 7059544.041], [324431.884, 7060307.208], [324291.708, 7060555.341], [325926.953, 7061683.339], [325692.42, 7063391.251], [325264.099, 7064134.802], [326702.412, 7063484.011], [326832.996, 7063304.619], [326913.888, 7062558.894], [327506.187, 7061821.083], [328227.139, 7060897.697], [328936.369, 7060821.321], [330352.027, 7061777.576], [332213.217, 7062495.019], [334271.841, 7064707.527], [336906.316, 7062947.037], [338953.924, 7064950.882], [340855.74, 7063295.99]], [[326402.468, 7058215.614], [326971.092, 7058301.574], [327080.648, 7057735.383], [326763.158, 7057965.663], [326551.978, 7057560.865], [326703.142, 7057210.065], [326104.255, 7057407.028], [325532.798, 7057673.873], [325107.334, 7057878.341], [325017.643, 7058232.471], [325251.749, 7058481.009], [326402.468, 7058215.614]]]}}, {\\\"id\\\": \\\"18\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Keuruu\\\", \\\"elakelaisten_osuus\\\": 38.2, \\\"freshwarea\\\": 172.6, \\\"gml_id\\\": 1601100103, \\\"landarea\\\": 1257.97, \\\"namefin\\\": \\\"Keuruu\\\", \\\"nameswe\\\": \\\"Keuruu\\\", \\\"natcode\\\": \\\"249\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1430.57}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[372218.326, 6935135.598], [372926.096, 6935477.746], [374847.499, 6931101.398], [375469.069, 6927104.392], [373217.855, 6927114.746], [374668.373, 6925225.006], [376687.732, 6926554.051], [376826.6, 6926347.979], [377248.605, 6926402.991], [377210.478, 6926689.508], [378499.362, 6926862.409], [379454.742, 6926122.718], [375515.091, 6924192.629], [376198.3, 6923361.368], [380402.15, 6926078.927], [380875.85, 6925268.462], [380143.067, 6925507.298], [376482.758, 6923015.269], [377355.533, 6921947.367], [379224.73, 6923161.678], [379449.46, 6922939.945], [377552.867, 6921705.915], [377923.958, 6921251.864], [378143.806, 6921006.114], [378050.218, 6920623.404], [378155.388, 6920210.903], [378443.07, 6919792.938], [378365.027, 6919483.563], [378765.531, 6919147.369], [378749.151, 6918557.132], [379227.436, 6918557.194], [379439.117, 6918203.743], [381142.491, 6918563.86], [381285.029, 6917543.368], [381539.893, 6917589.746], [381693.279, 6915890.013], [382557.748, 6915943.054], [382968.969, 6916261.585], [383710.43, 6915910.756], [383898.706, 6916221.578], [384711.358, 6916118.082], [383004.765, 6912698.609], [386320.597, 6914063.098], [386951.494, 6913487.278], [387693.37, 6913735.74], [387535.785, 6914642.56], [389767.938, 6914972.405], [390459.528, 6914156.477], [389233.613, 6912769.978], [391015.217, 6911836.824], [391277.737, 6911128.563], [392455.231, 6911148.069], [394266.286, 6911524.329], [396388.29, 6911952.989], [399970.949, 6912665.932], [398730.031, 6908729.441], [397892.171, 6903484.783], [399808.415, 6902188.866], [397921.212, 6898837.623], [394359.983, 6899320.787], [392183.079, 6897094.918], [386726.012, 6888613.35], [389079.739, 6882556.808], [381259.133, 6878840.604], [379937.168, 6881504.273], [379201.603, 6881686.702], [378675.807, 6881952.619], [378090.986, 6881872.049], [378170.299, 6886338.911], [378639.592, 6889208.579], [378635.147, 6889220.43], [376079.118, 6890696.812], [375622.692, 6891614.555], [374979.752, 6892020.508], [373009.646, 6897253.956], [369899.841, 6899481.624], [369833.795, 6898652.126], [366021.274, 6896110.715], [366162.156, 6895374.285], [366491.486, 6895432.852], [366668.922, 6894420.74], [365958.247, 6893853.113], [365006.984, 6894481.373], [365526.887, 6894835.041], [365023.787, 6895762.506], [364936.019, 6894951.516], [364473.547, 6895084.276], [364624.779, 6896018.317], [364227.643, 6896154.213], [364024.992, 6895458.903], [362517.825, 6895281.64], [361261.513, 6895753.215], [361387.52, 6896053.702], [359167.866, 6898883.99], [358082.311, 6906176.708], [357328.096, 6905317.17], [355176.866, 6905410.076], [351709.824, 6905580.695], [348523.117, 6908389.531], [348370.354, 6910688.402], [347884.878, 6911249.475], [347148.85, 6911272.219], [346935.619, 6910860.52], [345809.974, 6912634.291], [345455.368, 6918226.112], [346809.505, 6920085.301], [350233.547, 6923119.684], [349972.567, 6923649.061], [355768.028, 6931075.644], [361807.394, 6926920.543], [362797.078, 6928629.543], [363038.414, 6928736.444], [362746.296, 6929459.528], [362504.795, 6929363.334], [361942.061, 6930776.119], [362711.194, 6931135.257], [362483.209, 6931740.306], [364786.11, 6932843.729], [365005.786, 6931897.527], [365668.543, 6932589.881], [366246.345, 6932750.553], [366352.819, 6932365.981], [365776.553, 6932199.31], [365851.934, 6931938.683], [366428.199, 6932105.355], [367232.015, 6929567.187], [368683.893, 6930774.065], [368884.285, 6931755.923], [370410.905, 6931947.235], [370494.994, 6932246.918], [371036.517, 6932014.307], [371944.61, 6932698.537], [371640.843, 6933095.55], [371680.354, 6933362.602], [371559.621, 6934149.749], [371729.058, 6935540.595], [371944.111, 6935657.861], [372218.326, 6935135.598]]]}}, {\\\"id\\\": \\\"19\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"H\\\\u00e4meenkyr\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 28.6, \\\"freshwarea\\\": 41.19, \\\"gml_id\\\": 1601100175, \\\"landarea\\\": 463.91, \\\"namefin\\\": \\\"H\\\\u00e4meenkyr\\\\u00f6\\\", \\\"nameswe\\\": \\\"Tavastkyro\\\", \\\"natcode\\\": \\\"108\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 505.1}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[299420.004, 6850770.354], [299858.417, 6850425.95], [300266.32, 6849598.41], [299981.439, 6848115.673], [300093.121, 6847168.958], [300513.738, 6846614.545], [299241.439, 6841628.914], [300004.596, 6842344.802], [301935.602, 6842602.016], [304643.033, 6842528.681], [304709.0, 6841239.413], [305349.708, 6839839.446], [305853.626, 6839216.358], [307984.308, 6841905.84], [308580.538, 6842517.022], [310086.087, 6844492.211], [311036.347, 6843906.982], [311373.106, 6842724.475], [312015.772, 6842699.842], [314955.55, 6845505.774], [313935.993, 6843341.248], [314209.98, 6840142.191], [313425.666, 6837757.058], [313807.862, 6835681.123], [313875.13, 6833059.91], [313466.916, 6832629.575], [311109.061, 6831687.279], [310320.578, 6829369.752], [308203.925, 6826970.481], [307564.707, 6825931.139], [306781.232, 6826148.349], [306858.584, 6826604.127], [306595.263, 6826698.904], [305493.287, 6826239.593], [305179.992, 6826498.246], [304599.092, 6826418.492], [304340.391, 6826640.883], [301755.028, 6826223.003], [297708.422, 6828597.687], [296575.524, 6828954.943], [293962.356, 6829479.405], [292694.158, 6829465.937], [291405.441, 6829696.794], [290982.526, 6831333.114], [290476.904, 6832296.812], [291936.694, 6834189.859], [291273.225, 6834911.684], [289257.447, 6836126.045], [288106.989, 6835569.413], [287064.918, 6834366.587], [286778.37, 6834309.846], [286298.281, 6834962.156], [285818.348, 6834851.058], [285642.413, 6835525.584], [284530.866, 6834895.12], [282269.024, 6837584.376], [280215.313, 6839376.199], [279990.099, 6839987.823], [279792.466, 6840641.314], [279169.002, 6843356.211], [279058.358, 6845083.295], [279903.756, 6847102.769], [281041.449, 6846513.224], [283831.162, 6847779.755], [287088.625, 6847447.417], [288322.139, 6846824.974], [289214.339, 6846081.962], [290205.675, 6845736.344], [290129.734, 6847119.355], [292096.026, 6847789.9], [293046.747, 6848091.924], [293203.967, 6848691.468], [294010.688, 6849378.869], [294358.921, 6849967.302], [294345.549, 6850241.412], [294495.274, 6850353.399], [294715.674, 6850088.543], [294944.507, 6849379.918], [295695.119, 6849531.258], [296105.206, 6849943.63], [296582.829, 6850003.497], [297001.217, 6849489.723], [297610.079, 6849432.687], [298033.668, 6848877.628], [298362.964, 6848689.433], [298658.113, 6849255.868], [298652.736, 6850184.768], [299121.128, 6850780.345], [299420.004, 6850770.354]]]}}, {\\\"id\\\": \\\"20\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Naantali\\\", \\\"elakelaisten_osuus\\\": 29.3, \\\"freshwarea\\\": 3.93, \\\"gml_id\\\": 1601100333, \\\"landarea\\\": 312.46, \\\"namefin\\\": \\\"Naantali\\\", \\\"nameswe\\\": \\\"N\\\\u00e5dendal\\\", \\\"natcode\\\": \\\"529\\\", \\\"seawarea\\\": 371.6, \\\"totalarea\\\": 687.99}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[213829.192, 6725561.012], [213661.102, 6725071.921], [213838.526, 6725252.75], [213876.098, 6724546.863], [214200.438, 6724859.907], [214543.966, 6725191.59], [214867.692, 6724763.287], [215135.324, 6724409.346], [215266.993, 6724215.947], [215157.497, 6723775.283], [215336.795, 6723204.646], [215302.359, 6722983.309], [215234.762, 6722487.617], [215181.584, 6722097.633], [215155.067, 6721903.175], [215116.349, 6721633.135], [214844.586, 6721378.805], [214797.831, 6721335.05], [214698.878, 6721104.647], [214665.476, 6721026.874], [214640.195, 6720968.01], [214577.92, 6720831.455], [214528.441, 6720697.793], [214230.514, 6720145.005], [214087.684, 6719498.749], [214634.917, 6719503.675], [215429.819, 6719711.561], [216599.045, 6719761.778], [218253.119, 6719700.01], [219086.463, 6719751.116], [219240.266, 6719420.246], [219647.97, 6719757.941], [219852.224, 6719632.751], [220054.069, 6719934.094], [220363.283, 6720151.551], [220809.825, 6720182.538], [221190.623, 6719246.801], [220693.96, 6718790.38], [220643.823, 6718091.578], [220890.714, 6717250.501], [221277.387, 6716924.233], [221784.181, 6717062.411], [222068.043, 6716812.246], [222668.953, 6716797.078], [223220.476, 6716213.93], [223993.953, 6716848.608], [224291.95, 6716710.128], [224600.522, 6716354.963], [224969.253, 6715404.941], [225518.294, 6715245.698], [226425.659, 6716001.766], [226108.258, 6716514.079], [226067.459, 6717326.551], [226425.797, 6717608.291], [226503.52, 6717984.744], [226840.298, 6717728.306], [227942.206, 6718041.726], [229329.751, 6718497.834], [229222.228, 6718744.638], [230299.548, 6718842.165], [230673.238, 6717304.81], [230067.829, 6717171.967], [230058.337, 6716745.867], [229782.415, 6716334.403], [229248.494, 6715975.862], [229179.204, 6715206.87], [229191.27, 6714874.245], [229246.922, 6714869.872], [229259.79, 6714803.236], [229014.096, 6714709.555], [229516.969, 6713864.285], [229254.67, 6713787.415], [229589.11, 6712650.956], [230509.85, 6711699.204], [230992.164, 6711298.417], [230780.77, 6710476.329], [229751.474, 6710366.715], [229303.005, 6709852.733], [229072.472, 6709282.223], [229216.712, 6708422.847], [229470.172, 6708168.048], [229590.134, 6705435.827], [228858.24, 6703886.203], [228348.717, 6703323.663], [228185.398, 6702828.43], [228155.912, 6702439.352], [228011.532, 6702274.564], [228284.797, 6701799.795], [228333.285, 6701715.552], [228691.925, 6701676.26], [229188.53, 6701412.634], [228253.615, 6700171.949], [228193.083, 6699615.667], [227792.948, 6698615.937], [226916.101, 6696420.888], [226297.424, 6694335.234], [224521.111, 6693052.248], [222873.11, 6692976.464], [220965.074, 6691634.205], [217665.069, 6691300.089], [215538.797, 6693707.137], [214557.038, 6694143.533], [214576.964, 6694548.751], [214314.243, 6694924.87], [214832.461, 6695340.857], [215055.74, 6695765.069], [214246.981, 6696330.288], [213460.961, 6696600.861], [212936.633, 6696405.094], [212496.388, 6696219.182], [211728.219, 6695806.303], [211668.861, 6695727.741], [211352.099, 6694951.753], [210129.898, 6695288.121], [208849.996, 6693802.315], [207027.919, 6694865.842], [206493.673, 6697411.293], [204505.562, 6697220.412], [203926.596, 6700343.523], [202087.844, 6702233.877], [201459.584, 6704052.32], [202416.079, 6705973.116], [200422.541, 6707091.431], [198336.176, 6705803.473], [197854.925, 6706736.992], [198507.546, 6708470.296], [198928.357, 6708887.955], [197649.599, 6710433.514], [198381.306, 6711944.119], [199883.428, 6712104.533], [199787.494, 6713076.908], [200014.48, 6714121.905], [199729.771, 6715828.949], [203663.663, 6715607.006], [204900.481, 6716119.568], [206231.228, 6717947.675], [206825.9, 6717720.804], [207715.057, 6717548.731], [208419.783, 6717493.374], [208229.426, 6717701.334], [207944.572, 6718048.583], [207866.453, 6718885.384], [207778.093, 6719110.198], [208027.195, 6719299.329], [208360.244, 6719094.54], [208558.563, 6719051.384], [208486.602, 6719331.368], [208477.544, 6719570.733], [208866.164, 6719773.628], [208986.515, 6720127.157], [208735.315, 6721366.326], [208586.659, 6721440.512], [209381.041, 6723213.336], [209622.708, 6724425.277], [209751.23, 6724719.66], [210611.713, 6724453.203], [210800.714, 6724257.575], [211129.99, 6723891.315], [211468.966, 6723983.186], [211863.904, 6724213.416], [212267.27, 6724810.316], [212666.578, 6725094.901], [213020.784, 6724988.746], [213829.192, 6725561.012]], [[211887.792, 6701645.598], [212419.222, 6701693.127], [211742.24, 6699582.572], [210864.557, 6699002.17], [210622.052, 6700109.849], [211063.349, 6701755.139], [211887.792, 6701645.598]]]}}, {\\\"id\\\": \\\"21\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Huittinen\\\", \\\"elakelaisten_osuus\\\": 33.4, \\\"freshwarea\\\": 6.95, \\\"gml_id\\\": 1601100160, \\\"landarea\\\": 532.64, \\\"namefin\\\": \\\"Huittinen\\\", \\\"nameswe\\\": \\\"Huittinen\\\", \\\"natcode\\\": \\\"102\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 539.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[264807.819, 6804306.108], [265336.518, 6803152.676], [266037.315, 6800566.392], [266329.427, 6800128.687], [265481.475, 6799810.81], [265999.846, 6799373.47], [266252.788, 6798694.306], [266428.884, 6798044.509], [266836.777, 6797785.92], [267709.741, 6797790.94], [268451.747, 6797942.93], [268854.779, 6797729.033], [269445.303, 6797788.933], [269478.477, 6797139.966], [269892.904, 6797253.724], [269839.516, 6797756.623], [272987.479, 6797581.89], [274585.086, 6796929.362], [275577.231, 6796315.678], [275568.07, 6795559.752], [276051.106, 6795755.649], [275911.884, 6796121.768], [277028.406, 6795428.499], [277639.413, 6796110.485], [278967.265, 6794937.031], [278407.536, 6794586.992], [281615.645, 6792413.385], [282591.859, 6789184.159], [280405.736, 6789563.086], [280639.54, 6785440.994], [281520.333, 6784788.142], [281499.02, 6783427.186], [282730.952, 6782899.625], [283028.074, 6782373.781], [280564.708, 6780119.242], [279796.938, 6779300.946], [280812.362, 6777713.99], [284104.602, 6779172.354], [284595.879, 6777710.317], [284299.649, 6777254.653], [281989.973, 6776068.675], [282345.246, 6774309.421], [281854.099, 6774673.529], [281328.103, 6774419.726], [280586.879, 6774590.816], [280229.793, 6774999.512], [280428.268, 6775311.529], [280152.535, 6775747.097], [279706.988, 6775419.412], [279415.25, 6775687.155], [278573.301, 6775864.744], [278154.907, 6776087.149], [277814.511, 6776495.121], [277308.152, 6779151.894], [274959.606, 6781270.399], [274390.899, 6778778.428], [275428.343, 6777632.396], [275333.035, 6776639.634], [274628.928, 6775778.569], [274731.774, 6775041.26], [274526.321, 6774665.245], [273633.567, 6774623.592], [274479.942, 6772934.131], [274472.51, 6771497.022], [273760.975, 6769282.367], [272984.656, 6769738.991], [272558.459, 6770135.186], [271813.852, 6769496.828], [267926.313, 6768451.73], [267534.562, 6768963.192], [264478.663, 6770969.105], [264179.474, 6770470.666], [263680.23, 6770884.356], [263142.9, 6771414.672], [263133.068, 6771846.568], [262130.106, 6772503.933], [261070.704, 6777636.777], [261628.054, 6777951.94], [258775.105, 6786546.675], [257857.082, 6787773.348], [256997.76, 6790195.252], [259279.988, 6793089.133], [258174.839, 6793955.76], [258955.778, 6794452.525], [259011.851, 6795243.666], [260447.953, 6794135.422], [260517.096, 6794468.61], [260977.567, 6794749.789], [261186.609, 6795011.854], [261236.8, 6796008.788], [261614.126, 6796475.47], [261921.493, 6797169.814], [261042.989, 6798083.878], [261215.647, 6798409.508], [261823.927, 6798138.535], [262979.515, 6799631.995], [264680.039, 6800779.63], [264692.351, 6801683.504], [263766.103, 6804151.454], [264362.048, 6804367.733], [264807.819, 6804306.108]]]}}, {\\\"id\\\": \\\"22\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Yp\\\\u00e4j\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 32.6, \\\"freshwarea\\\": 0.49, \\\"gml_id\\\": 1601100191, \\\"landarea\\\": 182.76, \\\"namefin\\\": \\\"Yp\\\\u00e4j\\\\u00e4\\\", \\\"nameswe\\\": \\\"Yp\\\\u00e4j\\\\u00e4\\\", \\\"natcode\\\": \\\"981\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 183.25}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[297451.456, 6756204.328], [297931.884, 6755403.995], [299361.869, 6754184.491], [300509.591, 6752744.301], [301425.997, 6749406.197], [301971.182, 6747926.84], [302378.007, 6747424.962], [302708.357, 6747538.716], [302000.587, 6744994.053], [302366.744, 6744514.121], [302940.981, 6744322.009], [303484.017, 6743917.414], [304237.405, 6739157.851], [300009.447, 6736955.048], [297095.812, 6738030.047], [296901.865, 6736363.869], [295788.771, 6738326.977], [291982.254, 6741912.91], [290626.556, 6743768.628], [293070.053, 6748007.071], [295059.644, 6749230.72], [294609.897, 6749724.339], [291799.465, 6750489.39], [291469.115, 6750947.219], [291135.676, 6750674.748], [290386.608, 6750853.006], [290129.304, 6751233.0], [290172.784, 6752274.014], [290311.611, 6755994.397], [290933.69, 6756744.368], [291432.64, 6756923.15], [297451.456, 6756204.328]]]}}, {\\\"id\\\": \\\"23\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kokkola\\\", \\\"elakelaisten_osuus\\\": 25.6, \\\"freshwarea\\\": 41.99, \\\"gml_id\\\": 1601100448, \\\"landarea\\\": 1445.44, \\\"namefin\\\": \\\"Kokkola\\\", \\\"nameswe\\\": \\\"Karleby\\\", \\\"natcode\\\": \\\"272\\\", \\\"seawarea\\\": 1243.37, \\\"totalarea\\\": 2730.8}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[353998.891, 7110725.101], [354053.497, 7110689.86], [354268.007, 7109974.503], [352930.657, 7106827.52], [351894.437, 7107882.928], [352245.381, 7108887.683], [351822.165, 7109127.617], [352365.044, 7111142.042], [353998.891, 7110725.101]]], [[[329149.423, 7113662.138], [329762.186, 7112237.981], [335973.546, 7105699.832], [339081.286, 7098673.058], [339837.41, 7099518.146], [340750.179, 7098151.94], [341379.792, 7097210.048], [340983.369, 7096912.228], [342492.297, 7095255.626], [341668.474, 7094609.544], [341095.197, 7094632.929], [340092.691, 7093574.718], [340168.184, 7092993.865], [340109.731, 7092592.844], [339185.469, 7091751.412], [338591.821, 7091928.309], [338300.288, 7092415.653], [337981.286, 7093198.735], [336970.342, 7093984.856], [336457.668, 7094098.858], [336265.842, 7093904.584], [336435.249, 7093521.597], [336776.151, 7093553.162], [337320.782, 7092973.289], [336259.608, 7092247.084], [336189.334, 7091923.442], [336700.556, 7092163.051], [337025.392, 7091877.223], [336524.154, 7091245.615], [339146.659, 7088293.018], [338699.614, 7087844.275], [339341.91, 7087500.534], [339803.384, 7087014.822], [340550.515, 7087411.457], [340330.033, 7087694.684], [339785.777, 7087628.6], [339318.322, 7088071.653], [339678.371, 7088317.923], [339449.961, 7088875.853], [339751.391, 7089178.49], [338959.641, 7090583.641], [340249.967, 7091530.636], [340880.961, 7090723.55], [341086.711, 7090745.133], [341289.323, 7090409.835], [340654.694, 7090099.457], [341429.26, 7089332.458], [340829.375, 7088871.932], [341279.515, 7088523.921], [341200.553, 7088270.046], [341834.648, 7088057.19], [343186.243, 7085914.396], [342487.806, 7085411.567], [341953.596, 7085999.462], [342213.142, 7086322.589], [341504.196, 7086839.53], [341035.531, 7087645.473], [340789.113, 7087241.848], [340967.292, 7086931.48], [340724.166, 7086625.602], [340146.743, 7086198.627], [339599.596, 7085347.763], [339129.948, 7085954.726], [338680.093, 7085265.266], [340332.938, 7084862.48], [340619.855, 7085291.715], [340875.272, 7085274.806], [340852.183, 7084735.25], [342728.908, 7084276.4], [343063.132, 7083912.23], [342630.684, 7083477.715], [342889.818, 7083232.395], [343287.438, 7083647.927], [343513.103, 7084068.043], [343890.377, 7083997.745], [345722.833, 7079136.526], [347453.496, 7077830.35], [347092.372, 7077477.563], [347593.95, 7076951.289], [347186.357, 7076561.748], [347491.633, 7076241.797], [347899.622, 7076631.985], [348151.837, 7076368.617], [348460.668, 7076663.102], [351298.905, 7073363.513], [359478.022, 7063876.663], [360611.099, 7063021.249], [362726.85, 7060697.021], [361831.441, 7059842.605], [364539.532, 7056846.879], [364642.616, 7056512.058], [364123.423, 7056043.226], [364320.52, 7055825.039], [363611.719, 7055184.089], [363600.898, 7054727.796], [364155.185, 7054892.655], [364689.502, 7054297.312], [365066.24, 7054638.952], [365452.915, 7054213.527], [366131.198, 7054589.954], [366624.328, 7055038.96], [366929.68, 7054703.574], [367615.541, 7055326.944], [371310.62, 7051260.955], [372000.551, 7050495.081], [372366.465, 7050892.728], [375370.463, 7048084.477], [374026.326, 7046622.371], [372978.266, 7045479.255], [370959.148, 7047641.992], [368584.366, 7045298.537], [367291.436, 7045895.014], [366713.141, 7045822.86], [366483.128, 7046098.7], [366394.242, 7045682.928], [367054.39, 7045437.739], [367346.154, 7045368.174], [367574.977, 7045514.404], [368361.798, 7045084.633], [367673.776, 7044400.547], [367400.966, 7044688.69], [366662.923, 7043990.815], [362395.677, 7047666.317], [362555.475, 7047780.68], [362814.762, 7047863.404], [362792.097, 7048218.522], [363587.214, 7048897.567], [363193.361, 7049847.635], [363043.621, 7049840.926], [362978.199, 7049290.843], [363040.234, 7048776.159], [361992.935, 7048013.702], [355999.493, 7053151.35], [355555.922, 7053529.154], [355095.879, 7053200.511], [355234.123, 7053010.949], [354753.386, 7052693.054], [354166.053, 7053167.571], [354000.351, 7052961.844], [353971.17, 7052391.166], [352998.076, 7053684.524], [350662.676, 7055031.222], [348783.199, 7058670.386], [349345.832, 7058857.682], [348181.099, 7059859.886], [343619.399, 7062277.44], [340855.74, 7063295.99], [338953.924, 7064950.882], [336237.61, 7067749.705], [333027.085, 7070397.809], [332046.553, 7071358.332], [331240.761, 7072458.508], [326421.797, 7077190.967], [325213.974, 7075280.634], [325216.489, 7073068.132], [324522.137, 7072617.613], [323479.033, 7074466.543], [322655.938, 7074189.391], [322073.108, 7075220.166], [321500.39, 7075188.224], [320962.029, 7075627.377], [320693.229, 7075512.175], [320539.87, 7075055.313], [319350.795, 7075595.701], [317098.858, 7074870.674], [316589.966, 7074396.325], [316664.381, 7074058.36], [316507.043, 7073878.05], [316236.263, 7074065.869], [315735.4, 7073594.868], [315677.761, 7073088.416], [315551.871, 7072650.646], [314832.381, 7071410.855], [314727.342, 7070911.836], [314096.476, 7070968.9], [313541.075, 7071187.623], [313115.078, 7071689.876], [312416.297, 7072431.102], [311760.674, 7072838.133], [311193.13, 7073513.129], [311318.356, 7073767.683], [311591.596, 7073472.546], [311946.395, 7073513.712], [311691.634, 7074187.754], [311028.805, 7074056.564], [310837.425, 7073823.976], [306539.074, 7077742.32], [304434.679, 7079507.56], [303549.675, 7079942.708], [302407.634, 7079594.368], [302416.55, 7079106.889], [301248.92, 7078745.212], [301112.326, 7079187.337], [299553.595, 7078696.979], [299494.166, 7078263.467], [299694.209, 7077891.041], [299399.036, 7077481.529], [299255.144, 7078039.314], [299015.297, 7078375.488], [299315.016, 7078590.46], [299168.969, 7078795.357], [298918.854, 7078786.958], [297403.704, 7079236.489], [297297.234, 7079120.232], [297181.061, 7079155.977], [297122.559, 7079319.902], [296048.421, 7079638.589], [296771.245, 7081578.462], [297574.143, 7082650.797], [296912.295, 7084548.425], [296965.458, 7085083.322], [296784.793, 7085450.62], [295613.005, 7088597.752], [295613.176, 7088597.811], [295771.153, 7088651.754], [295547.431, 7089121.056], [295407.502, 7089166.136], [295350.159, 7089325.653], [295341.074, 7090096.11], [295048.765, 7090201.471], [294820.461, 7090893.349], [294814.535, 7090891.257], [294685.523, 7090845.724], [294625.992, 7090960.817], [294467.242, 7091024.318], [294288.648, 7091147.349], [294292.616, 7091679.163], [294511.641, 7091683.074], [294514.867, 7091683.132], [291807.56, 7098121.415], [269757.326, 7106576.967], [272839.905, 7110397.907], [273507.435, 7111158.895], [274194.063, 7111873.74], [275093.025, 7112720.642], [276027.459, 7113507.995], [276801.211, 7114097.417], [278585.47, 7115370.967], [282850.86, 7118174.901], [283716.695, 7118694.823], [284594.745, 7119169.654], [285776.955, 7119731.965], [294973.677, 7123760.451], [329149.423, 7113662.138]]]]}}, {\\\"id\\\": \\\"24\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Myn\\\\u00e4m\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 30.6, \\\"freshwarea\\\": 2.52, \\\"gml_id\\\": 1601100235, \\\"landarea\\\": 519.8, \\\"namefin\\\": \\\"Myn\\\\u00e4m\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Myn\\\\u00e4m\\\\u00e4ki\\\", \\\"natcode\\\": \\\"503\\\", \\\"seawarea\\\": 13.77, \\\"totalarea\\\": 536.09}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[237353.515, 6758229.25], [240181.567, 6750860.31], [241448.51, 6749770.306], [241378.984, 6749380.186], [241430.103, 6748976.892], [241605.691, 6748979.851], [241979.368, 6749312.976], [250110.717, 6742255.941], [247977.626, 6743542.751], [232273.868, 6737930.348], [228234.449, 6734016.495], [227283.908, 6733606.723], [226866.94, 6733274.029], [226260.677, 6733167.953], [226233.872, 6733580.708], [226050.54, 6733718.055], [225788.011, 6733485.343], [225832.68, 6733078.948], [225408.917, 6732872.713], [225525.804, 6732260.921], [225537.864, 6731983.545], [225325.999, 6731505.884], [224989.034, 6731132.692], [224623.126, 6731555.67], [224225.733, 6731180.778], [223878.064, 6730815.329], [222735.96, 6730009.524], [222422.247, 6729859.558], [222239.72, 6729485.544], [222406.589, 6729193.856], [222128.468, 6729102.305], [221887.687, 6728162.348], [221142.584, 6728143.92], [220457.886, 6727889.002], [220172.966, 6727873.096], [219839.239, 6728367.315], [219663.096, 6727909.513], [219774.628, 6727270.398], [219486.322, 6726942.395], [219232.917, 6727086.224], [219031.072, 6727662.931], [218330.687, 6727542.367], [216812.833, 6728284.115], [213838.526, 6725252.75], [213661.102, 6725071.921], [213829.192, 6725561.012], [214247.914, 6726375.842], [215307.883, 6728448.182], [214670.494, 6730954.385], [214102.614, 6731574.56], [214052.214, 6732507.26], [214397.682, 6732266.342], [215008.996, 6732401.98], [215236.813, 6732893.191], [215029.506, 6733170.96], [215391.116, 6733377.895], [215472.418, 6733801.782], [215809.634, 6733823.628], [216008.341, 6734373.009], [215775.222, 6734872.012], [215742.297, 6735258.537], [216332.378, 6735969.405], [216410.642, 6736154.744], [216351.445, 6737105.625], [216765.475, 6736758.745], [216853.485, 6736847.54], [216496.165, 6737664.367], [216814.916, 6737991.75], [216859.702, 6738332.962], [215894.062, 6741003.229], [216402.162, 6744543.511], [216583.581, 6744890.601], [216986.432, 6745157.51], [218583.733, 6746517.55], [220079.665, 6749217.69], [221256.67, 6749980.281], [221705.817, 6749337.675], [221808.962, 6749399.166], [221542.303, 6750160.126], [224330.069, 6751881.107], [225517.022, 6753464.127], [227866.024, 6755671.553], [230380.491, 6758842.746], [232568.306, 6757830.857], [231976.774, 6759876.199], [235893.98, 6761936.978], [237353.515, 6758229.25]]]}}, {\\\"id\\\": \\\"25\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kauniainen\\\", \\\"elakelaisten_osuus\\\": 23.3, \\\"freshwarea\\\": 0.11, \\\"gml_id\\\": 1601100395, \\\"landarea\\\": 5.89, \\\"namefin\\\": \\\"Kauniainen\\\", \\\"nameswe\\\": \\\"Grankulla\\\", \\\"natcode\\\": \\\"235\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 6.0}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[373643.389, 6678350.981], [374498.137, 6678531.289], [374739.341, 6677929.854], [375218.776, 6678162.518], [375394.434, 6677836.238], [374928.974, 6677524.158], [374701.187, 6676622.637], [374065.216, 6676540.905], [373742.583, 6676148.814], [373400.053, 6676334.469], [373616.495, 6676726.034], [373303.101, 6676983.835], [372923.119, 6676562.166], [371987.124, 6676674.555], [371177.525, 6677182.199], [371315.675, 6677663.925], [372245.692, 6678153.252], [372947.689, 6678678.058], [373427.01, 6678717.314], [373643.389, 6678350.981]]]}}, {\\\"id\\\": \\\"26\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Karvia\\\", \\\"elakelaisten_osuus\\\": 38.2, \\\"freshwarea\\\": 17.72, \\\"gml_id\\\": 1601100385, \\\"landarea\\\": 502.18, \\\"namefin\\\": \\\"Karvia\\\", \\\"nameswe\\\": \\\"Karvia\\\", \\\"natcode\\\": \\\"230\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 519.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[273716.601, 6915336.617], [279278.626, 6911886.275], [283701.696, 6911326.951], [283403.351, 6910509.331], [283762.358, 6909688.478], [283518.208, 6909603.087], [283567.028, 6909286.087], [283105.171, 6907642.375], [283923.159, 6907759.119], [284029.158, 6907503.804], [283858.852, 6906225.5], [283972.17, 6905004.74], [284204.897, 6904466.86], [283929.311, 6904362.077], [284420.523, 6903162.065], [284026.338, 6903029.016], [283629.204, 6901946.889], [284173.085, 6901215.432], [284575.913, 6900287.774], [283056.388, 6899309.256], [282948.014, 6899373.35], [282888.481, 6899218.773], [282491.403, 6899164.528], [282330.985, 6899664.929], [279725.49, 6898572.869], [279291.257, 6897176.927], [279532.37, 6888121.838], [275055.77, 6887314.384], [274445.337, 6887671.762], [273668.704, 6886339.63], [273251.424, 6886577.759], [273731.978, 6887419.275], [270056.732, 6886111.32], [268316.86, 6884072.023], [267868.558, 6883316.302], [266498.242, 6882295.559], [265534.528, 6882446.651], [265604.691, 6882061.381], [264818.96, 6882333.148], [265093.673, 6883618.284], [261260.917, 6883400.983], [261164.991, 6883400.22], [261083.355, 6883857.928], [260863.338, 6885128.863], [260511.617, 6885068.787], [260163.143, 6885006.008], [258549.357, 6884740.859], [258270.536, 6885959.272], [260695.613, 6886193.617], [260624.806, 6885932.712], [262063.695, 6886068.222], [261789.327, 6886516.076], [259078.599, 6887321.389], [259219.741, 6887801.018], [261384.989, 6887174.083], [260680.17, 6888321.307], [260468.263, 6892222.22], [260675.499, 6892977.026], [261314.752, 6892901.289], [262440.877, 6894735.128], [262229.369, 6895069.253], [261644.721, 6894869.422], [261456.923, 6894594.099], [261200.188, 6894651.629], [260977.204, 6895195.371], [261004.241, 6895727.392], [261066.342, 6896769.351], [260466.555, 6897648.97], [260274.745, 6896582.426], [260707.496, 6894021.414], [260465.972, 6893510.509], [259633.774, 6898202.566], [259316.036, 6898123.585], [259071.23, 6898318.3], [258966.185, 6898659.253], [263397.842, 6904604.612], [266365.824, 6906075.511], [267352.98, 6905639.789], [267649.982, 6906300.152], [267361.558, 6906568.563], [267970.149, 6906871.158], [271593.882, 6916626.569], [273716.601, 6915336.617]]]}}, {\\\"id\\\": \\\"27\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"K\\\\u00e4rk\\\\u00f6l\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 31.4, \\\"freshwarea\\\": 2.8, \\\"gml_id\\\": 1601100340, \\\"landarea\\\": 256.51, \\\"namefin\\\": \\\"K\\\\u00e4rk\\\\u00f6l\\\\u00e4\\\", \\\"nameswe\\\": \\\"K\\\\u00e4rk\\\\u00f6l\\\\u00e4\\\", \\\"natcode\\\": \\\"316\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 259.31}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[407315.494, 6761033.957], [408107.605, 6758837.889], [408592.381, 6757777.079], [408437.982, 6757432.009], [408830.458, 6756435.15], [408363.888, 6755384.121], [408668.008, 6754598.233], [409312.154, 6754073.095], [408790.841, 6752914.767], [409042.77, 6752005.803], [409442.778, 6751426.658], [411517.833, 6750514.234], [412331.475, 6748658.903], [413193.162, 6747622.577], [412780.92, 6746821.153], [414556.407, 6745100.191], [415651.984, 6742677.817], [415311.005, 6741424.122], [414724.928, 6741021.646], [414607.88, 6740484.35], [411827.672, 6736406.795], [408411.192, 6737335.581], [407242.505, 6736361.608], [406583.601, 6739083.464], [403206.296, 6742272.2], [402662.436, 6746389.445], [401949.902, 6746283.263], [401997.66, 6745908.099], [401508.06, 6745710.041], [401265.756, 6744671.507], [401521.187, 6744135.529], [400590.046, 6744077.191], [397796.926, 6743800.499], [397258.069, 6744059.536], [396877.678, 6744551.379], [396257.43, 6744498.892], [395563.445, 6746410.355], [395900.385, 6748189.16], [396199.855, 6748822.072], [396700.777, 6749265.014], [397251.575, 6749240.891], [397829.515, 6749094.95], [398175.228, 6750003.38], [398212.152, 6751531.909], [398758.104, 6753653.565], [400802.833, 6755954.164], [401836.526, 6758676.956], [403192.993, 6760161.556], [403858.465, 6760772.82], [405116.726, 6760911.913], [405921.92, 6761994.718], [407315.494, 6761033.957]]]}}, {\\\"id\\\": \\\"28\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kauhava\\\", \\\"elakelaisten_osuus\\\": 32.8, \\\"freshwarea\\\": 14.59, \\\"gml_id\\\": 1601100392, \\\"landarea\\\": 1313.79, \\\"namefin\\\": \\\"Kauhava\\\", \\\"nameswe\\\": \\\"Kauhava\\\", \\\"natcode\\\": \\\"233\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1328.38}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[321696.369, 7015476.648], [322079.757, 7014768.243], [322466.176, 7012850.812], [322157.021, 7012609.221], [321710.938, 7014683.061], [321380.113, 7014964.156], [321119.741, 7015440.983], [321244.573, 7015908.62], [321696.369, 7015476.648]]], [[[313319.127, 7031902.534], [313337.128, 7031692.674], [313872.712, 7031735.141], [314029.969, 7030951.741], [313294.001, 7031108.65], [312368.12, 7030521.26], [312398.865, 7031964.581], [312217.498, 7032330.622], [312044.813, 7032679.14], [312541.25, 7033022.73], [313319.127, 7031902.534]]], [[[311673.285, 7033441.071], [311704.816, 7033038.309], [310172.688, 7033619.634], [310533.972, 7032258.676], [310802.709, 7033109.951], [312047.102, 7031906.974], [311692.01, 7031558.066], [311550.216, 7031840.984], [311196.969, 7031670.44], [311258.666, 7031525.411], [311141.073, 7029353.937], [314887.339, 7025161.865], [315473.945, 7025486.039], [317466.505, 7026486.197], [321266.343, 7023033.368], [321659.111, 7021930.732], [320731.937, 7021329.375], [320898.551, 7020287.146], [319666.692, 7020111.371], [319926.9, 7019120.913], [318909.529, 7019110.19], [318730.382, 7018692.378], [318310.529, 7018200.536], [318520.738, 7017198.035], [318132.296, 7017216.067], [317833.743, 7014973.548], [318522.861, 7015350.087], [318784.08, 7013433.938], [317878.381, 7013645.802], [317623.797, 7014729.836], [313550.84, 7015078.575], [312991.227, 7013892.555], [313382.524, 7014037.225], [314856.432, 7013700.739], [318668.162, 7010423.032], [320840.72, 7005904.414], [321776.334, 6998205.464], [320884.326, 6997585.179], [318794.809, 6996132.785], [317609.81, 6996671.826], [317509.407, 6996379.458], [318611.672, 6996005.494], [315535.978, 6993865.284], [313414.244, 6994715.809], [311346.656, 6994471.209], [311126.421, 6994576.486], [310618.29, 6993559.44], [309925.672, 6994249.243], [309861.427, 6994639.555], [309963.283, 6995119.524], [308100.836, 6995990.242], [300323.748, 6995032.444], [293658.286, 6999179.516], [293691.011, 6999683.181], [293256.779, 6999925.654], [293251.134, 7000716.396], [292839.955, 7000923.559], [292795.352, 7000398.811], [288245.149, 6999374.962], [286845.149, 6996808.744], [285642.222, 6998326.3], [285915.857, 6998613.575], [285590.897, 6998750.341], [285483.068, 6999174.552], [285144.34, 6998958.797], [284920.802, 6999240.168], [284603.275, 6998992.79], [284260.866, 6999205.027], [283451.968, 6999530.273], [283131.267, 6999553.57], [282344.223, 7000025.176], [282163.956, 7001187.502], [282264.002, 7001469.298], [282151.418, 7001746.166], [281740.866, 7002280.853], [281286.726, 7002639.756], [279414.726, 7002867.063], [278499.438, 7002846.968], [278425.717, 7003550.03], [279372.208, 7003680.078], [279630.013, 7004441.65], [280511.162, 7004769.324], [280400.653, 7006862.139], [279724.695, 7006835.774], [279706.992, 7007407.249], [281013.785, 7007542.321], [281203.037, 7007823.64], [281171.761, 7008103.341], [280658.335, 7008009.105], [280654.179, 7008023.016], [280651.174, 7008476.91], [281020.303, 7008557.153], [280773.501, 7009334.944], [280308.955, 7009215.732], [280254.973, 7009447.669], [280966.276, 7010093.664], [280845.576, 7010265.913], [280430.58, 7010142.291], [280296.003, 7010760.389], [279578.232, 7010508.537], [279493.163, 7010865.855], [280252.036, 7011466.506], [279988.438, 7011803.789], [280185.419, 7011997.896], [280402.047, 7011811.624], [280757.763, 7011973.929], [280852.199, 7012317.487], [280436.672, 7012183.032], [280245.068, 7012550.456], [279846.023, 7012374.095], [279478.794, 7012877.157], [279703.668, 7012994.708], [279538.342, 7013867.625], [279180.35, 7013799.667], [278858.545, 7014120.863], [277228.533, 7013258.264], [278459.142, 7015629.28], [280292.406, 7016464.128], [279461.972, 7018545.49], [278962.869, 7018545.719], [278802.647, 7018753.471], [279319.718, 7018894.667], [279125.485, 7019374.398], [279605.213, 7019630.154], [278494.928, 7020099.503], [278644.377, 7020453.851], [277254.575, 7021067.984], [277047.991, 7021758.195], [277252.012, 7022908.176], [279218.741, 7024817.955], [279732.947, 7024235.19], [280240.272, 7024528.828], [283166.464, 7026079.565], [281940.629, 7028295.596], [283848.391, 7029053.269], [285663.885, 7030376.428], [285970.932, 7029788.155], [287627.128, 7030654.004], [287502.62, 7031033.184], [286850.811, 7030934.264], [286852.677, 7031153.64], [287175.958, 7031129.984], [286859.233, 7032165.546], [285560.654, 7031501.084], [285837.999, 7032278.843], [286772.013, 7032681.629], [287297.676, 7032625.38], [287512.528, 7032480.282], [287296.212, 7032059.871], [287998.375, 7032203.577], [287791.511, 7032624.169], [288312.194, 7032435.278], [288695.212, 7032146.746], [288887.35, 7031434.47], [289616.56, 7031520.853], [289279.213, 7031893.882], [290337.988, 7031587.486], [290807.21, 7031305.785], [291426.61, 7031245.23], [291368.449, 7030923.731], [293609.5, 7030813.883], [293575.528, 7031180.803], [293000.242, 7031366.54], [292920.231, 7031704.714], [293587.669, 7031483.356], [293297.33, 7032604.695], [293423.04, 7032753.487], [294150.251, 7032440.588], [294891.074, 7032016.892], [294851.981, 7031840.248], [294070.348, 7032109.139], [293907.49, 7031609.773], [295239.211, 7031252.041], [298815.058, 7028711.443], [298653.251, 7033398.214], [299975.652, 7033122.158], [299869.889, 7033967.646], [301303.997, 7034144.764], [301566.966, 7032047.259], [301567.475, 7032043.192], [302026.007, 7032045.514], [303091.9, 7032263.78], [303046.951, 7032531.013], [303905.415, 7032729.782], [304332.257, 7031730.027], [304724.202, 7031913.46], [305489.581, 7030847.461], [305230.708, 7030660.617], [305543.67, 7030183.999], [310586.421, 7035650.362], [311673.285, 7033441.071]]]]}}, {\\\"id\\\": \\\"29\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sievi\\\", \\\"elakelaisten_osuus\\\": 23.8, \\\"freshwarea\\\": 13.42, \\\"gml_id\\\": 1601100519, \\\"landarea\\\": 786.98, \\\"namefin\\\": \\\"Sievi\\\", \\\"nameswe\\\": \\\"Sievi\\\", \\\"natcode\\\": \\\"746\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 800.4}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[369843.234, 7102555.754], [370443.5, 7102605.316], [370391.731, 7103008.08], [370801.907, 7103059.226], [371521.023, 7100705.638], [371617.899, 7101088.605], [372074.148, 7100884.425], [371713.343, 7100167.957], [371989.764, 7099580.978], [372078.336, 7098871.456], [377271.779, 7095868.673], [382933.31, 7092789.5], [383104.343, 7093060.032], [384323.357, 7093223.3], [384771.36, 7092959.291], [384932.82, 7092432.464], [385950.696, 7092589.928], [385974.682, 7091905.449], [385652.962, 7091853.317], [385327.078, 7091473.462], [386290.914, 7090974.035], [387148.592, 7090495.362], [388882.532, 7090384.636], [390589.06, 7087859.448], [391145.53, 7087145.829], [393070.283, 7085650.653], [393152.903, 7084984.342], [392992.647, 7084475.403], [393244.735, 7084280.997], [392573.535, 7084164.03], [392648.207, 7083888.379], [392978.179, 7083860.351], [393060.503, 7083536.667], [393673.62, 7083719.718], [393830.344, 7084191.857], [394553.484, 7084072.689], [395099.752, 7083618.715], [395307.709, 7083895.069], [397529.352, 7082069.143], [398346.315, 7080353.96], [397902.835, 7079716.611], [398488.0, 7079192.189], [398801.026, 7078602.058], [399100.843, 7078770.502], [399903.684, 7077060.139], [399661.117, 7076499.012], [399885.271, 7076388.236], [399151.964, 7071604.938], [397897.74, 7063511.032], [397628.898, 7063521.442], [397784.538, 7064248.101], [397123.47, 7065056.144], [397467.158, 7065285.512], [397023.242, 7065544.031], [396468.89, 7065168.543], [396302.796, 7065765.531], [395939.935, 7065333.838], [395667.932, 7065647.804], [395203.356, 7065827.809], [395107.458, 7065699.103], [395785.178, 7065035.54], [396318.042, 7064771.779], [396828.944, 7064995.382], [396925.723, 7064253.882], [397421.014, 7064018.072], [397124.355, 7063757.215], [396743.194, 7063587.272], [397107.482, 7063224.888], [397676.71, 7063185.945], [397258.568, 7061945.667], [395724.234, 7062689.163], [389161.497, 7066283.394], [388902.338, 7066713.881], [388144.807, 7066976.413], [388181.098, 7066578.281], [385366.498, 7063566.582], [384967.969, 7063800.25], [384888.834, 7064229.273], [384479.572, 7064840.283], [384012.991, 7064847.849], [383826.376, 7065142.315], [383114.849, 7066095.15], [382835.103, 7066292.478], [382700.634, 7066947.351], [382461.436, 7066771.926], [382644.532, 7066065.687], [383416.175, 7065152.83], [384044.296, 7064559.518], [384512.039, 7064353.708], [384495.951, 7063814.001], [385214.342, 7063404.681], [384488.109, 7062662.534], [383899.512, 7063387.13], [382598.281, 7064210.307], [382528.059, 7064157.977], [383242.41, 7063430.535], [384316.07, 7062468.734], [382516.652, 7060212.749], [382441.533, 7060047.087], [382095.705, 7060308.614], [381923.367, 7060577.08], [379448.13, 7064635.839], [377495.558, 7069660.278], [373383.552, 7081747.121], [366522.022, 7084521.521], [364807.017, 7086218.885], [364064.173, 7090031.491], [363657.325, 7090492.21], [363923.635, 7090761.419], [363590.022, 7092515.935], [361789.55, 7093196.538], [359428.975, 7098263.923], [364196.794, 7098958.172], [363957.886, 7099346.721], [364022.399, 7099511.812], [364189.6, 7099648.203], [364308.693, 7099620.42], [364607.651, 7099251.249], [367971.401, 7102180.091], [368395.877, 7102260.559], [368795.291, 7101681.398], [369735.507, 7103092.438], [369843.234, 7102555.754]], [[389116.555, 7071632.1], [389374.26, 7070643.179], [389688.93, 7070238.472], [389610.528, 7069940.564], [389372.326, 7069854.524], [389091.691, 7069936.651], [388812.242, 7071310.981], [388079.034, 7071246.667], [387655.765, 7072185.048], [387873.911, 7072207.187], [388212.335, 7071840.756], [388838.687, 7071634.967], [388643.78, 7072242.091], [388625.724, 7072707.16], [388749.673, 7072774.295], [389116.555, 7071632.1]]]}}, {\\\"id\\\": \\\"30\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Muhos\\\", \\\"elakelaisten_osuus\\\": 22.6, \\\"freshwarea\\\": 13.52, \\\"gml_id\\\": 1601100199, \\\"landarea\\\": 783.75, \\\"namefin\\\": \\\"Muhos\\\", \\\"nameswe\\\": \\\"Muhos\\\", \\\"natcode\\\": \\\"494\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 797.27}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[451503.348, 7206341.315], [451427.707, 7205440.645], [451810.65, 7205605.707], [451995.151, 7205404.68], [451684.555, 7205071.094], [452122.336, 7204716.322], [454641.581, 7206075.817], [454714.217, 7205860.802], [455212.025, 7206321.527], [455529.293, 7205782.716], [455978.988, 7205906.259], [456711.415, 7205505.653], [457297.009, 7205506.559], [456537.913, 7202678.222], [456943.54, 7202633.036], [457347.665, 7202938.655], [457900.404, 7203272.079], [458368.205, 7202915.259], [458772.98, 7202668.908], [459394.531, 7202481.919], [460129.584, 7202765.132], [461042.318, 7202643.953], [461248.766, 7202429.007], [461758.819, 7203136.159], [462538.155, 7202085.092], [461715.217, 7201434.652], [461881.169, 7200984.877], [461925.943, 7200131.506], [462729.928, 7199409.936], [463371.362, 7199430.183], [464965.35, 7198854.76], [465608.498, 7198169.996], [463264.563, 7195279.722], [464482.338, 7194784.938], [465324.897, 7194508.701], [466030.856, 7194487.016], [466514.166, 7195027.249], [467640.636, 7194076.758], [467213.815, 7193549.533], [466489.155, 7194123.819], [466357.378, 7194024.956], [466166.644, 7193795.914], [465801.081, 7193004.18], [468269.004, 7191446.634], [468923.148, 7192193.4], [469737.871, 7191545.615], [470190.148, 7192104.154], [471272.134, 7191252.664], [473045.926, 7189856.211], [473687.66, 7189156.271], [473659.109, 7188508.431], [473656.558, 7187499.15], [470216.607, 7185639.942], [467314.872, 7187412.374], [464841.681, 7188947.466], [463520.031, 7194441.414], [462947.131, 7194764.728], [463264.563, 7195279.722], [461365.022, 7197437.859], [460206.842, 7196405.444], [460003.547, 7195533.694], [459557.909, 7195637.101], [459312.283, 7195356.884], [460237.259, 7195191.222], [460563.103, 7196159.869], [461022.072, 7196536.98], [461373.295, 7196641.359], [461659.305, 7195917.362], [462224.392, 7195745.166], [462810.965, 7194848.949], [462829.27, 7193724.661], [463060.869, 7190446.759], [463503.205, 7188751.08], [463237.637, 7188584.687], [462534.294, 7190590.399], [461686.824, 7191417.27], [461479.948, 7191223.943], [461823.564, 7190800.14], [461034.372, 7189144.095], [461226.595, 7188410.596], [463954.676, 7185057.206], [465995.842, 7181389.843], [465686.337, 7181178.706], [466277.657, 7180696.208], [464620.357, 7179517.124], [466037.038, 7177332.289], [468112.209, 7178680.869], [468370.747, 7178189.653], [467867.503, 7177675.419], [468202.037, 7176974.399], [468950.294, 7177085.603], [469245.28, 7176525.222], [468872.17, 7176305.068], [469203.0, 7175745.238], [468601.716, 7175371.825], [468865.418, 7175106.651], [468332.96, 7174581.547], [469120.167, 7173284.538], [469709.911, 7173664.702], [470352.418, 7172572.258], [469407.889, 7171863.177], [469858.548, 7170941.258], [469763.065, 7170883.168], [469821.212, 7170707.893], [470306.648, 7170912.177], [470786.788, 7170620.528], [469489.989, 7167397.191], [468293.703, 7169893.212], [467667.242, 7169556.767], [467207.465, 7170215.28], [466964.458, 7170315.65], [466846.059, 7169940.324], [466383.882, 7169599.523], [466650.515, 7169239.177], [466460.305, 7169039.266], [465983.396, 7168871.254], [465733.756, 7168650.02], [465120.806, 7168630.459], [465118.927, 7169251.468], [463047.385, 7169362.018], [462780.742, 7168758.54], [462915.231, 7168679.616], [463092.506, 7168920.878], [463331.609, 7168981.124], [463395.602, 7168786.904], [463627.425, 7168667.688], [463646.389, 7168423.369], [465105.115, 7167918.815], [465999.288, 7166485.63], [466398.709, 7166159.485], [467551.989, 7165595.179], [467647.747, 7165235.653], [467054.933, 7165174.334], [466902.765, 7164851.987], [466772.021, 7164961.864], [466169.802, 7164624.752], [466193.75, 7164480.778], [465761.184, 7164335.216], [465798.452, 7163835.736], [467246.674, 7163505.034], [468114.877, 7162515.844], [468658.698, 7163153.925], [468468.528, 7163255.847], [468384.798, 7163191.643], [467855.664, 7163509.835], [467186.653, 7163955.698], [467418.046, 7164113.353], [468560.945, 7163552.17], [468689.875, 7163854.185], [468888.467, 7163736.56], [469073.119, 7164089.414], [469572.745, 7163869.16], [469551.772, 7163376.701], [470109.763, 7163405.618], [470062.755, 7162988.921], [470858.516, 7162937.522], [470940.414, 7163141.293], [471645.124, 7163361.222], [471879.671, 7165129.04], [473944.152, 7166435.128], [475383.906, 7164128.048], [473110.332, 7162762.344], [473272.345, 7162238.886], [474871.223, 7163205.616], [475055.189, 7163019.841], [475223.66, 7163333.654], [475005.007, 7163568.085], [475534.651, 7163886.813], [476290.362, 7162663.67], [475345.693, 7162261.737], [473543.827, 7161375.485], [473929.984, 7160143.503], [474198.204, 7160091.45], [469333.395, 7154537.054], [468833.655, 7154411.889], [468786.093, 7154663.327], [468472.957, 7154875.14], [468687.354, 7153794.948], [467087.992, 7153512.539], [467542.16, 7152485.193], [465921.867, 7150589.585], [465653.13, 7153899.931], [461705.066, 7160648.768], [461191.867, 7160556.81], [461432.029, 7160084.914], [461205.699, 7160030.506], [459948.927, 7160687.425], [460370.263, 7161159.321], [461084.665, 7160696.266], [461347.983, 7161266.402], [460177.576, 7163264.791], [450146.725, 7171080.342], [452394.372, 7173984.081], [450828.917, 7176675.778], [452067.264, 7177393.754], [447485.415, 7185259.291], [447081.722, 7185157.294], [446877.828, 7184877.676], [444714.513, 7187014.911], [444150.067, 7187150.846], [443334.793, 7186854.713], [443174.505, 7187233.633], [443421.94, 7187634.156], [443546.24, 7187308.11], [444123.769, 7187429.344], [444519.351, 7187367.943], [445386.793, 7187555.681], [445620.562, 7187234.492], [445383.118, 7186907.282], [446637.653, 7185607.771], [447198.763, 7185761.643], [442667.33, 7193524.14], [442144.708, 7193834.808], [442335.54, 7194094.239], [441619.044, 7195182.552], [441416.879, 7194904.382], [441112.556, 7195487.279], [441281.21, 7195919.457], [440834.202, 7196667.966], [441195.26, 7196612.329], [441351.033, 7196378.233], [441414.527, 7195826.948], [441801.28, 7196696.349], [441822.183, 7196944.258], [442969.099, 7197253.45], [443233.471, 7196945.75], [444038.434, 7197449.583], [444188.545, 7197272.937], [444433.001, 7196804.384], [444628.921, 7197009.975], [444894.902, 7196609.982], [445124.977, 7196769.367], [445082.473, 7197035.875], [452514.718, 7203826.126], [451859.703, 7204575.974], [451692.431, 7204372.934], [451400.904, 7204981.831], [450090.16, 7203731.282], [449922.61, 7203902.173], [451298.365, 7206372.952], [451503.348, 7206341.315]]]}}, {\\\"id\\\": \\\"31\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Soini\\\", \\\"elakelaisten_osuus\\\": 35.2, \\\"freshwarea\\\": 22.27, \\\"gml_id\\\": 1601100537, \\\"landarea\\\": 551.95, \\\"namefin\\\": \\\"Soini\\\", \\\"nameswe\\\": \\\"Soini\\\", \\\"natcode\\\": \\\"759\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 574.22}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[357682.314, 6989617.482], [357253.221, 6989560.736], [357053.687, 6988910.385], [359557.119, 6989160.018], [359571.896, 6988496.19], [359796.862, 6988410.936], [359773.526, 6987491.382], [359440.518, 6987288.841], [361103.642, 6986962.139], [363260.793, 6987161.698], [363722.06, 6985907.039], [364930.083, 6986491.736], [365544.861, 6984345.116], [365541.96, 6984316.807], [365064.47, 6979207.831], [367606.853, 6978929.195], [369641.31, 6977920.938], [370238.793, 6976578.848], [370211.515, 6973788.01], [365848.291, 6972910.792], [365587.729, 6974440.92], [364378.617, 6971320.847], [365065.203, 6971485.266], [365748.569, 6971945.262], [367438.411, 6968979.448], [366556.375, 6968421.446], [367911.702, 6967422.015], [368551.308, 6966076.979], [368987.302, 6966145.298], [368883.746, 6965582.868], [371530.387, 6959152.232], [372356.168, 6955798.067], [373036.311, 6953044.961], [372885.83, 6952868.862], [372286.902, 6953381.793], [371713.314, 6952728.003], [372133.887, 6952309.675], [370577.486, 6951977.75], [369653.826, 6953825.444], [368410.318, 6953528.435], [367642.238, 6955313.487], [365643.369, 6955069.913], [365428.641, 6956812.475], [362251.699, 6957997.644], [361895.352, 6958857.803], [361496.586, 6958289.877], [360582.188, 6958944.795], [360416.74, 6959780.367], [361299.033, 6960996.085], [361105.043, 6961695.986], [358605.026, 6961232.517], [357636.362, 6959575.281], [360798.19, 6957289.0], [358224.611, 6953625.812], [356329.977, 6955531.371], [356744.96, 6956131.807], [356787.609, 6957445.651], [357177.61, 6957484.111], [356963.607, 6958464.126], [354330.276, 6957373.177], [354881.771, 6954754.83], [352602.241, 6954957.813], [352199.941, 6957628.171], [350670.224, 6957398.553], [349503.653, 6958611.741], [349451.161, 6958886.724], [348320.016, 6960219.487], [349136.945, 6963885.313], [349445.746, 6964368.88], [349920.736, 6964407.767], [349811.276, 6964741.203], [350006.155, 6965169.686], [350346.715, 6964906.287], [350562.24, 6965076.074], [350556.548, 6965661.156], [350929.932, 6966078.164], [350979.315, 6966989.288], [351184.705, 6967755.287], [351733.58, 6968428.665], [351435.555, 6969068.457], [351756.852, 6969272.238], [352148.04, 6968787.232], [352396.032, 6968940.423], [352228.488, 6969780.842], [353146.369, 6969710.866], [354508.004, 6970011.824], [354149.024, 6971727.655], [352076.711, 6971476.667], [352208.717, 6971788.105], [346951.941, 6973669.696], [347587.579, 6977285.136], [347855.045, 6977136.532], [349403.004, 6985932.989], [350032.603, 6986093.496], [350277.72, 6985726.684], [350769.665, 6985436.95], [350779.113, 6985839.506], [349571.794, 6986826.104], [349574.585, 6986831.945], [349712.132, 6986959.375], [350083.086, 6986744.5], [351486.828, 6985842.647], [352599.116, 6984860.202], [352596.223, 6985774.006], [352735.097, 6986606.128], [353148.988, 6986588.102], [353201.238, 6987021.497], [354491.878, 6986932.962], [354474.733, 6986533.071], [355544.694, 6987206.679], [357028.645, 6987355.834], [356823.062, 6987754.571], [356374.199, 6989501.815], [356521.54, 6989872.16], [357374.742, 6990194.169], [357682.314, 6989617.482]], [[350749.549, 6962519.423], [350536.485, 6961614.012], [350233.376, 6961683.594], [349992.204, 6960528.208], [350258.812, 6960460.931], [350201.856, 6960216.284], [349567.129, 6960347.228], [349203.997, 6960722.272], [349310.587, 6960973.341], [349208.47, 6961217.275], [349142.025, 6961920.27], [349576.326, 6961814.522], [349721.332, 6962463.856], [349266.381, 6962569.566], [349292.83, 6962826.886], [350749.549, 6962519.423]]]}}, {\\\"id\\\": \\\"32\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sein\\\\u00e4joki\\\", \\\"elakelaisten_osuus\\\": 23.3, \\\"freshwarea\\\": 37.46, \\\"gml_id\\\": 1601100515, \\\"landarea\\\": 1431.75, \\\"namefin\\\": \\\"Sein\\\\u00e4joki\\\", \\\"nameswe\\\": \\\"Sein\\\\u00e4joki\\\", \\\"natcode\\\": \\\"743\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1469.21}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[278411.117, 7001413.384], [279317.752, 7001690.275], [279386.128, 7002479.587], [281740.866, 7002280.853], [282151.418, 7001746.166], [282264.002, 7001469.298], [282163.956, 7001187.502], [282344.223, 7000025.176], [283131.267, 6999553.57], [283451.968, 6999530.273], [284260.866, 6999205.027], [284603.275, 6998992.79], [284920.802, 6999240.168], [285144.34, 6998958.797], [285483.068, 6999174.552], [285590.897, 6998750.341], [285915.857, 6998613.575], [285642.222, 6998326.3], [286845.149, 6996808.744], [287490.565, 6992762.894], [287239.678, 6991275.32], [288536.724, 6985739.94], [288449.96, 6984117.552], [288784.501, 6983286.169], [288388.578, 6983003.988], [288216.872, 6979776.952], [287336.625, 6978128.122], [293793.282, 6978071.798], [294087.376, 6978011.32], [294596.996, 6978382.513], [294898.888, 6978228.867], [302288.271, 6975938.655], [297610.294, 6970735.983], [305867.191, 6970888.752], [306266.263, 6970339.552], [306623.758, 6968672.938], [307768.97, 6966994.044], [310144.482, 6965973.224], [309502.375, 6961659.038], [305928.066, 6960568.844], [303353.32, 6953056.359], [304108.694, 6952390.184], [304801.391, 6952433.625], [305067.438, 6951724.96], [304015.335, 6951251.343], [303593.23, 6951285.105], [303550.398, 6950988.663], [304057.745, 6950611.752], [303919.651, 6949630.066], [304388.415, 6949688.94], [304455.041, 6949171.152], [305662.96, 6947449.885], [306223.29, 6947615.627], [306423.074, 6947357.431], [306746.125, 6947348.439], [306748.228, 6947769.5], [308275.332, 6948212.811], [308838.593, 6946354.772], [308501.246, 6945565.677], [308852.498, 6945637.446], [308600.077, 6944322.406], [309087.807, 6944038.128], [309113.928, 6944526.454], [309706.159, 6944663.686], [310341.131, 6943643.056], [309283.497, 6943243.457], [308398.22, 6942546.218], [307771.855, 6941459.912], [307820.816, 6940814.321], [307274.03, 6940542.78], [307158.112, 6939967.57], [306963.875, 6939661.121], [307683.341, 6938559.904], [307481.623, 6938239.216], [307781.686, 6937641.316], [308438.805, 6936885.361], [310091.824, 6934992.412], [309338.433, 6934611.508], [309971.004, 6932918.64], [310858.264, 6931240.306], [311809.243, 6929713.694], [312534.219, 6927715.967], [310933.466, 6926894.948], [307589.854, 6925168.085], [306092.343, 6921653.445], [306336.852, 6921033.314], [306949.593, 6921221.147], [306670.641, 6920199.306], [306810.359, 6919850.312], [305991.684, 6919496.622], [305848.285, 6919848.181], [305248.121, 6919752.177], [305006.473, 6919039.782], [304771.39, 6919350.96], [304443.81, 6919329.209], [304582.831, 6919024.121], [304557.424, 6918599.408], [303722.172, 6917387.209], [304153.954, 6917135.548], [300261.951, 6915694.297], [298534.947, 6923365.721], [300092.937, 6923176.336], [299554.672, 6925835.031], [299036.378, 6926371.59], [299007.047, 6925537.6], [298676.216, 6926249.658], [298748.939, 6926951.089], [298448.671, 6927564.723], [298464.079, 6928646.245], [298086.393, 6928582.599], [297991.182, 6928099.864], [297553.418, 6928154.541], [296942.161, 6932051.504], [296042.136, 6932626.226], [292461.51, 6942057.848], [290966.962, 6941974.086], [290423.475, 6946701.972], [289974.872, 6947656.87], [288066.916, 6946905.956], [287927.946, 6947471.685], [287666.496, 6951654.805], [288436.657, 6951723.95], [286617.683, 6953752.373], [286844.821, 6953952.313], [287379.632, 6953350.057], [287804.874, 6953746.028], [288326.554, 6953841.244], [287574.773, 6954694.179], [287789.558, 6955340.255], [288001.141, 6955128.675], [288198.946, 6955347.537], [287751.944, 6955860.196], [287678.771, 6956695.766], [289023.13, 6956906.454], [286903.348, 6961102.961], [282392.879, 6966042.001], [279978.322, 6967912.053], [280866.387, 6968750.152], [281466.588, 6969309.395], [281544.598, 6969975.164], [281038.592, 6970324.089], [281389.341, 6970983.631], [281237.632, 6971295.268], [281240.476, 6971840.5], [281584.334, 6972210.734], [281828.75, 6972697.449], [282306.825, 6973467.72], [282802.191, 6973884.279], [283396.441, 6974255.747], [283601.814, 6974771.328], [283947.038, 6974994.482], [284086.938, 6975434.866], [284586.114, 6975794.181], [284530.277, 6975905.285], [284315.584, 6975923.023], [283876.019, 6975704.121], [283527.959, 6976327.287], [283488.399, 6976733.321], [283664.485, 6977700.784], [283232.335, 6978432.002], [282122.97, 6978693.309], [282008.251, 6978737.198], [281068.5, 6979090.525], [276025.641, 6975899.362], [266153.558, 6972084.328], [263569.078, 6972182.969], [260555.946, 6971497.385], [263374.212, 6976417.658], [264056.731, 6976841.09], [264323.86, 6977146.057], [264736.546, 6977436.002], [265253.958, 6977993.13], [265602.342, 6978514.811], [265908.685, 6978487.884], [266522.011, 6978806.995], [266362.723, 6979607.137], [266353.342, 6980364.795], [266234.051, 6981201.381], [265799.976, 6982335.728], [266042.089, 6983108.41], [266200.126, 6983728.823], [266585.751, 6984262.652], [266785.711, 6984229.161], [266931.601, 6984931.871], [266996.948, 6985298.653], [267252.967, 6985970.552], [267666.027, 6986597.449], [267926.138, 6987194.838], [268040.859, 6987629.728], [267643.189, 6988541.706], [268699.341, 6989159.458], [268493.124, 6989468.457], [268833.182, 6989764.517], [270120.677, 6991289.591], [270577.301, 6992073.799], [270583.441, 6992948.686], [270680.475, 6994333.108], [272963.449, 6997751.378], [273214.541, 6997504.453], [273662.388, 6998232.861], [273332.03, 6998373.254], [273697.651, 6998990.335], [274241.492, 6998168.155], [274450.772, 6998691.439], [274827.595, 6999350.173], [275171.006, 6998657.986], [275558.596, 6998991.457], [274914.073, 7000105.868], [274511.976, 6999991.396], [274362.056, 7000649.615], [277637.692, 7002609.333], [278411.117, 7001413.384]]]}}, {\\\"id\\\": \\\"33\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"P\\\\u00e4lk\\\\u00e4ne\\\", \\\"elakelaisten_osuus\\\": 33.7, \\\"freshwarea\\\": 177.42, \\\"gml_id\\\": 1601100596, \\\"landarea\\\": 560.72, \\\"namefin\\\": \\\"P\\\\u00e4lk\\\\u00e4ne\\\", \\\"nameswe\\\": \\\"P\\\\u00e4lk\\\\u00e4ne\\\", \\\"natcode\\\": \\\"635\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 738.14}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[384208.593, 6818312.233], [385359.184, 6818010.547], [386004.133, 6817676.616], [385742.49, 6816954.87], [386067.469, 6815673.161], [385870.677, 6814943.999], [386268.65, 6814679.956], [386754.669, 6814022.98], [386765.327, 6813331.706], [388582.926, 6810889.311], [387510.303, 6808183.703], [388080.117, 6807878.177], [387750.625, 6806310.796], [387130.995, 6804231.441], [388021.012, 6801184.476], [388341.3, 6800758.633], [386365.641, 6797799.791], [386995.347, 6796629.09], [384455.903, 6795604.587], [384242.724, 6795249.091], [383440.364, 6795461.565], [382468.829, 6795140.558], [380451.314, 6794645.894], [379962.18, 6796077.706], [378562.461, 6800257.078], [377857.217, 6798183.037], [377707.129, 6796528.417], [377624.284, 6796051.948], [377133.035, 6795284.15], [376825.565, 6795291.737], [376058.471, 6796167.403], [375132.766, 6796062.161], [374904.465, 6795841.098], [371128.194, 6797603.855], [370837.117, 6797290.822], [370539.554, 6798309.679], [370046.948, 6799056.205], [367129.662, 6797700.019], [365648.235, 6796764.528], [364609.01, 6795991.131], [363620.37, 6795241.797], [363150.582, 6795503.691], [362193.528, 6794836.738], [361934.73, 6794151.115], [361210.46, 6794154.761], [360691.173, 6793790.577], [360463.855, 6793064.363], [359778.217, 6793401.43], [358381.447, 6792690.502], [355196.889, 6791753.407], [354164.609, 6792565.666], [352014.268, 6794029.846], [350748.82, 6795128.24], [349818.576, 6795183.317], [348077.724, 6795534.013], [344813.241, 6798477.744], [344003.072, 6798693.03], [343864.58, 6799108.9], [343887.731, 6799580.416], [344070.176, 6800357.842], [344847.475, 6801602.593], [343703.273, 6803095.608], [343822.592, 6803860.785], [345105.468, 6805006.119], [344654.413, 6806062.14], [345779.778, 6806415.291], [347503.524, 6807242.147], [350298.853, 6807693.022], [351819.686, 6808517.02], [351857.86, 6808904.399], [352335.789, 6808991.735], [352485.252, 6809478.995], [353179.594, 6809712.334], [353630.096, 6809544.48], [354350.296, 6810628.191], [354993.075, 6809882.105], [355552.201, 6809907.119], [355899.84, 6810180.345], [355135.749, 6810364.444], [355175.389, 6812245.673], [355052.202, 6814610.488], [355945.051, 6814767.981], [357305.008, 6814050.903], [357815.618, 6813310.362], [358928.208, 6813249.359], [360463.435, 6812902.672], [363378.352, 6811924.454], [363858.73, 6811612.349], [372946.076, 6813155.849], [373165.868, 6812859.172], [373735.627, 6814263.852], [376840.814, 6814903.722], [378918.742, 6814558.267], [378824.872, 6815874.059], [378764.536, 6816892.835], [378575.707, 6817836.404], [379318.645, 6817426.572], [380104.324, 6817315.682], [380113.172, 6816525.56], [382158.68, 6816207.393], [381899.242, 6819489.188], [384208.593, 6818312.233]]]}}, {\\\"id\\\": \\\"34\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Juupajoki\\\", \\\"elakelaisten_osuus\\\": 35.8, \\\"freshwarea\\\": 16.45, \\\"gml_id\\\": 1601100299, \\\"landarea\\\": 258.5, \\\"namefin\\\": \\\"Juupajoki\\\", \\\"nameswe\\\": \\\"Juupajoki\\\", \\\"natcode\\\": \\\"177\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 274.95}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[369007.005, 6868138.442], [369984.957, 6866558.109], [371431.611, 6866831.23], [372848.11, 6865017.808], [374551.642, 6863913.868], [377255.891, 6861121.622], [375412.064, 6859390.747], [374671.618, 6857878.047], [374932.57, 6856056.273], [372918.682, 6852068.225], [371824.5, 6848977.368], [370787.517, 6844919.426], [370271.418, 6845102.575], [369488.116, 6846599.525], [369293.616, 6846921.014], [368941.866, 6847160.741], [367475.054, 6847526.29], [367053.209, 6847244.338], [366223.012, 6847337.782], [365981.078, 6847628.843], [364574.357, 6847483.503], [363548.488, 6847647.663], [362564.896, 6848511.669], [360586.748, 6852061.46], [360123.818, 6851848.623], [358294.6, 6855917.973], [356604.825, 6855143.234], [353977.939, 6857778.959], [356912.783, 6860331.778], [358535.554, 6860844.886], [361287.214, 6862377.66], [363795.749, 6861227.621], [364076.592, 6861744.2], [363137.237, 6862453.019], [364529.906, 6865031.296], [365647.195, 6864617.84], [366148.922, 6864709.746], [365474.477, 6866870.594], [365332.71, 6867324.808], [368823.439, 6868732.879], [369007.005, 6868138.442]]]}}, {\\\"id\\\": \\\"35\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Inkoo\\\", \\\"elakelaisten_osuus\\\": 28.2, \\\"freshwarea\\\": 8.11, \\\"gml_id\\\": 1601100245, \\\"landarea\\\": 349.89, \\\"namefin\\\": \\\"Inkoo\\\", \\\"nameswe\\\": \\\"Ing\\\\u00e5\\\", \\\"natcode\\\": \\\"149\\\", \\\"seawarea\\\": 596.02, \\\"totalarea\\\": 954.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[338020.923, 6671051.837], [338920.767, 6670846.283], [339890.622, 6669856.813], [340671.985, 6669430.235], [340836.33, 6667267.659], [341668.934, 6667854.539], [343031.474, 6669309.0], [343317.057, 6669366.688], [344553.647, 6668990.316], [345520.67, 6667738.645], [345984.802, 6666953.49], [346190.188, 6666410.305], [345827.574, 6665798.332], [346860.197, 6664434.118], [347393.918, 6663520.466], [347506.13, 6662354.912], [347781.151, 6661591.74], [348541.821, 6660998.491], [349371.915, 6658952.571], [350437.45, 6656951.381], [348907.918, 6655503.817], [347664.16, 6649540.705], [347448.843, 6631327.115], [343175.698, 6630628.083], [330687.224, 6627606.382], [323279.758, 6646208.529], [323317.232, 6646374.655], [322544.102, 6646525.422], [322357.557, 6646561.8], [321738.624, 6646431.57], [321165.389, 6646881.943], [321238.049, 6647536.575], [322281.457, 6647854.84], [322195.304, 6648095.567], [322000.012, 6648109.272], [321592.052, 6648137.901], [321478.601, 6648580.638], [322379.242, 6649678.044], [321713.123, 6651408.696], [323238.685, 6652366.138], [323076.333, 6652732.268], [323609.869, 6653512.147], [321072.44, 6655921.313], [320035.929, 6655835.709], [319231.14, 6656527.212], [319064.593, 6658816.515], [319467.233, 6660137.711], [320371.048, 6660787.886], [323378.525, 6660618.908], [325963.981, 6660836.459], [324253.966, 6663218.919], [324255.584, 6664499.635], [323681.501, 6664962.25], [323306.74, 6666443.252], [323273.406, 6668139.58], [323062.736, 6669532.653], [325911.889, 6670810.19], [327621.841, 6670234.291], [328650.512, 6669753.119], [330160.479, 6669763.78], [330821.842, 6669801.593], [332317.643, 6670155.027], [333527.226, 6669946.107], [334911.515, 6670348.246], [336005.637, 6671797.73], [338020.923, 6671051.837]]]}}, {\\\"id\\\": \\\"36\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Iisalmi\\\", \\\"elakelaisten_osuus\\\": 31.3, \\\"freshwarea\\\": 109.18, \\\"gml_id\\\": 1601100225, \\\"landarea\\\": 763.02, \\\"namefin\\\": \\\"Iisalmi\\\", \\\"nameswe\\\": \\\"Idensalmi\\\", \\\"natcode\\\": \\\"140\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 872.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[512602.738, 7062258.102], [512905.775, 7062367.74], [513259.901, 7062359.21], [513568.192, 7062251.608], [513790.441, 7061649.197], [514163.036, 7061228.63], [514296.358, 7061011.425], [514648.9, 7061035.364], [515521.391, 7060619.682], [516010.453, 7059907.165], [516298.591, 7059432.261], [516449.712, 7059056.542], [516419.838, 7058845.893], [516749.927, 7058232.378], [516806.093, 7057781.068], [516706.465, 7057127.616], [517269.061, 7056482.233], [517880.809, 7056151.165], [518216.52, 7055627.326], [518336.512, 7055307.693], [518261.549, 7054881.637], [520243.917, 7055957.984], [520381.274, 7055303.63], [520844.593, 7054119.629], [521401.015, 7053930.859], [521743.533, 7053636.728], [521741.276, 7053244.06], [521911.34, 7052652.872], [522067.416, 7052405.978], [522257.338, 7052406.427], [522571.707, 7052712.105], [522831.799, 7052924.021], [523284.916, 7052909.329], [523282.321, 7052469.906], [523392.38, 7051854.815], [526910.578, 7050972.008], [526699.369, 7050328.355], [526387.486, 7050229.226], [526431.719, 7049624.824], [526863.342, 7049999.763], [528140.702, 7047664.469], [528312.038, 7047149.278], [529125.511, 7046802.022], [531500.713, 7043639.966], [531582.372, 7043185.312], [531865.821, 7043067.188], [531881.895, 7042836.204], [531302.612, 7042513.674], [530853.838, 7042021.394], [531121.155, 7041726.879], [531560.592, 7041127.216], [532183.135, 7040739.383], [532388.476, 7040919.904], [533120.011, 7040502.824], [533256.506, 7040123.337], [532858.886, 7039894.993], [532998.819, 7039339.652], [528365.096, 7039498.565], [528395.973, 7040500.161], [527327.225, 7040406.868], [527034.323, 7040645.895], [527234.327, 7042132.896], [526526.378, 7041684.889], [526608.62, 7041471.887], [526094.597, 7041117.454], [525884.723, 7041393.983], [525259.668, 7041524.453], [524835.2, 7042462.276], [524990.32, 7042825.559], [524722.341, 7043918.66], [524262.084, 7044094.388], [523816.894, 7043859.083], [522898.297, 7038969.836], [522795.839, 7038906.361], [522380.001, 7039599.28], [521382.746, 7042662.731], [520848.294, 7043132.853], [520722.951, 7042184.032], [518584.522, 7040402.83], [518590.124, 7039687.716], [518274.359, 7038541.773], [516420.551, 7036859.067], [516051.563, 7036935.4], [515436.781, 7036197.35], [514993.163, 7036318.829], [515038.765, 7035981.79], [515697.114, 7035680.704], [515563.972, 7034956.796], [515633.548, 7034476.29], [515491.409, 7033982.789], [514850.066, 7034036.862], [514567.003, 7034539.754], [514151.969, 7034583.314], [514036.785, 7035192.589], [514232.908, 7035654.8], [513983.413, 7036099.57], [513742.706, 7035398.989], [513177.534, 7034719.874], [512897.546, 7034740.064], [511774.926, 7035162.747], [510899.708, 7035912.224], [510252.106, 7035313.812], [510472.833, 7034573.827], [509533.594, 7034253.447], [509368.265, 7033694.166], [509582.888, 7033430.068], [509736.534, 7032880.738], [509791.458, 7032346.351], [509630.703, 7032122.007], [509570.406, 7031662.904], [508781.583, 7031226.298], [508702.224, 7030556.858], [508538.754, 7030243.307], [508269.443, 7030481.068], [507924.03, 7030288.718], [507621.946, 7030315.393], [507119.286, 7030151.149], [506940.875, 7029786.521], [507611.911, 7028907.181], [507893.062, 7028355.332], [508281.409, 7028206.243], [508081.973, 7027448.8], [507791.955, 7026849.915], [507513.734, 7026349.03], [507418.61, 7025953.473], [506938.916, 7026293.151], [506711.706, 7026639.472], [505955.992, 7026731.548], [506713.33, 7025067.085], [507017.977, 7025038.14], [507266.255, 7024337.727], [507925.787, 7023803.141], [508530.349, 7023908.726], [508706.736, 7023482.243], [509139.435, 7023009.574], [509161.972, 7022394.746], [508756.458, 7023137.825], [508270.567, 7022901.362], [506669.038, 7021648.505], [506862.461, 7021387.212], [505541.102, 7021310.687], [505449.129, 7021560.032], [504977.618, 7021653.491], [504816.286, 7021268.746], [505198.635, 7020779.046], [505044.606, 7020500.48], [504267.711, 7020631.299], [503245.042, 7019529.87], [502631.876, 7018936.613], [502523.822, 7019390.889], [502932.232, 7020688.424], [502437.377, 7023255.317], [502202.324, 7023371.701], [501889.136, 7023162.798], [502012.263, 7022751.599], [501422.044, 7022565.296], [500792.183, 7023104.829], [500859.759, 7024219.824], [500550.126, 7025411.879], [500624.639, 7026257.1], [501161.826, 7026596.463], [499943.904, 7027502.992], [499414.63, 7027681.726], [498581.755, 7027261.496], [497818.749, 7027377.798], [497618.928, 7029134.115], [498027.554, 7030362.222], [497767.357, 7030643.607], [497762.055, 7031167.595], [497239.963, 7031452.976], [497240.86, 7031931.782], [496821.646, 7032224.671], [496750.734, 7033325.333], [496993.086, 7033480.909], [496901.057, 7034161.579], [496703.112, 7035235.345], [496716.122, 7035708.373], [496559.307, 7036188.153], [496168.86, 7036383.476], [495751.711, 7036693.546], [492593.288, 7037654.537], [492606.779, 7038324.968], [492337.776, 7039003.966], [492109.506, 7039677.674], [492126.025, 7040010.198], [491955.965, 7040498.691], [492114.762, 7040757.752], [492118.271, 7041200.701], [491881.15, 7041570.772], [491847.412, 7042014.912], [491612.121, 7042241.665], [491270.491, 7043139.937], [491235.695, 7043899.1], [491022.298, 7044400.72], [491136.885, 7044745.924], [491360.42, 7045002.209], [491075.011, 7045498.186], [491413.957, 7045997.191], [491413.487, 7046320.179], [490674.988, 7047116.009], [490277.872, 7047411.17], [490240.747, 7047594.201], [490474.985, 7047819.663], [489775.334, 7050469.515], [489988.55, 7050584.315], [490220.858, 7050440.375], [490695.636, 7050973.814], [490695.863, 7051262.696], [490585.671, 7051642.858], [490742.126, 7052284.625], [491268.474, 7051914.45], [491446.521, 7052157.073], [491252.084, 7052680.033], [491017.262, 7052957.051], [490829.78, 7053515.673], [490406.508, 7054053.044], [490685.905, 7054833.255], [490526.724, 7055406.658], [490495.792, 7056017.199], [490273.752, 7056172.399], [490149.486, 7056709.302], [490543.274, 7057144.481], [491205.655, 7057266.457], [490869.276, 7058041.893], [490996.152, 7058375.423], [490903.187, 7058654.1], [491046.142, 7059213.867], [491481.232, 7059345.416], [491527.006, 7059898.865], [493816.635, 7058481.74], [493576.462, 7057749.572], [495208.815, 7056324.661], [495124.941, 7057481.195], [495324.858, 7057977.498], [495960.118, 7057314.264], [496111.154, 7056154.039], [496972.006, 7056428.737], [497099.161, 7055482.818], [497461.319, 7054945.938], [497584.468, 7053613.729], [499525.192, 7054521.329], [499588.262, 7055204.355], [500042.953, 7054911.859], [500114.911, 7054443.38], [500459.663, 7054170.466], [500759.898, 7054278.439], [500493.792, 7054764.691], [500872.315, 7055253.552], [500108.162, 7056292.961], [503110.929, 7057891.209], [502995.362, 7060025.352], [503182.184, 7060467.576], [503854.019, 7059603.229], [504267.155, 7059345.935], [504760.661, 7058625.626], [505222.801, 7058393.942], [506052.868, 7058303.687], [506677.692, 7058406.829], [506901.903, 7058157.83], [507521.751, 7058258.393], [507636.458, 7057832.953], [509717.458, 7058555.284], [510347.007, 7058177.84], [510551.227, 7058234.803], [510420.725, 7059073.932], [510617.747, 7059282.358], [510678.481, 7060130.342], [510815.967, 7060301.087], [510665.005, 7061046.886], [511744.741, 7061220.504], [511977.39, 7061733.999], [512076.651, 7062411.842], [512602.738, 7062258.102]]]}}, {\\\"id\\\": \\\"37\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hamina\\\", \\\"elakelaisten_osuus\\\": 34.6, \\\"freshwarea\\\": 24.01, \\\"gml_id\\\": 1601100119, \\\"landarea\\\": 609.8, \\\"namefin\\\": \\\"Hamina\\\", \\\"nameswe\\\": \\\"Fredrikshamn\\\", \\\"natcode\\\": \\\"075\\\", \\\"seawarea\\\": 521.34, \\\"totalarea\\\": 1155.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[523012.229, 6742615.395], [523100.302, 6741519.039], [523460.569, 6739928.686], [523457.074, 6739355.418], [523569.434, 6738701.883], [524114.427, 6737079.244], [524367.738, 6735330.853], [523979.913, 6732841.059], [523784.195, 6732351.856], [523346.985, 6730604.96], [523027.419, 6729875.352], [523834.601, 6728777.402], [524224.549, 6727980.327], [524994.356, 6725200.354], [524759.444, 6723926.125], [524868.521, 6722898.181], [523134.227, 6721455.648], [521257.299, 6718540.708], [520522.006, 6716725.834], [519769.007, 6714602.161], [519552.214, 6713696.147], [520622.4, 6711009.539], [520873.202, 6710352.203], [521842.515, 6709124.799], [521869.73, 6708463.052], [522051.836, 6707424.777], [522354.125, 6705382.677], [521882.893, 6704353.956], [523999.107, 6702711.317], [527499.361, 6701906.215], [529428.661, 6700522.936], [528762.732, 6699897.507], [528670.1, 6698756.278], [529368.513, 6697249.292], [530702.194, 6694690.109], [533133.806, 6692476.121], [535867.756, 6689985.432], [527934.8, 6679878.0], [525826.092, 6677065.617], [523329.668, 6680336.538], [523328.492, 6680338.08], [514664.655, 6691691.173], [513725.034, 6691391.285], [506526.058, 6696685.697], [506574.973, 6697559.389], [506709.824, 6697775.616], [506593.573, 6697984.867], [506595.898, 6698194.119], [506667.974, 6698380.12], [506594.181, 6698563.575], [506342.6, 6699796.134], [506499.313, 6699923.859], [506273.715, 6700114.079], [506140.957, 6700756.399], [503446.53, 6704270.279], [501602.792, 6709129.429], [501436.923, 6709499.984], [500509.266, 6712616.621], [500388.816, 6713481.656], [501145.113, 6714192.191], [501104.527, 6714655.804], [501294.438, 6716892.204], [501560.721, 6718737.862], [495742.236, 6723645.134], [502280.186, 6727068.909], [502774.254, 6726131.31], [503493.539, 6726653.889], [503702.205, 6726229.196], [504554.073, 6726573.228], [505632.233, 6727767.256], [506001.177, 6729139.605], [506099.515, 6729452.007], [506129.947, 6729593.141], [506164.978, 6729659.968], [506497.591, 6730755.482], [507248.225, 6731241.845], [506713.89, 6732123.21], [506829.211, 6732543.328], [506391.816, 6733355.516], [506034.096, 6733820.047], [507038.377, 6734714.202], [506765.805, 6735178.959], [506915.992, 6735642.833], [506589.729, 6735994.927], [506412.945, 6736525.914], [507039.468, 6736871.018], [506684.696, 6737393.253], [506789.099, 6737940.158], [507155.652, 6737848.998], [511067.689, 6736128.226], [512275.726, 6736120.852], [512268.524, 6736482.851], [512644.807, 6737216.011], [512657.381, 6737810.754], [513002.196, 6737655.083], [513503.382, 6738014.356], [514567.092, 6738109.072], [514850.344, 6739092.161], [514693.504, 6739538.879], [514231.986, 6739970.001], [514221.986, 6740633.433], [514782.157, 6740990.493], [515916.386, 6742996.792], [516871.402, 6742843.462], [518198.469, 6742438.568], [518871.015, 6742507.525], [518980.951, 6743342.939], [519482.079, 6743731.272], [519266.828, 6744016.503], [520544.407, 6744854.672], [523282.6, 6745336.095], [523012.229, 6742615.395]]]}}, {\\\"id\\\": \\\"38\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Raisio\\\", \\\"elakelaisten_osuus\\\": 26.8, \\\"freshwarea\\\": 0.6, \\\"gml_id\\\": 1601100413, \\\"landarea\\\": 48.76, \\\"namefin\\\": \\\"Raisio\\\", \\\"nameswe\\\": \\\"Reso\\\", \\\"natcode\\\": \\\"680\\\", \\\"seawarea\\\": 0.7, \\\"totalarea\\\": 50.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[235463.543, 6719123.509], [235644.148, 6718838.122], [236436.744, 6718228.914], [236249.119, 6717856.375], [236275.907, 6717589.017], [236626.841, 6717432.035], [239031.602, 6717088.129], [239212.053, 6716883.621], [237999.991, 6715302.327], [237925.619, 6715645.233], [236800.025, 6714774.117], [236744.25, 6713917.739], [236433.342, 6714042.766], [236077.69, 6713302.323], [235719.426, 6712962.695], [235620.049, 6712433.718], [234312.124, 6712653.628], [233881.452, 6712612.212], [233676.802, 6712936.049], [232691.064, 6713037.804], [231867.009, 6712835.119], [231342.832, 6711884.384], [231097.55, 6712047.676], [230992.164, 6711298.417], [230509.85, 6711699.204], [229589.11, 6712650.956], [229254.67, 6713787.415], [229516.969, 6713864.285], [229014.096, 6714709.555], [229259.79, 6714803.236], [229246.922, 6714869.872], [229191.27, 6714874.245], [229179.204, 6715206.87], [229248.494, 6715975.862], [229782.415, 6716334.403], [230058.337, 6716745.867], [230067.829, 6717171.967], [230673.238, 6717304.81], [230299.548, 6718842.165], [231432.346, 6719221.529], [231813.44, 6718394.52], [232047.144, 6718436.723], [231838.288, 6719410.016], [232449.699, 6719681.379], [233641.175, 6720243.662], [235463.543, 6719123.509]]]}}, {\\\"id\\\": \\\"39\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Espoo\\\", \\\"elakelaisten_osuus\\\": 16.8, \\\"freshwarea\\\": 17.91, \\\"gml_id\\\": 1601100151, \\\"landarea\\\": 312.32, \\\"namefin\\\": \\\"Espoo\\\", \\\"nameswe\\\": \\\"Esbo\\\", \\\"natcode\\\": \\\"049\\\", \\\"seawarea\\\": 197.8, \\\"totalarea\\\": 528.03}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[371992.429, 6693568.406], [372701.704, 6693445.11], [373315.774, 6692906.008], [375773.698, 6691596.517], [375531.318, 6689430.332], [376354.195, 6689748.032], [376856.143, 6686816.984], [376371.406, 6683713.235], [376500.033, 6682866.332], [376822.62, 6682157.378], [377355.891, 6680366.179], [379983.85, 6681677.614], [380227.204, 6679742.437], [380445.725, 6678000.761], [380776.843, 6677700.102], [380640.369, 6677115.115], [380656.966, 6676048.243], [380402.06, 6675166.845], [380394.723, 6672659.046], [380381.881, 6671804.412], [380148.339, 6670916.41], [380148.339, 6670615.249], [380148.339, 6670198.605], [380050.19, 6670115.488], [379768.621, 6667904.746], [376718.723, 6664611.807], [384970.135, 6644566.77], [384276.96, 6644460.266], [378708.759, 6642381.577], [374291.085, 6654447.058], [370918.596, 6659436.164], [369008.343, 6664006.643], [369511.307, 6664951.673], [369624.923, 6665548.81], [369014.905, 6667969.252], [368827.362, 6668560.415], [369024.123, 6668858.872], [368662.779, 6669079.204], [368242.629, 6670403.578], [367525.556, 6671157.064], [366767.419, 6671638.43], [366385.661, 6671650.774], [366143.883, 6672265.576], [365540.027, 6672116.941], [365022.882, 6672599.145], [365314.502, 6673111.62], [365108.457, 6673407.561], [365162.244, 6673862.205], [364338.397, 6674422.046], [363017.28, 6675707.949], [363412.641, 6675840.156], [363457.769, 6676740.111], [362814.249, 6676852.943], [361652.114, 6677734.396], [362477.208, 6679221.87], [362957.958, 6679709.508], [363001.768, 6681442.419], [361894.255, 6682470.534], [361979.124, 6684547.048], [362624.151, 6685325.923], [362569.982, 6685740.984], [361751.588, 6686061.341], [362472.847, 6686495.759], [361962.88, 6690367.147], [365362.86, 6688879.345], [367225.249, 6689936.88], [367946.035, 6691143.146], [368572.913, 6692805.761], [369134.568, 6693775.377], [369586.719, 6693654.252], [371189.604, 6694095.302], [371992.429, 6693568.406]], [[372947.689, 6678678.058], [373427.01, 6678717.314], [373643.389, 6678350.981], [374498.137, 6678531.289], [374739.341, 6677929.854], [375218.776, 6678162.518], [375394.434, 6677836.238], [374928.974, 6677524.158], [374701.187, 6676622.637], [374065.216, 6676540.905], [373742.583, 6676148.814], [373400.053, 6676334.469], [373616.495, 6676726.034], [373303.101, 6676983.835], [372923.119, 6676562.166], [371987.124, 6676674.555], [371177.525, 6677182.199], [371315.675, 6677663.925], [372245.692, 6678153.252], [372947.689, 6678678.058]]]}}, {\\\"id\\\": \\\"40\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hammarland\\\", \\\"elakelaisten_osuus\\\": 22.4, \\\"freshwarea\\\": 1.74, \\\"gml_id\\\": 1601100252, \\\"landarea\\\": 138.56, \\\"namefin\\\": \\\"Hammarland\\\", \\\"nameswe\\\": \\\"Hammarland\\\", \\\"natcode\\\": \\\"076\\\", \\\"seawarea\\\": 1083.87, \\\"totalarea\\\": 1224.17}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[85515.452, 6711413.438], [80644.32, 6710966.426], [79484.308, 6712455.886], [80994.169, 6715620.987], [85515.452, 6711413.438]]], [[[76918.718, 6710048.243], [83390.452, 6704564.518], [80181.728, 6699153.428], [83166.492, 6697972.381], [83521.387, 6693605.895], [75712.828, 6689167.087], [69127.278, 6685754.306], [61685.886, 6699098.02], [63342.886, 6703795.346], [65835.844, 6710856.339], [67730.48, 6718328.312], [68416.736, 6718890.031], [76918.718, 6710048.243]]], [[[97442.838, 6721018.08], [98498.918, 6720318.464], [99045.613, 6719238.081], [99174.988, 6719054.675], [99429.869, 6717866.463], [99429.953, 6717865.373], [99451.828, 6717578.607], [99452.09, 6717575.173], [99255.609, 6715117.836], [99256.564, 6715115.484], [98890.413, 6714262.955], [98506.551, 6712886.023], [97515.21, 6712535.632], [97541.477, 6711267.874], [97541.568, 6711267.949], [98760.077, 6712268.169], [100239.99, 6711728.863], [101302.112, 6710596.97], [103471.305, 6709256.637], [103532.766, 6707941.478], [102793.219, 6707516.58], [102093.85, 6704005.086], [101362.572, 6702744.511], [101649.971, 6701844.556], [101852.986, 6700445.464], [101758.278, 6699026.894], [101876.436, 6698701.843], [102716.152, 6698582.952], [102917.857, 6698368.942], [102355.206, 6697912.854], [102314.614, 6697617.986], [101850.107, 6697620.159], [102090.319, 6696408.858], [102837.803, 6696218.15], [103095.183, 6695770.081], [103088.007, 6695496.399], [102908.842, 6695014.154], [103109.222, 6694643.393], [103479.536, 6694384.842], [103485.322, 6693846.502], [103625.707, 6693417.765], [103571.878, 6692917.047], [103785.433, 6692421.699], [103529.419, 6692244.433], [101015.517, 6692137.396], [101452.852, 6689753.272], [98775.755, 6689207.373], [98374.195, 6689026.231], [96185.421, 6687925.85], [95660.257, 6687447.264], [95086.904, 6687454.901], [94806.373, 6686995.636], [77470.352, 6670793.378], [72884.215, 6679017.315], [89039.646, 6687535.706], [89134.548, 6689568.716], [92644.554, 6690008.785], [93412.789, 6690836.509], [93416.893, 6692182.381], [93885.433, 6693325.265], [94150.571, 6694283.447], [94527.585, 6694459.538], [94284.098, 6694924.571], [94470.465, 6695430.531], [94858.211, 6695850.928], [94876.082, 6697024.16], [94745.045, 6697469.378], [94664.572, 6698877.268], [94993.499, 6699371.516], [94279.228, 6699973.874], [93748.214, 6700234.962], [93505.632, 6700781.29], [93590.629, 6701490.806], [93852.158, 6701794.185], [94164.171, 6702356.349], [94266.922, 6703176.477], [93726.539, 6704616.734], [93155.706, 6704632.264], [92816.435, 6705790.166], [92508.364, 6706547.46], [92854.539, 6707083.669], [93583.134, 6707584.03], [93438.553, 6707832.178], [93355.411, 6708463.322], [93733.514, 6709122.724], [93911.437, 6709800.328], [93035.798, 6710891.118], [93788.885, 6712042.118], [95235.616, 6713868.975], [95033.121, 6715842.384], [93585.731, 6717887.263], [90259.114, 6718352.615], [82008.282, 6723672.551], [74774.854, 6744728.818], [89255.764, 6749132.339], [97442.838, 6721018.08]], [[98781.919, 6709867.93], [99298.719, 6709236.539], [98534.684, 6707996.855], [97744.937, 6708702.591], [97291.148, 6708624.175], [96771.483, 6708143.966], [95979.303, 6709749.158], [96921.617, 6709993.462], [97401.693, 6710409.03], [97468.908, 6710674.947], [97932.603, 6710585.857], [98622.442, 6710941.343], [98781.919, 6709867.93]]]]}}, {\\\"id\\\": \\\"41\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Porvoo\\\", \\\"elakelaisten_osuus\\\": 24.2, \\\"freshwarea\\\": 10.08, \\\"gml_id\\\": 1601100350, \\\"landarea\\\": 654.54, \\\"namefin\\\": \\\"Porvoo\\\", \\\"nameswe\\\": \\\"Borg\\\\u00e5\\\", \\\"natcode\\\": \\\"638\\\", \\\"seawarea\\\": 1475.19, \\\"totalarea\\\": 2139.81}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[435590.55, 6713100.484], [435528.188, 6711744.437], [434110.318, 6706238.575], [434968.786, 6704726.724], [437034.762, 6702573.302], [437792.767, 6701253.251], [439819.249, 6700574.842], [440678.905, 6699988.086], [441981.101, 6697323.176], [442126.961, 6695025.907], [440777.546, 6691475.931], [440543.013, 6690608.187], [440534.558, 6689133.388], [440362.369, 6687478.534], [440238.037, 6686802.754], [440226.512, 6684222.574], [440658.466, 6683325.345], [440842.256, 6682561.233], [440949.28, 6681567.622], [441521.511, 6681243.678], [441817.277, 6680604.124], [442432.056, 6680416.591], [442518.68, 6680108.353], [441572.478, 6679538.348], [441429.493, 6679562.513], [441291.42, 6679509.325], [440492.119, 6679423.986], [440360.598, 6679483.631], [440424.946, 6679137.026], [440618.595, 6679041.443], [440653.091, 6679024.416], [440770.826, 6678581.0], [441244.53, 6678687.873], [442751.498, 6678392.262], [443818.541, 6678652.876], [443700.526, 6679352.018], [447733.414, 6680764.178], [459410.026, 6656612.165], [454792.563, 6655945.057], [448432.079, 6653337.146], [445150.428, 6649233.591], [420777.911, 6644262.748], [414558.996, 6644748.454], [406641.156, 6645584.736], [408589.052, 6664019.377], [410558.993, 6671362.474], [415467.249, 6677205.501], [416468.479, 6678378.37], [416330.067, 6679130.905], [418498.101, 6681862.818], [415198.668, 6685186.889], [412341.632, 6689906.852], [409854.62, 6694354.312], [409951.03, 6696943.21], [409843.854, 6697758.511], [412449.0, 6698268.84], [414618.849, 6698913.891], [416939.36, 6700119.668], [418012.334, 6701318.942], [417449.445, 6702898.098], [416495.765, 6703678.83], [413795.168, 6706224.109], [415506.072, 6706184.414], [419229.404, 6706780.453], [419684.896, 6706394.097], [420729.97, 6706689.307], [420629.886, 6706995.56], [422144.086, 6707229.575], [422418.882, 6707848.004], [423421.791, 6704555.878], [425989.811, 6708046.772], [426408.432, 6707172.144], [427186.936, 6706665.046], [427801.294, 6705852.483], [428493.138, 6705954.208], [429283.592, 6705551.068], [429744.182, 6705662.097], [430051.859, 6706552.402], [430607.018, 6707685.448], [430371.524, 6708120.676], [431262.367, 6709379.296], [431604.214, 6709778.054], [431939.038, 6709597.233], [432388.881, 6710744.22], [432165.201, 6711425.044], [431908.326, 6711836.67], [431838.508, 6712416.556], [435459.201, 6713354.279], [435590.55, 6713100.484]]]}}, {\\\"id\\\": \\\"42\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuortane\\\", \\\"elakelaisten_osuus\\\": 36.2, \\\"freshwarea\\\": 22.72, \\\"gml_id\\\": 1601100056, \\\"landarea\\\": 462.17, \\\"namefin\\\": \\\"Kuortane\\\", \\\"nameswe\\\": \\\"Kuortane\\\", \\\"natcode\\\": \\\"300\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 484.89}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[323281.486, 6981415.652], [323928.781, 6981069.822], [324159.201, 6981217.003], [324693.63, 6980808.208], [325181.946, 6980624.328], [325329.616, 6980289.04], [325846.0, 6979874.279], [328845.615, 6976651.359], [331925.547, 6970644.883], [333911.129, 6968504.392], [332837.085, 6967908.395], [331365.767, 6967087.545], [331760.705, 6965064.996], [333282.127, 6963623.411], [333567.256, 6964156.475], [334399.356, 6964903.1], [335880.418, 6964356.705], [336830.159, 6965327.371], [339046.709, 6963078.849], [334934.682, 6960968.688], [335000.176, 6961317.194], [334811.974, 6961409.526], [334489.89, 6960615.783], [333982.673, 6961494.346], [331466.168, 6960120.355], [331150.218, 6960738.689], [329822.445, 6962332.912], [329315.002, 6961337.605], [330796.351, 6960551.665], [330074.423, 6959529.009], [329520.577, 6958319.412], [329032.056, 6958529.781], [328693.011, 6957876.482], [327736.201, 6957370.973], [325033.504, 6953215.666], [324202.239, 6952871.764], [324162.099, 6952342.846], [324376.584, 6951998.031], [324145.051, 6951598.086], [323132.857, 6951459.805], [322536.634, 6952029.83], [321638.768, 6952029.479], [321599.127, 6952377.891], [321201.474, 6953037.382], [319871.993, 6953244.527], [319615.918, 6953072.451], [318889.984, 6952408.898], [319163.802, 6951555.654], [318876.088, 6951484.556], [318513.322, 6952112.996], [318058.915, 6951716.892], [315249.01, 6955225.01], [315250.706, 6955693.082], [315519.734, 6956046.452], [315520.201, 6957178.656], [315182.096, 6957508.842], [314376.799, 6956330.322], [313593.169, 6957329.577], [313440.917, 6958332.437], [309502.375, 6961659.038], [310144.482, 6965973.224], [310434.857, 6966397.154], [311266.077, 6969928.572], [313487.953, 6971769.623], [313617.307, 6972716.735], [315787.777, 6977065.865], [315841.886, 6977362.373], [316093.924, 6977645.335], [316433.436, 6978326.15], [316057.644, 6979006.882], [316442.142, 6979144.586], [316626.766, 6978965.299], [317296.653, 6979547.545], [319758.372, 6980616.904], [320351.263, 6980239.0], [321007.331, 6980442.953], [321599.856, 6980405.616], [321791.616, 6980654.096], [322159.68, 6980735.29], [322273.401, 6981065.417], [322579.776, 6981080.36], [323011.251, 6981430.73], [323281.486, 6981415.652]]]}}, {\\\"id\\\": \\\"43\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kristiinankaupunki\\\", \\\"elakelaisten_osuus\\\": 39.6, \\\"freshwarea\\\": 14.5, \\\"gml_id\\\": 1601100470, \\\"landarea\\\": 683.04, \\\"namefin\\\": \\\"Kristiinankaupunki\\\", \\\"nameswe\\\": \\\"Kristinestad\\\", \\\"natcode\\\": \\\"287\\\", \\\"seawarea\\\": 981.44, \\\"totalarea\\\": 1678.98}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[219000.159, 6933062.97], [218707.443, 6931647.397], [218962.582, 6931422.913], [218770.84, 6931057.236], [218501.355, 6930941.002], [218572.718, 6930195.211], [216976.293, 6928462.479], [218093.547, 6927685.11], [218046.269, 6927149.566], [218436.99, 6926891.426], [218593.415, 6925888.223], [218955.365, 6925730.881], [220029.246, 6925930.535], [220176.156, 6925571.195], [220556.156, 6925612.214], [220473.577, 6926013.739], [221916.423, 6926284.112], [221718.688, 6925671.973], [222267.203, 6925770.216], [222158.918, 6926330.964], [223397.689, 6926552.538], [223826.055, 6925757.535], [224426.972, 6925681.659], [225167.371, 6925052.695], [225256.384, 6924650.712], [225201.122, 6924188.49], [224950.128, 6923642.274], [225011.905, 6923315.604], [224114.019, 6922909.18], [223712.47, 6922239.417], [223950.667, 6922049.032], [224207.702, 6922197.404], [224488.237, 6922000.135], [224215.351, 6921629.329], [224659.862, 6921051.008], [223915.927, 6916978.482], [223474.936, 6916382.241], [223760.954, 6915847.111], [223586.714, 6914542.365], [224296.246, 6914596.383], [224821.679, 6915201.47], [225315.526, 6914891.255], [225014.052, 6914546.209], [226231.269, 6914035.293], [226856.354, 6914006.684], [227281.822, 6913428.553], [227132.621, 6912942.509], [226903.183, 6912491.273], [227232.29, 6912460.38], [226954.213, 6912158.064], [227140.227, 6911587.763], [227581.819, 6911175.92], [227572.087, 6910641.65], [227743.462, 6910173.046], [228152.922, 6909981.352], [228071.129, 6909811.776], [227207.345, 6909689.491], [225163.871, 6909648.633], [225119.667, 6909119.52], [222606.082, 6906388.024], [224367.82, 6904027.344], [223708.692, 6901517.61], [222826.449, 6900965.132], [223300.344, 6901573.528], [223144.816, 6902013.071], [222639.866, 6901935.83], [222290.181, 6901278.795], [220952.133, 6902377.43], [220672.425, 6898182.983], [219644.377, 6896875.884], [220598.229, 6892319.177], [219915.284, 6891632.822], [219279.874, 6890304.411], [220077.099, 6887919.971], [213658.47, 6889017.4], [208432.048, 6887784.308], [204486.251, 6882577.493], [200249.249, 6881206.518], [176308.291, 6880855.366], [176071.862, 6888197.318], [174060.771, 6912686.247], [196226.57, 6914506.107], [202884.344, 6918063.091], [206220.164, 6921394.958], [206331.241, 6921854.239], [206795.065, 6921916.981], [206946.501, 6922330.874], [207363.251, 6922635.02], [211146.583, 6924964.769], [215136.367, 6928430.564], [218977.094, 6933299.884], [219000.159, 6933062.97]]]}}, {\\\"id\\\": \\\"44\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kolari\\\", \\\"elakelaisten_osuus\\\": 31.1, \\\"freshwarea\\\": 58.53, \\\"gml_id\\\": 1601100045, \\\"landarea\\\": 2559.34, \\\"namefin\\\": \\\"Kolari\\\", \\\"nameswe\\\": \\\"Kolari\\\", \\\"natcode\\\": \\\"273\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2617.87}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[379679.052, 7504517.657], [384193.776, 7503812.015], [386371.183, 7487852.355], [389146.266, 7478374.415], [388684.011, 7478392.66], [388674.902, 7478221.186], [388964.38, 7478103.18], [389105.098, 7477747.804], [389450.491, 7477308.961], [390932.096, 7472226.897], [400217.583, 7453588.209], [400701.02, 7453792.787], [400979.012, 7454378.048], [401136.004, 7454261.706], [400956.601, 7453590.992], [400821.416, 7452367.021], [401952.851, 7450100.357], [402450.905, 7447167.556], [402848.86, 7446709.413], [402638.583, 7446197.379], [402746.625, 7445638.082], [403275.76, 7445311.71], [403173.487, 7445078.796], [402830.611, 7445148.327], [406113.615, 7429785.127], [406495.398, 7429223.069], [406318.284, 7428850.514], [406913.773, 7426046.917], [378048.544, 7433167.916], [376198.326, 7435268.207], [372145.77, 7435304.273], [371841.62, 7434986.899], [371637.312, 7435187.429], [371882.613, 7435430.812], [371727.693, 7435593.904], [371504.242, 7435527.34], [371271.796, 7434832.887], [371102.52, 7435062.427], [370760.922, 7434986.159], [369532.563, 7435182.57], [368979.937, 7436211.462], [368350.029, 7435823.008], [368743.458, 7435322.348], [359578.098, 7435379.826], [359824.759, 7434659.799], [359479.277, 7434870.554], [359268.209, 7435050.261], [359158.905, 7435182.407], [358843.41, 7435622.315], [358703.395, 7435892.413], [358611.308, 7436196.033], [358558.205, 7436291.095], [358378.512, 7436569.336], [357952.816, 7437087.309], [357839.028, 7437360.03], [357744.484, 7437729.937], [357655.572, 7437905.122], [357555.073, 7438313.408], [357561.931, 7438441.356], [357549.117, 7438502.165], [357418.575, 7438649.507], [357357.393, 7438855.26], [357269.929, 7438908.058], [357066.754, 7438973.099], [357030.561, 7439009.115], [357027.883, 7439071.41], [357086.682, 7439232.623], [357078.46, 7439341.309], [356993.2, 7439696.691], [356991.0, 7439843.16], [357018.125, 7440012.073], [357003.453, 7440075.029], [356906.459, 7440174.437], [356717.963, 7440176.557], [356655.437, 7440207.977], [356621.364, 7440245.892], [356548.485, 7440458.281], [356509.926, 7440801.203], [356436.492, 7440971.326], [356368.148, 7441085.09], [356219.173, 7441269.153], [356002.874, 7441508.823], [355837.955, 7441655.643], [355625.024, 7441999.356], [355498.08, 7442298.528], [355345.658, 7442570.976], [355286.251, 7442702.302], [355267.479, 7442959.809], [355187.221, 7443463.002], [355090.985, 7443658.372], [355049.417, 7443862.945], [355041.7, 7444023.681], [355078.649, 7444272.282], [355122.454, 7444382.252], [355233.402, 7444548.85], [355239.016, 7444618.709], [355178.004, 7444796.25], [355181.527, 7444864.206], [355099.925, 7445303.333], [355018.376, 7445471.898], [355029.016, 7445715.841], [354955.108, 7446070.414], [354912.839, 7446455.384], [354843.188, 7446621.341], [354845.808, 7446749.465], [354829.244, 7446816.48], [354768.588, 7446923.841], [354593.57, 7447069.182], [354411.838, 7447279.018], [354327.807, 7447399.61], [354090.53, 7447660.409], [353968.087, 7447891.23], [353783.554, 7448163.361], [353655.055, 7448470.642], [353583.117, 7448708.854], [353524.681, 7449090.689], [353524.663, 7449206.928], [353475.06, 7449371.84], [353310.421, 7449679.015], [353121.81, 7449794.998], [353003.006, 7449941.467], [352836.168, 7450477.236], [352629.388, 7450706.426], [352479.662, 7450942.067], [352372.67, 7451372.274], [352329.843, 7451478.613], [352242.851, 7451625.254], [352157.33, 7451841.973], [352042.573, 7452276.547], [352012.157, 7452310.154], [351845.849, 7452394.649], [351807.796, 7452436.659], [351679.235, 7452795.791], [351550.914, 7453038.704], [351348.933, 7453373.471], [351189.777, 7453601.894], [351079.49, 7453803.815], [350957.276, 7453968.295], [350863.66, 7454183.387], [350745.413, 7454628.187], [350834.902, 7454814.047], [350988.424, 7455036.8], [351026.822, 7455485.731], [351042.937, 7455527.011], [351146.337, 7455710.176], [351331.496, 7455883.204], [351545.32, 7456148.982], [351606.031, 7456200.022], [351680.681, 7456248.362], [352089.247, 7456396.133], [352294.609, 7456532.078], [352409.848, 7456630.494], [352452.957, 7456690.418], [352494.808, 7456886.697], [352496.912, 7456968.745], [352371.858, 7457397.849], [352376.117, 7457563.965], [352657.824, 7458185.024], [352824.455, 7458348.955], [352890.155, 7458499.943], [352900.054, 7458577.589], [352870.115, 7458701.346], [352789.157, 7458807.6], [352352.874, 7459150.191], [352253.802, 7459255.371], [352098.553, 7459681.992], [351907.167, 7460028.298], [351699.034, 7460279.238], [351633.69, 7460336.63], [351471.598, 7460424.941], [351341.305, 7460467.589], [351085.676, 7460450.423], [351022.254, 7460465.629], [350906.17, 7460551.614], [350865.929, 7460629.805], [350899.231, 7460774.424], [350972.55, 7460901.76], [351303.251, 7461302.819], [351420.684, 7461525.322], [351542.233, 7461669.463], [351591.633, 7461775.181], [351631.975, 7461939.451], [351636.962, 7462039.37], [351612.175, 7462104.721], [351511.156, 7462250.034], [351382.433, 7462522.985], [351351.039, 7462696.872], [351346.343, 7462843.374], [351241.016, 7463063.026], [351223.028, 7463144.078], [351235.046, 7463183.565], [351287.366, 7463226.995], [351405.471, 7463263.13], [351795.965, 7463331.636], [351864.286, 7463374.276], [352021.348, 7463546.703], [352036.351, 7463606.038], [352024.256, 7463684.81], [351913.352, 7463952.832], [351883.037, 7464068.578], [351777.237, 7464318.322], [351736.127, 7464378.498], [351716.756, 7464471.631], [351721.443, 7464565.548], [351810.083, 7464733.383], [351991.748, 7464876.521], [352055.645, 7464951.429], [352083.067, 7465018.175], [352264.221, 7465191.376], [352328.238, 7465308.353], [352383.366, 7465367.7], [352786.284, 7465603.871], [352883.006, 7465613.007], [352997.735, 7465581.212], [353093.86, 7465578.373], [353309.409, 7465677.713], [353456.433, 7465690.334], [353530.238, 7465722.678], [353681.888, 7465867.317], [353802.112, 7465905.344], [353946.857, 7465912.068], [354024.663, 7465864.072], [354182.078, 7465683.863], [354277.289, 7465622.958], [354349.104, 7465615.352], [354549.564, 7465653.342], [354884.021, 7465764.713], [354978.965, 7465818.037], [355158.316, 7465955.276], [355366.954, 7466157.11], [355505.087, 7466232.307], [355642.714, 7466257.423], [355862.177, 7466354.584], [356049.316, 7466367.183], [356240.569, 7466421.658], [356398.393, 7466409.692], [356625.123, 7466492.459], [356801.977, 7466659.834], [356964.014, 7466712.72], [357287.113, 7466719.209], [357403.118, 7466789.083], [357529.6, 7466830.309], [357627.443, 7466823.0], [357799.527, 7466705.389], [358093.17, 7466649.312], [358208.94, 7466602.928], [358435.324, 7466600.661], [358529.383, 7466523.381], [358572.938, 7466512.997], [358674.11, 7466567.622], [358801.308, 7466584.773], [358851.472, 7466660.211], [358836.902, 7466799.306], [358875.132, 7466951.577], [359037.583, 7467065.024], [359152.886, 7467233.15], [359244.256, 7467478.742], [359447.197, 7467934.781], [359485.648, 7468091.038], [359505.199, 7468416.708], [359637.898, 7468648.039], [359652.598, 7468883.793], [359725.203, 7469078.287], [359754.966, 7469259.058], [359886.907, 7469364.141], [359959.818, 7469551.951], [359941.706, 7469803.235], [359961.718, 7469882.362], [360081.365, 7470108.713], [360155.406, 7470305.321], [360155.043, 7470457.59], [360182.858, 7470612.012], [360159.946, 7470833.661], [360176.877, 7470931.015], [360233.303, 7470976.258], [360304.551, 7470996.691], [360434.965, 7470998.088], [360485.195, 7471039.607], [360513.337, 7471120.358], [360515.794, 7471208.428], [360478.176, 7471456.895], [360486.811, 7471588.744], [360519.151, 7471633.21], [360622.899, 7471702.108], [360743.402, 7471824.272], [360930.83, 7472041.24], [361247.534, 7472315.783], [361305.914, 7472479.185], [361370.054, 7472598.183], [361407.044, 7472774.717], [361384.063, 7472835.996], [361252.488, 7472970.968], [361205.805, 7473039.487], [361136.901, 7473263.501], [361026.781, 7473347.272], [360934.527, 7473466.222], [360883.176, 7473601.118], [360863.228, 7473762.477], [360817.862, 7473856.987], [360742.868, 7473961.024], [360678.974, 7473966.305], [360169.89, 7473853.877], [360051.579, 7473893.98], [360003.279, 7473930.51], [359930.295, 7474034.436], [359884.252, 7474195.132], [359871.837, 7474426.288], [359900.808, 7474523.034], [359982.451, 7474591.045], [360006.888, 7474637.903], [360040.74, 7474792.525], [360033.098, 7474879.108], [359980.55, 7475070.203], [359793.133, 7475370.394], [359775.464, 7475457.475], [359766.207, 7475750.6], [359634.315, 7476078.027], [359621.244, 7476176.922], [359742.688, 7476834.217], [359790.571, 7476948.03], [359905.787, 7477124.6], [359927.336, 7477273.826], [359889.985, 7477367.923], [359754.09, 7477497.128], [359622.045, 7477662.198], [359384.567, 7477884.758], [359212.499, 7478011.779], [359184.903, 7478061.31], [359183.866, 7478159.568], [359278.732, 7478489.488], [359296.429, 7478681.03], [359393.446, 7478854.481], [359686.393, 7478975.879], [359831.582, 7479070.731], [359950.101, 7479233.058], [360028.807, 7479441.534], [360086.196, 7479544.859], [360264.257, 7479774.309], [360391.97, 7479960.235], [360445.558, 7480067.742], [360698.142, 7480343.535], [360798.192, 7480495.875], [360843.789, 7480605.824], [360853.564, 7480681.459], [360833.39, 7481001.034], [360826.286, 7481622.476], [360865.451, 7481844.889], [361027.149, 7482111.321], [361079.841, 7482242.936], [361431.375, 7482576.02], [361453.967, 7482626.987], [361465.139, 7482730.596], [361433.885, 7482908.455], [361355.971, 7483074.628], [361331.119, 7483220.144], [361276.084, 7483363.111], [361139.336, 7483476.116], [361056.584, 7483586.434], [360883.329, 7483691.261], [360698.388, 7483722.513], [360639.453, 7483747.511], [360477.581, 7483879.79], [360340.544, 7483946.732], [360023.717, 7484229.025], [359832.051, 7484366.805], [359704.381, 7484501.405], [359378.572, 7484683.943], [359230.118, 7484803.561], [359129.269, 7484832.627], [358816.508, 7484834.216], [358649.341, 7484780.426], [358379.396, 7484595.565], [358148.138, 7484502.918], [357935.889, 7484469.409], [357701.426, 7484513.159], [357598.283, 7484576.423], [357422.729, 7484595.212], [357371.914, 7484621.773], [357248.842, 7484848.311], [357180.579, 7484927.855], [356995.228, 7485031.28], [356453.24, 7485102.4], [355941.554, 7485338.318], [355489.667, 7485607.314], [355322.683, 7485677.761], [355133.217, 7485699.249], [355032.802, 7485736.294], [354856.223, 7485855.31], [354689.844, 7485937.767], [354560.187, 7485952.238], [354361.35, 7485906.066], [354258.907, 7485903.167], [353822.833, 7486007.07], [353689.475, 7486067.828], [353488.634, 7486223.188], [353371.888, 7486337.247], [353254.221, 7486513.487], [353026.171, 7486689.23], [352594.283, 7486803.061], [352370.632, 7486906.474], [352172.912, 7486926.394], [352081.969, 7486903.763], [352073.744, 7487075.113], [359795.101, 7493001.799], [361887.139, 7491645.558], [361891.647, 7491861.658], [360282.991, 7493092.772], [360235.071, 7493341.848], [372201.996, 7502656.03], [372116.262, 7503033.984], [372423.529, 7503073.219], [372473.55, 7502858.74], [375438.982, 7505181.063], [379241.63, 7504585.859], [378777.925, 7505202.139], [379009.565, 7505384.475], [379679.052, 7504517.657]]]}}, {\\\"id\\\": \\\"45\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Karstula\\\", \\\"elakelaisten_osuus\\\": 38.6, \\\"freshwarea\\\": 76.13, \\\"gml_id\\\": 1601100379, \\\"landarea\\\": 887.07, \\\"namefin\\\": \\\"Karstula\\\", \\\"nameswe\\\": \\\"Karstula\\\", \\\"natcode\\\": \\\"226\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 963.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[393293.146, 6991026.531], [396408.544, 6991135.367], [397320.986, 6991049.415], [397962.149, 6991186.929], [398271.071, 6992115.202], [400224.392, 6992283.04], [401391.256, 6987961.64], [401708.207, 6986713.68], [400888.617, 6986385.028], [401101.201, 6985208.603], [401742.123, 6985067.321], [401867.378, 6984652.809], [401207.748, 6984618.205], [401355.968, 6983788.623], [401655.33, 6983806.582], [401825.15, 6982116.74], [402034.602, 6981239.752], [401860.868, 6980949.763], [403193.776, 6980022.935], [403937.371, 6979363.514], [404969.451, 6979415.331], [405294.952, 6979660.529], [408039.325, 6978522.909], [407419.485, 6974255.929], [407599.548, 6973674.134], [407443.602, 6973074.489], [407835.449, 6972680.015], [408991.617, 6970849.583], [409108.895, 6970791.966], [409118.224, 6970641.344], [409347.51, 6970422.294], [409691.55, 6970426.245], [410187.993, 6970026.829], [410457.636, 6969536.532], [411045.109, 6969293.649], [411641.837, 6969234.66], [411863.286, 6968895.861], [412572.862, 6968626.633], [413088.494, 6968106.42], [413254.134, 6967846.516], [413003.782, 6967037.373], [413384.497, 6966506.166], [413355.656, 6965786.865], [406827.238, 6964481.634], [406358.817, 6965863.256], [405708.232, 6966540.728], [404581.339, 6967318.02], [404070.015, 6967705.737], [403470.24, 6967892.058], [403099.317, 6968502.28], [402749.504, 6969170.585], [402519.209, 6969863.259], [402486.194, 6970102.848], [402354.786, 6970321.027], [402085.948, 6970570.56], [401659.166, 6970900.67], [401464.645, 6970746.982], [400683.538, 6971397.951], [400093.761, 6971771.032], [391551.333, 6965752.723], [392414.49, 6963359.535], [393315.369, 6962786.825], [393740.409, 6963317.455], [394404.258, 6963281.52], [394646.093, 6964006.633], [394898.159, 6963966.964], [395308.741, 6963387.582], [395098.265, 6962872.589], [395570.461, 6962611.101], [394193.567, 6960067.267], [393574.348, 6960388.876], [393383.68, 6960289.673], [393794.442, 6959953.479], [395020.243, 6959530.37], [394174.544, 6958027.296], [391568.968, 6959398.309], [391125.421, 6959364.477], [390881.407, 6960057.207], [390624.68, 6960285.968], [390555.24, 6960635.358], [390604.739, 6961331.646], [390448.728, 6961962.114], [390478.029, 6962641.765], [390219.018, 6963748.402], [389676.242, 6963845.389], [389285.192, 6964843.749], [388929.975, 6964100.211], [388107.994, 6963612.81], [387950.744, 6963038.152], [387721.245, 6962949.586], [387043.452, 6963242.999], [386909.075, 6963092.513], [386958.623, 6961909.718], [386491.09, 6962328.391], [386125.19, 6962072.993], [385971.904, 6962477.151], [386160.078, 6962680.333], [385305.346, 6963448.709], [384170.332, 6961656.664], [384373.053, 6961522.212], [383041.896, 6959580.079], [380224.213, 6959740.96], [379344.012, 6958432.097], [376702.724, 6960169.175], [375379.589, 6957482.924], [374207.491, 6957389.042], [374473.468, 6956451.377], [372356.168, 6955798.067], [371530.387, 6959152.232], [368883.746, 6965582.868], [368987.302, 6966145.298], [368551.308, 6966076.979], [367911.702, 6967422.015], [366556.375, 6968421.446], [367438.411, 6968979.448], [365748.569, 6971945.262], [365065.203, 6971485.266], [364378.617, 6971320.847], [365587.729, 6974440.92], [365848.291, 6972910.792], [370211.515, 6973788.01], [370238.793, 6976578.848], [369641.31, 6977920.938], [367606.853, 6978929.195], [365064.47, 6979207.831], [365541.96, 6984316.807], [370479.529, 6983800.297], [372207.177, 6980426.019], [374672.274, 6981626.807], [373620.306, 6983481.983], [375187.66, 6983308.504], [378689.622, 6987616.264], [379683.288, 6987071.163], [380366.815, 6988318.226], [381664.814, 6988014.952], [380963.13, 6986557.765], [381305.033, 6986418.696], [381450.344, 6986725.817], [383215.366, 6985974.508], [383913.867, 6985880.679], [384047.116, 6986525.328], [384272.962, 6986791.723], [385931.12, 6987943.049], [385393.848, 6988902.17], [389548.311, 6991970.373], [389844.021, 6991566.121], [390972.196, 6992394.961], [392882.821, 6992449.832], [393293.146, 6991026.531]]]}}, {\\\"id\\\": \\\"46\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Parikkala\\\", \\\"elakelaisten_osuus\\\": 45.2, \\\"freshwarea\\\": 168.7, \\\"gml_id\\\": 1601100517, \\\"landarea\\\": 592.01, \\\"namefin\\\": \\\"Parikkala\\\", \\\"nameswe\\\": \\\"Parikkala\\\", \\\"natcode\\\": \\\"580\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 760.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[664812.979, 6863038.915], [665420.369, 6861728.461], [661959.6, 6857819.5], [661849.0, 6857862.0], [661777.2, 6857830.9], [660749.3, 6852690.8], [660308.3, 6851791.4], [659775.8, 6851134.5], [659698.3, 6851039.0], [659403.1, 6850674.8], [659093.4, 6850342.4], [657694.9, 6848838.6], [655897.2, 6846840.5], [655864.7, 6846720.7], [655761.8, 6846690.4], [655261.5, 6846135.4], [653306.308, 6843877.158], [651753.6, 6842105.9], [651675.8, 6841896.9], [651612.7, 6841837.7], [651576.9, 6841562.6], [651430.0, 6841537.9], [651464.0, 6840813.0], [650611.188, 6840773.252], [649267.5, 6838999.4], [649217.1, 6838509.4], [649118.8, 6838271.0], [649022.7, 6837946.8], [649033.5, 6837741.5], [649064.3, 6837610.9], [649040.9, 6837498.7], [648990.4, 6837408.5], [649005.6, 6837224.1], [648958.9, 6837153.6], [648950.7, 6837113.4], [648970.1, 6836981.3], [648933.4, 6836946.1], [648939.2, 6836884.6], [648917.4, 6836796.6], [648816.9, 6836821.5], [648702.8, 6836817.5], [648545.1, 6836716.8], [648079.0, 6835795.7], [647859.7, 6835626.8], [647062.6, 6834356.1], [646123.081, 6833057.221], [645908.4, 6831758.2], [645868.1, 6830826.6], [645503.5, 6829981.5], [644006.8, 6828197.1], [642862.2, 6827232.4], [640562.4, 6824239.4], [640697.0, 6823582.4], [638843.0, 6821582.2], [638726.4, 6821393.8], [638767.6, 6821301.0], [638651.4, 6821345.0], [638414.3, 6821262.0], [638327.3, 6821031.9], [638121.7, 6820928.7], [638099.3, 6820826.5], [637958.1, 6820730.4], [637287.2, 6820738.5], [636183.871, 6820299.987], [632895.9, 6820123.9], [633391.6, 6816728.6], [630932.1, 6813256.5], [630413.055, 6812512.125], [630185.616, 6812732.092], [630185.607, 6812732.1], [630185.142, 6812732.55], [630272.903, 6812827.132], [630626.35, 6813208.045], [630624.12, 6813209.471], [629717.134, 6813789.529], [629263.017, 6813466.27], [628476.781, 6814481.072], [627131.104, 6815588.713], [627049.123, 6816525.931], [626045.338, 6819111.325], [625892.02, 6819723.983], [625471.324, 6819492.432], [624532.978, 6820369.687], [623612.32, 6819945.87], [623268.2, 6820457.357], [622285.382, 6820785.794], [622539.434, 6821971.355], [622639.586, 6822660.992], [621125.106, 6822530.853], [620956.825, 6821823.99], [618959.17, 6822774.405], [618961.202, 6822781.622], [618976.698, 6822775.013], [620151.114, 6827002.29], [620548.754, 6828224.691], [621425.457, 6830874.223], [621776.811, 6831346.093], [621766.329, 6831432.381], [627331.158, 6837973.341], [630140.5, 6839765.866], [632517.477, 6840604.555], [634302.975, 6841586.113], [634839.303, 6842296.256], [635242.406, 6845880.073], [656016.403, 6857881.629], [656504.524, 6857800.869], [657039.853, 6858531.507], [662181.473, 6861675.648], [663398.838, 6862341.339], [663398.964, 6862341.408], [663817.628, 6862548.561], [663817.638, 6862548.566], [664812.171, 6863040.658], [664812.979, 6863038.915]]]}}, {\\\"id\\\": \\\"47\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sottunga\\\", \\\"elakelaisten_osuus\\\": 39.6, \\\"freshwarea\\\": 0.02, \\\"gml_id\\\": 1601100548, \\\"landarea\\\": 28.03, \\\"namefin\\\": \\\"Sottunga\\\", \\\"nameswe\\\": \\\"Sottunga\\\", \\\"natcode\\\": \\\"766\\\", \\\"seawarea\\\": 314.39, \\\"totalarea\\\": 342.44}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[144951.168, 6691887.873], [147407.192, 6688488.081], [150098.228, 6686450.522], [150914.268, 6683806.331], [153066.557, 6683484.428], [154016.708, 6681906.006], [155620.581, 6680556.934], [156306.44, 6679495.896], [159927.243, 6679907.453], [158717.552, 6681545.473], [160352.753, 6682702.22], [160363.511, 6682700.76], [161898.989, 6685455.012], [168214.52, 6680237.598], [170185.666, 6677823.73], [159977.1, 6672068.394], [157041.536, 6672621.379], [155895.65, 6673202.687], [154848.253, 6672553.746], [152284.008, 6666717.923], [151992.085, 6657754.958], [147801.365, 6664277.693], [146367.24, 6667244.39], [147457.037, 6674028.643], [146485.122, 6675695.505], [145735.02, 6681943.916], [144262.818, 6682855.287], [143334.989, 6683112.872], [140587.388, 6685460.726], [140761.833, 6686139.095], [141286.857, 6686588.354], [138894.675, 6690310.516], [141029.635, 6691859.312], [142597.847, 6694122.714], [144951.168, 6691887.873]]]}}, {\\\"id\\\": \\\"48\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Evij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 32.4, \\\"freshwarea\\\": 36.56, \\\"gml_id\\\": 1601100074, \\\"landarea\\\": 354.15, \\\"namefin\\\": \\\"Evij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Evij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"052\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 390.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[321710.698, 7044242.138], [322132.327, 7044594.452], [322203.986, 7044573.717], [322425.792, 7044331.883], [322574.575, 7044129.598], [322660.378, 7043976.115], [323128.898, 7043925.217], [323389.73, 7043715.074], [323422.701, 7043624.934], [323531.703, 7043563.964], [323494.299, 7043508.379], [323649.544, 7043375.123], [323927.026, 7043390.941], [324010.547, 7043430.194], [324276.543, 7043754.98], [326193.207, 7042536.619], [326432.111, 7042394.681], [326482.883, 7042259.655], [326402.959, 7042224.615], [326626.683, 7041894.341], [327173.91, 7042602.158], [327400.389, 7042357.493], [327811.153, 7042330.427], [327873.142, 7041878.205], [328735.559, 7040236.049], [328681.417, 7040022.656], [328578.079, 7039964.307], [328641.76, 7039623.596], [328212.792, 7039548.574], [329173.695, 7038138.838], [329368.077, 7038305.926], [330271.236, 7037213.1], [330060.982, 7036830.836], [331474.916, 7034711.75], [334107.289, 7032815.091], [334155.426, 7032882.085], [334429.162, 7032704.914], [334429.535, 7032581.422], [334929.075, 7032219.92], [334990.189, 7032062.987], [333288.859, 7030482.837], [333656.238, 7029937.78], [334271.412, 7030047.344], [334728.221, 7029605.109], [335277.05, 7029358.667], [335926.973, 7028087.83], [335476.666, 7027915.227], [334959.588, 7028919.661], [334534.4, 7028636.642], [335981.742, 7026496.518], [335202.889, 7026028.765], [334511.181, 7025431.274], [335328.091, 7024162.012], [333908.433, 7023491.887], [333167.948, 7024978.74], [332206.254, 7024598.559], [331327.963, 7024707.695], [331315.981, 7023595.571], [330990.19, 7023433.797], [330919.65, 7023823.775], [331025.502, 7024745.899], [330482.09, 7025761.893], [328852.333, 7024963.155], [329025.927, 7024365.838], [329602.955, 7023770.371], [330023.019, 7023559.594], [330010.884, 7023322.98], [328823.44, 7022503.901], [327057.447, 7025404.755], [325278.462, 7024262.246], [326017.331, 7023917.44], [326030.645, 7023526.73], [325087.914, 7024145.199], [323380.112, 7023047.126], [324060.86, 7022085.435], [323488.809, 7021697.989], [322891.191, 7022732.876], [321985.98, 7022021.905], [322609.933, 7020622.497], [323329.513, 7020012.104], [323240.731, 7019817.339], [322760.609, 7019928.068], [321870.067, 7021060.078], [321659.111, 7021930.732], [321266.343, 7023033.368], [317466.505, 7026486.197], [315473.945, 7025486.039], [314887.339, 7025161.865], [311141.073, 7029353.937], [311258.666, 7031525.411], [311196.969, 7031670.44], [311550.216, 7031840.984], [311692.01, 7031558.066], [312047.102, 7031906.974], [310802.709, 7033109.951], [310533.972, 7032258.676], [310172.688, 7033619.634], [311704.816, 7033038.309], [311673.285, 7033441.071], [310586.421, 7035650.362], [311977.39, 7038865.608], [311577.038, 7039987.781], [311863.774, 7040329.487], [312128.836, 7039948.799], [312123.965, 7039204.525], [312630.256, 7040386.849], [312414.077, 7040931.797], [312763.518, 7041390.607], [313017.524, 7041286.911], [313922.262, 7043392.788], [314614.668, 7043683.354], [316136.27, 7044336.51], [318228.989, 7045198.225], [320481.677, 7046141.494], [321710.698, 7044242.138]], [[313319.127, 7031902.534], [313337.128, 7031692.674], [313872.712, 7031735.141], [314029.969, 7030951.741], [313294.001, 7031108.65], [312368.12, 7030521.26], [312398.865, 7031964.581], [312217.498, 7032330.622], [312044.813, 7032679.14], [312541.25, 7033022.73], [313319.127, 7031902.534]]]}}, {\\\"id\\\": \\\"49\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"M\\\\u00e4ntt\\\\u00e4-Vilppula\\\", \\\"elakelaisten_osuus\\\": 39.9, \\\"freshwarea\\\": 122.23, \\\"gml_id\\\": 1601100123, \\\"landarea\\\": 534.85, \\\"namefin\\\": \\\"M\\\\u00e4ntt\\\\u00e4-Vilppula\\\", \\\"nameswe\\\": \\\"M\\\\u00e4ntt\\\\u00e4-Vilppula\\\", \\\"natcode\\\": \\\"508\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 657.08}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[359167.866, 6898883.99], [361387.52, 6896053.702], [361261.513, 6895753.215], [362517.825, 6895281.64], [364024.992, 6895458.903], [364227.643, 6896154.213], [364624.779, 6896018.317], [364473.547, 6895084.276], [364936.019, 6894951.516], [365023.787, 6895762.506], [365526.887, 6894835.041], [365006.984, 6894481.373], [365958.247, 6893853.113], [366668.922, 6894420.74], [366491.486, 6895432.852], [366162.156, 6895374.285], [366021.274, 6896110.715], [369833.795, 6898652.126], [369899.841, 6899481.624], [373009.646, 6897253.956], [374979.752, 6892020.508], [375622.692, 6891614.555], [376079.118, 6890696.812], [378635.147, 6889220.43], [378639.592, 6889208.579], [378170.299, 6886338.911], [378090.986, 6881872.049], [378675.807, 6881952.619], [379201.603, 6881686.702], [379937.168, 6881504.273], [381259.133, 6878840.604], [378854.957, 6876669.718], [378158.968, 6876592.019], [377805.496, 6876213.731], [377334.841, 6876223.901], [377140.199, 6875804.333], [376244.924, 6876305.022], [375397.616, 6875632.581], [374214.18, 6872285.809], [373248.856, 6871152.844], [371925.457, 6871183.601], [371945.79, 6870705.723], [371593.385, 6870608.442], [371971.745, 6870241.597], [371935.277, 6869930.722], [371018.369, 6870175.709], [370958.477, 6869788.211], [371052.307, 6869333.994], [369984.957, 6866558.109], [369007.005, 6868138.442], [368823.439, 6868732.879], [365332.71, 6867324.808], [365474.477, 6866870.594], [363830.782, 6866433.244], [363256.764, 6868776.169], [364141.679, 6869203.928], [362869.972, 6871791.642], [362536.175, 6871428.398], [361481.534, 6871898.645], [360541.834, 6872686.168], [360305.353, 6873062.105], [360295.413, 6873634.649], [359348.674, 6876129.066], [359922.221, 6876148.97], [360162.761, 6876295.908], [360276.654, 6876528.613], [360095.286, 6876839.472], [359648.414, 6876858.491], [359114.666, 6877255.579], [358547.681, 6877459.092], [357710.709, 6878543.261], [357865.454, 6878944.97], [358643.767, 6879386.032], [359453.237, 6878776.153], [359871.494, 6878875.815], [359330.034, 6880419.594], [357422.386, 6881534.596], [359234.076, 6882073.871], [358743.551, 6883359.812], [358121.187, 6883365.565], [358179.304, 6885800.183], [355815.53, 6885768.59], [354997.826, 6887994.15], [353996.454, 6886674.655], [352972.799, 6888020.344], [350673.888, 6886533.412], [349185.14, 6887653.811], [349391.931, 6887870.463], [349493.517, 6888432.292], [349064.717, 6888888.667], [348580.778, 6889983.743], [346889.38, 6890126.146], [345382.816, 6891191.697], [345587.855, 6893890.194], [346283.029, 6895601.541], [347012.654, 6896938.241], [347575.537, 6896591.378], [348167.618, 6897357.202], [349083.798, 6897118.844], [349233.748, 6897682.944], [349750.549, 6898215.699], [350263.748, 6897887.729], [350416.262, 6897414.976], [350809.28, 6897231.949], [351121.105, 6897886.046], [351575.436, 6898333.39], [352411.331, 6899986.972], [351897.633, 6900118.666], [351814.901, 6900400.466], [352004.437, 6901207.282], [352365.202, 6901393.548], [353787.088, 6901304.659], [352935.972, 6903045.425], [353155.041, 6903263.672], [355008.868, 6902437.442], [354845.451, 6903201.325], [355427.217, 6903740.57], [356104.218, 6903369.404], [356360.623, 6903931.432], [356116.354, 6904183.48], [355890.153, 6904007.804], [355159.141, 6904226.449], [355176.866, 6905410.076], [357328.096, 6905317.17], [358082.311, 6906176.708], [359167.866, 6898883.99]]]}}, {\\\"id\\\": \\\"50\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hirvensalmi\\\", \\\"elakelaisten_osuus\\\": 42.4, \\\"freshwarea\\\": 281.31, \\\"gml_id\\\": 1601100149, \\\"landarea\\\": 465.28, \\\"namefin\\\": \\\"Hirvensalmi\\\", \\\"nameswe\\\": \\\"Hirvensalmi\\\", \\\"natcode\\\": \\\"097\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 746.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[491083.087, 6858841.764], [491168.661, 6857515.602], [490900.576, 6856569.983], [490908.079, 6855597.278], [491641.104, 6852180.967], [492144.203, 6851645.288], [492796.436, 6851863.405], [492549.244, 6850480.864], [494236.555, 6850516.363], [494165.586, 6850168.704], [494171.39, 6848908.415], [493875.62, 6848092.705], [494274.462, 6846080.564], [493865.734, 6844951.219], [494301.898, 6844579.945], [494902.713, 6844459.327], [495434.995, 6844656.151], [495511.662, 6845070.184], [496248.516, 6845005.275], [496083.752, 6844725.864], [496292.866, 6843738.077], [496565.438, 6843488.092], [496608.824, 6843029.221], [496400.212, 6842368.588], [496437.452, 6842078.412], [496640.618, 6841669.573], [496519.869, 6841217.556], [496835.744, 6840531.137], [496972.391, 6839958.97], [497145.52, 6839907.593], [497330.743, 6840306.049], [498168.815, 6840864.117], [498204.606, 6841240.707], [499060.835, 6840837.128], [498729.372, 6840374.614], [498754.866, 6839570.141], [497472.79, 6839137.808], [497731.191, 6838059.747], [498403.518, 6837888.221], [498536.266, 6837493.382], [499403.217, 6836994.489], [499571.153, 6836484.296], [499758.882, 6835621.346], [499216.407, 6834844.657], [499460.444, 6834188.414], [500009.293, 6833544.687], [500367.853, 6832655.149], [499750.047, 6832532.693], [499324.371, 6833526.79], [498950.522, 6833566.272], [498799.787, 6832788.186], [498413.945, 6832580.168], [498503.464, 6831383.712], [497690.144, 6831900.338], [497442.151, 6830848.061], [498032.3, 6829176.566], [498435.626, 6829203.017], [498307.009, 6829952.983], [499136.666, 6830146.455], [499424.652, 6829654.856], [499591.389, 6828918.554], [499279.017, 6828584.488], [499801.715, 6827003.929], [500107.482, 6826470.678], [500185.566, 6825916.471], [501032.721, 6826056.219], [501289.522, 6825279.035], [501318.15, 6823435.759], [501076.919, 6823044.735], [500393.398, 6822943.873], [499854.719, 6822633.496], [499617.919, 6822011.445], [499442.898, 6820857.11], [498666.514, 6820836.413], [498423.817, 6820280.736], [498287.679, 6819192.574], [498066.771, 6818863.905], [497452.718, 6819389.589], [497296.529, 6820016.575], [496707.212, 6821110.488], [496332.065, 6820998.531], [496010.584, 6819932.404], [495797.391, 6819787.516], [495869.557, 6820451.348], [493838.087, 6820239.22], [493713.554, 6820255.408], [493572.606, 6820350.324], [493569.884, 6820485.96], [493473.713, 6820567.706], [493284.21, 6821131.714], [492359.34, 6821103.364], [491272.186, 6821039.772], [491625.059, 6821458.048], [491529.782, 6821883.112], [490913.121, 6821977.771], [490689.051, 6823456.398], [489755.23, 6823727.082], [489496.365, 6824521.709], [489491.225, 6825748.864], [488530.409, 6826950.072], [488468.131, 6827507.146], [487842.679, 6827490.778], [487787.91, 6827178.874], [487083.636, 6826727.688], [486683.46, 6825805.955], [486627.795, 6825353.503], [486295.131, 6825297.024], [486292.329, 6825735.047], [485996.141, 6826058.677], [485538.118, 6825793.039], [485252.949, 6826319.503], [484413.283, 6827618.073], [483822.821, 6828106.171], [483625.98, 6827964.38], [481403.041, 6827906.297], [480595.899, 6828081.644], [480551.7, 6828767.368], [480451.924, 6829071.188], [480033.358, 6829596.94], [479366.903, 6829692.161], [478783.56, 6830093.662], [479004.744, 6826593.347], [479150.991, 6822592.462], [478759.814, 6822624.445], [478185.436, 6825472.995], [478584.167, 6826469.795], [477392.468, 6826098.548], [477022.984, 6826661.526], [477019.038, 6827238.11], [476560.54, 6827431.591], [476260.002, 6827931.381], [476476.415, 6828628.505], [476011.363, 6828869.551], [475767.0, 6829576.714], [475134.054, 6830320.108], [473940.725, 6832396.158], [474306.706, 6832530.138], [474311.498, 6832730.575], [474328.644, 6833366.637], [474684.246, 6833832.948], [474599.694, 6834241.122], [474732.572, 6834516.619], [474636.626, 6834962.447], [474345.184, 6834519.289], [474345.907, 6835635.435], [474592.586, 6836128.763], [474336.298, 6836517.815], [474385.255, 6836952.475], [474903.804, 6836831.767], [474847.251, 6838119.344], [475332.61, 6839882.934], [474990.739, 6841361.132], [474035.456, 6843416.178], [474190.648, 6843828.427], [473673.234, 6844207.22], [473076.889, 6845494.244], [472764.665, 6846514.494], [471626.142, 6848619.739], [470355.284, 6850290.599], [469723.416, 6851621.01], [468270.268, 6852508.207], [466646.517, 6852939.703], [467152.875, 6853575.549], [467105.409, 6854258.507], [467297.163, 6854605.62], [467026.881, 6855174.354], [467130.019, 6855732.681], [467487.79, 6856041.929], [467281.67, 6856588.306], [467223.19, 6857187.763], [467850.329, 6858083.904], [469375.514, 6857336.718], [470223.676, 6856464.578], [470893.204, 6856342.632], [471388.2, 6856808.347], [472447.37, 6856745.38], [473096.503, 6857264.474], [473953.253, 6857549.765], [474367.782, 6857971.697], [475532.309, 6858056.471], [475263.126, 6856876.047], [474721.135, 6856126.832], [475420.64, 6855510.609], [476368.686, 6855408.95], [476891.571, 6855907.252], [477522.816, 6855652.959], [477701.042, 6855950.64], [477393.852, 6858126.856], [477930.03, 6858722.618], [479269.288, 6858484.524], [480313.573, 6857053.911], [481768.692, 6855586.916], [480284.814, 6852639.9], [480461.646, 6852057.937], [480940.553, 6851775.955], [481308.611, 6850687.898], [483435.316, 6855450.983], [484817.659, 6854791.46], [486110.53, 6855277.673], [486422.797, 6856256.978], [487282.051, 6855789.274], [488004.156, 6856010.289], [488259.949, 6856473.204], [489055.325, 6856661.033], [489857.596, 6857058.478], [490603.679, 6859256.992], [491083.087, 6858841.764]]]}}, {\\\"id\\\": \\\"51\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Joroinen\\\", \\\"elakelaisten_osuus\\\": 35.3, \\\"freshwarea\\\": 136.63, \\\"gml_id\\\": 1601100290, \\\"landarea\\\": 575.13, \\\"namefin\\\": \\\"Joroinen\\\", \\\"nameswe\\\": \\\"Jorois\\\", \\\"natcode\\\": \\\"171\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 711.76}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[539220.287, 6915339.175], [539876.568, 6914468.605], [538046.313, 6912439.876], [538366.594, 6910397.707], [538747.638, 6910593.53], [540847.892, 6909154.228], [541535.26, 6908285.396], [542498.032, 6907101.472], [542491.517, 6906537.087], [543234.046, 6905450.447], [543759.897, 6905264.121], [544058.106, 6905912.765], [544515.617, 6906323.902], [544913.856, 6906247.536], [545310.973, 6905720.662], [546027.566, 6905265.301], [546579.722, 6905691.287], [546209.941, 6906101.189], [546268.241, 6906808.407], [546949.928, 6906488.753], [547861.061, 6905775.648], [548731.247, 6904333.403], [550208.376, 6903197.985], [552826.871, 6901750.415], [552683.634, 6901264.211], [554199.723, 6900446.553], [554513.792, 6900833.998], [555558.171, 6900263.037], [556736.708, 6898421.692], [556805.285, 6897921.495], [556610.766, 6897680.592], [553425.966, 6897475.152], [553936.263, 6896929.077], [554242.838, 6896967.764], [554475.042, 6896623.135], [554413.167, 6896322.686], [553934.571, 6896222.763], [553653.889, 6895827.222], [554259.048, 6895186.886], [554194.079, 6894731.97], [553481.163, 6893584.51], [556354.164, 6887621.067], [554361.48, 6887211.019], [554447.563, 6886285.708], [554971.966, 6886263.892], [554728.644, 6885749.914], [553725.61, 6886489.964], [553133.891, 6886090.065], [553302.569, 6885876.357], [552973.862, 6885447.924], [551281.044, 6886298.867], [550855.522, 6885778.775], [551724.376, 6884961.512], [552154.408, 6884170.336], [551697.843, 6882976.38], [552645.767, 6882172.561], [552200.414, 6881431.046], [550541.877, 6882833.866], [550110.335, 6883908.467], [549443.011, 6884360.739], [548420.613, 6883700.346], [548864.17, 6881888.137], [549385.665, 6881071.772], [548843.109, 6880161.769], [549009.391, 6879708.097], [547788.313, 6880365.548], [547578.325, 6879907.844], [547008.327, 6879990.796], [546726.239, 6880293.271], [546478.94, 6879901.329], [546806.917, 6878885.442], [545711.06, 6878602.848], [545338.107, 6878987.191], [545054.922, 6878834.65], [546400.205, 6876160.54], [545654.414, 6875206.721], [544568.842, 6876069.964], [543752.579, 6875095.752], [541582.97, 6873070.756], [540266.215, 6874603.801], [539658.552, 6874757.177], [539506.694, 6874273.455], [539018.986, 6874787.344], [536645.735, 6875330.708], [535043.715, 6876740.861], [534937.549, 6876940.414], [534175.036, 6877445.242], [534402.546, 6877665.815], [533465.195, 6878632.77], [533683.384, 6878843.886], [533479.957, 6879055.518], [533144.458, 6878589.504], [532728.549, 6878782.84], [532836.93, 6879319.374], [532199.282, 6879964.704], [532437.997, 6880258.383], [532509.253, 6880464.205], [533396.753, 6881511.176], [532940.204, 6881940.726], [532697.751, 6881907.383], [532084.149, 6882835.227], [532379.697, 6883052.614], [532435.007, 6883282.345], [533051.248, 6883782.642], [533247.478, 6883656.867], [533388.109, 6884049.854], [533728.749, 6884152.911], [533237.914, 6884987.313], [532635.254, 6885796.451], [533454.62, 6886325.842], [532588.86, 6887225.572], [533340.354, 6888140.306], [532907.212, 6888507.764], [533148.227, 6888942.779], [533069.157, 6889236.559], [532465.309, 6889950.333], [532027.171, 6889694.167], [531904.017, 6890293.023], [532090.542, 6890463.955], [532233.285, 6890320.114], [532883.421, 6891073.612], [531346.044, 6891823.902], [530758.966, 6891709.222], [530369.525, 6891537.109], [529510.269, 6890756.743], [529311.429, 6891216.735], [529063.144, 6892230.92], [528534.976, 6893457.965], [528372.009, 6894308.272], [528418.684, 6895470.201], [527767.84, 6896252.779], [526062.923, 6900324.109], [526491.984, 6900492.606], [526967.073, 6900229.621], [527694.983, 6899568.075], [528133.881, 6899973.768], [528461.249, 6899495.666], [529295.509, 6899861.024], [528777.818, 6900429.288], [528972.938, 6900715.173], [528563.503, 6901271.943], [528126.98, 6901664.48], [527267.728, 6902678.66], [526211.243, 6904373.655], [525626.562, 6904890.354], [526526.563, 6905486.27], [526723.448, 6905302.548], [527020.729, 6905733.192], [526910.288, 6906326.468], [527580.555, 6905916.051], [527805.631, 6905471.856], [528517.046, 6905858.278], [528870.916, 6905179.563], [529142.712, 6905837.95], [529523.603, 6905937.144], [530508.999, 6906671.462], [531444.721, 6905350.907], [532788.792, 6905863.228], [533292.893, 6905321.037], [533721.303, 6905695.083], [532804.565, 6906629.898], [532555.466, 6906506.646], [531974.602, 6907105.497], [532893.872, 6907771.43], [532501.981, 6908279.106], [533568.831, 6910060.24], [535897.899, 6911473.723], [534969.05, 6913593.58], [535755.819, 6915394.953], [535793.999, 6916121.358], [539220.287, 6915339.175]]]}}, {\\\"id\\\": \\\"52\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kittil\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 25.6, \\\"freshwarea\\\": 168.17, \\\"gml_id\\\": 1601100433, \\\"landarea\\\": 8094.83, \\\"namefin\\\": \\\"Kittil\\\\u00e4\\\", \\\"nameswe\\\": \\\"Kittil\\\\u00e4\\\", \\\"natcode\\\": \\\"261\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 8263.0}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[439160.589, 7578248.588], [457691.128, 7574162.963], [453310.7, 7554143.617], [458414.887, 7536374.369], [446195.831, 7492281.41], [446932.896, 7480310.392], [440262.56, 7471311.434], [439353.674, 7470839.848], [439523.26, 7470314.48], [434799.407, 7466042.47], [428510.971, 7449194.171], [428225.465, 7449190.611], [407471.426, 7452716.507], [401952.851, 7450100.357], [400821.416, 7452367.021], [400956.601, 7453590.992], [401136.004, 7454261.706], [400979.012, 7454378.048], [400701.02, 7453792.787], [400217.583, 7453588.209], [390932.096, 7472226.897], [389450.491, 7477308.961], [389105.098, 7477747.804], [388964.38, 7478103.18], [388674.902, 7478221.186], [388684.011, 7478392.66], [389146.266, 7478374.415], [386371.183, 7487852.355], [384193.776, 7503812.015], [385399.515, 7503625.564], [383443.489, 7515066.04], [382714.601, 7519149.066], [382449.333, 7520723.918], [381919.688, 7524538.962], [380811.905, 7532636.628], [380314.128, 7536469.729], [380288.908, 7536873.792], [380564.244, 7537118.985], [381452.654, 7537931.685], [381306.226, 7538763.711], [380827.34, 7540054.562], [380542.073, 7540227.834], [380424.342, 7540591.727], [380630.408, 7540867.148], [380829.963, 7540868.011], [380660.778, 7541695.805], [382444.682, 7542078.784], [383085.19, 7544452.224], [383050.239, 7545746.393], [383301.227, 7545991.44], [383322.917, 7546306.567], [383569.929, 7546609.318], [383767.499, 7548115.783], [381885.608, 7549851.053], [382196.687, 7551453.718], [383362.01, 7554116.119], [382081.429, 7556040.319], [380642.156, 7555502.766], [379319.781, 7556014.079], [379350.678, 7556280.78], [379273.568, 7556547.971], [379044.904, 7556949.247], [379097.468, 7557794.67], [380640.947, 7560054.727], [380520.913, 7560256.536], [380159.571, 7560355.615], [379979.483, 7560798.847], [379813.189, 7561172.107], [381943.253, 7561966.502], [394718.448, 7580790.26], [397306.862, 7582384.246], [398732.691, 7583234.635], [399583.4, 7583755.166], [400107.768, 7584070.386], [401534.885, 7584928.284], [402562.307, 7585537.697], [405397.163, 7587244.1], [418947.929, 7588234.057], [439160.589, 7578248.588]]]}}, {\\\"id\\\": \\\"53\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Valkeakoski\\\", \\\"elakelaisten_osuus\\\": 30.7, \\\"freshwarea\\\": 99.99, \\\"gml_id\\\": 1601100313, \\\"landarea\\\": 272.04, \\\"namefin\\\": \\\"Valkeakoski\\\", \\\"nameswe\\\": \\\"Valkeakoski\\\", \\\"natcode\\\": \\\"908\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 372.03}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[340558.652, 6803209.251], [340645.4, 6801601.514], [342672.261, 6804215.259], [343703.273, 6803095.608], [344847.475, 6801602.593], [344070.176, 6800357.842], [343887.731, 6799580.416], [343864.58, 6799108.9], [344003.072, 6798693.03], [344813.241, 6798477.744], [348077.724, 6795534.013], [349818.576, 6795183.317], [350748.82, 6795128.24], [352014.268, 6794029.846], [354164.609, 6792565.666], [354082.071, 6792429.585], [352746.008, 6790185.798], [353116.351, 6789104.767], [354730.834, 6787129.876], [351222.859, 6782799.339], [348333.479, 6782214.452], [345989.535, 6782107.874], [345714.036, 6781569.922], [345843.492, 6780850.757], [346211.674, 6780137.222], [346053.799, 6779868.307], [344416.945, 6780513.189], [341840.976, 6780026.581], [341703.17, 6779586.654], [341227.645, 6779799.543], [340916.594, 6780243.915], [340421.126, 6780308.139], [339722.983, 6780009.856], [339807.335, 6779745.554], [336054.713, 6777952.0], [335752.229, 6778271.54], [335370.812, 6778073.463], [334782.552, 6778623.666], [335283.864, 6778918.678], [334167.366, 6780035.654], [335318.616, 6781242.754], [334991.936, 6781335.098], [334455.719, 6780887.976], [334202.592, 6781268.489], [335376.785, 6782440.274], [334814.401, 6782781.996], [335490.703, 6783964.018], [335862.776, 6783725.251], [336351.045, 6784452.362], [335740.676, 6784462.935], [335667.477, 6784981.32], [336002.039, 6785229.774], [336439.544, 6785860.289], [336519.806, 6787100.617], [335403.46, 6787249.865], [334688.198, 6789286.972], [333757.917, 6789759.788], [332526.816, 6789277.214], [329135.321, 6790976.884], [328743.14, 6790628.314], [328029.104, 6791170.049], [328128.002, 6792265.337], [328844.117, 6792661.711], [330371.372, 6793839.079], [333299.183, 6796909.661], [334831.925, 6798988.563], [337509.613, 6801883.496], [336421.911, 6802631.684], [337216.54, 6803488.529], [338049.756, 6803159.054], [337667.404, 6802673.768], [337878.13, 6802335.515], [339510.521, 6804397.634], [340558.652, 6803209.251]]]}}, {\\\"id\\\": \\\"54\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pelkosenniemi\\\", \\\"elakelaisten_osuus\\\": 43.0, \\\"freshwarea\\\": 45.4, \\\"gml_id\\\": 1601100539, \\\"landarea\\\": 1836.14, \\\"namefin\\\": \\\"Pelkosenniemi\\\", \\\"nameswe\\\": \\\"Pelkosenniemi\\\", \\\"natcode\\\": \\\"583\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1881.54}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[518621.653, 7473682.906], [518560.162, 7473419.541], [519210.187, 7473355.515], [528669.08, 7467994.474], [528617.033, 7468487.238], [533148.707, 7465518.432], [535885.704, 7459163.185], [536305.776, 7459228.818], [536314.636, 7458866.071], [535977.975, 7458949.387], [536573.179, 7457570.242], [536861.351, 7457902.307], [538056.718, 7456859.236], [537269.345, 7455972.184], [538222.882, 7453765.788], [538454.415, 7453657.92], [538598.124, 7453395.22], [538242.166, 7453184.812], [537908.944, 7451205.434], [538542.516, 7451098.721], [541615.945, 7451120.981], [541746.293, 7451259.921], [545054.425, 7450928.096], [547911.111, 7448223.763], [547920.534, 7448048.94], [548197.936, 7447347.103], [548466.512, 7447476.611], [548268.155, 7447959.284], [559024.553, 7444077.628], [547210.414, 7436158.377], [544714.597, 7435811.311], [541652.828, 7434993.63], [540033.755, 7426437.513], [539703.088, 7426618.836], [539466.605, 7426306.568], [539962.068, 7426059.145], [538619.006, 7418935.014], [529735.999, 7427968.457], [529899.708, 7429190.254], [528805.85, 7428943.637], [525481.596, 7432297.638], [517580.329, 7432568.225], [517644.683, 7432289.593], [517347.158, 7432225.369], [516804.252, 7433612.667], [515597.389, 7434221.591], [515255.017, 7435135.171], [514602.317, 7436216.001], [510805.641, 7432907.66], [510845.099, 7432804.215], [506457.122, 7432927.822], [478933.385, 7425099.02], [483410.376, 7430204.143], [483794.347, 7430061.432], [484212.905, 7430603.639], [484018.817, 7430895.424], [489595.754, 7437233.431], [490227.536, 7436305.393], [489867.458, 7435934.454], [490351.971, 7435470.979], [490711.171, 7435876.072], [491326.08, 7434877.667], [491085.465, 7434628.166], [491481.467, 7434262.025], [491888.925, 7434695.2], [491540.313, 7435246.548], [491147.248, 7435846.262], [490234.723, 7436973.261], [490862.618, 7438624.517], [500863.602, 7450001.159], [500385.071, 7450269.981], [501778.152, 7452713.326], [501922.576, 7453962.37], [501327.108, 7454167.94], [501472.01, 7454515.686], [501961.576, 7454258.882], [502244.176, 7456626.462], [502620.29, 7456562.709], [502863.727, 7457091.907], [502575.047, 7457549.732], [502337.747, 7457420.3], [503718.163, 7469030.608], [504804.134, 7470521.582], [510853.322, 7471890.308], [511200.661, 7474003.165], [511167.143, 7475247.097], [509506.022, 7478809.643], [518621.653, 7473682.906]]]}}, {\\\"id\\\": \\\"55\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Loimaa\\\", \\\"elakelaisten_osuus\\\": 34.7, \\\"freshwarea\\\": 3.8, \\\"gml_id\\\": 1601100670, \\\"landarea\\\": 848.13, \\\"namefin\\\": \\\"Loimaa\\\", \\\"nameswe\\\": \\\"Loimaa\\\", \\\"natcode\\\": \\\"430\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 851.93}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[277308.152, 6779151.894], [277814.511, 6776495.121], [278154.907, 6776087.149], [278573.301, 6775864.744], [279415.25, 6775687.155], [279706.988, 6775419.412], [280152.535, 6775747.097], [280428.268, 6775311.529], [280229.793, 6774999.512], [280586.879, 6774590.816], [281328.103, 6774419.726], [281854.099, 6774673.529], [282345.246, 6774309.421], [284781.081, 6771831.81], [286947.939, 6772659.639], [289778.014, 6772814.292], [291954.503, 6772407.834], [292441.396, 6771461.048], [292701.025, 6769465.517], [294311.243, 6768899.488], [295192.437, 6767412.362], [297313.565, 6764512.086], [299342.652, 6763417.689], [299409.838, 6762880.414], [299025.625, 6761930.405], [299511.644, 6761508.394], [299492.785, 6761259.641], [299124.512, 6761180.318], [299032.893, 6760787.027], [298765.779, 6760189.446], [298989.0, 6759904.166], [298970.778, 6759335.116], [297850.937, 6759367.064], [297267.752, 6759756.007], [296908.443, 6759624.339], [297451.456, 6756204.328], [291432.64, 6756923.15], [290933.69, 6756744.368], [290311.611, 6755994.397], [290172.784, 6752274.014], [290129.304, 6751233.0], [290386.608, 6750853.006], [291135.676, 6750674.748], [291469.115, 6750947.219], [291799.465, 6750489.39], [294609.897, 6749724.339], [295059.644, 6749230.72], [293070.053, 6748007.071], [290626.556, 6743768.628], [287986.377, 6740740.086], [287489.901, 6740336.498], [287196.503, 6739209.58], [283433.029, 6735783.936], [279891.021, 6737345.31], [278463.501, 6737971.342], [273540.925, 6743749.107], [273258.18, 6743623.892], [272907.361, 6744453.565], [271519.485, 6746038.621], [269681.115, 6748884.588], [269852.709, 6749169.242], [269332.746, 6749678.537], [272536.435, 6749239.962], [271244.907, 6750496.837], [270297.624, 6753790.496], [270825.138, 6755416.674], [270827.408, 6760961.345], [270756.745, 6761666.39], [270234.312, 6761390.084], [270251.786, 6763214.648], [269720.298, 6763195.854], [269719.065, 6761118.296], [267905.994, 6760155.556], [264370.494, 6759954.756], [264131.843, 6761149.175], [263175.389, 6760872.689], [262926.268, 6761713.269], [262536.479, 6761148.167], [261728.108, 6762641.748], [260943.87, 6764023.99], [260797.574, 6764229.146], [261542.276, 6764518.83], [261906.975, 6766296.309], [260273.288, 6766640.709], [260453.834, 6766992.793], [260228.214, 6767544.723], [261547.886, 6767805.953], [262864.135, 6769538.468], [267534.562, 6768963.192], [267926.313, 6768451.73], [271813.852, 6769496.828], [272558.459, 6770135.186], [272984.656, 6769738.991], [273760.975, 6769282.367], [274472.51, 6771497.022], [274479.942, 6772934.131], [273633.567, 6774623.592], [274526.321, 6774665.245], [274731.774, 6775041.26], [274628.928, 6775778.569], [275333.035, 6776639.634], [275428.343, 6777632.396], [274390.899, 6778778.428], [274959.606, 6781270.399], [277308.152, 6779151.894]]]}}, {\\\"id\\\": \\\"56\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Utaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 37.4, \\\"freshwarea\\\": 65.57, \\\"gml_id\\\": 1601100079, \\\"landarea\\\": 1671.15, \\\"namefin\\\": \\\"Utaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Utaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"889\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1736.72}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[467213.815, 7193549.533], [468376.402, 7192628.189], [468815.623, 7193188.223], [470190.148, 7192104.154], [469737.871, 7191545.615], [468923.148, 7192193.4], [468269.004, 7191446.634], [465801.081, 7193004.18], [466166.644, 7193795.914], [466357.378, 7194024.956], [466489.155, 7194123.819], [467213.815, 7193549.533]]], [[[484067.512, 7201371.061], [484119.141, 7200252.672], [484350.559, 7200179.941], [484576.93, 7199904.956], [483877.178, 7199918.456], [483850.869, 7198905.421], [482977.729, 7199140.003], [483328.194, 7201498.637], [483859.673, 7201626.338], [484067.512, 7201371.061]]], [[[483960.445, 7203194.991], [484976.406, 7203438.889], [485412.04, 7202933.429], [485418.887, 7202411.019], [484746.387, 7202503.742], [485058.026, 7202811.502], [484736.278, 7202974.075], [483736.809, 7202623.376], [483447.245, 7202688.878], [483375.2, 7202801.8], [483649.685, 7203102.423], [483568.932, 7203462.987], [483960.445, 7203194.991]]], [[[503488.449, 7220113.921], [509507.524, 7218968.144], [515503.419, 7218599.02], [512366.127, 7211527.24], [514968.394, 7208139.192], [515212.558, 7207157.508], [516054.102, 7206745.027], [518218.533, 7203942.415], [518601.067, 7202443.564], [517810.522, 7201975.067], [518887.991, 7201332.921], [519169.724, 7199968.623], [517507.176, 7196237.904], [519089.725, 7192382.917], [518648.894, 7191427.506], [518328.386, 7191517.877], [517118.804, 7191004.398], [517550.028, 7189707.345], [517799.928, 7189652.096], [516827.553, 7187548.477], [510130.064, 7189328.663], [509956.969, 7188971.666], [509520.2, 7189056.111], [508762.594, 7189690.243], [507390.372, 7190073.213], [507026.469, 7190106.11], [495636.004, 7181609.164], [494779.158, 7178785.437], [495611.171, 7178262.452], [495764.261, 7178011.049], [495221.191, 7177327.857], [494779.852, 7177248.446], [494939.723, 7176125.05], [494780.254, 7175685.944], [495292.368, 7175495.244], [495417.572, 7175094.301], [495239.252, 7174599.693], [494483.957, 7174872.469], [494218.593, 7174129.23], [494712.061, 7173733.126], [494626.518, 7173444.279], [493321.999, 7173929.834], [492385.043, 7170782.047], [490881.138, 7170436.117], [488315.344, 7169468.94], [487632.484, 7168825.967], [487224.936, 7169655.551], [485964.922, 7169035.1], [486142.545, 7168674.106], [485120.461, 7167934.256], [485852.776, 7167369.231], [485402.749, 7167034.514], [484050.228, 7168604.826], [485162.909, 7169249.053], [484973.379, 7169817.951], [484315.453, 7169263.125], [483809.833, 7169301.474], [483402.288, 7170057.579], [482512.004, 7169167.236], [483398.655, 7168338.623], [483616.229, 7167460.841], [483181.516, 7167163.492], [483436.276, 7166807.934], [481448.606, 7165206.899], [481022.674, 7165374.021], [479568.712, 7162804.243], [479771.851, 7161286.833], [480041.233, 7160983.233], [479858.072, 7160504.241], [478780.585, 7161143.28], [478911.122, 7161438.733], [478654.459, 7161688.066], [477543.531, 7161173.183], [478316.314, 7159553.34], [478262.57, 7159295.134], [474198.204, 7160091.45], [473929.984, 7160143.503], [473543.827, 7161375.485], [475345.693, 7162261.737], [476290.362, 7162663.67], [475534.651, 7163886.813], [475005.007, 7163568.085], [475223.66, 7163333.654], [475055.189, 7163019.841], [474871.223, 7163205.616], [473272.345, 7162238.886], [473110.332, 7162762.344], [475383.906, 7164128.048], [473944.152, 7166435.128], [471879.671, 7165129.04], [471645.124, 7163361.222], [470940.414, 7163141.293], [470858.516, 7162937.522], [470062.755, 7162988.921], [470109.763, 7163405.618], [469551.772, 7163376.701], [469572.745, 7163869.16], [469073.119, 7164089.414], [468888.467, 7163736.56], [468689.875, 7163854.185], [468560.945, 7163552.17], [467418.046, 7164113.353], [467186.653, 7163955.698], [467855.664, 7163509.835], [468384.798, 7163191.643], [468468.528, 7163255.847], [468658.698, 7163153.925], [468114.877, 7162515.844], [467246.674, 7163505.034], [465798.452, 7163835.736], [465761.184, 7164335.216], [466193.75, 7164480.778], [466169.802, 7164624.752], [466772.021, 7164961.864], [466902.765, 7164851.987], [467054.933, 7165174.334], [467647.747, 7165235.653], [467551.989, 7165595.179], [466398.709, 7166159.485], [465999.288, 7166485.63], [465105.115, 7167918.815], [463646.389, 7168423.369], [463627.425, 7168667.688], [463395.602, 7168786.904], [463331.609, 7168981.124], [463092.506, 7168920.878], [462915.231, 7168679.616], [462780.742, 7168758.54], [463047.385, 7169362.018], [465118.927, 7169251.468], [465120.806, 7168630.459], [465733.756, 7168650.02], [465983.396, 7168871.254], [466460.305, 7169039.266], [466650.515, 7169239.177], [466383.882, 7169599.523], [466846.059, 7169940.324], [466964.458, 7170315.65], [467207.465, 7170215.28], [467667.242, 7169556.767], [468293.703, 7169893.212], [469489.989, 7167397.191], [470786.788, 7170620.528], [470306.648, 7170912.177], [469821.212, 7170707.893], [469763.065, 7170883.168], [469858.548, 7170941.258], [469407.889, 7171863.177], [470352.418, 7172572.258], [469709.911, 7173664.702], [469120.167, 7173284.538], [468332.96, 7174581.547], [468865.418, 7175106.651], [468601.716, 7175371.825], [469203.0, 7175745.238], [468872.17, 7176305.068], [469245.28, 7176525.222], [468950.294, 7177085.603], [468202.037, 7176974.399], [467867.503, 7177675.419], [468370.747, 7178189.653], [468112.209, 7178680.869], [466037.038, 7177332.289], [464620.357, 7179517.124], [466277.657, 7180696.208], [465686.337, 7181178.706], [465995.842, 7181389.843], [463954.676, 7185057.206], [461226.595, 7188410.596], [461034.372, 7189144.095], [461823.564, 7190800.14], [461479.948, 7191223.943], [461686.824, 7191417.27], [462534.294, 7190590.399], [463237.637, 7188584.687], [463503.205, 7188751.08], [463060.869, 7190446.759], [462829.27, 7193724.661], [462810.965, 7194848.949], [462224.392, 7195745.166], [461659.305, 7195917.362], [461373.295, 7196641.359], [461022.072, 7196536.98], [460563.103, 7196159.869], [460237.259, 7195191.222], [459312.283, 7195356.884], [459557.909, 7195637.101], [460003.547, 7195533.694], [460206.842, 7196405.444], [461365.022, 7197437.859], [463264.563, 7195279.722], [462947.131, 7194764.728], [463520.031, 7194441.414], [464841.681, 7188947.466], [467314.872, 7187412.374], [470216.607, 7185639.942], [473656.558, 7187499.15], [473659.109, 7188508.431], [473687.66, 7189156.271], [473045.926, 7189856.211], [471272.134, 7191252.664], [471893.398, 7193557.487], [471302.173, 7194051.805], [470825.235, 7194914.815], [470553.5, 7195327.617], [470667.816, 7195480.533], [470992.982, 7195373.86], [471179.627, 7194844.033], [471748.255, 7193931.586], [472900.206, 7193073.71], [472836.461, 7192794.205], [474318.697, 7192016.92], [474792.617, 7193751.726], [475245.356, 7193985.954], [475630.272, 7193848.165], [475723.81, 7193335.32], [476284.444, 7192886.745], [476055.556, 7192040.503], [477094.633, 7191754.258], [477842.145, 7193155.706], [479200.446, 7198155.58], [479907.349, 7198014.411], [480084.818, 7197558.095], [480318.462, 7197616.784], [480974.68, 7197269.048], [481043.445, 7197523.488], [481471.919, 7197407.787], [481549.587, 7197095.068], [482570.677, 7196524.689], [483975.656, 7196420.516], [484724.666, 7199129.238], [484634.194, 7199386.685], [484699.471, 7199822.089], [484863.342, 7199956.938], [485030.403, 7199847.128], [484991.917, 7199525.36], [485062.106, 7199180.203], [489060.395, 7203209.791], [488905.238, 7203393.428], [489185.771, 7203676.045], [488875.547, 7203985.017], [489212.055, 7204161.91], [488615.371, 7204851.929], [487687.552, 7207375.227], [485310.087, 7206136.857], [484869.946, 7207406.204], [485520.896, 7208147.746], [484671.702, 7208103.549], [484698.533, 7208266.135], [485848.322, 7208527.126], [486526.606, 7209301.121], [486108.712, 7210049.838], [485547.498, 7209948.22], [484909.749, 7210070.683], [484484.313, 7209919.485], [483946.324, 7210095.09], [481673.172, 7214525.888], [482498.577, 7216433.498], [482433.139, 7216885.53], [482511.559, 7217793.069], [482451.614, 7218233.329], [483177.126, 7218273.313], [483051.779, 7218599.301], [482511.286, 7218447.031], [482550.406, 7219321.807], [495227.937, 7218716.364], [500220.485, 7220360.008], [503488.449, 7220113.921]]]]}}, {\\\"id\\\": \\\"57\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ruovesi\\\", \\\"elakelaisten_osuus\\\": 41.7, \\\"freshwarea\\\": 173.18, \\\"gml_id\\\": 1601100445, \\\"landarea\\\": 776.98, \\\"namefin\\\": \\\"Ruovesi\\\", \\\"nameswe\\\": \\\"Ruovesi\\\", \\\"natcode\\\": \\\"702\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 950.16}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[335851.273, 6898435.948], [336410.226, 6897371.766], [337233.164, 6895617.757], [337458.771, 6895964.05], [338069.907, 6895869.608], [338880.069, 6894510.952], [339400.132, 6894159.091], [342499.175, 6893025.99], [345382.816, 6891191.697], [346889.38, 6890126.146], [348580.778, 6889983.743], [349064.717, 6888888.667], [349493.517, 6888432.292], [349391.931, 6887870.463], [349185.14, 6887653.811], [350673.888, 6886533.412], [352972.799, 6888020.344], [353996.454, 6886674.655], [354997.826, 6887994.15], [355815.53, 6885768.59], [358179.304, 6885800.183], [358121.187, 6883365.565], [358743.551, 6883359.812], [359234.076, 6882073.871], [357422.386, 6881534.596], [359330.034, 6880419.594], [359871.494, 6878875.815], [359453.237, 6878776.153], [358643.767, 6879386.032], [357865.454, 6878944.97], [357710.709, 6878543.261], [358547.681, 6877459.092], [359114.666, 6877255.579], [359648.414, 6876858.491], [360095.286, 6876839.472], [360276.654, 6876528.613], [360162.761, 6876295.908], [359922.221, 6876148.97], [359348.674, 6876129.066], [360295.413, 6873634.649], [360305.353, 6873062.105], [360541.834, 6872686.168], [361481.534, 6871898.645], [362536.175, 6871428.398], [362869.972, 6871791.642], [364141.679, 6869203.928], [363256.764, 6868776.169], [363830.782, 6866433.244], [365474.477, 6866870.594], [366148.922, 6864709.746], [365647.195, 6864617.84], [364529.906, 6865031.296], [363137.237, 6862453.019], [364076.592, 6861744.2], [363795.749, 6861227.621], [361287.214, 6862377.66], [358535.554, 6860844.886], [356912.783, 6860331.778], [353977.939, 6857778.959], [347999.011, 6856975.794], [346626.256, 6854536.218], [345820.889, 6854665.704], [341807.049, 6854120.846], [336661.298, 6857626.5], [334465.339, 6859985.051], [333635.516, 6859974.828], [333534.832, 6860020.984], [333489.016, 6860123.517], [333362.883, 6860238.188], [333450.61, 6860252.862], [333492.174, 6860319.582], [333511.168, 6860481.333], [333473.286, 6860574.76], [333392.324, 6860647.88], [333399.63, 6860750.889], [333385.062, 6860843.35], [335413.736, 6862438.794], [336186.401, 6863327.992], [335978.108, 6864735.523], [335334.055, 6865909.718], [334979.358, 6866573.508], [334244.239, 6870678.845], [334488.264, 6872577.906], [332941.285, 6875024.524], [331396.14, 6874640.307], [331123.206, 6878392.423], [330891.696, 6878759.652], [330767.873, 6878737.852], [330433.296, 6879280.674], [330524.098, 6879326.954], [330375.138, 6879499.419], [328866.188, 6882142.386], [327262.562, 6882065.73], [327028.599, 6887263.14], [326732.219, 6887251.882], [326675.837, 6888024.827], [328341.363, 6888940.497], [330297.41, 6887580.743], [330622.887, 6887822.548], [331076.893, 6887900.327], [331609.344, 6888155.42], [332205.534, 6888237.195], [332297.748, 6888568.876], [332274.053, 6888999.717], [332427.01, 6889306.606], [332853.741, 6890729.143], [333625.22, 6891345.126], [334889.439, 6891252.703], [336586.275, 6892485.493], [334426.904, 6897386.605], [334884.316, 6898502.558], [335851.273, 6898435.948]]]}}, {\\\"id\\\": \\\"58\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lahti\\\", \\\"elakelaisten_osuus\\\": 28.2, \\\"freshwarea\\\": 58.14, \\\"gml_id\\\": 1601100612, \\\"landarea\\\": 459.5, \\\"namefin\\\": \\\"Lahti\\\", \\\"nameswe\\\": \\\"Lahtis\\\", \\\"natcode\\\": \\\"398\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 517.64}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[440997.904, 6772118.9], [441862.853, 6771933.286], [442627.871, 6771152.621], [445626.315, 6772778.394], [446535.754, 6771133.373], [447598.506, 6773765.925], [448838.598, 6774406.185], [448550.461, 6773623.866], [451835.294, 6771641.149], [451672.807, 6768825.894], [451553.733, 6768545.944], [452481.207, 6768239.995], [452343.708, 6767809.405], [452531.368, 6767244.204], [453144.291, 6766188.173], [452478.774, 6763996.748], [452204.899, 6761389.198], [449989.709, 6759953.244], [449472.457, 6760199.114], [449251.573, 6760789.862], [449480.745, 6761169.363], [449254.752, 6761528.176], [448466.122, 6761247.198], [448568.524, 6760574.34], [448153.855, 6760150.536], [449069.101, 6756033.111], [454954.81, 6755206.326], [454465.813, 6754038.089], [453348.47, 6752760.689], [452400.055, 6752871.232], [451298.191, 6750671.083], [450385.083, 6751074.825], [450282.973, 6751562.577], [448535.187, 6751852.781], [446556.038, 6752524.285], [444554.774, 6754732.653], [443880.837, 6754964.956], [443608.411, 6755274.271], [443090.809, 6755286.53], [442765.48, 6753629.484], [441307.732, 6750645.811], [439026.879, 6751331.536], [436316.515, 6751884.39], [435739.649, 6751785.921], [433665.497, 6751270.299], [433900.044, 6754371.239], [433739.951, 6754884.043], [432032.652, 6753845.736], [431728.972, 6754385.914], [431080.766, 6756166.942], [430197.954, 6754643.909], [429679.533, 6754117.629], [429323.472, 6754291.859], [427513.404, 6752972.506], [427239.046, 6753149.144], [427180.355, 6753111.791], [426430.649, 6753580.911], [426791.589, 6754013.117], [426036.481, 6754514.319], [425370.392, 6755812.455], [424615.26, 6755663.279], [424478.691, 6756125.745], [424246.021, 6756064.071], [424042.136, 6755390.856], [422808.404, 6755884.524], [422919.781, 6756302.144], [422574.274, 6756511.431], [422224.907, 6756052.941], [421760.237, 6756264.151], [422065.988, 6757075.317], [421892.348, 6757431.476], [422122.357, 6758258.946], [422622.087, 6759122.276], [422096.438, 6759326.524], [422254.57, 6759670.294], [421613.033, 6760999.187], [421051.555, 6763473.657], [422830.833, 6763827.972], [423450.379, 6765148.488], [423065.411, 6765648.562], [423122.179, 6765975.909], [424080.586, 6766492.918], [424280.986, 6766915.822], [423869.148, 6767090.014], [423924.086, 6767421.372], [423571.505, 6767953.906], [424213.487, 6768012.657], [424345.896, 6767384.381], [425337.251, 6767700.947], [425563.006, 6767245.938], [426061.69, 6767078.327], [426474.579, 6767440.579], [426614.543, 6766572.986], [427228.407, 6766893.336], [427874.5, 6766427.948], [428550.014, 6766895.166], [428955.376, 6766488.344], [429658.53, 6767530.428], [430516.623, 6766807.887], [432532.963, 6766959.261], [433369.04, 6767026.151], [435614.594, 6767948.94], [436402.693, 6769081.163], [431479.291, 6770761.925], [430993.792, 6770806.644], [432361.32, 6772943.559], [432707.078, 6773276.029], [434407.88, 6774122.311], [438438.634, 6774760.005], [440997.904, 6772118.9]]]}}, {\\\"id\\\": \\\"59\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Oulainen\\\", \\\"elakelaisten_osuus\\\": 30.7, \\\"freshwarea\\\": 9.72, \\\"gml_id\\\": 1601100213, \\\"landarea\\\": 587.82, \\\"namefin\\\": \\\"Oulainen\\\", \\\"nameswe\\\": \\\"Oulainen\\\", \\\"natcode\\\": \\\"563\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 597.54}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[387724.863, 7140084.26], [388316.346, 7140809.257], [388806.172, 7139966.393], [388436.176, 7139855.003], [387869.239, 7139325.387], [387419.924, 7139470.277], [386225.342, 7139159.085], [385701.487, 7139305.76], [385688.611, 7139667.125], [385421.215, 7139956.309], [385346.611, 7140328.59], [385963.016, 7140202.344], [386263.267, 7140645.522], [386861.714, 7140775.299], [386693.361, 7141215.378], [386849.447, 7141294.418], [387724.863, 7140084.26]]], [[[395453.152, 7141526.964], [396860.288, 7141532.662], [398198.206, 7141785.062], [398781.784, 7141120.708], [398656.908, 7141012.165], [398867.273, 7140773.444], [399053.803, 7140809.485], [399322.919, 7140505.428], [399250.298, 7140440.951], [399433.396, 7140230.394], [399509.762, 7140293.474], [402326.205, 7137080.61], [403166.928, 7137057.82], [403297.782, 7137297.318], [403650.411, 7137017.99], [403842.465, 7136988.727], [403965.624, 7137137.434], [404079.282, 7137144.526], [404374.974, 7137262.275], [404504.114, 7137257.956], [404614.942, 7137293.068], [404615.755, 7137448.477], [404665.802, 7137565.963], [404795.801, 7137540.465], [404818.848, 7136996.35], [404995.346, 7136858.538], [405118.088, 7136865.856], [405300.142, 7136811.699], [405368.518, 7136749.323], [408110.315, 7136306.538], [408288.977, 7136195.48], [410794.93, 7134244.453], [412986.623, 7134009.983], [412011.279, 7133411.913], [412256.298, 7133061.933], [413153.288, 7133717.67], [413338.867, 7133532.386], [413085.589, 7132979.09], [412602.992, 7132689.943], [412943.368, 7132543.933], [412832.492, 7132206.416], [412467.457, 7132457.35], [412287.083, 7131826.121], [412342.829, 7131597.129], [412559.132, 7131636.641], [413145.304, 7131236.787], [413280.051, 7131299.822], [413197.95, 7131891.125], [413364.233, 7131985.017], [414785.77, 7131309.562], [415404.57, 7131350.946], [415612.426, 7129754.505], [415758.456, 7129465.787], [415751.492, 7128973.014], [414592.667, 7128845.686], [414585.358, 7128431.228], [413739.047, 7128351.639], [414201.491, 7128832.205], [414337.419, 7129328.392], [413525.4, 7129640.172], [413621.721, 7129987.953], [413178.911, 7130205.15], [413393.48, 7130751.39], [412800.27, 7130590.981], [412412.839, 7130076.675], [412109.654, 7129860.303], [411722.078, 7129410.705], [411959.816, 7129233.028], [411614.184, 7129077.795], [411653.612, 7127865.561], [411390.819, 7126018.226], [411286.587, 7125807.483], [411261.048, 7125188.48], [410287.658, 7124669.043], [410560.796, 7124034.406], [409454.033, 7123127.446], [408707.787, 7123265.156], [408630.496, 7123090.345], [408956.066, 7122719.884], [407189.441, 7121468.34], [407083.916, 7121277.406], [406742.102, 7121456.401], [406585.189, 7121178.323], [406958.581, 7120982.531], [405409.09, 7117751.303], [400352.008, 7113773.541], [399467.364, 7115428.934], [398965.831, 7115149.903], [397625.775, 7115847.214], [396150.24, 7115313.066], [396558.298, 7113452.457], [396757.38, 7113148.424], [397706.921, 7114349.107], [398573.792, 7112876.047], [398547.342, 7112354.515], [398753.47, 7111889.69], [398706.949, 7111260.53], [398010.991, 7110887.267], [397308.226, 7111227.548], [392464.69, 7113564.625], [390810.116, 7114726.253], [389481.676, 7116257.847], [389658.143, 7116387.387], [389139.995, 7116991.372], [388950.576, 7116906.794], [387793.687, 7118269.548], [385273.397, 7118697.454], [382899.505, 7119849.311], [382543.364, 7120022.976], [383437.403, 7121969.216], [382835.682, 7123069.109], [383112.163, 7123236.59], [383085.433, 7123797.891], [383477.143, 7123704.016], [383470.816, 7124007.431], [383149.835, 7124529.478], [382533.228, 7124646.444], [381794.718, 7124157.384], [381350.203, 7124206.099], [381375.488, 7124746.594], [381707.302, 7124536.945], [381958.554, 7124655.961], [381402.658, 7125666.142], [381665.42, 7126750.935], [380391.303, 7128512.533], [380835.556, 7130247.002], [382735.947, 7130178.663], [382741.419, 7130949.214], [382908.332, 7131018.138], [383086.519, 7130844.901], [383174.579, 7130617.675], [383799.841, 7131105.705], [384368.003, 7130807.78], [384705.995, 7129693.643], [387111.716, 7131206.026], [386586.568, 7133455.816], [387120.741, 7134144.81], [386903.325, 7134619.119], [387052.434, 7134882.43], [387396.9, 7134503.554], [388986.396, 7136551.184], [388556.972, 7136928.296], [388579.489, 7137242.57], [388993.814, 7137699.516], [389383.641, 7137860.028], [389582.0, 7137694.731], [389016.164, 7136987.62], [389149.881, 7136760.159], [390965.747, 7139070.177], [391053.732, 7139254.63], [395589.135, 7140143.869], [395509.596, 7140945.884], [393746.123, 7140314.3], [393726.336, 7140926.876], [393695.258, 7141396.773], [393910.602, 7141565.258], [394215.475, 7142086.455], [394483.839, 7142467.758], [394731.54, 7142223.694], [395348.722, 7142588.983], [395453.152, 7141526.964]], [[388288.333, 7123824.356], [387683.683, 7123366.242], [387017.8, 7123333.295], [386789.544, 7123909.575], [386844.265, 7124606.67], [387156.331, 7124900.108], [386735.737, 7125288.343], [386843.369, 7125635.489], [387152.879, 7125443.912], [387214.778, 7125768.843], [387522.528, 7125953.539], [388288.333, 7123824.356]]]]}}, {\\\"id\\\": \\\"60\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kouvola\\\", \\\"elakelaisten_osuus\\\": 32.9, \\\"freshwarea\\\": 325.62, \\\"gml_id\\\": 1601100468, \\\"landarea\\\": 2557.67, \\\"namefin\\\": \\\"Kouvola\\\", \\\"nameswe\\\": \\\"Kouvola\\\", \\\"natcode\\\": \\\"286\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2883.29}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[480796.742, 6794311.385], [481228.794, 6792286.561], [482131.206, 6790934.765], [482347.689, 6789964.483], [480120.975, 6787463.909], [481801.4, 6785877.967], [486331.738, 6788397.578], [486618.817, 6789015.229], [487146.898, 6789500.836], [487328.018, 6790493.833], [487841.802, 6791606.684], [487768.626, 6792454.838], [488300.007, 6792880.069], [492083.258, 6794395.281], [493633.327, 6794561.122], [493460.602, 6793775.142], [494457.122, 6789980.394], [494140.351, 6789797.867], [494598.87, 6788985.101], [495744.612, 6787935.336], [495777.403, 6787284.701], [496065.187, 6787116.471], [496213.633, 6786184.652], [495275.032, 6783192.165], [496588.704, 6782277.246], [498212.85, 6781650.712], [500163.065, 6780579.361], [501232.334, 6780196.324], [501677.656, 6779725.218], [502998.421, 6779674.447], [504518.1, 6780163.157], [505183.83, 6780093.989], [506001.296, 6780384.176], [506504.587, 6781106.384], [507084.654, 6780734.539], [507918.613, 6780974.946], [508971.588, 6780730.852], [511075.037, 6780901.795], [511270.26, 6780739.262], [511167.175, 6780126.015], [511753.683, 6778711.194], [510068.582, 6776287.065], [509992.52, 6775260.88], [509524.513, 6774712.099], [509861.339, 6774329.548], [510253.522, 6774117.043], [510877.666, 6774673.322], [511507.114, 6774308.073], [511983.826, 6773705.919], [512322.995, 6772856.064], [511453.147, 6772797.284], [509979.247, 6772385.842], [509379.696, 6771518.39], [508715.271, 6770768.291], [508250.36, 6770683.023], [508078.633, 6770304.276], [508169.604, 6769334.17], [507931.81, 6768132.456], [508143.328, 6767705.53], [508620.45, 6765887.47], [508325.074, 6765363.382], [508000.507, 6765164.96], [507664.749, 6764433.656], [507631.866, 6763970.443], [508744.221, 6763317.014], [509017.815, 6762770.437], [509373.972, 6762575.318], [510310.987, 6763265.942], [510434.034, 6763656.185], [511207.832, 6762772.65], [511283.371, 6761946.395], [511772.076, 6761350.446], [511546.767, 6761109.919], [511506.827, 6760424.102], [511865.79, 6759443.801], [513081.494, 6759824.753], [513443.35, 6759506.184], [513085.502, 6758743.791], [512699.358, 6758714.301], [512028.333, 6758383.332], [511497.752, 6757863.84], [510572.929, 6757452.003], [510232.566, 6757559.458], [510013.857, 6757328.05], [509438.09, 6757313.653], [509124.014, 6757690.199], [508264.863, 6757575.341], [507694.189, 6758127.314], [507520.854, 6758726.77], [507007.859, 6759106.814], [506555.544, 6758785.742], [507372.925, 6757364.722], [508709.098, 6755740.188], [509994.189, 6754423.729], [511567.171, 6752118.872], [513601.545, 6751574.91], [515033.378, 6751323.315], [516535.076, 6750975.267], [517167.724, 6750607.32], [518399.63, 6750327.242], [519048.471, 6750045.86], [520230.1, 6749366.643], [520959.512, 6748504.497], [521260.396, 6747745.906], [523282.6, 6745336.095], [520544.407, 6744854.672], [519266.828, 6744016.503], [519482.079, 6743731.272], [518980.951, 6743342.939], [518871.015, 6742507.525], [518198.469, 6742438.568], [516871.402, 6742843.462], [515916.386, 6742996.792], [514782.157, 6740990.493], [514221.986, 6740633.433], [514231.986, 6739970.001], [514693.504, 6739538.879], [514850.344, 6739092.161], [514567.092, 6738109.072], [513503.382, 6738014.356], [513002.196, 6737655.083], [512657.381, 6737810.754], [512644.807, 6737216.011], [512268.524, 6736482.851], [512275.726, 6736120.852], [511067.689, 6736128.226], [507155.652, 6737848.998], [506789.099, 6737940.158], [506684.696, 6737393.253], [507039.468, 6736871.018], [506412.945, 6736525.914], [506589.729, 6735994.927], [506915.992, 6735642.833], [506765.805, 6735178.959], [507038.377, 6734714.202], [506034.096, 6733820.047], [506391.816, 6733355.516], [506829.211, 6732543.328], [506713.89, 6732123.21], [507248.225, 6731241.845], [506497.591, 6730755.482], [506164.978, 6729659.968], [506129.947, 6729593.141], [506099.515, 6729452.007], [506001.177, 6729139.605], [505632.233, 6727767.256], [504554.073, 6726573.228], [503702.205, 6726229.196], [503493.539, 6726653.889], [502774.254, 6726131.31], [502280.186, 6727068.909], [495742.236, 6723645.134], [494211.758, 6722580.35], [493550.526, 6722289.161], [492534.735, 6722489.773], [491969.862, 6722869.814], [491265.349, 6722591.92], [490627.206, 6722725.561], [490560.53, 6723234.255], [491310.925, 6723488.859], [491303.424, 6724081.42], [490525.142, 6723661.083], [489240.454, 6725152.07], [488819.02, 6725893.868], [488066.921, 6726441.34], [487551.129, 6726674.642], [486715.567, 6726592.766], [486365.31, 6726358.658], [486651.099, 6725652.346], [486481.57, 6725238.112], [485847.931, 6724530.092], [486556.547, 6723986.817], [486429.602, 6723463.285], [486588.578, 6723027.473], [486845.937, 6722755.616], [486861.733, 6722371.271], [486329.352, 6721683.244], [486581.353, 6721171.752], [487126.234, 6720867.48], [487377.086, 6720566.538], [488044.166, 6720310.012], [488171.819, 6719447.961], [488320.063, 6718757.141], [487991.3, 6718143.685], [488190.821, 6717765.64], [488121.751, 6717246.576], [487718.517, 6716997.245], [487787.393, 6716351.506], [487152.854, 6715625.993], [486511.377, 6715554.71], [486508.294, 6715561.273], [482653.225, 6723766.967], [480813.865, 6724119.206], [478291.188, 6723244.933], [477973.473, 6722914.56], [477933.466, 6722243.963], [477789.978, 6721786.969], [477799.487, 6721389.445], [477150.218, 6720959.217], [476977.992, 6719981.479], [476262.645, 6719264.126], [474886.715, 6715538.614], [474758.328, 6717759.786], [474731.373, 6717785.985], [473286.842, 6718220.613], [471708.858, 6717995.3], [471636.296, 6719934.103], [470378.484, 6722709.768], [468908.569, 6723888.276], [467343.597, 6724342.132], [464312.711, 6725246.074], [465138.786, 6726002.731], [463855.781, 6726862.312], [463148.947, 6729190.057], [463515.285, 6730882.573], [461845.446, 6733023.196], [461849.399, 6735056.552], [462123.921, 6735514.3], [465911.79, 6736341.409], [465591.364, 6737198.931], [467154.579, 6738367.91], [466285.812, 6740873.678], [466200.093, 6741287.426], [467242.312, 6741907.138], [468020.549, 6742041.189], [468927.897, 6742464.818], [469346.412, 6742887.586], [470231.717, 6742485.492], [471327.172, 6743280.385], [470952.551, 6743807.487], [472105.668, 6744017.877], [473441.11, 6745133.465], [470677.405, 6748823.155], [470888.288, 6749233.451], [471204.223, 6749223.624], [471467.482, 6749045.473], [472362.524, 6748798.791], [472657.557, 6748780.772], [472823.446, 6748706.482], [473034.053, 6748743.988], [474679.123, 6748600.897], [474945.368, 6748602.566], [475299.528, 6749932.349], [474942.337, 6755214.215], [474822.522, 6755929.995], [475134.653, 6756121.851], [474114.992, 6757342.122], [473734.364, 6757955.521], [473955.913, 6758492.584], [473791.312, 6759904.596], [473364.59, 6759954.864], [473207.48, 6760355.137], [472702.897, 6761851.318], [473201.22, 6763979.869], [470818.041, 6764492.036], [470413.303, 6764845.289], [468807.256, 6764268.008], [467832.85, 6764751.403], [467632.831, 6765181.927], [466839.051, 6766033.176], [466245.392, 6766072.754], [466153.13, 6765816.957], [465145.039, 6765472.887], [464639.057, 6763016.282], [464240.506, 6763286.482], [464142.075, 6762916.549], [463817.09, 6762980.13], [463463.845, 6763552.382], [463068.213, 6763248.589], [462919.849, 6763877.362], [462430.144, 6763377.659], [461383.968, 6764434.971], [460305.906, 6764308.612], [459438.244, 6767467.524], [460459.918, 6770786.289], [462858.51, 6774862.664], [461269.325, 6774930.211], [460751.983, 6774599.446], [460403.768, 6774765.026], [459920.876, 6774748.233], [459860.465, 6775512.088], [458825.647, 6777491.653], [458764.596, 6777509.207], [460650.401, 6779663.392], [460749.756, 6781163.186], [464915.473, 6782309.266], [466960.144, 6783898.544], [467575.586, 6786743.196], [469471.648, 6789352.951], [469375.013, 6790419.76], [469145.508, 6790937.15], [469646.027, 6791385.544], [470148.17, 6791472.946], [470177.082, 6792185.906], [471431.322, 6792215.237], [472321.193, 6792427.136], [473473.461, 6792950.611], [473923.367, 6793440.746], [474163.556, 6793167.891], [474912.594, 6793200.371], [475058.303, 6793576.698], [475851.116, 6793726.835], [476496.82, 6793001.94], [479477.555, 6794821.737], [480126.503, 6795433.237], [480335.594, 6794872.001], [480796.742, 6794311.385]]]}}, {\\\"id\\\": \\\"61\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Raahe\\\", \\\"elakelaisten_osuus\\\": 29.8, \\\"freshwarea\\\": 12.82, \\\"gml_id\\\": 1601100411, \\\"landarea\\\": 1015.43, \\\"namefin\\\": \\\"Raahe\\\", \\\"nameswe\\\": \\\"Brahestad\\\", \\\"natcode\\\": \\\"678\\\", \\\"seawarea\\\": 860.72, \\\"totalarea\\\": 1888.97}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[384247.443, 7186595.85], [385300.806, 7185653.948], [386047.625, 7185881.966], [386163.973, 7186239.966], [386899.716, 7186656.658], [387378.528, 7186635.993], [387801.466, 7186547.979], [387906.439, 7186308.874], [387544.828, 7186138.757], [388180.414, 7185927.426], [388441.546, 7185741.264], [388890.819, 7184942.223], [388639.567, 7184823.207], [388322.195, 7185319.106], [388142.829, 7185078.539], [388726.942, 7184041.171], [388851.793, 7184271.679], [389184.314, 7184030.8], [389027.914, 7183762.075], [389353.656, 7182846.225], [389572.125, 7183178.061], [391400.128, 7180444.756], [390853.335, 7180262.423], [391853.25, 7178473.526], [392055.432, 7178013.385], [393417.96, 7174222.454], [393205.314, 7174103.317], [393318.202, 7173664.498], [393896.044, 7173675.406], [394417.346, 7173756.007], [395007.282, 7173390.811], [394590.353, 7172853.289], [394843.521, 7172689.518], [395022.106, 7172922.986], [395393.432, 7172654.781], [394417.617, 7171373.578], [391626.297, 7164350.758], [396418.168, 7161922.903], [398336.735, 7160934.169], [400714.759, 7160678.18], [403595.649, 7159409.427], [407944.738, 7156167.948], [410703.73, 7152332.094], [411291.109, 7152531.0], [410889.439, 7152064.504], [411413.917, 7151340.041], [411800.775, 7151100.125], [415252.818, 7150181.06], [415463.09, 7150056.432], [415918.611, 7150188.174], [415817.208, 7149837.336], [416149.933, 7149631.461], [416742.271, 7150131.639], [417107.603, 7149914.032], [417202.672, 7149655.746], [416808.96, 7149206.607], [423743.472, 7144896.278], [423888.317, 7144446.071], [424122.588, 7144634.584], [424470.4, 7144319.003], [423921.136, 7144295.5], [425799.694, 7138315.664], [424749.226, 7139462.176], [423658.044, 7139590.133], [416123.35, 7133707.455], [415004.996, 7133796.942], [415047.572, 7133366.955], [414439.604, 7133144.261], [414161.154, 7133009.405], [414119.822, 7133232.117], [414182.958, 7133400.057], [414379.192, 7133331.011], [414604.498, 7133456.383], [414500.93, 7133756.186], [414249.635, 7133698.992], [414061.779, 7134187.282], [413847.312, 7133920.912], [412986.623, 7134009.983], [410794.93, 7134244.453], [408288.977, 7136195.48], [408110.315, 7136306.538], [405368.518, 7136749.323], [405300.142, 7136811.699], [405118.088, 7136865.856], [404995.346, 7136858.538], [404818.848, 7136996.35], [404795.801, 7137540.465], [404665.802, 7137565.963], [404615.755, 7137448.477], [404614.942, 7137293.068], [404504.114, 7137257.956], [404374.974, 7137262.275], [404079.282, 7137144.526], [403965.624, 7137137.434], [403842.465, 7136988.727], [403650.411, 7137017.99], [403297.782, 7137297.318], [403166.928, 7137057.82], [402326.205, 7137080.61], [399509.762, 7140293.474], [399433.396, 7140230.394], [399250.298, 7140440.951], [399322.919, 7140505.428], [399053.803, 7140809.485], [398867.273, 7140773.444], [398656.908, 7141012.165], [398781.784, 7141120.708], [398198.206, 7141785.062], [397674.958, 7142382.101], [394794.906, 7147092.35], [394539.466, 7147361.864], [393531.722, 7148421.584], [391343.425, 7150731.837], [390826.488, 7150672.896], [390689.697, 7151231.353], [390357.663, 7151147.18], [390452.17, 7151663.887], [389835.358, 7152313.764], [389498.93, 7152667.248], [389040.91, 7152411.399], [389180.991, 7152811.575], [388572.573, 7152863.668], [388403.031, 7152412.397], [388116.469, 7152812.495], [387547.384, 7152951.969], [384681.508, 7153191.646], [383492.515, 7153288.977], [378434.164, 7155243.487], [378176.447, 7154992.307], [377733.239, 7155081.979], [377749.852, 7155506.183], [374927.178, 7156598.412], [374198.207, 7156873.707], [372354.853, 7157665.648], [372434.018, 7158129.626], [372392.352, 7158391.415], [372071.989, 7158397.524], [371948.675, 7158613.373], [371436.648, 7158639.452], [371190.892, 7158433.986], [371201.078, 7158159.342], [341837.983, 7171207.978], [348972.143, 7174943.735], [350566.49, 7181198.816], [350905.179, 7182387.516], [355123.285, 7195769.413], [384247.443, 7186595.85]]]}}, {\\\"id\\\": \\\"62\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Askola\\\", \\\"elakelaisten_osuus\\\": 22.8, \\\"freshwarea\\\": 5.59, \\\"gml_id\\\": 1601100031, \\\"landarea\\\": 212.44, \\\"namefin\\\": \\\"Askola\\\", \\\"nameswe\\\": \\\"Askola\\\", \\\"natcode\\\": \\\"018\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 218.03}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[422872.343, 6720002.775], [423144.654, 6719809.079], [425751.505, 6719513.81], [426146.633, 6720102.343], [426631.036, 6720528.076], [428821.749, 6719098.472], [429272.666, 6719177.545], [432565.266, 6717622.634], [434572.646, 6715095.659], [435459.201, 6713354.279], [431838.508, 6712416.556], [431908.326, 6711836.67], [432165.201, 6711425.044], [432388.881, 6710744.22], [431939.038, 6709597.233], [431604.214, 6709778.054], [431262.367, 6709379.296], [430371.524, 6708120.676], [430607.018, 6707685.448], [430051.859, 6706552.402], [429744.182, 6705662.097], [429283.592, 6705551.068], [428493.138, 6705954.208], [427801.294, 6705852.483], [427186.936, 6706665.046], [426408.432, 6707172.144], [425989.811, 6708046.772], [423421.791, 6704555.878], [422418.882, 6707848.004], [422144.086, 6707229.575], [420629.886, 6706995.56], [420729.97, 6706689.307], [419684.896, 6706394.097], [419229.404, 6706780.453], [415506.072, 6706184.414], [413795.168, 6706224.109], [413954.616, 6708224.21], [413760.794, 6709312.742], [413346.511, 6710052.277], [412974.561, 6711425.238], [413073.963, 6712770.878], [415987.033, 6713740.297], [416517.649, 6713739.6], [417853.345, 6714376.312], [418695.893, 6716908.78], [419313.936, 6717446.665], [418744.492, 6718053.809], [418641.797, 6718426.824], [419902.082, 6718897.076], [420133.479, 6719753.626], [420878.774, 6719934.759], [421003.833, 6718940.268], [422338.78, 6720086.712], [422033.203, 6720617.096], [422977.319, 6720633.199], [422872.343, 6720002.775]]]}}, {\\\"id\\\": \\\"63\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kotka\\\", \\\"elakelaisten_osuus\\\": 31.6, \\\"freshwarea\\\": 5.82, \\\"gml_id\\\": 1601100466, \\\"landarea\\\": 271.95, \\\"namefin\\\": \\\"Kotka\\\", \\\"nameswe\\\": \\\"Kotka\\\", \\\"natcode\\\": \\\"285\\\", \\\"seawarea\\\": 671.99, \\\"totalarea\\\": 949.76}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[488066.921, 6726441.34], [488819.02, 6725893.868], [489240.454, 6725152.07], [490525.142, 6723661.083], [491303.424, 6724081.42], [491310.925, 6723488.859], [490560.53, 6723234.255], [490627.206, 6722725.561], [491265.349, 6722591.92], [491969.862, 6722869.814], [492534.735, 6722489.773], [493550.526, 6722289.161], [494211.758, 6722580.35], [495742.236, 6723645.134], [501560.721, 6718737.862], [501294.438, 6716892.204], [501104.527, 6714655.804], [501145.113, 6714192.191], [500388.816, 6713481.656], [500509.266, 6712616.621], [501436.923, 6709499.984], [501602.792, 6709129.429], [503446.53, 6704270.279], [506140.957, 6700756.399], [506273.715, 6700114.079], [506499.313, 6699923.859], [506342.6, 6699796.134], [506594.181, 6698563.575], [506667.974, 6698380.12], [506595.898, 6698194.119], [506593.573, 6697984.867], [506709.824, 6697775.616], [506574.973, 6697559.389], [506526.058, 6696685.697], [513725.034, 6691391.285], [514664.655, 6691691.173], [523328.492, 6680338.08], [523329.668, 6680336.538], [525826.092, 6677065.617], [525299.2, 6676362.9], [516250.531, 6673744.753], [516244.839, 6673744.728], [493088.51, 6673729.015], [491398.609, 6700870.421], [491241.972, 6701099.185], [491365.343, 6701428.397], [491186.214, 6704307.832], [490323.991, 6706636.797], [486254.226, 6715441.911], [486511.377, 6715554.71], [487152.854, 6715625.993], [487787.393, 6716351.506], [487718.517, 6716997.245], [488121.751, 6717246.576], [488190.821, 6717765.64], [487991.3, 6718143.685], [488320.063, 6718757.141], [488171.819, 6719447.961], [488044.166, 6720310.012], [487377.086, 6720566.538], [487126.234, 6720867.48], [486581.353, 6721171.752], [486329.352, 6721683.244], [486861.733, 6722371.271], [486845.937, 6722755.616], [486588.578, 6723027.473], [486429.602, 6723463.285], [486556.547, 6723986.817], [485847.931, 6724530.092], [486481.57, 6725238.112], [486651.099, 6725652.346], [486365.31, 6726358.658], [486715.567, 6726592.766], [487551.129, 6726674.642], [488066.921, 6726441.34]]]}}, {\\\"id\\\": \\\"64\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuhmoinen\\\", \\\"elakelaisten_osuus\\\": 48.8, \\\"freshwarea\\\": 275.76, \\\"gml_id\\\": 1601100479, \\\"landarea\\\": 660.92, \\\"namefin\\\": \\\"Kuhmoinen\\\", \\\"nameswe\\\": \\\"Kuhmoinen\\\", \\\"natcode\\\": \\\"291\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 936.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[402296.075, 6846500.266], [403028.676, 6846334.808], [403584.889, 6846272.445], [403839.581, 6846139.968], [404379.54, 6845367.213], [405229.428, 6845884.996], [405897.511, 6846140.972], [406764.975, 6844964.332], [407269.7, 6845117.57], [407845.748, 6846003.235], [408300.149, 6846351.928], [408521.34, 6846079.435], [408328.954, 6844931.096], [410283.619, 6844794.272], [413202.984, 6844044.747], [413979.945, 6843292.71], [415096.055, 6844360.878], [415886.186, 6846288.651], [415296.408, 6846800.896], [416178.333, 6847939.183], [422729.752, 6850493.619], [420875.219, 6848689.333], [420522.909, 6842187.355], [420643.476, 6840114.592], [420678.769, 6839096.004], [420849.832, 6834306.836], [416789.253, 6818020.26], [413145.502, 6817748.821], [408166.307, 6817487.311], [407094.355, 6816685.901], [403231.682, 6817419.279], [401279.595, 6815341.562], [400669.546, 6816252.386], [399743.645, 6816920.095], [399173.093, 6816764.684], [398430.243, 6816807.595], [397647.596, 6817412.642], [397436.175, 6817365.213], [397666.369, 6816267.577], [392785.961, 6814784.461], [391802.732, 6814673.992], [391425.504, 6815300.875], [391393.307, 6815343.435], [389735.851, 6818049.666], [389646.462, 6820789.095], [390777.874, 6824551.546], [387200.555, 6825346.016], [389328.425, 6827551.193], [389443.041, 6830216.791], [387990.36, 6831152.808], [386497.317, 6830213.239], [385709.498, 6830188.286], [385505.84, 6827909.953], [385063.838, 6826579.342], [384108.444, 6830440.609], [382924.964, 6832142.474], [382507.388, 6834089.668], [384140.798, 6838254.77], [384986.645, 6837218.87], [385252.909, 6837100.608], [385414.913, 6837358.348], [385803.027, 6836985.17], [387458.779, 6836423.942], [388128.706, 6836701.796], [389221.624, 6835465.877], [389654.585, 6834836.836], [391889.348, 6834729.064], [391322.585, 6835905.029], [391446.233, 6836524.81], [392025.823, 6836723.259], [391738.438, 6837171.846], [392226.042, 6837809.869], [392203.595, 6838191.197], [391853.414, 6839278.17], [391138.196, 6840261.891], [390513.484, 6840821.116], [390115.536, 6841794.707], [389822.98, 6842774.463], [389835.419, 6843044.1], [389676.252, 6843251.025], [390276.024, 6844258.033], [390408.539, 6844728.99], [391398.563, 6846664.843], [391546.977, 6846627.971], [391745.862, 6847355.115], [391460.496, 6847902.346], [391440.088, 6848167.935], [392079.423, 6848643.274], [392620.216, 6847430.599], [392240.985, 6846578.649], [392534.026, 6846222.143], [392165.456, 6845608.666], [392603.636, 6845128.092], [393183.375, 6844853.733], [394520.626, 6845861.52], [394056.642, 6846687.29], [393349.722, 6848921.249], [393915.266, 6849316.118], [392467.486, 6850973.606], [392429.615, 6851381.322], [393433.93, 6852102.657], [402296.075, 6846500.266]]]}}, {\\\"id\\\": \\\"65\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Savitaipale\\\", \\\"elakelaisten_osuus\\\": 41.6, \\\"freshwarea\\\": 151.44, \\\"gml_id\\\": 1601100509, \\\"landarea\\\": 539.12, \\\"namefin\\\": \\\"Savitaipale\\\", \\\"nameswe\\\": \\\"Savitaipale\\\", \\\"natcode\\\": \\\"739\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 690.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[545772.871, 6802211.037], [549805.424, 6802171.894], [547529.874, 6800333.507], [546639.137, 6799912.273], [546420.831, 6798943.569], [545419.242, 6797799.311], [544770.409, 6797203.27], [545131.668, 6796410.098], [544863.782, 6795470.481], [545199.649, 6794968.689], [545183.658, 6794557.858], [546173.261, 6794013.088], [546583.798, 6793400.043], [545735.247, 6792457.623], [544437.072, 6792539.38], [545284.136, 6791365.067], [545251.053, 6790795.5], [544499.957, 6790811.388], [543020.547, 6792198.809], [542562.732, 6792227.793], [542060.933, 6792483.685], [541003.062, 6792378.02], [540436.79, 6792450.386], [540102.632, 6791516.365], [540173.208, 6790785.364], [540397.118, 6790453.168], [540220.093, 6790220.495], [540481.312, 6789830.259], [540889.122, 6790227.297], [541738.181, 6789957.914], [541923.107, 6789737.806], [542742.173, 6790169.336], [542833.739, 6789684.834], [542291.263, 6789059.585], [542747.982, 6788432.545], [543685.0, 6788870.674], [544209.293, 6788087.498], [543730.691, 6787513.728], [543442.312, 6786865.99], [543681.721, 6785968.159], [543255.095, 6785796.725], [543097.069, 6784286.141], [543363.916, 6783977.813], [544099.56, 6784799.539], [544140.248, 6784059.842], [543668.044, 6783449.487], [543742.316, 6783084.537], [543348.775, 6783081.935], [542709.038, 6782540.35], [542196.954, 6781271.564], [542049.516, 6780986.279], [540679.875, 6780375.317], [539728.56, 6780310.335], [538269.555, 6779667.985], [537395.109, 6779784.63], [537131.725, 6778389.697], [537272.676, 6777341.125], [538184.425, 6775032.872], [538206.571, 6774453.702], [537923.139, 6774058.766], [537236.019, 6773876.634], [537036.498, 6774127.63], [535125.681, 6773175.299], [534308.419, 6772574.235], [534032.936, 6772082.031], [534260.151, 6771247.872], [534797.833, 6771092.941], [534531.247, 6770502.978], [534052.84, 6770738.277], [533313.246, 6770086.234], [534912.108, 6768693.916], [535055.268, 6766688.631], [534408.131, 6766746.001], [534507.584, 6767477.905], [534159.123, 6767786.476], [533767.881, 6767860.442], [533758.19, 6767364.943], [533581.664, 6767074.359], [533160.438, 6766850.145], [532078.777, 6766939.398], [531608.272, 6766507.568], [530962.248, 6764893.317], [529019.825, 6765491.261], [527537.022, 6765529.635], [527369.786, 6765852.802], [527332.398, 6766164.176], [527149.77, 6766399.579], [526569.904, 6766359.091], [525197.762, 6765695.351], [524672.179, 6765093.691], [522930.07, 6766315.783], [522322.29, 6769071.36], [521244.113, 6770391.816], [519976.721, 6770687.886], [519645.127, 6774135.687], [518308.164, 6774695.854], [517674.249, 6774280.507], [516643.211, 6774594.16], [515540.631, 6774107.247], [515266.699, 6773710.435], [515145.252, 6773230.728], [513971.425, 6773356.271], [513524.409, 6772956.23], [512322.995, 6772856.064], [511983.826, 6773705.919], [511507.114, 6774308.073], [510877.666, 6774673.322], [510253.522, 6774117.043], [509861.339, 6774329.548], [509524.513, 6774712.099], [509992.52, 6775260.88], [510068.582, 6776287.065], [511753.683, 6778711.194], [511167.175, 6780126.015], [511270.26, 6780739.262], [511075.037, 6780901.795], [512328.427, 6781418.892], [512903.995, 6781331.131], [514478.96, 6781264.768], [516141.324, 6782319.425], [516240.837, 6782563.949], [516974.294, 6781550.982], [519122.677, 6782169.927], [519478.927, 6782835.058], [519282.398, 6783739.388], [519285.79, 6784554.955], [520842.24, 6785377.226], [520632.817, 6786551.176], [520334.347, 6786709.482], [520389.219, 6787322.132], [519699.948, 6788738.05], [519557.335, 6789502.137], [519846.614, 6790008.632], [520099.707, 6790484.939], [520893.79, 6790133.287], [521781.63, 6790328.413], [522574.91, 6790287.235], [523251.535, 6790453.971], [523461.348, 6790744.054], [523545.608, 6791368.4], [523370.675, 6791813.317], [523073.983, 6793120.781], [524818.382, 6792733.55], [527218.911, 6792945.679], [529178.633, 6791501.48], [530951.313, 6792241.092], [531973.485, 6794214.696], [531584.139, 6794548.356], [530550.157, 6794209.386], [529956.79, 6794738.365], [529091.235, 6795122.901], [529856.413, 6796728.052], [531337.628, 6795584.032], [531694.781, 6796048.145], [531304.335, 6796323.729], [531709.761, 6797554.23], [532244.95, 6797206.177], [532582.314, 6797240.966], [532862.492, 6798303.235], [532309.253, 6798563.049], [531521.828, 6798534.429], [531929.757, 6799331.507], [531972.233, 6800095.596], [531633.565, 6800592.99], [531862.069, 6801157.263], [532096.377, 6801040.013], [532883.759, 6801417.368], [533577.486, 6800893.289], [534599.948, 6801263.658], [537266.521, 6799720.606], [540382.265, 6799672.642], [542379.233, 6803375.649], [545772.871, 6802211.037]]]}}, {\\\"id\\\": \\\"66\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lumijoki\\\", \\\"elakelaisten_osuus\\\": 21.8, \\\"freshwarea\\\": 0.25, \\\"gml_id\\\": 1601100027, \\\"landarea\\\": 214.16, \\\"namefin\\\": \\\"Lumijoki\\\", \\\"nameswe\\\": \\\"Lumijoki\\\", \\\"natcode\\\": \\\"436\\\", \\\"seawarea\\\": 75.88, \\\"totalarea\\\": 290.29}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[420391.319, 7196643.734], [420929.535, 7196824.492], [420782.008, 7196394.278], [418219.879, 7188914.111], [412772.128, 7180091.469], [405630.273, 7185147.935], [402826.439, 7189072.135], [404483.163, 7192503.685], [404879.342, 7195451.674], [405688.488, 7195850.74], [405544.479, 7196139.391], [405179.934, 7196188.49], [405072.695, 7196857.605], [405590.859, 7200711.263], [405158.02, 7206221.723], [407784.854, 7208121.521], [420391.319, 7196643.734]]]}}, {\\\"id\\\": \\\"67\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Punkalaidun\\\", \\\"elakelaisten_osuus\\\": 39.1, \\\"freshwarea\\\": 2.94, \\\"gml_id\\\": 1601100321, \\\"landarea\\\": 361.08, \\\"namefin\\\": \\\"Punkalaidun\\\", \\\"nameswe\\\": \\\"Punkalaidun\\\", \\\"natcode\\\": \\\"619\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 364.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[299894.258, 6793125.238], [298836.826, 6788879.988], [301566.561, 6786740.901], [305264.715, 6782737.647], [301251.437, 6781576.494], [301137.653, 6781163.282], [299441.503, 6781002.326], [298993.601, 6780634.445], [298641.525, 6780791.058], [299038.66, 6781253.373], [298475.448, 6781606.439], [298035.598, 6781529.42], [297449.981, 6781630.821], [297121.029, 6780986.42], [296720.734, 6780661.405], [297182.195, 6780156.331], [298136.031, 6779881.462], [297914.31, 6778070.229], [298654.376, 6778016.888], [298711.587, 6777505.132], [299512.543, 6777452.579], [299708.266, 6777132.492], [299093.358, 6777099.428], [298751.001, 6776737.475], [297752.536, 6776809.122], [298067.246, 6776541.901], [296616.696, 6776641.977], [296796.581, 6775949.754], [297326.31, 6775695.096], [298521.523, 6775580.908], [298474.223, 6775088.822], [299677.521, 6774882.564], [297813.288, 6770909.189], [297912.327, 6770626.756], [298319.967, 6769946.551], [298169.87, 6769268.438], [295318.225, 6769477.243], [294311.243, 6768899.488], [292701.025, 6769465.517], [292441.396, 6771461.048], [291954.503, 6772407.834], [289778.014, 6772814.292], [286947.939, 6772659.639], [284781.081, 6771831.81], [282345.246, 6774309.421], [281989.973, 6776068.675], [284299.649, 6777254.653], [284595.879, 6777710.317], [284104.602, 6779172.354], [280812.362, 6777713.99], [279796.938, 6779300.946], [280564.708, 6780119.242], [283028.074, 6782373.781], [282730.952, 6782899.625], [281499.02, 6783427.186], [281520.333, 6784788.142], [280639.54, 6785440.994], [280405.736, 6789563.086], [282591.859, 6789184.159], [281615.645, 6792413.385], [285307.458, 6790016.681], [286885.859, 6790366.588], [286977.622, 6790746.983], [287650.863, 6790829.035], [287804.13, 6790401.505], [287620.387, 6789852.188], [287789.643, 6789527.95], [288605.925, 6789751.067], [288135.808, 6791197.017], [290744.236, 6791007.635], [292607.95, 6791628.348], [293008.194, 6791922.322], [294087.919, 6792266.578], [294145.944, 6792557.749], [297370.795, 6791707.726], [297826.825, 6791902.122], [298246.214, 6793510.993], [299894.258, 6793125.238]]]}}, {\\\"id\\\": \\\"68\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"S\\\\u00e4kyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 35.2, \\\"freshwarea\\\": 120.96, \\\"gml_id\\\": 1601100329, \\\"landarea\\\": 406.75, \\\"namefin\\\": \\\"S\\\\u00e4kyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"S\\\\u00e4kyl\\\\u00e4\\\", \\\"natcode\\\": \\\"783\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 527.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[246310.079, 6793564.282], [253803.569, 6793179.746], [256997.76, 6790195.252], [257857.082, 6787773.348], [258775.105, 6786546.675], [261628.054, 6777951.94], [261070.704, 6777636.777], [262130.106, 6772503.933], [263133.068, 6771846.568], [263142.9, 6771414.672], [263680.23, 6770884.356], [264179.474, 6770470.666], [264478.663, 6770969.105], [267534.562, 6768963.192], [262864.135, 6769538.468], [260942.911, 6769767.253], [259284.949, 6769135.523], [257779.821, 6768440.944], [260797.574, 6764229.146], [260943.87, 6764023.99], [257436.007, 6765638.903], [255917.283, 6765381.586], [252569.836, 6764715.924], [251633.004, 6764330.886], [248896.201, 6764077.797], [246365.314, 6762574.004], [245986.399, 6762519.54], [243759.88, 6763353.697], [243395.267, 6763918.679], [241789.4, 6766421.928], [243149.982, 6768481.585], [241864.449, 6783096.237], [243379.886, 6784226.958], [243522.321, 6784329.754], [242335.755, 6786050.969], [243236.926, 6787345.638], [243026.081, 6790770.652], [239703.374, 6794772.793], [239844.503, 6795212.964], [239679.014, 6795623.427], [239160.084, 6796013.57], [240490.58, 6797259.324], [241334.386, 6800405.003], [246310.079, 6793564.282]]]}}, {\\\"id\\\": \\\"69\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Karkkila\\\", \\\"elakelaisten_osuus\\\": 30.1, \\\"freshwarea\\\": 12.96, \\\"gml_id\\\": 1601100377, \\\"landarea\\\": 242.36, \\\"namefin\\\": \\\"Karkkila\\\", \\\"nameswe\\\": \\\"H\\\\u00f6gfors\\\", \\\"natcode\\\": \\\"224\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 255.32}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[338515.195, 6726577.401], [338539.595, 6726518.761], [340496.511, 6724901.414], [341629.409, 6724945.871], [343233.493, 6724226.418], [345453.734, 6724683.956], [347143.049, 6723995.425], [348814.75, 6723424.072], [348570.077, 6721581.554], [349238.384, 6720221.4], [350169.787, 6719102.849], [351205.054, 6717453.114], [352336.954, 6718035.073], [351726.814, 6719544.044], [352442.938, 6719826.442], [354830.592, 6722516.944], [356841.729, 6721419.949], [358173.253, 6720150.204], [357451.777, 6718512.487], [358726.22, 6715710.045], [360778.209, 6710231.502], [355987.583, 6708738.364], [352638.209, 6707983.574], [350939.092, 6707435.074], [350500.573, 6706895.799], [350158.251, 6707035.125], [350442.191, 6707960.156], [348708.216, 6710739.592], [347127.119, 6709676.088], [347157.647, 6709005.556], [346908.349, 6708626.508], [344726.117, 6708985.216], [344565.478, 6708737.405], [343689.743, 6711161.061], [343830.319, 6711946.476], [340873.387, 6715975.412], [337396.548, 6722934.84], [337095.663, 6722165.544], [336149.589, 6721123.568], [335614.969, 6721446.236], [335363.142, 6721764.357], [335970.914, 6722756.012], [336691.403, 6722628.462], [337329.431, 6723446.878], [336905.383, 6723911.912], [337096.257, 6724257.507], [336719.739, 6724930.643], [336222.196, 6724541.267], [334371.929, 6726306.184], [336263.847, 6726814.352], [338216.004, 6726835.9], [338515.195, 6726577.401]]]}}, {\\\"id\\\": \\\"70\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sipoo\\\", \\\"elakelaisten_osuus\\\": 19.8, \\\"freshwarea\\\": 3.01, \\\"gml_id\\\": 1601100531, \\\"landarea\\\": 339.7, \\\"namefin\\\": \\\"Sipoo\\\", \\\"nameswe\\\": \\\"Sibbo\\\", \\\"natcode\\\": \\\"753\\\", \\\"seawarea\\\": 355.89, \\\"totalarea\\\": 698.6}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[402460.677, 6708594.602], [404879.929, 6705306.499], [405444.334, 6704375.991], [406339.895, 6703376.025], [407644.735, 6701563.577], [408782.366, 6699946.592], [409843.854, 6697758.511], [409951.03, 6696943.21], [409854.62, 6694354.312], [412341.632, 6689906.852], [415198.668, 6685186.889], [418498.101, 6681862.818], [416330.067, 6679130.905], [416468.479, 6678378.37], [415467.249, 6677205.501], [410558.993, 6671362.474], [408589.052, 6664019.377], [406641.156, 6645584.736], [397724.522, 6646526.495], [397119.274, 6646433.498], [398600.997, 6663222.358], [399732.084, 6669114.856], [401345.24, 6674985.491], [400349.205, 6677070.273], [400548.902, 6678367.399], [401808.886, 6679388.548], [401623.898, 6679780.387], [401850.326, 6680029.843], [402620.314, 6680141.562], [402627.876, 6680612.858], [402458.273, 6681254.676], [401913.233, 6681807.992], [402206.313, 6681961.24], [402182.555, 6682483.79], [402360.86, 6683005.931], [402826.728, 6682979.462], [403253.471, 6683155.565], [403336.846, 6683401.992], [402893.083, 6683702.407], [402897.947, 6684431.254], [403466.148, 6684945.228], [403017.003, 6685389.467], [403516.149, 6685567.289], [403434.138, 6685818.265], [402614.625, 6685603.09], [402143.657, 6685895.131], [401634.138, 6685194.721], [400567.687, 6684841.722], [400745.666, 6684657.097], [400258.311, 6684176.97], [399936.362, 6684600.244], [400112.193, 6685327.02], [398875.337, 6687504.945], [397027.615, 6688559.041], [395227.064, 6690255.984], [396070.823, 6690272.12], [396230.376, 6690954.45], [396441.833, 6690963.399], [396672.554, 6690176.552], [397493.096, 6690202.427], [397993.38, 6690736.507], [398032.965, 6691388.805], [397048.739, 6691679.924], [398036.723, 6692854.03], [397728.124, 6694328.737], [398131.652, 6696682.563], [397953.515, 6698215.705], [398267.308, 6698291.392], [398374.228, 6699002.739], [398868.044, 6699198.763], [398323.404, 6700627.862], [398541.439, 6701378.07], [398347.951, 6702173.09], [398164.736, 6702901.474], [398206.29, 6704310.03], [398207.07, 6704408.364], [399460.778, 6709189.412], [402460.677, 6708594.602]]]}}, {\\\"id\\\": \\\"71\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hartola\\\", \\\"elakelaisten_osuus\\\": 43.6, \\\"freshwarea\\\": 132.67, \\\"gml_id\\\": 1601100129, \\\"landarea\\\": 542.71, \\\"namefin\\\": \\\"Hartola\\\", \\\"nameswe\\\": \\\"Hartola\\\", \\\"natcode\\\": \\\"081\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 675.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[441120.189, 6851806.954], [439745.442, 6848204.736], [439968.399, 6848097.527], [441767.564, 6848327.115], [442340.866, 6848493.548], [443126.909, 6850962.418], [443372.644, 6850333.753], [444461.123, 6849154.728], [446359.614, 6847818.874], [446415.344, 6847309.266], [446157.566, 6846784.553], [446150.804, 6846437.748], [446542.231, 6846332.957], [446359.337, 6846016.912], [446916.562, 6845473.268], [446799.004, 6844817.189], [447032.648, 6844393.552], [447976.807, 6843436.993], [449017.267, 6843928.483], [449344.157, 6843793.949], [449557.645, 6843991.912], [449655.002, 6844467.974], [449705.331, 6845091.532], [449947.341, 6845396.168], [450465.773, 6844546.246], [450707.9, 6843951.649], [450652.216, 6843205.31], [450443.347, 6843037.878], [450869.579, 6842202.411], [451197.115, 6842296.766], [451412.38, 6842188.716], [451444.692, 6841830.456], [451292.517, 6841115.014], [451469.0, 6840500.797], [451556.575, 6839883.764], [451465.848, 6839450.336], [451251.268, 6839025.603], [450836.985, 6838628.64], [450788.379, 6838039.882], [452586.713, 6834909.24], [453805.622, 6834141.123], [454323.072, 6833248.131], [454267.839, 6832099.924], [455502.859, 6831695.757], [457185.449, 6835460.267], [457496.01, 6835225.683], [458993.592, 6834510.286], [461163.433, 6834489.704], [461161.475, 6834507.847], [462028.369, 6836146.618], [462369.097, 6835397.181], [462936.108, 6835813.406], [463667.601, 6834237.156], [462860.602, 6832871.343], [463685.217, 6830957.649], [463664.516, 6830753.345], [463593.465, 6829915.996], [463867.152, 6826687.506], [462903.65, 6827425.984], [460774.416, 6827602.194], [461481.999, 6827157.305], [461932.086, 6826528.482], [462122.378, 6826174.381], [461957.79, 6825483.531], [461926.858, 6824648.012], [462309.718, 6823880.006], [462759.436, 6823700.982], [462365.927, 6821469.421], [461090.232, 6821379.804], [461395.135, 6820246.214], [461426.691, 6819659.945], [461899.222, 6819394.258], [462452.539, 6819592.21], [463245.966, 6819355.088], [463497.038, 6819986.1], [463336.58, 6821414.916], [463787.646, 6821422.006], [464164.044, 6820383.058], [463914.291, 6819722.903], [464535.738, 6819677.927], [464829.535, 6819997.546], [465145.663, 6819791.397], [465301.367, 6819144.386], [464894.316, 6818961.55], [464832.024, 6818397.848], [464555.238, 6818309.981], [464530.944, 6818888.147], [463761.148, 6819440.814], [463444.197, 6819069.23], [461093.244, 6819255.164], [460940.924, 6820270.533], [460412.722, 6820345.143], [460412.44, 6819740.821], [460732.979, 6819618.318], [460788.601, 6819327.269], [460505.237, 6819312.73], [459318.504, 6819942.511], [459330.487, 6819700.768], [460747.0, 6818727.46], [461294.077, 6817497.606], [461534.076, 6817342.844], [461697.513, 6816764.979], [462003.488, 6816674.719], [462334.665, 6814715.016], [459668.964, 6812750.586], [460772.728, 6810440.832], [455822.769, 6806830.846], [455356.158, 6807001.873], [454767.088, 6808685.685], [454793.575, 6809043.14], [456543.46, 6809233.18], [456292.159, 6809970.679], [454687.908, 6810777.936], [454574.653, 6811018.937], [453530.279, 6811017.528], [452840.863, 6810469.943], [452504.201, 6810406.365], [452231.153, 6810837.122], [451539.09, 6811077.384], [451628.745, 6812567.081], [451199.614, 6813590.562], [449373.925, 6816396.362], [447722.128, 6813175.196], [447553.486, 6812614.62], [445870.579, 6811751.152], [445364.086, 6811204.568], [442709.864, 6811811.99], [441932.336, 6812894.956], [441292.909, 6813471.315], [441037.395, 6814180.192], [440534.485, 6814949.433], [440282.642, 6815549.749], [439418.594, 6816055.234], [439809.134, 6816606.016], [439992.459, 6816466.674], [441016.74, 6817057.748], [440553.329, 6817306.241], [440309.974, 6817889.24], [442688.067, 6821140.667], [444814.719, 6823663.43], [441360.24, 6826192.481], [443435.579, 6828265.266], [441526.362, 6827510.752], [440545.658, 6828110.702], [439342.653, 6827387.981], [438886.896, 6833195.54], [440342.606, 6832673.963], [440701.752, 6833813.908], [440818.199, 6834525.122], [440433.852, 6834975.937], [439693.949, 6835579.388], [438443.456, 6836047.588], [435743.157, 6835908.319], [435522.034, 6837703.694], [434977.032, 6839710.96], [438323.792, 6848889.962], [438618.702, 6849354.452], [438773.207, 6849383.136], [439067.911, 6849675.954], [439659.334, 6850290.241], [439640.485, 6850872.99], [439347.228, 6851478.12], [439225.877, 6852311.217], [439110.805, 6852598.036], [441120.189, 6851806.954]], [[453215.5, 6812136.771], [453336.713, 6811921.271], [453247.991, 6811429.358], [452184.327, 6811061.996], [452038.484, 6811573.688], [452164.429, 6812141.659], [452685.814, 6812510.614], [453215.5, 6812136.771]], [[448408.67, 6839367.033], [447544.912, 6839540.324], [447172.863, 6837987.334], [446955.056, 6837863.917], [446674.116, 6838006.806], [446701.928, 6839318.959], [446889.484, 6840064.038], [448622.18, 6840140.641], [448408.67, 6839367.033]]]}}, {\\\"id\\\": \\\"72\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tervola\\\", \\\"elakelaisten_osuus\\\": 34.4, \\\"freshwarea\\\": 32.29, \\\"gml_id\\\": 1601100642, \\\"landarea\\\": 1559.73, \\\"namefin\\\": \\\"Tervola\\\", \\\"nameswe\\\": \\\"Tervola\\\", \\\"natcode\\\": \\\"845\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1592.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[411114.474, 7353361.247], [415906.354, 7350333.902], [419840.958, 7347820.19], [425254.52, 7344288.386], [434060.204, 7344049.189], [434104.01, 7344242.201], [434294.556, 7344457.067], [434485.956, 7344048.166], [444853.57, 7344279.765], [452242.297, 7340711.583], [451898.944, 7340207.1], [452351.052, 7339960.582], [452522.9, 7340575.256], [457934.233, 7337960.185], [457368.442, 7336792.211], [457544.313, 7336146.669], [444094.817, 7330386.502], [434263.655, 7333629.767], [433392.263, 7333030.11], [433965.291, 7332207.887], [432074.729, 7330901.278], [431380.098, 7331622.223], [429881.546, 7330576.368], [419356.794, 7316762.731], [414754.546, 7317165.134], [413911.771, 7316475.309], [413933.013, 7314999.202], [412751.121, 7314978.711], [412739.219, 7315680.238], [411948.162, 7315989.91], [410848.256, 7315447.43], [410967.935, 7318480.815], [403959.705, 7318059.707], [404399.755, 7318869.471], [404851.329, 7320257.645], [404400.972, 7320335.089], [404029.547, 7319749.932], [403832.364, 7318052.272], [396119.427, 7317613.838], [396217.624, 7318498.36], [395608.965, 7318617.265], [390804.334, 7323775.928], [387125.854, 7325545.337], [387117.53, 7339696.101], [387319.746, 7339764.638], [387116.986, 7342874.889], [390203.353, 7346142.255], [393313.086, 7349486.704], [394911.569, 7351277.06], [397127.815, 7353850.66], [398565.586, 7355562.83], [401100.619, 7358688.557], [401561.363, 7359275.278], [411114.474, 7353361.247]]]}}, {\\\"id\\\": \\\"73\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kerava\\\", \\\"elakelaisten_osuus\\\": 22.3, \\\"freshwarea\\\": 0.16, \\\"gml_id\\\": 1601100409, \\\"landarea\\\": 30.63, \\\"namefin\\\": \\\"Kerava\\\", \\\"nameswe\\\": \\\"Kervo\\\", \\\"natcode\\\": \\\"245\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 30.79}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[398541.439, 6701378.07], [398323.404, 6700627.862], [398868.044, 6699198.763], [398374.228, 6699002.739], [398267.308, 6698291.392], [397953.515, 6698215.705], [398131.652, 6696682.563], [397728.124, 6694328.737], [398036.723, 6692854.03], [396926.462, 6692862.656], [396034.786, 6693054.079], [396010.458, 6693625.721], [394675.378, 6693732.064], [394375.772, 6694399.69], [393916.943, 6694490.093], [393738.29, 6694727.48], [393961.205, 6695261.492], [394493.643, 6695308.597], [394248.026, 6696673.552], [394283.413, 6698915.685], [393842.583, 6699049.737], [393928.533, 6699598.525], [394296.721, 6699370.115], [394500.261, 6700394.312], [398347.951, 6702173.09], [398541.439, 6701378.07]]]}}, {\\\"id\\\": \\\"74\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nokia\\\", \\\"elakelaisten_osuus\\\": 24.3, \\\"freshwarea\\\": 59.53, \\\"gml_id\\\": 1601100169, \\\"landarea\\\": 288.3, \\\"namefin\\\": \\\"Nokia\\\", \\\"nameswe\\\": \\\"Nokia\\\", \\\"natcode\\\": \\\"536\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 347.83}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[314393.368, 6829132.139], [315654.765, 6827929.596], [316192.01, 6827073.221], [316754.117, 6825030.582], [317619.588, 6823732.921], [317263.558, 6822525.447], [318515.954, 6822464.609], [318831.891, 6821797.77], [319401.318, 6821431.059], [319633.759, 6820693.772], [318434.675, 6820315.214], [317243.86, 6820617.525], [316055.723, 6819868.519], [314312.538, 6816212.207], [313750.212, 6815802.722], [313764.52, 6815458.895], [313450.579, 6815045.484], [312823.16, 6814909.581], [312492.742, 6814427.452], [312364.696, 6813189.401], [311949.589, 6812722.478], [311934.626, 6812066.557], [311320.535, 6811163.701], [310633.693, 6810982.696], [310314.51, 6811205.887], [309802.59, 6811055.805], [309024.691, 6810453.081], [308330.028, 6810403.253], [308239.204, 6810240.996], [308836.595, 6809496.936], [307206.594, 6808297.845], [307610.528, 6807798.308], [308934.379, 6806816.059], [309664.612, 6806134.316], [310168.225, 6805496.124], [309952.892, 6805241.214], [309603.799, 6805166.429], [308726.575, 6805452.098], [308554.456, 6804528.688], [308021.115, 6804616.695], [305522.186, 6805777.932], [303526.983, 6807346.522], [300931.473, 6808129.885], [297788.894, 6805221.834], [298648.645, 6806773.796], [299890.929, 6808508.635], [299235.422, 6809198.957], [298864.569, 6810048.79], [297856.137, 6813398.414], [296718.367, 6816244.726], [296826.329, 6816739.944], [295841.127, 6817361.906], [296886.615, 6818191.077], [297819.772, 6819211.558], [297225.786, 6819763.038], [296154.651, 6819339.708], [295184.349, 6819848.613], [294219.939, 6820490.604], [294365.008, 6821017.228], [296644.043, 6821351.798], [297010.319, 6821148.72], [297805.369, 6821523.706], [298107.634, 6823759.115], [298142.816, 6826446.451], [297636.547, 6827513.561], [297708.422, 6828597.687], [301755.028, 6826223.003], [304340.391, 6826640.883], [304599.092, 6826418.492], [305179.992, 6826498.246], [305493.287, 6826239.593], [306595.263, 6826698.904], [306858.584, 6826604.127], [306781.232, 6826148.349], [307564.707, 6825931.139], [308203.925, 6826970.481], [310320.578, 6829369.752], [311109.061, 6831687.279], [314393.368, 6829132.139]]]}}, {\\\"id\\\": \\\"75\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Taivalkoski\\\", \\\"elakelaisten_osuus\\\": 36.1, \\\"freshwarea\\\": 212.82, \\\"gml_id\\\": 1601100618, \\\"landarea\\\": 2437.79, \\\"namefin\\\": \\\"Taivalkoski\\\", \\\"nameswe\\\": \\\"Taivalkoski\\\", \\\"natcode\\\": \\\"832\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2650.61}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[571645.663, 7302771.884], [573330.764, 7296142.049], [574476.051, 7293830.789], [575380.486, 7292007.532], [575416.65, 7291031.442], [575753.761, 7291071.058], [576108.407, 7290789.287], [575442.148, 7290742.522], [575918.768, 7280896.79], [576763.503, 7278715.804], [579713.477, 7277104.23], [585250.544, 7276519.878], [588882.281, 7281899.838], [593246.052, 7275640.415], [599682.567, 7269408.915], [602324.006, 7268038.776], [602704.15, 7265272.506], [601598.108, 7263985.379], [601807.325, 7263795.589], [601459.355, 7262915.473], [601324.738, 7262926.069], [601224.189, 7263582.43], [599768.382, 7261886.049], [600345.914, 7261905.79], [600687.439, 7261608.35], [600963.227, 7261599.338], [600914.546, 7261348.209], [600218.717, 7261466.765], [599590.245, 7261696.622], [598353.906, 7260272.729], [599444.706, 7260302.821], [599437.782, 7260034.712], [598101.335, 7259984.537], [594831.592, 7258751.668], [590659.529, 7259723.006], [583991.22, 7256490.235], [583678.002, 7257494.625], [583134.771, 7257341.58], [583196.96, 7256812.227], [582413.448, 7256791.434], [582425.877, 7256505.405], [583615.018, 7256330.741], [583624.765, 7256312.579], [576524.028, 7252846.658], [577047.433, 7250918.42], [575789.405, 7248864.655], [574765.204, 7244229.287], [575132.641, 7243796.944], [574808.037, 7242867.796], [575264.439, 7242016.676], [575034.507, 7241361.841], [574336.944, 7241519.897], [574191.174, 7241089.021], [569578.319, 7240192.322], [569664.274, 7239643.531], [570246.164, 7239141.101], [569800.244, 7239076.385], [569333.328, 7239407.009], [569207.34, 7240114.89], [560018.262, 7238222.794], [560149.684, 7237990.535], [559641.62, 7237616.474], [559299.671, 7237504.328], [559106.224, 7238007.101], [554298.02, 7236856.128], [553051.591, 7246493.273], [545636.248, 7253752.079], [545504.152, 7253656.689], [544295.81, 7253800.159], [544112.562, 7253347.618], [543278.524, 7253677.822], [543365.044, 7253910.199], [540211.858, 7254258.172], [539503.847, 7255253.881], [538191.121, 7256729.063], [538129.451, 7257147.978], [537767.002, 7258017.103], [538090.651, 7258206.488], [538010.915, 7258962.895], [537677.226, 7259241.407], [537946.687, 7259511.668], [537669.706, 7262243.342], [535943.053, 7265221.671], [537909.957, 7281546.95], [536961.49, 7282789.967], [534974.38, 7293910.579], [534084.889, 7294383.174], [533226.706, 7295360.36], [532616.564, 7295659.374], [533535.1, 7296872.75], [534776.431, 7300873.374], [541109.819, 7300461.152], [541259.366, 7300777.466], [541550.167, 7300814.594], [541533.649, 7300441.959], [552273.747, 7299756.158], [553138.504, 7299001.446], [555960.827, 7298229.095], [566988.618, 7303463.983], [569086.753, 7303600.565], [571645.663, 7302771.884]]]}}, {\\\"id\\\": \\\"76\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Finstr\\\\u00f6m\\\", \\\"elakelaisten_osuus\\\": 23.4, \\\"freshwarea\\\": 6.87, \\\"gml_id\\\": 1601100090, \\\"landarea\\\": 123.32, \\\"namefin\\\": \\\"Finstr\\\\u00f6m\\\", \\\"nameswe\\\": \\\"Finstr\\\\u00f6m\\\", \\\"natcode\\\": \\\"060\\\", \\\"seawarea\\\": 42.31, \\\"totalarea\\\": 172.5}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[102712.168, 6721478.264], [102259.084, 6721227.7], [101800.073, 6721160.664], [101328.556, 6721272.043], [101215.968, 6722676.021], [101172.986, 6723192.736], [102421.024, 6723514.835], [102712.168, 6721478.264]]], [[[112190.72, 6714042.077], [112496.732, 6713579.095], [113108.579, 6713790.951], [113840.842, 6713844.984], [114444.067, 6713650.172], [114262.641, 6713248.345], [114136.489, 6712395.098], [113728.929, 6711464.197], [112904.885, 6711401.642], [113184.797, 6710926.978], [113289.912, 6710075.617], [112969.712, 6710172.148], [112533.927, 6709005.893], [111928.539, 6708470.635], [111768.158, 6707772.331], [111063.284, 6707262.551], [110161.17, 6707198.652], [110162.871, 6707193.064], [109474.113, 6706706.402], [109873.937, 6704743.878], [110229.385, 6704317.96], [110514.816, 6703756.667], [111443.586, 6704037.637], [111567.574, 6704825.13], [112249.95, 6704765.62], [112231.68, 6704545.763], [111679.892, 6704057.717], [112119.437, 6703021.62], [111836.366, 6702337.741], [111870.734, 6702128.26], [112284.589, 6701847.024], [112886.586, 6701269.566], [113027.572, 6700702.43], [113531.202, 6699884.586], [113358.31, 6699381.907], [113415.45, 6698888.696], [113697.447, 6698455.102], [114005.692, 6698174.673], [114090.812, 6697520.839], [113671.422, 6696937.184], [113811.636, 6695741.061], [113530.859, 6695006.89], [113871.666, 6693990.054], [113361.246, 6693227.362], [112938.309, 6693036.685], [112671.316, 6692786.326], [112533.232, 6692568.954], [112635.599, 6692431.205], [112610.056, 6692157.812], [112324.419, 6692092.165], [112262.061, 6692201.125], [112069.137, 6692277.651], [111850.53, 6692819.984], [111725.722, 6693367.538], [111339.81, 6693686.319], [110960.99, 6693684.985], [110967.376, 6694052.54], [110934.318, 6694286.437], [110857.293, 6694485.93], [110242.904, 6694417.806], [110168.228, 6694647.456], [110101.561, 6694768.395], [110080.348, 6694799.985], [109974.425, 6694859.828], [109628.474, 6695123.981], [108942.421, 6695197.348], [108884.356, 6695635.452], [108817.096, 6695781.066], [108700.646, 6695884.607], [108517.58, 6695848.824], [108408.936, 6695849.488], [107439.114, 6695372.045], [107360.223, 6695248.567], [107307.847, 6695104.769], [107217.967, 6695097.484], [107213.713, 6694982.53], [107094.779, 6694777.884], [107073.072, 6694687.649], [106847.612, 6694636.927], [106743.968, 6694566.855], [106725.34, 6694390.147], [106631.346, 6694275.489], [106439.817, 6693906.093], [106350.914, 6693408.849], [105793.749, 6693401.563], [104753.709, 6693969.904], [103485.322, 6693846.502], [103479.536, 6694384.842], [103109.222, 6694643.393], [102908.842, 6695014.154], [103088.007, 6695496.399], [103095.183, 6695770.081], [102837.803, 6696218.15], [102090.319, 6696408.858], [101850.107, 6697620.159], [102314.614, 6697617.986], [102355.206, 6697912.854], [102917.857, 6698368.942], [102716.152, 6698582.952], [101876.436, 6698701.843], [101758.278, 6699026.894], [101852.986, 6700445.464], [101649.971, 6701844.556], [101362.572, 6702744.511], [102093.85, 6704005.086], [102793.219, 6707516.58], [103532.766, 6707941.478], [103471.305, 6709256.637], [103798.033, 6709325.939], [104458.618, 6708840.398], [105303.311, 6708398.681], [105874.208, 6708903.802], [106747.393, 6708916.679], [107589.64, 6709342.62], [108025.875, 6710533.417], [107935.808, 6710861.732], [108154.22, 6711265.533], [108188.771, 6711887.86], [108460.597, 6712346.811], [109065.23, 6712172.588], [110185.579, 6712509.434], [110954.183, 6712795.864], [111431.387, 6713312.456], [111529.815, 6714149.452], [112190.72, 6714042.077]]]]}}, {\\\"id\\\": \\\"77\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kinnula\\\", \\\"elakelaisten_osuus\\\": 39.1, \\\"freshwarea\\\": 35.53, \\\"gml_id\\\": 1601100271, \\\"landarea\\\": 460.2, \\\"namefin\\\": \\\"Kinnula\\\", \\\"nameswe\\\": \\\"Kinnula\\\", \\\"natcode\\\": \\\"256\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 495.73}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[409188.331, 7032274.613], [414039.806, 7023568.883], [416417.539, 7018339.659], [415187.249, 7017754.47], [406380.889, 7013464.827], [406100.98, 7012930.05], [404997.049, 7013443.761], [398765.11, 7012978.815], [390543.096, 7013842.652], [389814.314, 7018219.869], [388595.831, 7027489.373], [395339.008, 7035351.22], [402107.619, 7038128.976], [404408.486, 7039073.207], [409188.331, 7032274.613]]]}}, {\\\"id\\\": \\\"78\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rauma\\\", \\\"elakelaisten_osuus\\\": 29.2, \\\"freshwarea\\\": 13.71, \\\"gml_id\\\": 1601100419, \\\"landarea\\\": 496.02, \\\"namefin\\\": \\\"Rauma\\\", \\\"nameswe\\\": \\\"Raumo\\\", \\\"natcode\\\": \\\"684\\\", \\\"seawarea\\\": 600.4, \\\"totalarea\\\": 1110.13}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[198095.002, 6803699.074], [200326.504, 6802914.56], [200972.322, 6801695.954], [203975.546, 6799395.966], [204953.291, 6799040.108], [205014.723, 6798457.467], [207680.348, 6796621.233], [208115.928, 6795670.33], [208738.942, 6795234.848], [209070.403, 6795356.668], [209628.378, 6795860.778], [210361.984, 6794118.153], [210748.219, 6792849.488], [211581.514, 6791785.95], [212066.55, 6791271.757], [215022.59, 6790079.222], [215822.293, 6789914.197], [216665.606, 6789775.592], [217184.564, 6790090.058], [217513.519, 6790122.248], [218405.064, 6790550.582], [220913.893, 6790609.982], [221967.166, 6791880.81], [223873.007, 6789854.999], [225049.416, 6788110.869], [225591.522, 6786429.559], [228052.399, 6784450.895], [229966.938, 6782661.15], [231957.071, 6782911.068], [233102.792, 6781832.366], [233892.529, 6777841.179], [233925.762, 6777536.029], [231174.617, 6776392.55], [230754.905, 6776416.962], [230038.471, 6776721.823], [229531.834, 6776633.73], [229097.574, 6776079.319], [228930.647, 6775309.803], [228415.246, 6775145.786], [228150.741, 6775320.997], [227520.87, 6775127.111], [227004.413, 6775880.873], [226437.18, 6775421.918], [225582.093, 6775158.278], [223175.84, 6775316.248], [221421.513, 6774809.228], [219404.71, 6776165.007], [220619.778, 6777643.236], [217953.144, 6777848.471], [216672.581, 6777106.399], [217247.151, 6775621.35], [215425.511, 6774335.59], [214289.173, 6774219.621], [213856.409, 6774652.47], [213233.294, 6774810.807], [213147.8, 6774583.185], [211671.977, 6774130.133], [211113.686, 6774576.749], [211097.822, 6776529.702], [209781.948, 6780489.404], [209000.557, 6779364.385], [208863.61, 6778549.089], [207953.181, 6778071.221], [208642.13, 6775986.41], [208214.695, 6775891.548], [206435.889, 6776003.887], [205548.246, 6775583.225], [204310.187, 6775721.641], [201697.544, 6775310.987], [201720.532, 6775742.749], [201491.84, 6776415.871], [200197.074, 6777451.775], [199100.466, 6778656.456], [198821.076, 6781791.058], [197407.806, 6783128.043], [197472.825, 6783588.138], [196920.866, 6784170.78], [196682.383, 6784056.673], [196129.714, 6784587.862], [195400.958, 6785026.314], [195249.45, 6785543.526], [194966.83, 6785723.48], [193847.464, 6787633.763], [191458.446, 6787741.215], [164981.865, 6793621.183], [168669.946, 6810232.566], [198095.002, 6803699.074]]]}}, {\\\"id\\\": \\\"79\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Utsjoki\\\", \\\"elakelaisten_osuus\\\": 33.8, \\\"freshwarea\\\": 226.02, \\\"gml_id\\\": 1601100043, \\\"landarea\\\": 5145.98, \\\"namefin\\\": \\\"Utsjoki\\\", \\\"nameswe\\\": \\\"Utsjoki\\\", \\\"natcode\\\": \\\"890\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5372.0}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[536457.842, 7776430.911], [537194.781, 7772220.809], [537447.889, 7769320.978], [537544.848, 7767734.188], [544471.232, 7757485.69], [551640.057, 7753153.21], [551149.248, 7749613.176], [541847.919, 7728142.119], [534552.519, 7717650.877], [512337.242, 7708583.356], [509298.018, 7705016.705], [449883.728, 7671333.783], [449861.019, 7671413.01], [449816.199, 7671473.32], [449744.294, 7671556.422], [449613.024, 7671649.657], [449569.232, 7671721.18], [449546.698, 7671795.988], [449615.717, 7672023.403], [449621.763, 7672144.885], [449599.775, 7672230.636], [449602.645, 7672537.456], [449568.326, 7672612.578], [449371.383, 7672910.267], [449352.904, 7673004.648], [449444.839, 7673170.491], [449440.333, 7673259.721], [449384.703, 7673367.302], [449378.14, 7673463.417], [449329.467, 7673558.956], [449288.394, 7673788.302], [449220.053, 7673800.505], [449183.442, 7673893.25], [449188.323, 7674009.183], [449165.421, 7674166.44], [449077.99, 7674496.32], [449031.121, 7674609.885], [449019.403, 7674796.456], [448947.906, 7674951.894], [448854.455, 7675402.138], [448800.375, 7675531.927], [448727.366, 7675588.709], [448712.982, 7675654.198], [448764.236, 7675717.046], [448759.354, 7675805.521], [448705.732, 7675890.648], [448639.034, 7675951.937], [448587.281, 7676072.773], [448298.66, 7676546.872], [448234.591, 7676706.126], [448199.199, 7676852.567], [448191.876, 7677028.296], [448299.224, 7677189.438], [448316.349, 7677304.807], [448319.404, 7677411.486], [448244.351, 7677576.231], [448250.453, 7677661.655], [448302.928, 7677747.08], [448473.78, 7677731.218], [448637.223, 7677848.304], [448668.739, 7677904.161], [448672.395, 7677984.101], [448730.913, 7678088.597], [448808.406, 7678207.165], [449021.134, 7678414.792], [449038.709, 7678490.442], [448841.702, 7678882.213], [448806.357, 7679044.003], [448804.617, 7679215.196], [448767.535, 7679312.821], [448756.181, 7679449.04], [448821.265, 7679634.454], [448995.328, 7679793.38], [449057.748, 7679931.487], [449092.197, 7680040.848], [449069.493, 7680155.878], [448876.509, 7680308.746], [448775.879, 7680408.869], [448588.938, 7680662.858], [448585.896, 7680737.837], [448695.887, 7680978.936], [448726.359, 7681110.98], [448735.389, 7681223.648], [448674.301, 7681439.817], [448667.952, 7681573.13], [448691.087, 7681680.786], [448872.718, 7681859.389], [448877.447, 7682020.046], [448909.801, 7682151.507], [448769.791, 7682528.382], [448666.455, 7682689.145], [448652.71, 7682784.368], [448715.3, 7683064.182], [448691.081, 7683190.564], [448725.893, 7683319.217], [448782.653, 7683397.166], [448992.98, 7683500.451], [449137.591, 7683526.581], [449251.994, 7683511.881], [449424.418, 7683570.478], [449439.905, 7683641.387], [449431.986, 7683720.32], [449497.826, 7683839.136], [449575.02, 7683948.113], [449670.375, 7684041.199], [449783.138, 7684115.365], [449861.087, 7684340.129], [449910.95, 7684412.066], [449922.376, 7684486.976], [449896.982, 7684612.67], [449785.25, 7684977.056], [449781.62, 7685156.695], [449843.654, 7685312.242], [449941.304, 7685440.49], [450053.31, 7685494.98], [450229.644, 7685522.983], [450289.43, 7685572.931], [450356.028, 7685712.937], [450373.435, 7685787.102], [450354.06, 7685884.858], [450218.29, 7686168.517], [450191.54, 7686275.906], [450206.936, 7686408.415], [450289.305, 7686528.565], [450507.688, 7686670.769], [450552.035, 7686725.511], [450571.17, 7686779.959], [450525.546, 7687131.146], [450501.329, 7687185.633], [450463.502, 7687526.988], [450265.204, 7687697.214], [450129.32, 7687791.858], [450108.977, 7687901.724], [450127.721, 7688094.119], [450158.061, 7688179.965], [450355.342, 7688231.282], [450369.375, 7688337.142], [450404.648, 7688384.172], [450512.064, 7688441.179], [450597.938, 7688511.463], [450619.922, 7688823.321], [450591.724, 7688904.972], [450533.447, 7688969.84], [450348.769, 7689104.235], [450299.912, 7689228.001], [450233.902, 7689506.378], [450267.34, 7689589.528], [450380.523, 7690376.912], [450413.426, 7690449.364], [450572.778, 7690643.006], [450691.788, 7690753.945], [450834.496, 7690945.137], [450916.268, 7690991.618], [450985.128, 7691064.781], [450995.297, 7691183.03], [451106.852, 7691354.024], [451097.078, 7691756.265], [451179.319, 7692008.685], [451247.718, 7692027.414], [451282.732, 7692084.412], [451273.724, 7692188.096], [451180.947, 7692442.682], [451153.26, 7692811.538], [451222.284, 7692911.217], [451385.671, 7692964.672], [451529.895, 7693046.366], [451662.015, 7693148.23], [451855.159, 7693191.803], [451923.557, 7693316.386], [451973.66, 7693461.89], [451970.783, 7693603.818], [451913.145, 7693703.939], [451948.444, 7693787.648], [451939.839, 7693952.318], [451996.161, 7694103.081], [452086.628, 7694229.408], [452104.739, 7694359.267], [452195.155, 7694523.982], [452527.741, 7694636.298], [452745.204, 7694627.771], [452929.99, 7694668.06], [453085.385, 7694761.555], [453349.339, 7694842.316], [453457.246, 7694918.241], [453525.22, 7695034.482], [453529.862, 7695162.308], [453511.708, 7695310.564], [453459.262, 7695476.972], [453437.276, 7695615.856], [453450.184, 7695799.704], [453497.585, 7696013.515], [453520.33, 7696249.347], [453557.786, 7696369.042], [453491.83, 7696446.396], [453385.161, 7696469.194], [453315.133, 7696525.375], [453304.948, 7696651.916], [453367.477, 7696799.164], [453549.64, 7696973.218], [453587.911, 7697112.455], [453646.537, 7697167.012], [453777.96, 7697204.603], [453945.381, 7697331.681], [454017.844, 7697476.434], [454069.495, 7697898.245], [454049.72, 7698024.627], [454060.286, 7698149.799], [454155.858, 7698235.149], [454226.216, 7698399.312], [454315.459, 7698457.849], [454394.122, 7698550.359], [454503.566, 7698576.948], [454577.398, 7698566.189], [454645.972, 7698597.124], [454701.24, 7698704.32], [454617.874, 7699032.507], [454590.792, 7699204.528], [454454.74, 7699462.837], [454368.334, 7699583.315], [454233.672, 7699821.552], [454267.138, 7699913.184], [454147.616, 7700163.373], [454028.429, 7700227.307], [453914.113, 7700216.588], [453565.211, 7700029.632], [453448.822, 7699997.631], [453372.328, 7700021.534], [453353.248, 7700340.42], [453273.464, 7700392.813], [453257.983, 7700474.976], [453272.723, 7700578.486], [453316.331, 7700654.783], [453404.449, 7700709.56], [453722.117, 7700766.534], [453819.327, 7700823.108], [453860.76, 7700899.599], [453831.943, 7700962.009], [453779.547, 7701206.116], [453617.971, 7701365.009], [453454.458, 7701449.029], [453275.268, 7701569.964], [453057.921, 7701585.963], [452836.434, 7701553.809], [452739.979, 7701619.3], [452655.431, 7701763.383], [452731.641, 7702012.255], [452830.476, 7702144.43], [452978.135, 7702231.36], [453105.551, 7702226.598], [453220.184, 7702261.66], [453306.796, 7702362.347], [453368.718, 7702606.457], [453360.382, 7702845.802], [453306.796, 7702970.832], [453175.503, 7703071.63], [453227.011, 7703353.068], [453438.448, 7703558.468], [453539.642, 7703696.313], [453642.6, 7703875.821], [453715.238, 7704398.569], [453820.913, 7704583.936], [453943.622, 7704713.814], [454007.366, 7704840.504], [454004.976, 7705015.797], [454122.105, 7705258.818], [454161.946, 7705389.491], [454156.368, 7705595.063], [454190.63, 7705802.227], [454236.805, 7706347.868], [454320.161, 7706794.407], [454397.798, 7707003.782], [454502.975, 7707142.425], [454616.122, 7707235.649], [455085.813, 7707453.8], [455537.159, 7707720.841], [455575.264, 7707833.966], [455538.306, 7707914.552], [455504.433, 7708083.582], [455567.121, 7708381.052], [455559.142, 7708487.047], [455577.377, 7708612.416], [455469.101, 7708838.081], [455383.588, 7708934.021], [455161.799, 7709108.361], [455032.572, 7709177.714], [454962.544, 7709260.166], [454903.78, 7709369.186], [454948.229, 7709528.749], [454936.451, 7709639.688], [454897.311, 7709709.661], [455012.055, 7710113.43], [455080.44, 7710277.552], [455310.944, 7710694.598], [455381.335, 7710923.781], [455453.14, 7711004.702], [455400.711, 7711174.521], [455338.023, 7711296.471], [455325.486, 7711436.656], [455410.968, 7711570.006], [455447.063, 7711676.084], [455472.514, 7711787.695], [455457.093, 7711902.47], [455472.854, 7712040.021], [455963.748, 7712649.335], [456050.296, 7712825.216], [456150.667, 7712965.042], [456126.237, 7713170.526], [456144.864, 7713250.765], [456113.054, 7713639.76], [456133.569, 7713752.593], [456071.786, 7713859.714], [456023.068, 7713987.235], [455852.048, 7714260.908], [455715.277, 7714414.769], [455573.15, 7714607.641], [455462.819, 7714713.669], [455134.0, 7714951.575], [455020.025, 7715081.502], [454882.115, 7715168.119], [454753.322, 7715337.938], [454735.085, 7715508.896], [454838.8, 7715796.107], [454829.489, 7716232.452], [454937.955, 7716371.669], [455041.549, 7716418.721], [455426.906, 7716483.367], [455873.688, 7716432.083], [456027.555, 7716461.718], [456148.368, 7716520.985], [456304.513, 7716625.841], [456405.949, 7716734.115], [456522.205, 7716819.595], [456638.458, 7716850.369], [456774.088, 7716991.696], [456897.18, 7717041.845], [456998.618, 7717061.221], [457077.334, 7717175.882], [457380.156, 7717436.037], [457471.79, 7717542.421], [457671.589, 7717836.324], [457849.728, 7718016.594], [457950.268, 7718078.328], [458101.96, 7718260.003], [458315.387, 7718344.669], [458614.975, 7718563.806], [458701.48, 7718835.836], [458794.101, 7718996.802], [458805.791, 7719113.703], [458898.413, 7719199.131], [458958.664, 7719315.133], [458995.532, 7719536.347], [459056.68, 7719691.915], [459062.975, 7719778.243], [459015.517, 7719873.76], [458955.067, 7720063.302], [458993.945, 7720197.341], [459093.549, 7720315.09], [459147.504, 7720434.689], [459225.738, 7720749.424], [459209.552, 7720916.682], [459234.73, 7721001.211], [459315.727, 7721115.952], [459688.029, 7721342.041], [459803.299, 7721472.749], [459842.433, 7721694.026], [459926.765, 7721981.084], [460024.074, 7722127.046], [460035.42, 7722328.876], [460065.947, 7722476.094], [460207.607, 7722742.532], [460208.89, 7722831.659], [460135.151, 7723014.404], [460115.273, 7723125.974], [459982.544, 7723342.702], [459821.596, 7723474.788], [459559.334, 7723888.363], [459540.738, 7723977.491], [459593.959, 7724087.137], [459704.889, 7724201.914], [459760.628, 7724370.117], [459744.644, 7724462.244], [459671.652, 7724639.383], [459624.733, 7724824.524], [459734.569, 7725227.221], [459736.943, 7725367.626], [459661.577, 7725731.732], [459550.177, 7726062.008], [459477.866, 7726222.26], [459441.709, 7726363.946], [459468.173, 7726532.222], [459449.52, 7726802.195], [459332.795, 7727000.025], [459121.557, 7727293.886], [458527.601, 7727779.471], [458371.309, 7727868.495], [457952.075, 7727985.301], [457621.14, 7727987.674], [457491.425, 7728035.793], [457361.559, 7728112.891], [457216.155, 7728252.355], [457127.132, 7728394.787], [457049.978, 7728563.925], [456999.531, 7728738.998], [457011.4, 7728961.548], [457180.331, 7729401.672], [457465.212, 7729710.288], [457607.623, 7729822.574], [457856.925, 7730072.321], [458023.104, 7730398.742], [458153.674, 7730483.81], [458480.102, 7730521.401], [458580.996, 7730584.708], [459017.169, 7731034.304], [459071.622, 7731142.594], [459134.252, 7731552.779], [459172.437, 7731646.968], [459348.803, 7731806.915], [459392.106, 7731896.331], [459417.823, 7732064.487], [459342.644, 7732226.707], [459330.773, 7732321.666], [459401.234, 7732420.072], [459569.559, 7732573.593], [459740.287, 7732677.764], [459791.724, 7732754.918], [459953.944, 7733103.102], [459957.899, 7733263.345], [459977.682, 7733348.412], [460149.797, 7733528.439], [460325.869, 7733615.486], [460581.072, 7733896.407], [460678.011, 7734024.998], [460713.62, 7734117.979], [460848.146, 7734299.984], [461081.588, 7734555.187], [461113.24, 7734707.517], [461290.44, 7734897.796], [461471.317, 7735026.027], [461599.908, 7735279.252], [461730.479, 7735291.123], [461872.92, 7735328.712], [461944.14, 7735304.973], [462035.144, 7735235.733], [462349.456, 7735093.822], [462601.218, 7735091.764], [462721.768, 7735062.363], [462855.551, 7734982.98], [463201.03, 7734956.521], [463279.717, 7734976.65], [463428.841, 7735060.738], [463533.213, 7735256.754], [463680.864, 7735381.493], [463818.52, 7735421.511], [463974.29, 7735383.8], [464107.104, 7735395.279], [464344.856, 7735701.895], [464519.721, 7735793.014], [464640.594, 7735804.081], [464824.727, 7735781.691], [464997.448, 7735823.235], [465501.302, 7735988.176], [466054.383, 7736394.496], [466174.956, 7736551.47], [466593.554, 7736960.966], [466725.502, 7737190.737], [466881.435, 7737398.844], [467024.29, 7737658.914], [467071.908, 7737853.049], [467100.242, 7738059.8], [467108.531, 7738549.009], [467154.317, 7738752.302], [467222.081, 7738896.989], [467412.534, 7739047.11], [467655.96, 7739140.384], [467778.809, 7739151.76], [467978.492, 7739118.602], [468198.273, 7739169.886], [468408.894, 7739281.608], [468511.458, 7739420.801], [468557.425, 7739609.3], [468577.388, 7739818.228], [468559.071, 7739979.398], [468562.994, 7740107.724], [468443.093, 7740193.149], [468398.13, 7740257.593], [468399.628, 7740335.527], [468563.673, 7740610.015], [468567.275, 7740715.468], [468662.21, 7740859.371], [468717.356, 7741006.955], [468799.786, 7741143.339], [468901.7, 7741275.227], [469017.102, 7741366.65], [469145.993, 7741425.101], [469322.198, 7741461.14], [469573.138, 7741441.59], [469717.016, 7741522.523], [469802.512, 7741660.324], [469822.471, 7741847.461], [469868.385, 7742005.11], [470085.212, 7742196.409], [470148.647, 7742330.335], [470226.577, 7742824.912], [470274.535, 7742974.784], [470368.956, 7743048.222], [470712.171, 7743036.235], [470880.031, 7743076.703], [470951.489, 7743166.073], [470993.933, 7743337.48], [471054.966, 7743841.015], [470999.84, 7744120.169], [470769.522, 7744665.177], [470749.491, 7745061.416], [470763.792, 7745277.418], [470836.26, 7745558.726], [470921.224, 7745650.77], [471011.265, 7745709.422], [471516.6, 7745865.581], [471681.177, 7745930.442], [471831.043, 7746029.565], [472171.398, 7746337.407], [472356.853, 7746587.099], [472506.404, 7746666.405], [472692.099, 7746682.155], [472870.91, 7746747.958], [473219.951, 7747002.584], [473408.774, 7747115.592], [473763.532, 7747461.768], [474225.576, 7747702.088], [474335.723, 7747816.526], [474415.83, 7747959.574], [474473.049, 7748154.118], [474546.003, 7748269.987], [474654.719, 7748382.995], [474720.521, 7748513.168], [474823.768, 7748625.383], [474998.034, 7748767.793], [475110.237, 7748810.158], [475296.25, 7748688.897], [475413.978, 7748695.961], [475572.913, 7748844.299], [475676.08, 7748998.1], [475733.299, 7749202.658], [475814.392, 7749303.893], [476124.245, 7749525.54], [476362.709, 7749807.75], [476439.955, 7749940.784], [476534.367, 7750319.861], [476590.155, 7750468.669], [476790.422, 7750849.137], [476891.986, 7750952.132], [476976.384, 7751086.597], [477013.577, 7751269.698], [477008.57, 7751671.894], [477046.477, 7751820.431], [477122.292, 7751960.619], [477318.268, 7752236.701], [477469.055, 7752588.054], [477568.921, 7753263.481], [477674.882, 7753611.595], [477657.602, 7753780.939], [477346.186, 7754300.789], [477299.901, 7754427.21], [477278.579, 7754997.045], [477352.937, 7755090.33], [477529.72, 7755211.721], [477754.47, 7755324.221], [478327.684, 7755867.708], [478468.284, 7756031.294], [478785.941, 7756523.27], [479019.861, 7756761.349], [479119.434, 7756899.973], [479238.655, 7757293.955], [479215.866, 7757790.187], [479233.435, 7758051.114], [479228.259, 7758339.392], [479252.351, 7758509.427], [479341.571, 7758827.137], [479437.555, 7759002.891], [479494.331, 7759204.332], [479623.943, 7759317.437], [479949.935, 7759413.884], [480109.464, 7759477.426], [480205.45, 7759563.951], [480298.731, 7759704.554], [480500.169, 7759823.526], [480682.682, 7759885.715], [481066.635, 7759912.756], [481702.706, 7759884.218], [482765.418, 7760070.842], [482891.769, 7760126.364], [483337.906, 7760454.888], [483492.891, 7760544.312], [483650.136, 7760616.888], [483874.774, 7760687.736], [484768.136, 7761086.902], [484985.861, 7761145.654], [485113.732, 7761197.494], [485177.666, 7761268.34], [485357.702, 7761364.753], [486212.916, 7761534.85], [486375.098, 7761591.172], [486776.797, 7761646.278], [486969.689, 7761733.43], [487335.327, 7761763.264], [487545.047, 7761904.284], [487714.378, 7761976.983], [487841.976, 7761882.028], [487914.415, 7761690.543], [487989.419, 7761413.053], [488260.397, 7760914.676], [488446.929, 7760423.089], [488525.681, 7760274.969], [488626.929, 7760153.099], [488919.173, 7759914.683], [489110.672, 7759794.987], [489301.915, 7759764.988], [489506.283, 7759815.61], [489758.146, 7759922.9], [490121.797, 7760194.598], [490359.011, 7760301.965], [490559.014, 7760441.406], [490936.48, 7760793.529], [491108.685, 7760931.34], [491312.542, 7761018.888], [491767.479, 7761265.374], [491943.54, 7761300.587], [492143.546, 7761293.544], [492543.837, 7761323.207], [493040.997, 7761276.806], [493645.464, 7761431.627], [493826.692, 7761455.521], [494212.62, 7761441.435], [494393.872, 7761413.186], [494477.419, 7761356.926], [494566.157, 7761247.063], [494604.19, 7761121.707], [494550.676, 7760799.163], [494601.391, 7760476.617], [494578.86, 7760297.739], [494503.701, 7760060.081], [494456.23, 7759837.53], [494503.713, 7759614.979], [494622.416, 7759252.964], [495158.23, 7758603.579], [495355.348, 7758443.793], [495576.98, 7758343.471], [495802.286, 7758305.862], [496084.799, 7758343.289], [496259.859, 7758402.447], [496795.579, 7758660.214], [496966.971, 7758782.955], [497235.445, 7759085.425], [497329.702, 7759119.985], [497743.399, 7759114.75], [498308.991, 7759159.912], [498840.929, 7759013.511], [499275.652, 7758763.899], [499462.079, 7758634.032], [499598.237, 7758404.669], [499736.447, 7758237.583], [499921.9, 7757883.779], [500123.796, 7757580.955], [500220.376, 7757251.575], [500295.245, 7757124.932], [500397.733, 7756878.488], [500670.744, 7756547.778], [500743.012, 7756437.811], [500850.889, 7756368.688], [500999.612, 7756215.779], [501197.827, 7755940.484], [501310.677, 7755882.733], [501437.404, 7755880.638], [501602.881, 7755928.816], [501766.625, 7756004.96], [501874.216, 7756105.244], [501974.558, 7756235.677], [502123.653, 7756390.424], [502287.453, 7756615.998], [502382.077, 7756702.782], [502596.779, 7756741.533], [502932.971, 7756750.961], [503118.349, 7756736.298], [503469.671, 7756628.726], [503671.884, 7756625.928], [503829.753, 7756682.598], [504026.077, 7756830.347], [504288.078, 7757115.255], [504380.888, 7757252.329], [504525.095, 7757609.294], [504726.418, 7757934.846], [504788.497, 7758091.844], [504864.917, 7758206.14], [505010.324, 7758318.513], [505178.034, 7758365.908], [505778.754, 7758356.066], [506100.023, 7758494.569], [506287.074, 7758547.399], [506592.637, 7758693.041], [506855.121, 7758916.429], [507009.569, 7759021.449], [507556.442, 7759222.778], [507719.184, 7759319.294], [507864.773, 7759433.764], [508050.48, 7759539.763], [508200.405, 7759596.878], [508357.47, 7759693.973], [508484.548, 7759822.48], [508643.04, 7759950.988], [508872.925, 7760070.928], [509074.254, 7760138.038], [509528.318, 7760193.725], [509859.657, 7760287.814], [510442.625, 7760374.764], [511162.694, 7760575.134], [511501.629, 7760853.397], [511600.175, 7760967.212], [511667.62, 7761100.284], [511673.085, 7761315.388], [511635.028, 7761516.374], [511553.701, 7761788.017], [511474.107, 7761919.514], [511292.43, 7762021.597], [511243.982, 7762101.187], [511182.694, 7762285.175], [511117.662, 7762630.634], [510991.351, 7762789.813], [510700.667, 7762936.881], [510581.279, 7763033.773], [510505.146, 7763146.237], [510505.143, 7763279.464], [510563.075, 7763589.123], [510967.624, 7764060.215], [511031.595, 7764172.719], [511115.42, 7764267.575], [511287.484, 7764393.315], [511395.576, 7764433.023], [511651.468, 7764627.148], [511808.089, 7764797.007], [511911.77, 7764834.508], [512179.349, 7764842.635], [512311.056, 7764741.858], [512385.34, 7764644.474], [512462.259, 7764597.541], [512608.867, 7764633.767], [512820.78, 7764618.401], [513155.952, 7764688.917], [513645.26, 7764946.738], [513828.768, 7765130.109], [513998.624, 7765346.293], [514241.59, 7765601.575], [514667.026, 7765908.815], [514953.795, 7766341.184], [515184.361, 7766794.27], [515220.861, 7766907.692], [515305.599, 7767051.1], [515366.294, 7767278.721], [515453.691, 7767405.097], [515619.977, 7767497.114], [515756.745, 7767598.588], [515878.071, 7767733.153], [516178.08, 7767920.664], [516343.326, 7768073.208], [516450.228, 7768124.054], [516677.563, 7768186.112], [516892.814, 7768207.444], [517100.179, 7768196.415], [517309.264, 7768214.417], [517514.883, 7768184.842], [517653.78, 7768205.089], [518039.932, 7768381.716], [518185.529, 7768397.158], [518697.324, 7768330.979], [518912.615, 7768328.613], [519222.549, 7768422.94], [519462.862, 7768442.03], [519653.264, 7768420.74], [519873.737, 7768465.837], [520054.792, 7768576.276], [520215.852, 7768779.354], [520318.556, 7769029.117], [520341.396, 7769259.199], [520416.554, 7769409.521], [520585.245, 7769680.099], [520629.976, 7769862.173], [520707.161, 7770331.491], [520652.039, 7770506.867], [520576.869, 7770852.604], [520593.567, 7771054.704], [520770.606, 7771440.529], [520930.941, 7771959.971], [520991.066, 7772247.253], [521098.128, 7772546.808], [521295.044, 7772723.27], [521501.952, 7772829.25], [521684.21, 7772967.124], [521802.796, 7773119.116], [521861.25, 7773391.365], [522033.284, 7773550.037], [522128.488, 7773588.453], [522367.951, 7773604.216], [522571.032, 7773688.249], [522773.204, 7773900.787], [523294.318, 7774304.985], [523427.939, 7774355.092], [523726.484, 7774360.509], [523843.43, 7774336.585], [524013.6, 7774327.83], [524243.027, 7774420.231], [524660.192, 7774418.865], [524884.408, 7774453.637], [525315.333, 7774624.002], [525472.339, 7774644.044], [525871.677, 7774628.947], [526352.539, 7774563.589], [526537.971, 7774492.052], [526698.319, 7774396.85], [526858.668, 7774271.582], [527005.653, 7774101.218], [527120.907, 7773912.481], [527204.422, 7773827.299], [527324.341, 7773840.764], [527441.684, 7773771.242], [527554.028, 7773663.395], [527628.925, 7773540.57], [527782.01, 7773416.507], [527860.914, 7773394.903], [528047.25, 7773263.422], [528201.277, 7773197.134], [528303.47, 7773200.962], [528457.134, 7773257.749], [528569.039, 7773369.656], [529211.027, 7773721.967], [529347.299, 7773914.243], [529444.371, 7774015.049], [529704.022, 7774176.206], [529870.621, 7774405.642], [529994.375, 7774507.684], [530202.868, 7774630.907], [530452.294, 7774732.442], [530948.939, 7774862.674], [531185.121, 7774942.135], [531465.451, 7774975.245], [531635.755, 7774950.592], [531794.25, 7774954.934], [531978.795, 7775017.898], [532106.892, 7775119.94], [532392.522, 7775235.705], [532672.853, 7775286.472], [532804.368, 7775343.828], [533039.264, 7775485.129], [533108.853, 7775553.261], [533293.664, 7775592.463], [533414.506, 7775641.846], [534573.305, 7775795.156], [534864.715, 7775889.063], [535250.695, 7776136.022], [535500.418, 7776206.912], [535661.552, 7776220.157], [536036.794, 7776398.947], [536313.122, 7776450.217], [536457.842, 7776430.911]]]}}, {\\\"id\\\": \\\"80\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Uusikaarlepyy\\\", \\\"elakelaisten_osuus\\\": 27.5, \\\"freshwarea\\\": 4.51, \\\"gml_id\\\": 1601100049, \\\"landarea\\\": 732.64, \\\"namefin\\\": \\\"Uusikaarlepyy\\\", \\\"nameswe\\\": \\\"Nykarleby\\\", \\\"natcode\\\": \\\"893\\\", \\\"seawarea\\\": 938.0, \\\"totalarea\\\": 1675.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[271459.859, 7068033.225], [276237.929, 7064283.511], [277989.961, 7062719.151], [278207.453, 7061555.916], [278927.879, 7061355.564], [279442.897, 7060542.845], [279435.365, 7060107.226], [280057.078, 7058651.288], [281132.391, 7057786.225], [281336.053, 7058018.823], [281559.286, 7057869.142], [281889.046, 7057417.335], [282266.312, 7057263.542], [282347.789, 7056598.258], [282871.686, 7056264.032], [282772.717, 7056026.184], [283971.531, 7054951.62], [285160.069, 7054934.119], [285025.439, 7055515.62], [285302.576, 7055596.416], [285611.427, 7054930.857], [286788.237, 7054916.087], [292166.972, 7050018.451], [291715.056, 7049521.6], [290381.346, 7049065.729], [290891.995, 7048097.321], [291494.463, 7048632.623], [293191.168, 7048692.938], [292168.747, 7047697.478], [292673.052, 7047366.209], [292324.655, 7046836.25], [292117.359, 7045926.751], [292515.634, 7045126.894], [293258.528, 7044450.176], [293932.716, 7044100.849], [295338.374, 7045596.652], [296118.268, 7044471.758], [293420.789, 7043135.999], [294586.144, 7041518.516], [294051.876, 7041131.789], [292866.57, 7040599.767], [293051.154, 7039883.581], [293407.144, 7040393.412], [294295.918, 7039510.903], [293810.259, 7039261.706], [294587.782, 7038626.185], [293494.077, 7038151.406], [294080.171, 7035861.479], [294870.352, 7035457.134], [295425.763, 7034352.946], [295577.374, 7034654.441], [294923.12, 7036000.584], [298610.931, 7034288.401], [298653.251, 7033398.214], [298815.058, 7028711.443], [295239.211, 7031252.041], [293907.49, 7031609.773], [294070.348, 7032109.139], [294851.981, 7031840.248], [294891.074, 7032016.892], [294150.251, 7032440.588], [293423.04, 7032753.487], [293297.33, 7032604.695], [293587.669, 7031483.356], [292920.231, 7031704.714], [293000.242, 7031366.54], [293575.528, 7031180.803], [293609.5, 7030813.883], [291368.449, 7030923.731], [291426.61, 7031245.23], [290807.21, 7031305.785], [290337.988, 7031587.486], [289279.213, 7031893.882], [289616.56, 7031520.853], [288887.35, 7031434.47], [288695.212, 7032146.746], [288312.194, 7032435.278], [287791.511, 7032624.169], [287998.375, 7032203.577], [287296.212, 7032059.871], [287512.528, 7032480.282], [287297.676, 7032625.38], [286772.013, 7032681.629], [285837.999, 7032278.843], [285560.654, 7031501.084], [286859.233, 7032165.546], [287175.958, 7031129.984], [286852.677, 7031153.64], [286850.811, 7030934.264], [287502.62, 7031033.184], [287627.128, 7030654.004], [285970.932, 7029788.155], [285663.885, 7030376.428], [283848.391, 7029053.269], [281940.629, 7028295.596], [283166.464, 7026079.565], [280240.272, 7024528.828], [277654.205, 7028826.466], [277849.261, 7028946.489], [276845.089, 7030809.677], [276326.372, 7030923.489], [276384.937, 7030038.542], [275864.342, 7030007.56], [275560.666, 7030188.422], [274611.241, 7031015.309], [274163.717, 7030702.914], [273851.337, 7031117.391], [273378.649, 7031149.011], [273300.643, 7031395.622], [271395.236, 7031825.257], [271358.131, 7031538.115], [271019.828, 7031504.277], [270982.103, 7031874.996], [270621.664, 7031992.72], [263745.792, 7033349.892], [256142.351, 7039958.191], [254049.167, 7041655.689], [232980.295, 7071558.938], [235982.452, 7071537.415], [247330.04, 7073841.346], [252487.751, 7080001.836], [271459.859, 7068033.225]]]}}, {\\\"id\\\": \\\"81\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ikaalinen\\\", \\\"elakelaisten_osuus\\\": 35.7, \\\"freshwarea\\\": 92.99, \\\"gml_id\\\": 1601100233, \\\"landarea\\\": 750.41, \\\"namefin\\\": \\\"Ikaalinen\\\", \\\"nameswe\\\": \\\"Ikalis\\\", \\\"natcode\\\": \\\"143\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 843.4}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[284163.636, 6878953.042], [284529.413, 6877576.393], [284488.131, 6877155.726], [283938.579, 6877182.881], [283984.948, 6877596.563], [283697.327, 6878275.469], [283209.286, 6878080.685], [283106.931, 6877248.55], [282711.725, 6877281.338], [282671.351, 6878151.068], [282934.053, 6878922.504], [283388.179, 6879354.658], [284163.636, 6878953.042]]], [[[288135.292, 6871074.12], [288706.019, 6871131.626], [289594.115, 6870779.882], [290121.841, 6870881.29], [291001.564, 6869897.938], [292624.543, 6872562.221], [292658.808, 6873168.31], [293633.943, 6873726.907], [294594.715, 6873726.119], [297504.414, 6874346.5], [298010.671, 6874198.944], [298101.16, 6873832.847], [297545.156, 6873772.866], [296920.44, 6873837.937], [296291.292, 6873549.238], [296174.694, 6873153.872], [296399.311, 6872544.7], [295992.451, 6871505.151], [297160.857, 6870986.654], [297717.874, 6868660.474], [298027.259, 6868720.853], [298116.818, 6868555.33], [306184.906, 6868744.272], [306054.178, 6873782.575], [306526.779, 6874055.906], [309199.852, 6871875.565], [310500.218, 6871415.773], [312365.663, 6870336.861], [312538.891, 6869840.526], [313039.109, 6870103.526], [313482.743, 6869776.613], [313594.275, 6869102.257], [313324.271, 6868568.461], [313360.096, 6868129.005], [313809.623, 6868152.92], [313798.158, 6866018.652], [313480.406, 6866001.104], [313272.172, 6865203.859], [314159.579, 6865269.96], [314258.78, 6864713.182], [315758.041, 6865290.484], [315782.966, 6864066.625], [316617.4, 6863892.397], [317800.436, 6864415.86], [317910.962, 6863941.656], [316672.22, 6863410.375], [317028.774, 6862742.606], [320321.445, 6862980.669], [320723.406, 6862841.504], [320589.839, 6859113.629], [320599.576, 6858758.446], [317074.272, 6858393.054], [316272.692, 6858210.176], [313426.316, 6858868.419], [312779.973, 6858176.097], [311293.968, 6858349.964], [311092.244, 6857818.482], [309749.086, 6856694.085], [308654.269, 6855891.36], [308020.012, 6854322.409], [307429.524, 6855207.044], [306768.795, 6855635.558], [305802.721, 6853851.352], [307047.202, 6853439.6], [307461.846, 6852875.657], [304881.902, 6851262.994], [304231.77, 6851821.443], [303761.235, 6851832.823], [302583.75, 6852852.003], [301779.88, 6852321.38], [301375.253, 6851326.623], [300628.28, 6851030.935], [299858.417, 6850425.95], [299420.004, 6850770.354], [299121.128, 6850780.345], [298652.736, 6850184.768], [298658.113, 6849255.868], [298362.964, 6848689.433], [298033.668, 6848877.628], [297610.079, 6849432.687], [297001.217, 6849489.723], [296582.829, 6850003.497], [296105.206, 6849943.63], [295695.119, 6849531.258], [294944.507, 6849379.918], [294715.674, 6850088.543], [294495.274, 6850353.399], [294345.549, 6850241.412], [294358.921, 6849967.302], [294010.688, 6849378.869], [293203.967, 6848691.468], [293046.747, 6848091.924], [292096.026, 6847789.9], [290129.734, 6847119.355], [290205.675, 6845736.344], [289214.339, 6846081.962], [288322.139, 6846824.974], [287088.625, 6847447.417], [283831.162, 6847779.755], [281041.449, 6846513.224], [279903.756, 6847102.769], [279058.358, 6845083.295], [276756.932, 6847202.23], [275508.547, 6847821.026], [273600.902, 6850880.284], [272227.794, 6848590.898], [271788.802, 6851214.379], [272069.697, 6851488.86], [272649.919, 6851642.703], [272523.775, 6852052.825], [272629.757, 6852498.621], [272934.326, 6852661.663], [273953.067, 6852257.372], [274760.022, 6852913.667], [274554.987, 6853710.661], [276210.864, 6854399.776], [277107.858, 6853831.966], [277644.238, 6854132.246], [278571.112, 6855468.919], [279484.233, 6857934.596], [279101.868, 6858497.504], [279922.315, 6858975.628], [280289.516, 6860650.004], [278502.729, 6862900.782], [278339.024, 6863784.611], [277955.806, 6863841.968], [277336.369, 6865243.966], [276268.01, 6864631.834], [275792.774, 6865943.376], [278572.568, 6866949.817], [278323.469, 6868086.654], [275910.319, 6869265.813], [276133.015, 6870721.659], [275669.397, 6870908.75], [275680.971, 6871216.549], [276198.02, 6871124.782], [276267.698, 6871570.627], [279835.125, 6873748.394], [280058.91, 6874685.988], [280650.222, 6874634.009], [280543.178, 6876588.11], [282410.512, 6876185.347], [282203.708, 6875541.329], [282899.318, 6875361.175], [283049.208, 6875811.589], [285540.194, 6877032.109], [285651.803, 6875999.758], [284838.619, 6875247.022], [285087.319, 6874521.186], [285749.186, 6875245.865], [286571.455, 6877346.133], [287866.532, 6877633.844], [288135.292, 6871074.12]]]]}}, {\\\"id\\\": \\\"82\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Salla\\\", \\\"elakelaisten_osuus\\\": 45.5, \\\"freshwarea\\\": 142.76, \\\"gml_id\\\": 1601100058, \\\"landarea\\\": 5729.92, \\\"namefin\\\": \\\"Salla\\\", \\\"nameswe\\\": \\\"Salla\\\", \\\"natcode\\\": \\\"732\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5872.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[612091.9, 7523305.4], [627859.7, 7509584.0], [625973.1, 7498796.3], [624978.8, 7492585.4], [622118.1, 7488869.4], [621356.5, 7487578.7], [619257.9, 7483250.2], [618312.7, 7481381.4], [617372.3, 7479858.0], [616403.5, 7478314.4], [616508.4, 7478115.2], [616506.8, 7478014.2], [616536.3, 7477795.7], [616486.1, 7477694.3], [616399.7, 7477614.4], [616327.0, 7477446.4], [616238.7, 7477401.8], [616251.8, 7477323.6], [616006.0, 7476994.4], [615801.3, 7476868.3], [615697.0, 7476725.0], [615667.4, 7476683.2], [615525.1, 7476514.6], [615487.6, 7476567.0], [615428.3, 7476553.2], [615358.4, 7476366.9], [615209.8, 7476263.3], [615120.2, 7476069.9], [615051.5, 7475965.5], [615029.6, 7475929.5], [615074.7, 7475873.7], [614994.4, 7475800.4], [615049.0, 7475721.6], [614999.9, 7475709.0], [615009.1, 7475645.4], [614914.2, 7475556.1], [614918.2, 7475476.0], [614866.5, 7475451.6], [614889.6, 7475350.7], [614705.2, 7475369.8], [614684.8, 7475274.0], [614588.1, 7475289.9], [614457.1, 7475225.0], [614430.2, 7475168.6], [614385.3, 7475170.0], [614386.3, 7475205.0], [614335.6, 7475177.0], [614319.0, 7475080.7], [614252.1, 7475119.2], [614180.3, 7475064.9], [614156.2, 7475137.3], [614092.8, 7475114.9], [614105.4, 7474951.5], [614053.4, 7474922.1], [614022.8, 7474787.7], [613939.0, 7474751.2], [613923.3, 7474632.6], [613800.4, 7474469.9], [613815.2, 7474257.6], [613867.8, 7474203.1], [613869.0, 7473975.1], [613744.9, 7473879.7], [613781.8, 7473795.6], [613712.8, 7473725.2], [613715.5, 7473582.0], [613614.3, 7473432.6], [613641.6, 7473348.8], [613554.2, 7473351.1], [613551.3, 7473268.3], [613432.9, 7473283.1], [613332.5, 7473167.3], [613247.9, 7473190.1], [613190.1, 7473212.1], [613101.0, 7473222.4], [612932.9, 7473096.4], [612868.7, 7473100.6], [612719.4, 7473057.2], [612626.4, 7472950.5], [612612.3, 7472846.4], [612693.8, 7472726.5], [612552.5, 7472604.2], [612541.0, 7472506.5], [612483.5, 7472488.5], [612501.8, 7472406.7], [612443.8, 7472381.2], [612474.7, 7472314.5], [612416.8, 7472291.0], [612443.4, 7472227.4], [612496.6, 7472252.0], [612511.6, 7472176.2], [612577.0, 7472136.1], [612613.3, 7472165.5], [612629.6, 7472125.3], [612686.8, 7472157.5], [612847.2, 7472137.5], [612907.4, 7472044.7], [612974.5, 7471992.4], [613057.5, 7471970.2], [613104.0, 7471984.6], [613301.9, 7472035.2], [613313.1, 7471924.5], [613456.6, 7471950.8], [613589.0, 7471880.2], [613710.8, 7471753.3], [613597.8, 7471697.2], [613638.5, 7471621.4], [613660.0, 7471538.4], [613673.4, 7471441.3], [613594.0, 7471320.6], [613696.3, 7471341.7], [613667.0, 7471233.7], [613481.0, 7471224.8], [613501.3, 7471119.0], [613396.1, 7471074.2], [613350.9, 7470909.1], [613241.7, 7470918.5], [613158.1, 7470840.1], [613059.8, 7470842.0], [612850.3, 7470618.5], [612693.7, 7470616.0], [612651.7, 7470550.2], [612520.2, 7470517.0], [612498.1, 7470376.6], [612434.9, 7470339.2], [612493.3, 7470262.3], [612450.3, 7470244.2], [612413.5, 7470206.2], [612314.5, 7470133.6], [612166.6, 7470181.7], [612062.4, 7470307.5], [612019.3, 7470237.8], [611893.9, 7470220.7], [611854.4, 7470243.9], [611860.2, 7470308.3], [611784.5, 7470252.2], [611649.9, 7470289.9], [611487.7, 7470453.6], [611435.5, 7470425.0], [611421.2, 7470354.1], [611353.1, 7470348.8], [611163.2, 7470574.2], [611123.7, 7470572.0], [611064.8, 7470486.2], [611047.2, 7470356.5], [610919.6, 7470171.2], [610963.9, 7470095.2], [610900.6, 7469801.3], [610776.1, 7469745.6], [610693.0, 7469779.8], [610619.1, 7469666.8], [610478.6, 7469563.6], [610437.5, 7469626.9], [610368.3, 7469609.2], [610402.5, 7469554.6], [610378.6, 7469486.2], [610419.8, 7469412.7], [610407.8, 7469311.8], [610313.5, 7469255.2], [610615.6, 7469158.0], [610682.2, 7469029.2], [610752.7, 7469041.2], [610799.6, 7468959.6], [611013.3, 7468895.2], [610850.6, 7468628.9], [610708.3, 7468549.5], [610669.2, 7468459.9], [610586.1, 7468446.1], [610642.3, 7468318.8], [610522.5, 7468407.6], [610320.0, 7468326.5], [610220.7, 7468447.7], [610071.2, 7468420.4], [609933.0, 7468460.7], [609909.3, 7468367.6], [609747.4, 7468410.9], [609621.3, 7468324.6], [609568.4, 7468230.3], [609585.9, 7468170.4], [609490.3, 7468148.1], [609281.7, 7467988.7], [609193.3, 7468015.4], [609148.0, 7468076.1], [609162.8, 7468172.3], [609252.3, 7468187.9], [609231.9, 7468224.0], [609053.7, 7468201.5], [609002.5, 7468255.0], [608755.2, 7468301.4], [608639.2, 7468255.5], [608686.5, 7468159.7], [608563.3, 7468132.6], [608597.9, 7468000.2], [608538.2, 7467794.3], [608569.9, 7467734.6], [608539.5, 7467633.8], [608459.4, 7467547.3], [608361.3, 7467229.9], [608291.8, 7466821.1], [608305.2, 7466549.2], [608259.5, 7466459.5], [608282.9, 7466325.6], [608177.9, 7466142.6], [608188.8, 7466059.6], [608117.0, 7465845.6], [607926.6, 7465636.5], [607894.4, 7465392.5], [607912.5, 7465335.7], [608042.2, 7465293.3], [608040.0, 7465228.5], [608111.3, 7465162.7], [608223.0, 7464932.0], [608434.6, 7464864.0], [605688.3, 7459558.9], [601614.3, 7452152.5], [593878.5, 7438656.1], [590382.9, 7432428.3], [589118.1, 7428551.8], [588885.5, 7426575.1], [588909.5, 7424527.9], [590371.8, 7416498.7], [592665.4, 7411818.8], [592656.8, 7411775.0], [592712.7, 7411723.7], [592732.4, 7411621.8], [592776.3, 7411589.6], [592750.0, 7411562.4], [592832.9, 7411467.5], [592814.7, 7411420.5], [592902.8, 7411436.8], [592885.7, 7411350.9], [592924.2, 7411207.4], [593034.2, 7411051.9], [592968.3, 7410991.9], [593130.4, 7410832.7], [592475.4, 7410171.0], [592595.8, 7409584.2], [593453.4, 7409224.5], [593755.7, 7409247.3], [593729.2, 7409130.3], [593775.3, 7409069.6], [593796.3, 7408994.6], [593780.6, 7408942.8], [593870.3, 7408949.5], [593908.2, 7408877.5], [593959.6, 7408863.2], [593965.9, 7408759.2], [593920.5, 7408666.7], [593994.3, 7408627.1], [594027.6, 7408546.5], [594094.4, 7408484.2], [594102.4, 7408442.9], [594185.9, 7408407.6], [594250.0, 7408470.3], [594296.0, 7408530.3], [594350.5, 7408540.6], [594458.1, 7408473.8], [594548.9, 7408533.9], [600429.4, 7399105.9], [604148.4, 7393362.8], [604211.5, 7393301.6], [604245.4, 7393209.4], [604359.2, 7393202.5], [604456.0, 7393092.6], [604426.1, 7393022.0], [604486.3, 7392897.2], [604476.9, 7392806.0], [604386.7, 7392835.1], [604339.1, 7392804.6], [604397.9, 7392760.7], [604419.6, 7392584.4], [604476.1, 7392537.3], [604462.9, 7392452.6], [604497.9, 7392404.0], [604450.6, 7392320.9], [604530.0, 7392250.8], [604494.6, 7392139.6], [604594.9, 7391794.9], [604509.2, 7391676.6], [604516.3, 7391622.1], [604474.3, 7391508.8], [604468.8, 7391427.0], [604533.5, 7391333.7], [604598.0, 7391314.2], [604676.6, 7391268.4], [604706.7, 7391289.0], [604747.0, 7391216.6], [605693.5, 7389646.3], [605600.6, 7389430.7], [605270.7, 7389220.4], [605577.0, 7388631.9], [606194.6, 7388520.5], [606233.8, 7388566.9], [606306.3, 7388518.8], [606341.5, 7388563.2], [606418.1, 7388502.4], [606376.6, 7388449.0], [606545.3, 7388445.3], [606609.1, 7388312.0], [606607.9, 7388152.2], [606754.2, 7388152.0], [606822.2, 7388088.4], [606837.1, 7387979.7], [607033.5, 7387988.9], [607108.5, 7388033.2], [607184.0, 7388025.3], [607219.0, 7387974.6], [607119.8, 7387725.5], [607132.0, 7387665.5], [606969.0, 7387454.2], [607033.7, 7387400.0], [607037.3, 7387322.8], [606893.1, 7387189.4], [606883.5, 7386978.2], [607046.1, 7386882.1], [607108.9, 7386689.1], [607310.4, 7386594.6], [607345.3, 7386617.4], [609780.2, 7382709.9], [612103.6, 7377488.2], [614766.058, 7370520.712], [613389.57, 7370458.079], [612078.908, 7370408.848], [612078.878, 7370408.847], [600723.816, 7369982.334], [600847.92, 7367226.299], [575470.26, 7375090.259], [562149.926, 7375474.395], [560741.431, 7374437.0], [559803.307, 7373462.411], [557287.632, 7370831.338], [556769.304, 7370078.025], [556809.918, 7369777.13], [557169.844, 7369520.859], [557523.268, 7369535.918], [557279.895, 7369030.03], [556095.343, 7369113.973], [554638.626, 7367022.047], [550800.376, 7368510.817], [547835.893, 7376212.218], [548535.442, 7377410.426], [552763.624, 7390278.19], [551033.17, 7398155.997], [549296.477, 7399728.41], [546980.158, 7398733.503], [546976.161, 7398990.265], [541487.003, 7406765.444], [538612.877, 7418902.093], [538619.006, 7418935.014], [539962.068, 7426059.145], [539466.605, 7426306.568], [539703.088, 7426618.836], [540033.755, 7426437.513], [541652.828, 7434993.63], [544714.597, 7435811.311], [547210.414, 7436158.377], [559024.553, 7444077.628], [564805.726, 7446058.54], [572715.158, 7447905.026], [573419.472, 7449242.715], [573223.38, 7449990.36], [578177.253, 7459365.977], [583137.732, 7471793.547], [583260.56, 7475568.692], [588174.998, 7484023.891], [594311.233, 7493036.835], [596819.988, 7500858.69], [605184.812, 7509739.683], [610585.457, 7520346.754], [610585.848, 7520347.523], [612091.882, 7523305.435], [612091.9, 7523305.4]]]}}, {\\\"id\\\": \\\"83\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"F\\\\u00f6gl\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 30.0, \\\"freshwarea\\\": 0.25, \\\"gml_id\\\": 1601100094, \\\"landarea\\\": 134.76, \\\"namefin\\\": \\\"F\\\\u00f6gl\\\\u00f6\\\", \\\"nameswe\\\": \\\"F\\\\u00f6gl\\\\u00f6\\\", \\\"natcode\\\": \\\"062\\\", \\\"seawarea\\\": 1734.06, \\\"totalarea\\\": 1869.07}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[135296.419, 6686417.698], [135967.905, 6686158.176], [137201.41, 6684758.158], [138186.263, 6684729.698], [138669.906, 6684184.647], [139235.181, 6684006.846], [139853.144, 6683420.0], [140007.498, 6684116.295], [139709.82, 6684792.268], [140178.663, 6685347.594], [140587.388, 6685460.726], [143334.989, 6683112.872], [144262.818, 6682855.287], [145735.02, 6681943.916], [146485.122, 6675695.505], [147457.037, 6674028.643], [146367.24, 6667244.39], [147801.365, 6664277.693], [151992.085, 6657754.958], [149751.188, 6651665.109], [140847.33, 6640542.36], [119817.787, 6611176.886], [104918.897, 6626745.607], [101936.132, 6627506.006], [113489.201, 6647528.952], [112854.254, 6662026.822], [113811.165, 6662396.889], [113817.644, 6662410.489], [113834.858, 6662405.891], [117472.934, 6663786.486], [118435.609, 6664672.148], [118628.437, 6665346.325], [119981.542, 6665771.016], [121004.739, 6665420.552], [122021.539, 6666252.477], [122213.966, 6667083.38], [124339.175, 6670082.241], [124583.15, 6675227.705], [126575.94, 6675617.47], [127372.356, 6675348.363], [127627.404, 6676141.632], [127458.389, 6676592.98], [127123.664, 6676715.269], [126801.023, 6677541.866], [127393.358, 6678439.433], [127132.259, 6679243.938], [126847.698, 6679646.401], [126755.987, 6680481.423], [127697.849, 6681101.196], [128383.179, 6681541.747], [129346.124, 6682604.677], [130249.436, 6681475.716], [130772.843, 6681246.236], [131117.444, 6681438.73], [131038.69, 6681805.741], [130561.18, 6682647.953], [131859.494, 6683368.712], [133870.645, 6681525.413], [134797.124, 6683258.574], [133390.281, 6685467.842], [133969.078, 6686166.075], [134448.19, 6686461.159], [135296.419, 6686417.698]]]}}, {\\\"id\\\": \\\"84\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Yl\\\\u00f6j\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 21.1, \\\"freshwarea\\\": 208.41, \\\"gml_id\\\": 1601100189, \\\"landarea\\\": 1115.73, \\\"namefin\\\": \\\"Yl\\\\u00f6j\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Yl\\\\u00f6j\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"980\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1324.14}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[313738.511, 6896936.1], [318778.676, 6892564.573], [319421.316, 6892184.389], [324642.406, 6886969.457], [326675.837, 6888024.827], [326732.219, 6887251.882], [327028.599, 6887263.14], [327262.562, 6882065.73], [328866.188, 6882142.386], [330375.138, 6879499.419], [330524.098, 6879326.954], [330433.296, 6879280.674], [330767.873, 6878737.852], [330891.696, 6878759.652], [331123.206, 6878392.423], [331396.14, 6874640.307], [332941.285, 6875024.524], [334488.264, 6872577.906], [334244.239, 6870678.845], [334979.358, 6866573.508], [335334.055, 6865909.718], [335978.108, 6864735.523], [336186.401, 6863327.992], [335413.736, 6862438.794], [333385.062, 6860843.35], [333399.63, 6860750.889], [333392.324, 6860647.88], [333473.286, 6860574.76], [333511.168, 6860481.333], [333492.174, 6860319.582], [333450.61, 6860252.862], [333362.883, 6860238.188], [333489.016, 6860123.517], [333534.832, 6860020.984], [333635.516, 6859974.828], [334465.339, 6859985.051], [331875.759, 6858435.143], [331469.929, 6855405.787], [330370.153, 6854871.349], [329479.549, 6853086.7], [329180.858, 6853072.287], [328876.407, 6852673.62], [329318.968, 6852300.347], [328719.611, 6850546.464], [329109.082, 6848874.892], [329843.464, 6847842.865], [328468.675, 6843983.318], [326823.44, 6843578.07], [326475.325, 6841903.801], [326508.716, 6839352.753], [327538.501, 6834564.224], [327966.045, 6827198.092], [325805.61, 6827013.04], [324970.212, 6827347.747], [324570.873, 6826990.257], [323661.447, 6827056.425], [323154.009, 6827710.865], [322082.372, 6826409.062], [321475.941, 6826114.403], [319504.269, 6825748.776], [318400.367, 6825031.513], [317934.515, 6825882.378], [317270.642, 6826230.485], [316673.988, 6826457.669], [316486.715, 6826869.93], [316192.01, 6827073.221], [315654.765, 6827929.596], [314393.368, 6829132.139], [311109.061, 6831687.279], [313466.916, 6832629.575], [313875.13, 6833059.91], [313807.862, 6835681.123], [313425.666, 6837757.058], [314209.98, 6840142.191], [313935.993, 6843341.248], [314955.55, 6845505.774], [312015.772, 6842699.842], [311373.106, 6842724.475], [311036.347, 6843906.982], [310086.087, 6844492.211], [308580.538, 6842517.022], [307984.308, 6841905.84], [305853.626, 6839216.358], [305349.708, 6839839.446], [304709.0, 6841239.413], [304643.033, 6842528.681], [301935.602, 6842602.016], [300004.596, 6842344.802], [299241.439, 6841628.914], [300513.738, 6846614.545], [300093.121, 6847168.958], [299981.439, 6848115.673], [300266.32, 6849598.41], [299858.417, 6850425.95], [300628.28, 6851030.935], [301375.253, 6851326.623], [301779.88, 6852321.38], [302583.75, 6852852.003], [303761.235, 6851832.823], [304231.77, 6851821.443], [304881.902, 6851262.994], [307461.846, 6852875.657], [307047.202, 6853439.6], [305802.721, 6853851.352], [306768.795, 6855635.558], [307429.524, 6855207.044], [308020.012, 6854322.409], [308654.269, 6855891.36], [309749.086, 6856694.085], [311092.244, 6857818.482], [311293.968, 6858349.964], [312779.973, 6858176.097], [313426.316, 6858868.419], [316272.692, 6858210.176], [317074.272, 6858393.054], [320599.576, 6858758.446], [320589.839, 6859113.629], [320723.406, 6862841.504], [320321.445, 6862980.669], [317028.774, 6862742.606], [316672.22, 6863410.375], [317910.962, 6863941.656], [317800.436, 6864415.86], [316617.4, 6863892.397], [315782.966, 6864066.625], [315758.041, 6865290.484], [314258.78, 6864713.182], [314159.579, 6865269.96], [313272.172, 6865203.859], [313480.406, 6866001.104], [313798.158, 6866018.652], [313809.623, 6868152.92], [313360.096, 6868129.005], [313324.271, 6868568.461], [313594.275, 6869102.257], [313482.743, 6869776.613], [313039.109, 6870103.526], [312538.891, 6869840.526], [312365.663, 6870336.861], [310500.218, 6871415.773], [309199.852, 6871875.565], [306526.779, 6874055.906], [306164.701, 6875299.577], [306551.8, 6875938.515], [307132.545, 6876639.82], [306921.704, 6877445.607], [307236.528, 6877253.31], [307348.687, 6877745.982], [309302.757, 6880211.524], [308938.913, 6881751.294], [309982.605, 6883789.476], [310145.228, 6887445.005], [309561.128, 6887575.23], [308106.153, 6887549.454], [308082.872, 6888171.256], [306556.562, 6888949.323], [306598.599, 6891659.57], [307300.736, 6891993.291], [308740.105, 6894433.08], [310524.506, 6896577.965], [311165.511, 6897849.174], [313738.511, 6896936.1]]]}}, {\\\"id\\\": \\\"85\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kruunupyy\\\", \\\"elakelaisten_osuus\\\": 28.1, \\\"freshwarea\\\": 38.85, \\\"gml_id\\\": 1601100473, \\\"landarea\\\": 712.86, \\\"namefin\\\": \\\"Kruunupyy\\\", \\\"nameswe\\\": \\\"Kronoby\\\", \\\"natcode\\\": \\\"288\\\", \\\"seawarea\\\": 0.94, \\\"totalarea\\\": 752.65}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[326402.468, 7058215.614], [326971.092, 7058301.574], [327080.648, 7057735.383], [326763.158, 7057965.663], [326551.978, 7057560.865], [326703.142, 7057210.065], [326104.255, 7057407.028], [325532.798, 7057673.873], [325107.334, 7057878.341], [325017.643, 7058232.471], [325251.749, 7058481.009], [326402.468, 7058215.614]]], [[[304434.679, 7079507.56], [306539.074, 7077742.32], [310837.425, 7073823.976], [311028.805, 7074056.564], [311691.634, 7074187.754], [311946.395, 7073513.712], [311591.596, 7073472.546], [311318.356, 7073767.683], [311193.13, 7073513.129], [311760.674, 7072838.133], [312416.297, 7072431.102], [313115.078, 7071689.876], [313541.075, 7071187.623], [314096.476, 7070968.9], [314727.342, 7070911.836], [314832.381, 7071410.855], [315551.871, 7072650.646], [315677.761, 7073088.416], [315735.4, 7073594.868], [316236.263, 7074065.869], [316507.043, 7073878.05], [316664.381, 7074058.36], [316589.966, 7074396.325], [317098.858, 7074870.674], [319350.795, 7075595.701], [320539.87, 7075055.313], [320693.229, 7075512.175], [320962.029, 7075627.377], [321500.39, 7075188.224], [322073.108, 7075220.166], [322655.938, 7074189.391], [323479.033, 7074466.543], [324522.137, 7072617.613], [325216.489, 7073068.132], [325213.974, 7075280.634], [326421.797, 7077190.967], [331240.761, 7072458.508], [332046.553, 7071358.332], [333027.085, 7070397.809], [336237.61, 7067749.705], [338953.924, 7064950.882], [336906.316, 7062947.037], [334271.841, 7064707.527], [332213.217, 7062495.019], [330352.027, 7061777.576], [328936.369, 7060821.321], [328227.139, 7060897.697], [327506.187, 7061821.083], [326913.888, 7062558.894], [326832.996, 7063304.619], [326702.412, 7063484.011], [325264.099, 7064134.802], [325692.42, 7063391.251], [325926.953, 7061683.339], [324291.708, 7060555.341], [324431.884, 7060307.208], [324925.453, 7059544.041], [324769.167, 7059100.098], [324243.484, 7058969.512], [324527.743, 7058699.894], [324397.56, 7058447.331], [324201.634, 7058549.327], [323249.655, 7059332.708], [322684.58, 7059188.11], [325898.683, 7055701.029], [326166.776, 7056154.334], [326642.998, 7056123.089], [326772.708, 7056566.966], [327740.45, 7056046.106], [328348.451, 7057109.247], [328872.451, 7056975.044], [329258.998, 7057500.569], [329586.652, 7057072.159], [329689.804, 7056775.221], [329808.909, 7055773.017], [330167.681, 7055524.439], [329876.717, 7055049.447], [330054.905, 7054772.204], [329488.815, 7054221.312], [329044.917, 7054532.602], [329010.342, 7053435.068], [330117.7, 7053663.605], [330288.525, 7053176.113], [329919.754, 7052880.098], [330505.135, 7052318.143], [330048.196, 7051796.216], [333511.413, 7049104.027], [333567.123, 7043747.806], [333423.077, 7041330.967], [333595.445, 7041332.897], [333875.792, 7040206.713], [333492.636, 7040043.086], [333662.261, 7038502.26], [333399.799, 7038382.826], [335589.777, 7032471.214], [334929.075, 7032219.92], [334429.535, 7032581.422], [334429.162, 7032704.914], [334155.426, 7032882.085], [334107.289, 7032815.091], [331474.916, 7034711.75], [330060.982, 7036830.836], [330271.236, 7037213.1], [329368.077, 7038305.926], [329173.695, 7038138.838], [328212.792, 7039548.574], [328641.76, 7039623.596], [328578.079, 7039964.307], [328681.417, 7040022.656], [328735.559, 7040236.049], [327873.142, 7041878.205], [327811.153, 7042330.427], [327400.389, 7042357.493], [327173.91, 7042602.158], [326626.683, 7041894.341], [326402.959, 7042224.615], [326482.883, 7042259.655], [326432.111, 7042394.681], [326193.207, 7042536.619], [324276.543, 7043754.98], [324010.547, 7043430.194], [323927.026, 7043390.941], [323649.544, 7043375.123], [323494.299, 7043508.379], [323531.703, 7043563.964], [323422.701, 7043624.934], [323389.73, 7043715.074], [323128.898, 7043925.217], [322660.378, 7043976.115], [322574.575, 7044129.598], [322425.792, 7044331.883], [322203.986, 7044573.717], [322132.327, 7044594.452], [321710.698, 7044242.138], [320481.677, 7046141.494], [321139.149, 7046416.089], [320433.6, 7047433.735], [319537.916, 7048722.185], [318859.594, 7049696.54], [310941.867, 7061289.34], [311288.941, 7061579.033], [311091.855, 7062153.809], [310408.525, 7062947.057], [309990.452, 7062384.659], [308283.959, 7063644.681], [307530.194, 7063923.479], [307615.197, 7064147.443], [307000.185, 7064366.642], [306923.935, 7064149.975], [304827.984, 7064911.569], [303361.915, 7066395.147], [302403.197, 7067163.684], [302259.288, 7067018.268], [301922.564, 7067262.579], [301613.657, 7066960.371], [300970.465, 7067443.665], [300128.811, 7068302.851], [299574.172, 7067760.238], [299338.874, 7067999.77], [299070.063, 7067739.784], [299179.645, 7067374.12], [299072.406, 7067269.228], [298346.695, 7067994.924], [298387.719, 7068433.409], [297906.104, 7069124.814], [297402.571, 7069402.598], [296612.161, 7070089.365], [296351.033, 7071028.518], [296397.305, 7072302.936], [294208.135, 7074306.894], [294882.065, 7075420.622], [298921.962, 7078310.943], [299015.297, 7078375.488], [299255.144, 7078039.314], [299399.036, 7077481.529], [299694.209, 7077891.041], [299494.166, 7078263.467], [299553.595, 7078696.979], [301112.326, 7079187.337], [301248.92, 7078745.212], [302416.55, 7079106.889], [302407.634, 7079594.368], [303549.675, 7079942.708], [304434.679, 7079507.56]]]]}}, {\\\"id\\\": \\\"86\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Joensuu\\\", \\\"elakelaisten_osuus\\\": 25.8, \\\"freshwarea\\\": 369.28, \\\"gml_id\\\": 1601100280, \\\"landarea\\\": 2381.68, \\\"namefin\\\": \\\"Joensuu\\\", \\\"nameswe\\\": \\\"Joensuu\\\", \\\"natcode\\\": \\\"167\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2750.96}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[663795.508, 6994446.548], [665157.012, 6994171.849], [666239.208, 6992704.325], [668345.445, 6991808.972], [670214.749, 6989861.773], [670090.884, 6989782.633], [670862.669, 6987968.304], [671676.485, 6986889.679], [672938.414, 6985533.785], [673344.063, 6984896.264], [674176.414, 6984152.019], [674481.243, 6981208.873], [674480.782, 6981064.708], [675235.243, 6979494.873], [676047.627, 6979200.669], [676910.632, 6973281.831], [677554.692, 6973142.631], [678282.085, 6971699.973], [679275.935, 6971264.383], [679634.831, 6971455.974], [679729.69, 6970028.627], [679494.528, 6969797.393], [679530.855, 6969472.713], [680822.426, 6967595.683], [681635.824, 6964973.057], [681138.441, 6964057.933], [681507.72, 6962280.994], [680989.904, 6960424.716], [679558.772, 6957894.671], [680014.899, 6956118.07], [681664.105, 6955663.125], [683323.602, 6955798.038], [684044.446, 6953505.986], [684021.086, 6953236.458], [686272.568, 6951663.89], [688086.05, 6950805.901], [688163.178, 6949960.732], [689348.033, 6949680.871], [690507.255, 6948492.426], [689679.47, 6946442.685], [690063.132, 6945603.494], [691030.037, 6944621.474], [692777.871, 6942927.514], [692656.34, 6942324.763], [692992.356, 6942273.809], [693625.23, 6941975.278], [693964.633, 6941633.373], [694254.62, 6941876.715], [694801.369, 6941971.982], [695190.953, 6941582.406], [695350.072, 6941179.5], [695905.262, 6940912.592], [697433.185, 6941834.867], [697940.45, 6941169.569], [698653.109, 6940745.577], [698407.138, 6940364.575], [698704.844, 6940115.036], [698787.012, 6939794.208], [699066.924, 6939045.192], [698915.757, 6938686.047], [699435.692, 6937984.063], [700161.307, 6936266.432], [700534.325, 6935763.994], [701294.207, 6934733.449], [702023.075, 6933578.153], [702325.607, 6934278.083], [702832.078, 6934754.105], [706277.332, 6931729.156], [706318.636, 6931145.187], [705976.444, 6930937.373], [705891.832, 6930495.166], [705634.515, 6930232.234], [705480.59, 6930576.711], [705085.154, 6930572.838], [704586.42, 6930098.538], [704049.398, 6930448.666], [703156.58, 6929990.366], [703298.688, 6926388.775], [704464.81, 6923322.525], [707762.709, 6925215.004], [707764.854, 6925216.235], [707850.028, 6925264.883], [709738.174, 6926343.311], [710910.398, 6927022.18], [710911.011, 6927022.535], [711370.3, 6927288.5], [710590.2, 6926186.8], [710323.5, 6925932.0], [704158.9, 6917526.2], [704238.3, 6917436.3], [704282.5, 6917471.1], [704364.4, 6917421.5], [704401.4, 6917487.8], [704596.9, 6917393.7], [704577.2, 6917295.5], [704695.7, 6917274.7], [704755.4, 6917204.6], [704831.5, 6917184.9], [704862.7, 6917110.6], [705012.0, 6917054.3], [705112.2, 6917044.5], [705197.2, 6916976.1], [704927.7, 6915269.2], [704369.5, 6914483.1], [703699.3, 6914565.1], [703156.8, 6914768.5], [702317.7, 6914882.4], [698920.1, 6910767.1], [697744.3, 6910157.5], [697674.863, 6910030.987], [697697.7, 6909076.9], [697028.89, 6908239.365], [696764.092, 6907899.744], [696752.37, 6907881.137], [696528.317, 6908367.702], [696527.945, 6908368.511], [696520.128, 6908385.487], [696516.781, 6908392.754], [696516.471, 6908393.429], [696514.017, 6908398.758], [696507.906, 6908412.029], [696507.887, 6908412.071], [692811.74, 6916450.483], [691077.367, 6915746.488], [689711.045, 6919073.333], [687361.952, 6918272.847], [687010.702, 6918834.032], [686916.834, 6919401.955], [684631.095, 6920784.083], [683982.147, 6918990.217], [681830.186, 6918563.875], [680785.662, 6918065.945], [679915.218, 6917890.608], [676421.97, 6916391.581], [674742.656, 6918423.648], [674362.876, 6918168.096], [673591.731, 6918836.971], [673048.32, 6918599.55], [672529.247, 6919040.889], [672088.207, 6919236.3], [671624.516, 6918496.345], [669615.714, 6917470.26], [668116.766, 6922665.87], [668027.304, 6923221.098], [667557.312, 6924624.333], [667369.006, 6924760.189], [665905.685, 6924256.033], [665560.524, 6923412.711], [665768.236, 6923019.263], [664902.35, 6922015.583], [664173.672, 6922933.068], [663879.024, 6922954.266], [663378.636, 6922065.603], [662536.844, 6922167.323], [662215.917, 6921528.212], [661918.487, 6921346.43], [661352.981, 6921322.454], [660876.623, 6921579.281], [660538.702, 6921869.921], [660096.534, 6921765.571], [659907.768, 6921437.529], [659429.27, 6921702.013], [659249.23, 6922207.604], [658698.411, 6922489.006], [657076.229, 6921119.614], [653774.188, 6920085.635], [653572.23, 6919496.4], [652577.649, 6918908.503], [652352.969, 6918603.785], [649504.583, 6919105.72], [649081.643, 6919384.661], [647767.16, 6920094.842], [647112.265, 6921079.379], [647031.979, 6921595.042], [646542.873, 6921906.616], [646251.081, 6922430.786], [642761.947, 6922622.43], [642490.814, 6928299.034], [641593.149, 6935279.406], [639627.554, 6938670.9], [635384.477, 6945034.878], [635152.375, 6947112.966], [635266.73, 6947868.01], [635158.652, 6948626.609], [634656.762, 6948934.426], [633914.307, 6949327.718], [635129.845, 6949861.893], [635429.925, 6949992.142], [635799.486, 6949153.943], [636669.252, 6948479.895], [638808.2, 6948032.908], [640937.244, 6947585.669], [648754.384, 6947504.294], [650282.676, 6944557.164], [649996.412, 6944466.19], [650206.575, 6943639.692], [649117.501, 6942296.755], [649422.37, 6941453.341], [650575.746, 6941905.528], [651107.273, 6941734.153], [651052.422, 6941322.604], [651244.409, 6940711.585], [651945.803, 6941129.881], [652151.751, 6940937.294], [653909.619, 6942028.69], [654044.872, 6941859.173], [654334.696, 6942034.647], [654057.377, 6942458.344], [659635.411, 6945837.657], [661118.679, 6945537.437], [663614.683, 6944484.436], [664344.508, 6944403.979], [664764.288, 6945883.77], [664125.304, 6946552.682], [664295.988, 6947026.551], [664665.386, 6947504.088], [665823.552, 6947993.708], [666953.264, 6949785.673], [667210.78, 6949417.305], [668216.934, 6948570.097], [668582.209, 6948948.489], [668125.664, 6949869.748], [668229.975, 6951886.784], [664240.344, 6956227.449], [663682.525, 6957972.933], [663198.362, 6959111.927], [662683.073, 6958983.897], [661381.754, 6959622.604], [660607.165, 6959872.447], [659200.405, 6960763.64], [657806.219, 6961440.344], [655004.356, 6964709.983], [654076.735, 6968566.472], [653087.79, 6970195.598], [652958.837, 6970896.529], [649880.827, 6976093.871], [650175.143, 6976302.143], [650492.848, 6982361.755], [650516.082, 6982831.658], [650560.484, 6983688.777], [650443.95, 6984106.048], [649984.951, 6989407.898], [649831.263, 6989551.261], [649956.9, 6989665.751], [649790.562, 6991216.563], [649612.358, 6992908.431], [650852.469, 6994189.95], [651894.592, 6993063.455], [652759.555, 6993054.833], [652974.341, 6993673.986], [653020.72, 6994390.293], [653761.679, 6994511.778], [657750.642, 6993534.47], [658838.979, 6993077.417], [660913.339, 6994518.394], [661031.492, 6994527.678], [661128.937, 6994473.887], [663795.508, 6994446.548]]]}}, {\\\"id\\\": \\\"87\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Uurainen\\\", \\\"elakelaisten_osuus\\\": 22.6, \\\"freshwarea\\\": 24.28, \\\"gml_id\\\": 1601100356, \\\"landarea\\\": 347.98, \\\"namefin\\\": \\\"Uurainen\\\", \\\"nameswe\\\": \\\"Uurainen\\\", \\\"natcode\\\": \\\"892\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 372.26}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[429393.938, 6936732.004], [429617.969, 6934094.872], [432174.329, 6934467.438], [432378.461, 6932704.352], [431291.6, 6932922.657], [431351.881, 6932181.757], [432461.229, 6932096.583], [432560.366, 6931044.716], [432443.75, 6930803.022], [432762.406, 6929615.249], [432631.692, 6929571.297], [429033.855, 6928087.498], [427911.435, 6925113.094], [426631.071, 6922750.799], [425046.74, 6919917.377], [422668.482, 6917206.773], [422219.432, 6917827.664], [421940.386, 6919388.501], [419776.319, 6919054.383], [417681.676, 6918648.987], [417562.973, 6919581.838], [415296.776, 6919329.108], [415531.663, 6918008.289], [413338.006, 6917308.572], [412749.26, 6919022.569], [411349.66, 6918711.998], [410649.709, 6921053.84], [407426.252, 6922247.712], [403170.836, 6923157.032], [404066.781, 6925146.58], [406217.602, 6927436.297], [406654.3, 6932950.693], [407127.784, 6935037.751], [408283.49, 6936280.872], [410065.516, 6935294.782], [413366.837, 6935258.52], [415570.142, 6934913.023], [415739.273, 6934277.43], [417949.047, 6933215.534], [420201.715, 6933989.57], [419885.828, 6935172.275], [421265.698, 6935286.428], [421591.256, 6936094.008], [422021.596, 6936040.476], [423853.693, 6935808.742], [425104.742, 6937066.692], [429393.938, 6936732.004]]]}}, {\\\"id\\\": \\\"88\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Muurame\\\", \\\"elakelaisten_osuus\\\": 20.7, \\\"freshwarea\\\": 50.0, \\\"gml_id\\\": 1601100555, \\\"landarea\\\": 144.05, \\\"namefin\\\": \\\"Muurame\\\", \\\"nameswe\\\": \\\"Muurame\\\", \\\"natcode\\\": \\\"500\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 194.05}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[426487.439, 6899875.054], [426376.844, 6897288.566], [426629.627, 6895947.894], [427144.745, 6895709.884], [430600.781, 6897516.207], [430769.598, 6896258.974], [431927.296, 6894450.362], [434217.355, 6893640.367], [434793.671, 6895045.074], [435520.04, 6894857.225], [435547.503, 6894835.547], [437152.516, 6891742.341], [435560.496, 6891724.767], [434853.152, 6890881.742], [433289.116, 6891777.422], [432474.667, 6890668.589], [433736.25, 6889665.586], [433868.946, 6886801.784], [435390.256, 6886240.379], [435350.145, 6885807.582], [437094.213, 6885285.371], [437070.844, 6883996.996], [435607.855, 6881871.84], [431703.421, 6883301.642], [430211.625, 6883207.27], [428595.848, 6882613.439], [428617.477, 6882358.201], [427278.115, 6882913.769], [425939.293, 6882761.9], [423687.169, 6883031.097], [423263.34, 6883148.446], [423410.271, 6884389.546], [420601.026, 6884704.181], [422074.082, 6888571.644], [422835.669, 6889290.658], [423190.816, 6890576.839], [423716.002, 6890725.382], [424031.16, 6892855.821], [423210.494, 6892619.312], [422345.843, 6892704.272], [421943.7, 6893579.215], [421953.286, 6894739.145], [421531.137, 6894849.459], [420839.974, 6895655.202], [420770.799, 6896105.234], [420905.67, 6896612.732], [420668.681, 6897137.272], [420499.348, 6898006.912], [420821.578, 6898527.538], [421426.058, 6899949.691], [421503.174, 6900573.737], [421725.2, 6901048.376], [422220.914, 6900840.313], [423552.427, 6900748.688], [425743.026, 6902051.391], [426487.439, 6899875.054]]]}}, {\\\"id\\\": \\\"89\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rantasalmi\\\", \\\"elakelaisten_osuus\\\": 39.5, \\\"freshwarea\\\": 366.0, \\\"gml_id\\\": 1601100415, \\\"landarea\\\": 559.19, \\\"namefin\\\": \\\"Rantasalmi\\\", \\\"nameswe\\\": \\\"Rantasalmi\\\", \\\"natcode\\\": \\\"681\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 925.19}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[555956.32, 6901030.814], [555737.296, 6900573.013], [556021.98, 6900527.134], [556204.757, 6900929.51], [556770.064, 6900777.628], [556754.083, 6900409.287], [557213.296, 6900335.32], [557616.836, 6899889.703], [558458.794, 6899806.343], [558450.388, 6900732.768], [559313.846, 6899726.782], [560585.027, 6899854.639], [560780.843, 6900271.071], [561402.99, 6900174.115], [562480.762, 6898943.022], [563758.348, 6898243.012], [565361.992, 6899207.833], [565750.132, 6899714.53], [565726.236, 6900342.176], [565987.711, 6900494.495], [566930.652, 6900182.247], [567815.591, 6900724.033], [568505.472, 6900213.797], [568310.797, 6900064.003], [568587.99, 6899506.13], [569025.613, 6899644.777], [572240.425, 6898837.522], [573392.071, 6897690.092], [573145.575, 6897241.472], [573472.447, 6896765.367], [573005.139, 6896377.221], [572390.887, 6896305.646], [572308.63, 6895139.418], [572032.048, 6894442.298], [572168.705, 6893011.178], [573001.371, 6892831.255], [573582.74, 6892415.227], [572407.725, 6891108.249], [572825.862, 6890575.466], [573499.694, 6890145.144], [573424.726, 6889907.94], [574018.891, 6889429.637], [573711.419, 6888945.229], [574011.605, 6888136.158], [574844.872, 6888912.239], [575189.738, 6888964.557], [576537.076, 6888611.817], [576991.587, 6888950.347], [577773.764, 6888530.074], [578423.635, 6888585.021], [578952.397, 6889164.997], [580218.097, 6888476.674], [581463.085, 6887277.647], [582811.916, 6886599.644], [583167.512, 6886596.132], [583551.588, 6884904.596], [584212.136, 6884689.074], [584885.173, 6883751.874], [584321.59, 6881428.596], [585400.855, 6881160.144], [586471.488, 6878592.39], [585198.226, 6877286.095], [586715.373, 6876801.925], [588014.88, 6876810.63], [588151.542, 6876035.107], [586552.783, 6875445.663], [587034.263, 6874945.18], [587387.794, 6875073.117], [587957.279, 6874681.976], [586772.587, 6873948.086], [586791.364, 6872949.66], [587646.156, 6871844.552], [588259.997, 6872048.684], [588731.706, 6872874.024], [591178.033, 6872219.382], [590242.401, 6870729.177], [589560.183, 6870451.04], [587815.282, 6869942.591], [587799.535, 6869432.751], [587258.29, 6868072.246], [588046.025, 6867632.421], [587873.581, 6867234.803], [586150.649, 6867473.55], [585502.755, 6867752.973], [585695.654, 6867909.143], [585258.297, 6868572.776], [585191.582, 6869152.684], [584065.093, 6869174.373], [583631.897, 6869585.692], [583001.161, 6869408.418], [582833.256, 6869009.112], [582360.759, 6869422.829], [582145.489, 6869228.648], [581237.585, 6869754.137], [580998.768, 6869474.11], [581817.76, 6868897.776], [581639.77, 6868683.337], [580807.196, 6869150.279], [580683.053, 6868976.026], [580922.506, 6868543.229], [580504.45, 6868052.31], [580404.363, 6867728.928], [580054.604, 6867440.911], [580305.185, 6866919.142], [579683.838, 6867400.798], [579237.68, 6867282.452], [578733.716, 6867655.208], [577654.337, 6867025.633], [577706.518, 6866817.418], [576304.194, 6865603.498], [575788.401, 6865647.176], [575528.304, 6865853.39], [575157.357, 6865410.566], [574198.334, 6866355.374], [573711.432, 6866159.649], [573055.79, 6866725.313], [572459.725, 6867160.331], [571941.44, 6866547.775], [572562.287, 6866049.4], [572253.123, 6865646.544], [571027.606, 6866735.99], [570720.223, 6867348.738], [569888.15, 6868172.296], [569500.011, 6867698.485], [568722.229, 6867180.188], [568228.928, 6867164.19], [566988.322, 6867683.567], [565842.794, 6866638.781], [565167.757, 6867524.515], [564115.078, 6867829.082], [563926.448, 6869190.52], [564394.436, 6870076.615], [563480.825, 6870669.564], [562911.855, 6870609.116], [562687.72, 6871059.157], [562009.79, 6871747.477], [561098.513, 6871621.745], [560416.643, 6872093.845], [560240.911, 6871897.911], [559344.14, 6872164.633], [558515.7, 6871470.773], [558174.015, 6870818.567], [557780.027, 6870460.784], [557896.683, 6869983.877], [558815.413, 6869375.124], [558418.668, 6868901.336], [557700.808, 6868365.315], [556902.745, 6868619.87], [555795.344, 6869435.942], [555794.246, 6869436.732], [554457.888, 6869925.991], [553256.664, 6871650.592], [552215.086, 6871557.022], [551836.204, 6871972.526], [551255.48, 6871832.514], [550187.999, 6872395.371], [549372.556, 6872396.482], [550017.371, 6873177.965], [549682.102, 6873653.972], [549283.866, 6873264.026], [547610.234, 6874297.6], [547348.142, 6873981.626], [546562.347, 6874609.577], [546895.516, 6875002.412], [546659.342, 6875202.249], [546349.138, 6874780.198], [545654.414, 6875206.721], [546400.205, 6876160.54], [545054.922, 6878834.65], [545338.107, 6878987.191], [545711.06, 6878602.848], [546806.917, 6878885.442], [546478.94, 6879901.329], [546726.239, 6880293.271], [547008.327, 6879990.796], [547578.325, 6879907.844], [547788.313, 6880365.548], [549009.391, 6879708.097], [548843.109, 6880161.769], [549385.665, 6881071.772], [548864.17, 6881888.137], [548420.613, 6883700.346], [549443.011, 6884360.739], [550110.335, 6883908.467], [550541.877, 6882833.866], [552200.414, 6881431.046], [552645.767, 6882172.561], [551697.843, 6882976.38], [552154.408, 6884170.336], [551724.376, 6884961.512], [550855.522, 6885778.775], [551281.044, 6886298.867], [552973.862, 6885447.924], [553302.569, 6885876.357], [553133.891, 6886090.065], [553725.61, 6886489.964], [554728.644, 6885749.914], [554971.966, 6886263.892], [554447.563, 6886285.708], [554361.48, 6887211.019], [556354.164, 6887621.067], [553481.163, 6893584.51], [554194.079, 6894731.97], [554259.048, 6895186.886], [553653.889, 6895827.222], [553934.571, 6896222.763], [554413.167, 6896322.686], [554475.042, 6896623.135], [554242.838, 6896967.764], [553936.263, 6896929.077], [553425.966, 6897475.152], [556610.766, 6897680.592], [556805.285, 6897921.495], [556736.708, 6898421.692], [555558.171, 6900263.037], [554513.792, 6900833.998], [555068.568, 6901763.5], [555956.32, 6901030.814]]]}}, {\\\"id\\\": \\\"90\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tohmaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 37.9, \\\"freshwarea\\\": 57.6, \\\"gml_id\\\": 1601100604, \\\"landarea\\\": 837.76, \\\"namefin\\\": \\\"Tohmaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Tohmaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"848\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 895.36}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[667557.312, 6924624.333], [668027.304, 6923221.098], [668116.766, 6922665.87], [669615.714, 6917470.26], [671624.516, 6918496.345], [672088.207, 6919236.3], [672529.247, 6919040.889], [673048.32, 6918599.55], [673591.731, 6918836.971], [674362.876, 6918168.096], [674742.656, 6918423.648], [676421.97, 6916391.581], [679915.218, 6917890.608], [680785.662, 6918065.945], [681830.186, 6918563.875], [683982.147, 6918990.217], [684631.095, 6920784.083], [686916.834, 6919401.955], [687010.702, 6918834.032], [687361.952, 6918272.847], [689711.045, 6919073.333], [691077.367, 6915746.488], [692811.74, 6916450.483], [696507.887, 6908412.071], [696507.906, 6908412.029], [696514.017, 6908398.758], [696516.471, 6908393.429], [696516.781, 6908392.754], [696520.128, 6908385.487], [696527.945, 6908368.511], [696528.317, 6908367.702], [696752.37, 6907881.137], [695606.6, 6906062.4], [694689.1, 6905076.4], [694602.6, 6905062.8], [693447.1, 6903008.3], [691798.2, 6903086.8], [691585.5, 6903076.5], [690160.483, 6902823.943], [689969.604, 6902406.312], [689794.382, 6902051.251], [689194.7, 6900901.0], [688945.9, 6900754.3], [688872.7, 6900657.3], [688811.8, 6900501.1], [688792.5, 6900399.6], [688908.1, 6899842.9], [688965.7, 6899698.0], [689054.2, 6899520.1], [689139.7, 6899408.2], [689178.0, 6899238.2], [689181.4, 6899039.2], [689227.4, 6898911.5], [689275.4, 6898838.7], [687760.783, 6895195.532], [685889.7, 6892494.9], [684479.685, 6890252.27], [683240.341, 6888205.805], [682403.098, 6886822.349], [682103.9, 6886370.8], [681990.185, 6886181.692], [681573.05, 6886242.264], [681153.054, 6886025.907], [681089.318, 6885822.899], [680181.794, 6885896.163], [679578.481, 6885719.439], [679444.199, 6886159.145], [679015.596, 6886489.424], [678449.811, 6886677.312], [677853.243, 6886706.563], [676881.263, 6888282.445], [677361.491, 6889258.658], [675991.082, 6890721.844], [675174.573, 6890937.354], [673758.324, 6892051.532], [672804.279, 6891604.813], [671755.824, 6891974.066], [671821.103, 6893908.314], [670672.782, 6893569.474], [669738.307, 6894147.409], [668628.611, 6893295.98], [668116.833, 6893101.56], [668119.202, 6893188.979], [667974.554, 6893435.125], [667971.875, 6893802.995], [668175.748, 6893990.531], [668065.41, 6894421.046], [668047.728, 6895198.494], [667795.119, 6895848.18], [667855.516, 6896373.51], [667979.02, 6896783.922], [667822.751, 6897100.395], [667815.657, 6897516.522], [667630.165, 6897723.873], [667596.608, 6898149.715], [667228.898, 6898233.546], [666844.751, 6898791.583], [667460.734, 6899229.415], [667287.038, 6899960.565], [667345.65, 6900413.122], [666245.194, 6902894.297], [665960.397, 6904144.477], [665643.888, 6904515.249], [664967.04, 6904895.231], [664250.562, 6904757.297], [663696.443, 6904809.919], [663329.854, 6904467.86], [663163.728, 6904237.255], [661966.889, 6904248.602], [661739.375, 6904606.944], [661477.032, 6904722.421], [661289.921, 6903598.386], [659920.089, 6904559.571], [659552.851, 6906604.779], [658710.472, 6906336.614], [658686.766, 6906111.18], [658423.263, 6905964.833], [658047.529, 6906187.791], [657502.158, 6905666.325], [656095.95, 6905020.107], [654967.056, 6907203.2], [654101.267, 6907791.701], [653731.957, 6909271.163], [654612.04, 6909937.414], [657246.411, 6909853.9], [657433.149, 6909917.487], [654814.331, 6918271.503], [654478.998, 6918537.512], [652577.649, 6918908.503], [653572.23, 6919496.4], [653774.188, 6920085.635], [657076.229, 6921119.614], [658698.411, 6922489.006], [659249.23, 6922207.604], [659429.27, 6921702.013], [659907.768, 6921437.529], [660096.534, 6921765.571], [660538.702, 6921869.921], [660876.623, 6921579.281], [661352.981, 6921322.454], [661918.487, 6921346.43], [662215.917, 6921528.212], [662536.844, 6922167.323], [663378.636, 6922065.603], [663879.024, 6922954.266], [664173.672, 6922933.068], [664902.35, 6922015.583], [665768.236, 6923019.263], [665560.524, 6923412.711], [665905.685, 6924256.033], [667369.006, 6924760.189], [667557.312, 6924624.333]]]}}, {\\\"id\\\": \\\"91\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kustavi\\\", \\\"elakelaisten_osuus\\\": 43.7, \\\"freshwarea\\\": 1.87, \\\"gml_id\\\": 1601100381, \\\"landarea\\\": 165.82, \\\"namefin\\\": \\\"Kustavi\\\", \\\"nameswe\\\": \\\"Gustavs\\\", \\\"natcode\\\": \\\"304\\\", \\\"seawarea\\\": 602.46, \\\"totalarea\\\": 770.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[174109.351, 6750276.195], [185267.85, 6743788.024], [190107.869, 6739672.881], [189997.339, 6739222.377], [190017.339, 6738867.478], [190156.056, 6738405.334], [190654.462, 6738021.407], [191405.895, 6736340.347], [191905.423, 6735915.885], [191989.062, 6735179.783], [191924.172, 6734143.657], [192169.833, 6732315.211], [192762.13, 6731724.553], [193747.868, 6731395.801], [196809.792, 6728434.026], [198050.176, 6726928.299], [198495.912, 6726269.098], [198491.208, 6726160.496], [197802.175, 6725849.426], [197367.459, 6724835.154], [197198.389, 6724267.326], [197483.776, 6723636.168], [197689.565, 6723310.926], [198258.485, 6723103.684], [199305.922, 6722050.634], [199293.314, 6721506.899], [198931.498, 6721642.805], [198811.077, 6721123.901], [198730.751, 6720472.579], [198531.645, 6720324.362], [198718.91, 6719390.193], [198856.749, 6719007.097], [199244.059, 6718739.965], [199729.771, 6715828.949], [200014.48, 6714121.905], [199787.494, 6713076.908], [199883.428, 6712104.533], [198381.306, 6711944.119], [197335.339, 6713122.634], [195748.052, 6714718.828], [195403.674, 6715519.498], [194846.442, 6716583.817], [192649.548, 6717398.234], [191993.822, 6717458.499], [191038.458, 6717531.282], [186604.751, 6716432.425], [178985.102, 6721226.62], [179052.698, 6723104.0], [179095.408, 6725644.63], [179054.524, 6726682.221], [177411.693, 6731630.97], [175482.858, 6737239.366], [171236.502, 6745919.169], [158291.161, 6748278.94], [140852.31, 6767208.508], [144380.958, 6769674.449], [174109.351, 6750276.195]], [[181860.132, 6739594.505], [181199.112, 6736686.356], [178213.333, 6739095.432], [177185.851, 6739825.218], [177631.69, 6740502.167], [177675.64, 6740353.826], [177795.715, 6740450.908], [177752.194, 6740758.881], [177803.031, 6740867.18], [181860.132, 6739594.505]]]}}, {\\\"id\\\": \\\"92\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sodankyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 32.5, \\\"freshwarea\\\": 723.71, \\\"gml_id\\\": 1601100535, \\\"landarea\\\": 11691.7, \\\"namefin\\\": \\\"Sodankyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"Sodankyl\\\\u00e4\\\", \\\"natcode\\\": \\\"758\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 12415.41}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[562396.5, 7588356.8], [565252.9, 7577370.4], [568226.8, 7565660.7], [566730.506, 7563044.354], [566730.473, 7563044.296], [566730.011, 7563043.487], [536679.074, 7510311.335], [534119.547, 7503959.733], [518465.6, 7494094.658], [517648.901, 7495662.015], [516954.873, 7495290.476], [517346.509, 7494145.132], [516917.676, 7493530.353], [516523.311, 7493382.808], [516657.37, 7493013.882], [513413.674, 7486592.699], [513363.212, 7486784.008], [512853.326, 7486752.311], [512869.511, 7486071.275], [513185.822, 7486135.346], [509506.022, 7478809.643], [511167.143, 7475247.097], [511200.661, 7474003.165], [510853.322, 7471890.308], [504804.134, 7470521.582], [503718.163, 7469030.608], [502337.747, 7457420.3], [502575.047, 7457549.732], [502863.727, 7457091.907], [502620.29, 7456562.709], [502244.176, 7456626.462], [501961.576, 7454258.882], [501472.01, 7454515.686], [501327.108, 7454167.94], [501922.576, 7453962.37], [501778.152, 7452713.326], [500385.071, 7450269.981], [500863.602, 7450001.159], [490862.618, 7438624.517], [490234.723, 7436973.261], [491147.248, 7435846.262], [491540.313, 7435246.548], [491888.925, 7434695.2], [491481.467, 7434262.025], [491085.465, 7434628.166], [491326.08, 7434877.667], [490711.171, 7435876.072], [490351.971, 7435470.979], [489867.458, 7435934.454], [490227.536, 7436305.393], [489595.754, 7437233.431], [484018.817, 7430895.424], [484212.905, 7430603.639], [483794.347, 7430061.432], [483410.376, 7430204.143], [478933.385, 7425099.02], [474052.592, 7426032.877], [474380.713, 7426246.65], [474247.473, 7426513.576], [473599.506, 7426182.978], [472803.488, 7426627.286], [472593.655, 7426370.374], [471560.807, 7427805.159], [471704.895, 7427914.232], [469724.744, 7430667.283], [469561.888, 7430551.328], [469159.234, 7430996.277], [452469.739, 7445168.698], [446029.096, 7446267.544], [446044.534, 7445951.883], [445592.175, 7446329.286], [444624.143, 7446491.831], [444563.305, 7446133.498], [443979.364, 7446077.903], [443914.672, 7446611.512], [442375.084, 7446880.74], [442431.183, 7446371.194], [441904.732, 7443241.658], [439864.442, 7443756.549], [439783.761, 7447292.232], [428510.971, 7449194.171], [434799.407, 7466042.47], [439523.26, 7470314.48], [439353.674, 7470839.848], [440262.56, 7471311.434], [446932.896, 7480310.392], [446195.831, 7492281.41], [458414.887, 7536374.369], [453310.7, 7554143.617], [457691.128, 7574162.963], [466815.733, 7578112.381], [520679.447, 7581259.14], [551793.382, 7594867.065], [551901.385, 7594654.279], [551958.374, 7594484.09], [552054.45, 7594352.696], [552153.88, 7594082.919], [552398.384, 7593948.85], [552517.352, 7593722.957], [552482.77, 7593516.595], [552623.975, 7593373.121], [552890.368, 7593335.343], [553222.653, 7593183.534], [553410.197, 7593388.44], [553722.869, 7593505.43], [553860.338, 7593472.732], [553824.876, 7593282.011], [553994.814, 7593304.953], [554129.866, 7593379.985], [554457.753, 7593305.27], [554635.65, 7593326.597], [554815.592, 7593433.646], [554896.242, 7593418.428], [554870.752, 7593345.776], [554964.403, 7593287.809], [555132.15, 7593282.069], [555300.928, 7593316.54], [555413.838, 7593431.127], [555513.446, 7593430.098], [555930.342, 7593400.669], [556109.306, 7593421.22], [556390.678, 7593562.241], [556611.584, 7593826.968], [556802.324, 7593882.441], [556991.104, 7593818.592], [557121.895, 7593886.484], [557243.77, 7594005.082], [557307.139, 7593964.132], [557379.801, 7594001.781], [557435.972, 7593899.09], [557596.453, 7593987.977], [557840.376, 7594073.08], [558060.148, 7594055.735], [558266.31, 7594150.522], [558435.753, 7594226.372], [558861.816, 7594297.994], [559009.323, 7594395.419], [559044.126, 7594585.992], [558980.782, 7594722.061], [559131.374, 7594892.62], [559289.97, 7594967.466], [559540.567, 7595040.441], [559666.643, 7595077.155], [559659.54, 7594975.267], [559786.488, 7595107.506], [560012.894, 7595363.48], [560413.957, 7595426.777], [560577.601, 7595569.21], [562396.5, 7588356.8]]]}}, {\\\"id\\\": \\\"93\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Keminmaa\\\", \\\"elakelaisten_osuus\\\": 29.5, \\\"freshwarea\\\": 20.88, \\\"gml_id\\\": 1601100405, \\\"landarea\\\": 626.35, \\\"namefin\\\": \\\"Keminmaa\\\", \\\"nameswe\\\": \\\"Keminmaa\\\", \\\"natcode\\\": \\\"241\\\", \\\"seawarea\\\": 0.01, \\\"totalarea\\\": 647.24}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[390804.334, 7323775.928], [395608.965, 7318617.265], [396217.624, 7318498.36], [396119.427, 7317613.838], [403832.364, 7318052.272], [404029.547, 7319749.932], [404400.972, 7320335.089], [404851.329, 7320257.645], [404399.755, 7318869.471], [403959.705, 7318059.707], [410967.935, 7318480.815], [410848.256, 7315447.43], [411948.162, 7315989.91], [412739.219, 7315680.238], [412751.121, 7314978.711], [413933.013, 7314999.202], [413911.771, 7316475.309], [414754.546, 7317165.134], [419356.794, 7316762.731], [418873.192, 7316128.82], [419297.567, 7312996.177], [416468.877, 7310433.802], [416850.386, 7310190.377], [416302.029, 7309513.811], [415850.194, 7309875.449], [407079.546, 7301988.165], [404840.651, 7297552.88], [405378.828, 7297259.57], [404493.459, 7295651.417], [404917.912, 7295425.042], [405403.46, 7295615.224], [405627.75, 7295280.362], [404899.381, 7295065.933], [404623.697, 7295299.383], [404282.674, 7295056.35], [404405.505, 7294777.038], [404332.775, 7294505.948], [404107.969, 7294446.44], [403837.465, 7294320.991], [404148.778, 7294174.255], [404271.915, 7293984.094], [404373.698, 7293467.402], [401818.058, 7294909.912], [401022.911, 7293415.508], [400439.839, 7294076.89], [400334.855, 7293312.843], [400758.967, 7292919.496], [400066.703, 7292035.479], [399978.762, 7292108.619], [399581.255, 7291628.236], [399673.008, 7291548.939], [398956.845, 7290681.867], [398865.122, 7290756.048], [398750.883, 7290617.015], [398844.171, 7290544.441], [396561.004, 7287772.167], [395836.599, 7288166.204], [396006.827, 7289239.257], [395391.592, 7289347.595], [395393.088, 7290347.27], [396035.422, 7290066.137], [396443.969, 7290581.243], [394514.079, 7290690.837], [394051.098, 7293089.47], [393656.937, 7293520.858], [393663.388, 7293847.826], [393844.901, 7293969.106], [394644.891, 7293676.559], [394766.558, 7293967.312], [393557.315, 7294613.774], [392947.81, 7294661.255], [393000.651, 7295717.355], [389945.182, 7297747.327], [389883.5, 7297355.627], [389258.448, 7297812.724], [388570.103, 7298829.981], [388122.169, 7299270.588], [386195.869, 7297953.1], [385992.898, 7297648.827], [382603.667, 7296353.473], [383317.746, 7297938.122], [383537.667, 7298510.809], [383524.438, 7298648.393], [383430.121, 7298990.032], [383630.121, 7299227.873], [383848.128, 7299725.305], [384200.683, 7299942.6], [384293.079, 7300338.868], [384067.277, 7300301.458], [383691.306, 7300012.945], [383388.454, 7300289.747], [383871.954, 7300814.872], [384839.027, 7301181.292], [384962.272, 7301540.987], [384791.384, 7302106.979], [384883.168, 7302367.032], [385198.122, 7302082.383], [385650.125, 7302995.042], [385660.681, 7303517.999], [385489.403, 7304048.839], [385664.496, 7304530.358], [385988.63, 7304486.691], [386529.1, 7304796.923], [386662.09, 7305112.054], [386610.713, 7305506.75], [386678.965, 7305857.407], [386660.069, 7306180.4], [386815.425, 7306232.131], [387089.321, 7306689.615], [387049.796, 7307381.692], [386695.339, 7307397.459], [386702.722, 7308095.917], [387049.951, 7308052.362], [387125.854, 7325545.337], [390804.334, 7323775.928]]]}}, {\\\"id\\\": \\\"94\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Humppila\\\", \\\"elakelaisten_osuus\\\": 32.8, \\\"freshwarea\\\": 0.65, \\\"gml_id\\\": 1601100162, \\\"landarea\\\": 147.96, \\\"namefin\\\": \\\"Humppila\\\", \\\"nameswe\\\": \\\"Humppila\\\", \\\"natcode\\\": \\\"103\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 148.61}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[301959.966, 6769441.809], [303420.561, 6769865.451], [304223.077, 6768472.871], [304942.526, 6765824.728], [305769.984, 6764568.365], [306420.535, 6764852.997], [307046.776, 6764598.047], [307250.616, 6764894.233], [307985.642, 6764577.177], [308623.193, 6763975.57], [309143.035, 6763855.071], [309926.83, 6763394.981], [310040.429, 6763202.982], [310027.442, 6762827.879], [310430.167, 6762583.996], [310490.703, 6762013.978], [307173.207, 6758026.345], [306902.278, 6757050.966], [306100.055, 6756725.455], [306064.751, 6756110.553], [306239.123, 6755900.248], [306241.39, 6754490.669], [305760.046, 6753727.789], [304543.322, 6754593.88], [303690.879, 6754431.888], [303817.988, 6754044.971], [302526.524, 6753826.549], [297931.884, 6755403.995], [297451.456, 6756204.328], [296908.443, 6759624.339], [297267.752, 6759756.007], [297850.937, 6759367.064], [298970.778, 6759335.116], [298989.0, 6759904.166], [298765.779, 6760189.446], [299032.893, 6760787.027], [299124.512, 6761180.318], [299492.785, 6761259.641], [299511.644, 6761508.394], [299025.625, 6761930.405], [299409.838, 6762880.414], [299342.652, 6763417.689], [297313.565, 6764512.086], [295192.437, 6767412.362], [294311.243, 6768899.488], [295318.225, 6769477.243], [298169.87, 6769268.438], [298319.967, 6769946.551], [297912.327, 6770626.756], [298359.877, 6770746.386], [301959.966, 6769441.809]]]}}, {\\\"id\\\": \\\"95\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lappeenranta\\\", \\\"elakelaisten_osuus\\\": 27.8, \\\"freshwarea\\\": 289.78, \\\"gml_id\\\": 1601100626, \\\"landarea\\\": 1433.78, \\\"namefin\\\": \\\"Lappeenranta\\\", \\\"nameswe\\\": \\\"Villmanstrand\\\", \\\"natcode\\\": \\\"405\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1723.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[580741.853, 6790605.096], [585889.599, 6786089.993], [586394.714, 6785968.495], [586253.678, 6786335.467], [588745.838, 6787998.473], [588651.35, 6788698.311], [588050.936, 6789358.495], [590731.268, 6790415.065], [591358.837, 6789769.532], [589610.527, 6788584.563], [591620.753, 6787594.555], [591184.497, 6787114.201], [593001.083, 6785418.999], [592402.858, 6784794.21], [593325.685, 6783878.448], [593114.432, 6783257.421], [593034.525, 6781677.835], [593473.442, 6781667.009], [593460.731, 6781301.533], [593580.34, 6781216.756], [593512.214, 6780538.657], [593960.82, 6780049.722], [593864.9, 6778500.966], [593491.371, 6775896.875], [593521.7, 6775238.009], [594355.861, 6774632.132], [595398.993, 6773461.747], [595401.337, 6773458.807], [595403.549, 6773456.033], [595403.92, 6773455.568], [595843.841, 6772915.996], [592557.9, 6768951.3], [592411.2, 6766999.7], [591459.2, 6762975.4], [591434.6, 6762871.2], [591135.7, 6761612.9], [589794.3, 6758482.5], [589647.6, 6758294.4], [589338.9, 6758135.4], [587455.4, 6758892.6], [585193.2, 6758428.4], [584077.5, 6758763.6], [583692.2, 6758792.2], [583507.7, 6758876.0], [583257.6, 6758916.2], [582860.6, 6758715.0], [582726.3, 6758729.5], [582565.6, 6758970.0], [582388.029, 6758709.149], [582386.006, 6758706.177], [581033.8, 6756719.8], [580906.5, 6756700.4], [580871.1, 6756482.1], [580415.5, 6755819.1], [580370.6, 6755661.5], [580454.2, 6755423.5], [579829.4, 6755223.4], [579611.7, 6755117.7], [579445.4, 6755136.2], [575875.0, 6751064.1], [575995.4, 6750863.9], [575851.2, 6750619.2], [575596.2, 6750745.3], [572577.7, 6747292.1], [572537.5, 6747386.2], [572356.7, 6747445.0], [572274.4, 6747512.8], [572111.3, 6747497.6], [572038.0, 6747615.3], [571941.0, 6747683.2], [571306.3, 6745820.2], [568325.9, 6742273.1], [566459.4, 6739212.1], [563951.2, 6738701.2], [561910.2, 6734459.8], [559413.9, 6732158.8], [557067.086, 6729575.954], [555451.9, 6727845.4], [555599.9, 6727707.2], [554539.2, 6726491.3], [554389.3, 6726578.8], [554169.941, 6726326.841], [553444.47, 6726176.673], [553437.766, 6726175.286], [553434.841, 6726174.68], [552842.602, 6726047.841], [551997.444, 6726090.923], [552060.816, 6726531.448], [552290.819, 6727232.569], [552035.718, 6728188.888], [550827.606, 6728592.727], [549245.441, 6729308.127], [548530.918, 6730634.085], [548054.206, 6731183.759], [547232.619, 6733454.634], [546852.966, 6734251.609], [546768.702, 6735144.863], [546476.716, 6736006.467], [546373.838, 6736931.505], [545726.972, 6737104.987], [544518.179, 6737137.945], [544231.998, 6736903.972], [543196.006, 6737341.418], [542138.954, 6736180.682], [540945.537, 6736020.135], [539642.06, 6736586.392], [538676.978, 6739600.214], [538858.65, 6740202.117], [539105.583, 6740732.412], [539113.733, 6742055.867], [539021.866, 6742674.415], [539427.603, 6742589.654], [540838.433, 6742555.282], [540563.741, 6742937.724], [540435.683, 6744263.384], [541691.374, 6744512.196], [541373.51, 6743448.025], [544873.092, 6743337.606], [545984.238, 6743561.027], [545503.729, 6744065.217], [546038.188, 6744754.174], [547613.55, 6746242.156], [546443.714, 6747498.835], [547330.836, 6749215.348], [547961.376, 6749534.724], [548563.022, 6750519.43], [548934.485, 6749057.227], [547983.181, 6748113.301], [548129.58, 6747772.117], [548299.242, 6746583.463], [548707.605, 6746182.691], [548969.299, 6746170.099], [549153.421, 6746434.193], [549190.803, 6746780.953], [549132.524, 6747062.438], [549522.762, 6747313.94], [550254.353, 6748572.536], [550665.574, 6749706.28], [550588.001, 6750244.661], [549685.665, 6750501.248], [548900.68, 6750991.342], [548344.188, 6752964.236], [548499.517, 6753757.116], [548923.831, 6755075.186], [548819.263, 6756172.54], [548484.99, 6757138.345], [548926.591, 6759323.659], [548602.918, 6759955.899], [549138.984, 6761967.984], [548739.337, 6763218.372], [548112.489, 6763660.188], [547806.215, 6763468.563], [547912.775, 6763003.553], [547765.137, 6762759.051], [547079.918, 6762426.081], [546389.998, 6762395.088], [546574.321, 6762691.069], [546310.924, 6763295.421], [546304.818, 6764355.09], [546458.253, 6764721.142], [547183.656, 6765074.005], [546857.68, 6766061.9], [547763.409, 6766475.64], [548444.135, 6766134.484], [549720.613, 6766568.218], [549952.321, 6766328.917], [550201.523, 6765825.124], [550495.107, 6765418.792], [550891.346, 6765390.007], [550920.828, 6766236.662], [550628.041, 6767061.225], [550227.901, 6767393.786], [551261.978, 6767736.755], [551727.39, 6767582.622], [552168.508, 6767904.894], [553308.044, 6768012.26], [553512.959, 6768345.326], [553244.764, 6768876.008], [552754.163, 6768861.11], [553499.951, 6770045.635], [553883.188, 6771063.123], [554432.764, 6771305.928], [554401.979, 6770840.018], [554706.901, 6770748.126], [555678.558, 6771490.063], [556774.608, 6772521.051], [556619.01, 6773853.973], [557483.223, 6774597.469], [557613.949, 6775794.622], [558762.647, 6775398.698], [559645.333, 6774347.127], [559560.27, 6773989.972], [559925.824, 6773548.555], [560825.456, 6774033.364], [561155.768, 6774924.239], [561805.547, 6774569.365], [562555.292, 6773814.629], [562685.247, 6773929.59], [562421.704, 6774862.938], [562488.573, 6775632.125], [562275.158, 6775989.577], [561567.841, 6776504.962], [561129.114, 6777346.316], [561143.706, 6777767.144], [562288.54, 6778108.314], [563101.514, 6777467.781], [563753.256, 6776354.74], [563852.219, 6775737.792], [564436.789, 6774667.933], [565049.136, 6775328.868], [566552.625, 6775689.434], [566579.409, 6776507.8], [567031.823, 6776880.753], [567347.593, 6777346.966], [567890.07, 6777823.477], [569046.199, 6778126.764], [569486.019, 6778354.076], [569923.748, 6778261.135], [570421.647, 6777173.267], [571700.048, 6777931.408], [572521.183, 6779486.042], [575790.737, 6783230.944], [570690.236, 6786721.539], [569894.086, 6790281.106], [570249.837, 6791052.193], [574927.383, 6795299.456], [580741.853, 6790605.096]]]}}, {\\\"id\\\": \\\"96\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ilomantsi\\\", \\\"elakelaisten_osuus\\\": 47.0, \\\"freshwarea\\\": 409.29, \\\"gml_id\\\": 1601100481, \\\"landarea\\\": 2763.39, \\\"namefin\\\": \\\"Ilomantsi\\\", \\\"nameswe\\\": \\\"Ilomants\\\", \\\"natcode\\\": \\\"146\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3172.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[713244.7, 7013913.2], [713407.9, 7013732.4], [713374.5, 7013642.9], [713480.7, 7013459.5], [713503.2, 7013038.7], [713654.1, 7012814.4], [713894.4, 7012778.9], [714084.0, 7012592.8], [714385.3, 7008499.0], [715083.2, 7005568.0], [715479.0, 7004750.2], [715753.1, 7004456.0], [715798.3, 7004311.2], [715960.0, 7004210.8], [716474.4, 7003660.4], [716660.2, 7003312.6], [720218.0, 7001115.3], [720380.1, 7000949.2], [720552.2, 7000636.3], [720610.8, 7000602.4], [720662.3, 7000539.0], [720725.0, 7000494.6], [720763.1, 7000381.5], [720813.5, 7000386.6], [720832.5, 7000308.8], [720888.2, 7000290.3], [720911.9, 7000248.9], [720969.7, 7000189.1], [721045.4, 7000220.3], [721157.6, 7000091.7], [721214.0, 6999933.8], [721299.4, 6999852.7], [721310.0, 6999784.5], [721370.0, 6999697.8], [721375.8, 6999526.8], [721421.8, 6999476.1], [721392.1, 6999346.5], [721395.1, 6999184.8], [721449.7, 6999144.1], [721463.8, 6999071.8], [721590.3, 6999006.2], [721626.5, 6998914.8], [721734.5, 6998901.5], [721727.4, 6998658.4], [721901.6, 6998549.2], [722159.9, 6998491.6], [722597.2, 6998270.2], [722837.8, 6998000.0], [722970.6, 6997921.2], [723675.2, 6998113.8], [725739.5, 6996131.6], [725161.5, 6994058.5], [727936.1, 6993156.3], [731597.6, 6985709.2], [732101.9, 6984843.1], [732089.8, 6984690.4], [732174.0, 6984638.5], [732272.7, 6984651.0], [732590.3, 6984326.9], [732575.6, 6984172.2], [732907.7, 6983723.6], [730943.3, 6979114.7], [727123.8, 6970806.7], [727784.2, 6969418.7], [726378.3, 6969426.3], [725808.8, 6967029.4], [724098.1, 6958659.9], [724397.5, 6957839.1], [724463.0, 6957021.3], [724366.3, 6956985.4], [724252.8, 6957003.4], [724186.1, 6956654.3], [724017.6, 6956588.7], [724098.7, 6956464.5], [724029.2, 6956285.7], [724108.8, 6955808.5], [724071.4, 6955651.2], [724170.6, 6955338.6], [724132.5, 6955132.0], [724157.3, 6954838.3], [724041.9, 6954173.3], [723958.5, 6954024.6], [723759.4, 6953924.7], [723641.5, 6953704.5], [723515.9, 6953580.0], [723255.8, 6953585.6], [723069.6, 6953378.4], [722789.7, 6953425.7], [722685.4, 6953366.7], [722706.8, 6953288.1], [722890.8, 6953086.8], [722892.2, 6953034.8], [722814.3, 6952994.6], [722682.8, 6953016.5], [719602.4, 6943432.1], [718800.0, 6940811.1], [718343.2, 6939923.4], [718421.2, 6939783.3], [718419.2, 6939650.6], [717382.2, 6936831.9], [716194.6, 6936444.3], [715527.7, 6936175.2], [715637.2, 6935489.5], [715018.3, 6934815.7], [714732.3, 6932653.6], [714660.6, 6931792.0], [714731.1, 6930793.9], [713998.8, 6930626.1], [713490.6, 6930279.1], [711370.3, 6927288.5], [710911.011, 6927022.535], [710910.398, 6927022.18], [709738.174, 6926343.311], [707850.028, 6925264.883], [707764.854, 6925216.235], [707762.709, 6925215.004], [704464.81, 6923322.525], [703298.688, 6926388.775], [703156.58, 6929990.366], [704049.398, 6930448.666], [704586.42, 6930098.538], [705085.154, 6930572.838], [705480.59, 6930576.711], [705634.515, 6930232.234], [705891.832, 6930495.166], [705976.444, 6930937.373], [706318.636, 6931145.187], [706277.332, 6931729.156], [702832.078, 6934754.105], [702325.607, 6934278.083], [702023.075, 6933578.153], [701294.207, 6934733.449], [700534.325, 6935763.994], [700161.307, 6936266.432], [699435.692, 6937984.063], [698915.757, 6938686.047], [699066.924, 6939045.192], [698787.012, 6939794.208], [698704.844, 6940115.036], [698407.138, 6940364.575], [698653.109, 6940745.577], [697940.45, 6941169.569], [697433.185, 6941834.867], [695905.262, 6940912.592], [695350.072, 6941179.5], [695190.953, 6941582.406], [694801.369, 6941971.982], [694254.62, 6941876.715], [693964.633, 6941633.373], [693625.23, 6941975.278], [692992.356, 6942273.809], [692656.34, 6942324.763], [692777.871, 6942927.514], [691030.037, 6944621.474], [690063.132, 6945603.494], [689679.47, 6946442.685], [690507.255, 6948492.426], [689348.033, 6949680.871], [688163.178, 6949960.732], [688086.05, 6950805.901], [686272.568, 6951663.89], [684021.086, 6953236.458], [684044.446, 6953505.986], [683323.602, 6955798.038], [681664.105, 6955663.125], [680014.899, 6956118.07], [679558.772, 6957894.671], [680989.904, 6960424.716], [681507.72, 6962280.994], [681138.441, 6964057.933], [681635.824, 6964973.057], [680822.426, 6967595.683], [679530.855, 6969472.713], [679494.528, 6969797.393], [679729.69, 6970028.627], [679634.831, 6971455.974], [679275.935, 6971264.383], [678282.085, 6971699.973], [677554.692, 6973142.631], [676910.632, 6973281.831], [676047.627, 6979200.669], [675235.243, 6979494.873], [674480.782, 6981064.708], [674481.243, 6981208.873], [674176.414, 6984152.019], [673344.063, 6984896.264], [672938.414, 6985533.785], [671676.485, 6986889.679], [670862.669, 6987968.304], [670090.884, 6989782.633], [670214.749, 6989861.773], [670780.237, 6990223.072], [676302.556, 6993001.424], [681228.347, 6999487.618], [683382.17, 7001025.496], [685562.644, 7000929.202], [690518.996, 7003282.04], [696975.582, 7006332.632], [699577.354, 7010395.895], [704344.182, 7012305.786], [711187.863, 7013914.665], [713128.3, 7014370.9], [713244.7, 7013913.2]]]}}, {\\\"id\\\": \\\"97\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pukkila\\\", \\\"elakelaisten_osuus\\\": 26.4, \\\"freshwarea\\\": 0.87, \\\"gml_id\\\": 1601100315, \\\"landarea\\\": 145.07, \\\"namefin\\\": \\\"Pukkila\\\", \\\"nameswe\\\": \\\"Pukkila\\\", \\\"natcode\\\": \\\"616\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 145.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[431598.603, 6730923.09], [431013.626, 6725191.642], [429817.425, 6724024.601], [428399.511, 6723047.982], [426631.036, 6720528.076], [426146.633, 6720102.343], [425751.505, 6719513.81], [423144.654, 6719809.079], [422872.343, 6720002.775], [422977.319, 6720633.199], [422033.203, 6720617.096], [422338.78, 6720086.712], [421003.833, 6718940.268], [420878.774, 6719934.759], [420133.479, 6719753.626], [419902.082, 6718897.076], [418641.797, 6718426.824], [418744.492, 6718053.809], [419313.936, 6717446.665], [418695.893, 6716908.78], [417560.683, 6717873.156], [417210.624, 6719244.888], [415839.644, 6722173.205], [414265.317, 6724029.045], [413935.768, 6726304.675], [417083.74, 6729930.636], [419174.539, 6730717.412], [424096.839, 6726998.038], [424194.666, 6727793.177], [424495.964, 6727973.835], [425397.319, 6728029.592], [425740.307, 6727698.83], [426073.717, 6727890.47], [425804.26, 6728176.225], [425983.299, 6728376.618], [425977.487, 6728734.803], [425842.185, 6729123.492], [426235.054, 6729494.566], [426673.977, 6729089.633], [427894.202, 6729156.008], [428903.15, 6730953.302], [430325.259, 6732101.752], [431598.603, 6730923.09]]]}}, {\\\"id\\\": \\\"98\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kemij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 45.1, \\\"freshwarea\\\": 426.78, \\\"gml_id\\\": 1601100354, \\\"landarea\\\": 3504.13, \\\"namefin\\\": \\\"Kemij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Kemij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"320\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3930.91}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[515255.017, 7435135.171], [515597.389, 7434221.591], [516804.252, 7433612.667], [517347.158, 7432225.369], [517644.683, 7432289.593], [517580.329, 7432568.225], [525481.596, 7432297.638], [528805.85, 7428943.637], [529899.708, 7429190.254], [529735.999, 7427968.457], [538619.006, 7418935.014], [538612.877, 7418902.093], [541487.003, 7406765.444], [546976.161, 7398990.265], [546980.158, 7398733.503], [549296.477, 7399728.41], [551033.17, 7398155.997], [552763.624, 7390278.19], [548535.442, 7377410.426], [547835.893, 7376212.218], [550800.376, 7368510.817], [543832.875, 7367003.429], [535378.621, 7368308.192], [526623.087, 7364728.303], [527167.39, 7363214.051], [518606.762, 7352192.601], [511192.147, 7356938.071], [507395.134, 7359359.02], [486582.212, 7383990.811], [487336.531, 7388696.712], [484879.162, 7411583.272], [482775.729, 7413840.117], [479535.844, 7419967.287], [476747.712, 7424183.039], [478933.385, 7425099.02], [506457.122, 7432927.822], [510845.099, 7432804.215], [510805.641, 7432907.66], [514602.317, 7436216.001], [515255.017, 7435135.171]]]}}, {\\\"id\\\": \\\"99\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Honkajoki\\\", \\\"elakelaisten_osuus\\\": 34.7, \\\"freshwarea\\\": 1.76, \\\"gml_id\\\": 1601100153, \\\"landarea\\\": 331.37, \\\"namefin\\\": \\\"Honkajoki\\\", \\\"nameswe\\\": \\\"Honkajoki\\\", \\\"natcode\\\": \\\"099\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 333.13}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[259071.23, 6898318.3], [259316.036, 6898123.585], [259633.774, 6898202.566], [260465.972, 6893510.509], [260707.496, 6894021.414], [260274.745, 6896582.426], [260466.555, 6897648.97], [261066.342, 6896769.351], [261004.241, 6895727.392], [260977.204, 6895195.371], [261200.188, 6894651.629], [261456.923, 6894594.099], [261644.721, 6894869.422], [262229.369, 6895069.253], [262440.877, 6894735.128], [261314.752, 6892901.289], [260675.499, 6892977.026], [260468.263, 6892222.22], [260680.17, 6888321.307], [261384.989, 6887174.083], [259219.741, 6887801.018], [259078.599, 6887321.389], [261789.327, 6886516.076], [262063.695, 6886068.222], [260624.806, 6885932.712], [260695.613, 6886193.617], [258270.536, 6885959.272], [258549.357, 6884740.859], [260163.143, 6885006.008], [260511.617, 6885068.787], [260863.338, 6885128.863], [261083.355, 6883857.928], [259200.346, 6883746.109], [259070.311, 6883275.594], [256865.836, 6883149.88], [256345.065, 6881911.747], [256719.816, 6881666.397], [256777.977, 6880775.033], [256139.384, 6880537.81], [255685.588, 6880207.002], [255736.219, 6879739.354], [254871.523, 6879765.344], [255337.766, 6879344.194], [255169.277, 6878557.745], [254894.118, 6878260.422], [254150.321, 6878449.835], [254000.432, 6878181.046], [252911.75, 6878798.341], [251812.828, 6877911.924], [251665.638, 6876778.031], [252506.257, 6876834.675], [252292.636, 6875731.612], [251376.592, 6874717.309], [250783.898, 6874451.367], [250724.648, 6873971.44], [249879.535, 6874130.238], [249358.756, 6873068.021], [249356.718, 6872719.066], [248910.039, 6872732.801], [248786.613, 6873247.727], [248172.939, 6873227.063], [247123.009, 6874984.49], [245670.402, 6874918.105], [244739.432, 6874098.919], [245420.519, 6873994.301], [245340.64, 6872881.859], [245579.419, 6872530.446], [244875.314, 6872605.793], [244656.662, 6872188.992], [242738.497, 6875436.609], [238242.343, 6876940.779], [237365.378, 6878989.949], [237047.308, 6878978.76], [236897.467, 6879387.39], [236801.933, 6882124.138], [244232.829, 6887379.314], [249539.259, 6894974.367], [255859.251, 6894485.423], [258966.185, 6898659.253], [259071.23, 6898318.3]]]}}, {\\\"id\\\": \\\"100\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vierem\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 31.6, \\\"freshwarea\\\": 48.14, \\\"gml_id\\\": 1601100096, \\\"landarea\\\": 925.21, \\\"namefin\\\": \\\"Vierem\\\\u00e4\\\", \\\"nameswe\\\": \\\"Vierem\\\\u00e4\\\", \\\"natcode\\\": \\\"925\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 973.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[500613.63, 7096898.191], [505391.302, 7096326.377], [505472.895, 7096400.085], [505835.73, 7095992.143], [506186.982, 7095616.254], [507692.825, 7094299.084], [507875.657, 7093364.068], [507863.502, 7092051.098], [507902.768, 7090204.353], [511693.124, 7091015.547], [511835.077, 7092410.772], [512249.509, 7091914.278], [512273.037, 7091555.951], [513094.151, 7090396.759], [513013.625, 7090199.121], [513924.868, 7089640.232], [512535.642, 7087959.096], [512598.18, 7085955.598], [512577.835, 7084447.804], [513612.741, 7083285.012], [517597.696, 7077833.356], [516564.91, 7077099.964], [516697.548, 7075743.419], [517516.113, 7074280.666], [517222.424, 7073467.71], [515716.353, 7073129.761], [515804.094, 7072750.355], [513904.534, 7072216.038], [514510.551, 7071424.278], [514353.596, 7070731.002], [512904.875, 7070982.63], [512211.906, 7070754.756], [512508.157, 7070512.259], [512431.866, 7070258.961], [512962.997, 7069838.939], [513057.199, 7069281.442], [512928.864, 7069036.692], [512577.65, 7068771.111], [512706.051, 7068306.866], [512573.258, 7067986.821], [511995.211, 7067889.337], [511853.579, 7067693.942], [511478.545, 7067839.467], [511055.622, 7067667.845], [510929.882, 7067145.775], [511318.59, 7066631.502], [511052.53, 7066684.389], [510371.604, 7066349.169], [510359.524, 7065870.637], [510656.663, 7065555.376], [510793.763, 7065154.911], [511086.959, 7064663.219], [511500.786, 7063874.701], [511866.881, 7063471.11], [512905.775, 7062367.74], [512602.738, 7062258.102], [512076.651, 7062411.842], [511977.39, 7061733.999], [511744.741, 7061220.504], [510665.005, 7061046.886], [510815.967, 7060301.087], [510678.481, 7060130.342], [510617.747, 7059282.358], [510420.725, 7059073.932], [510551.227, 7058234.803], [510347.007, 7058177.84], [509717.458, 7058555.284], [507636.458, 7057832.953], [507521.751, 7058258.393], [506901.903, 7058157.83], [506677.692, 7058406.829], [506052.868, 7058303.687], [505222.801, 7058393.942], [504760.661, 7058625.626], [504267.155, 7059345.935], [503854.019, 7059603.229], [503182.184, 7060467.576], [502995.362, 7060025.352], [503110.929, 7057891.209], [500108.162, 7056292.961], [500872.315, 7055253.552], [500493.792, 7054764.691], [500759.898, 7054278.439], [500459.663, 7054170.466], [500114.911, 7054443.38], [500042.953, 7054911.859], [499588.262, 7055204.355], [499525.192, 7054521.329], [497584.468, 7053613.729], [497461.319, 7054945.938], [497099.161, 7055482.818], [496972.006, 7056428.737], [496111.154, 7056154.039], [495960.118, 7057314.264], [495324.858, 7057977.498], [495124.941, 7057481.195], [495208.815, 7056324.661], [493576.462, 7057749.572], [493816.635, 7058481.74], [491527.006, 7059898.865], [491581.946, 7060202.213], [491262.623, 7060617.525], [491358.778, 7061025.519], [492622.433, 7059657.796], [493497.941, 7060135.362], [493483.926, 7060764.12], [493346.378, 7061318.671], [495690.256, 7061503.809], [496285.193, 7061725.062], [496140.741, 7062575.202], [495501.219, 7062478.842], [495361.446, 7063087.042], [494795.604, 7063069.352], [494592.567, 7063697.659], [494532.215, 7064645.57], [493851.065, 7064618.247], [493822.965, 7066601.649], [493295.965, 7066545.99], [492681.834, 7068083.544], [492465.595, 7068987.978], [492486.237, 7069468.873], [491428.39, 7071142.343], [491960.046, 7071988.874], [491874.641, 7072357.374], [492004.748, 7072557.36], [492517.099, 7072673.739], [492565.838, 7072910.37], [493517.692, 7073351.782], [493422.957, 7073681.878], [493159.858, 7073684.032], [492150.651, 7074966.384], [492034.492, 7075505.163], [491824.339, 7075714.973], [491941.489, 7075865.096], [491689.687, 7076186.502], [491467.136, 7076201.697], [490906.789, 7076891.962], [490721.85, 7077615.387], [489703.717, 7078101.892], [488773.553, 7078201.969], [488200.783, 7078669.984], [486518.801, 7076860.397], [485618.731, 7079908.041], [486348.936, 7080467.236], [489176.401, 7079546.056], [488517.607, 7082713.247], [488147.587, 7084239.598], [486555.446, 7084950.815], [486667.666, 7086657.472], [485336.048, 7087194.88], [484457.419, 7088611.087], [483223.834, 7088812.472], [481355.296, 7088138.808], [481355.325, 7088779.337], [481168.138, 7089120.986], [480237.517, 7090438.546], [479397.407, 7091589.067], [479062.124, 7092341.715], [478421.209, 7093042.385], [480320.629, 7094791.276], [493669.471, 7101140.706], [500613.63, 7096898.191]]]}}, {\\\"id\\\": \\\"101\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kurikka\\\", \\\"elakelaisten_osuus\\\": 34.1, \\\"freshwarea\\\": 19.28, \\\"gml_id\\\": 1601100495, \\\"landarea\\\": 1724.67, \\\"namefin\\\": \\\"Kurikka\\\", \\\"nameswe\\\": \\\"Kurikka\\\", \\\"natcode\\\": \\\"301\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1743.95}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[235066.009, 6980418.307], [234996.196, 6980334.703], [236999.588, 6978926.289], [237332.478, 6975789.586], [238031.781, 6975947.387], [238086.329, 6975083.104], [238889.835, 6974793.577], [239099.463, 6974154.268], [240852.706, 6973511.763], [240654.014, 6973001.529], [242805.983, 6971905.93], [242986.222, 6972250.994], [243714.463, 6971931.767], [243468.191, 6971372.436], [245563.691, 6970448.682], [245268.886, 6970189.838], [248100.358, 6968891.892], [248342.023, 6969452.64], [251019.616, 6968303.129], [251241.627, 6969084.82], [255005.203, 6967040.636], [253149.213, 6965195.64], [252161.233, 6963676.432], [259841.288, 6959573.132], [259457.694, 6960275.49], [259659.416, 6960752.228], [260236.396, 6960377.096], [260421.375, 6960019.823], [260306.138, 6959527.129], [261347.874, 6959554.489], [262822.302, 6958834.121], [264208.28, 6958286.913], [265242.437, 6957415.779], [265695.552, 6957148.392], [266224.327, 6956621.863], [266095.787, 6956205.937], [266667.427, 6955989.94], [269747.719, 6952386.321], [270005.798, 6952608.907], [270412.725, 6952153.314], [270681.681, 6952444.074], [271098.697, 6951979.182], [271708.111, 6952148.279], [272782.14, 6950986.595], [273631.988, 6951765.052], [274928.722, 6951909.741], [276270.191, 6950628.09], [275440.228, 6948976.386], [277558.517, 6948875.845], [277545.789, 6948483.993], [277556.862, 6948483.14], [278375.08, 6948122.066], [278838.779, 6949119.492], [277449.777, 6950734.283], [277334.583, 6951851.61], [279152.416, 6949750.325], [279534.586, 6950550.416], [279999.648, 6950989.351], [287666.496, 6951654.805], [287927.946, 6947471.685], [288066.916, 6946905.956], [289974.872, 6947656.87], [290423.475, 6946701.972], [290966.962, 6941974.086], [292461.51, 6942057.848], [296042.136, 6932626.226], [296942.161, 6932051.504], [297553.418, 6928154.541], [297991.182, 6928099.864], [298086.393, 6928582.599], [298464.079, 6928646.245], [298448.671, 6927564.723], [298748.939, 6926951.089], [298676.216, 6926249.658], [299007.047, 6925537.6], [299036.378, 6926371.59], [299554.672, 6925835.031], [300092.937, 6923176.336], [298534.947, 6923365.721], [300261.951, 6915694.297], [292281.129, 6912796.944], [287089.675, 6910900.346], [283701.696, 6911326.951], [279278.626, 6911886.275], [273716.601, 6915336.617], [275342.546, 6917080.388], [275076.657, 6918996.374], [274194.45, 6922133.353], [274944.779, 6927638.634], [273044.524, 6931083.535], [272533.534, 6932644.813], [272250.402, 6934073.154], [270362.463, 6934041.164], [267514.489, 6935613.142], [264563.584, 6936221.167], [261265.588, 6937625.421], [261622.516, 6939251.2], [258004.196, 6941327.835], [257874.983, 6942264.318], [250323.226, 6944948.534], [249401.104, 6942366.118], [245092.32, 6944296.194], [246230.092, 6944585.668], [248866.223, 6946499.036], [249140.589, 6950278.228], [248616.072, 6951180.018], [245476.076, 6951615.684], [245496.433, 6950914.496], [245167.849, 6950872.626], [245048.674, 6951670.997], [244463.197, 6951755.28], [243260.003, 6952836.063], [243340.896, 6951634.212], [243155.369, 6951393.406], [242818.122, 6951524.132], [242556.072, 6952511.6], [242238.59, 6953013.203], [242365.045, 6953453.665], [242107.261, 6953682.278], [241559.474, 6953019.826], [240646.899, 6952901.604], [241107.709, 6951821.732], [240259.609, 6951398.376], [240070.364, 6949760.421], [238458.097, 6950107.126], [238457.633, 6950504.196], [238113.792, 6951057.076], [238556.791, 6951145.468], [238530.116, 6951777.972], [237887.14, 6952024.596], [237720.265, 6952385.599], [237254.805, 6952236.457], [236698.665, 6951407.707], [236194.047, 6951579.557], [235804.633, 6952081.31], [234824.315, 6952286.4], [234423.639, 6951725.53], [233550.656, 6951945.192], [233138.565, 6951147.576], [232265.202, 6951514.998], [233995.008, 6953356.39], [234380.359, 6954388.323], [233933.285, 6955041.701], [233861.674, 6954310.717], [232919.784, 6954416.18], [232955.745, 6953939.429], [232711.219, 6953514.757], [232409.978, 6953600.122], [231783.827, 6953227.88], [231185.25, 6953598.229], [231422.618, 6954157.564], [231031.929, 6954268.272], [231170.625, 6954667.101], [229577.382, 6955419.754], [229331.645, 6954861.219], [229387.937, 6954137.794], [228499.873, 6953431.258], [227995.504, 6953529.86], [226968.644, 6954009.285], [226735.736, 6953300.506], [226006.023, 6953820.843], [226610.176, 6954715.785], [227862.409, 6953945.212], [228255.086, 6954394.304], [228287.396, 6954877.683], [228575.72, 6954913.394], [228612.335, 6955725.437], [228558.476, 6956100.892], [228945.381, 6956916.507], [228596.205, 6956997.853], [228167.102, 6956093.188], [226534.377, 6956810.068], [228581.774, 6958234.132], [228317.573, 6958605.255], [229069.084, 6958625.229], [230098.42, 6959457.831], [229832.798, 6959690.925], [230447.534, 6960169.17], [231163.641, 6962505.278], [231414.678, 6962386.182], [231378.207, 6961746.909], [231024.692, 6960669.753], [231363.016, 6960481.964], [233606.195, 6962292.145], [231637.866, 6965358.679], [231031.785, 6969607.382], [231118.654, 6970711.502], [231587.15, 6976648.721], [233680.603, 6979445.867], [234172.221, 6981191.422], [235066.009, 6980418.307]]]}}, {\\\"id\\\": \\\"102\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Janakkala\\\", \\\"elakelaisten_osuus\\\": 28.2, \\\"freshwarea\\\": 38.65, \\\"gml_id\\\": 1601100278, \\\"landarea\\\": 547.42, \\\"namefin\\\": \\\"Janakkala\\\", \\\"nameswe\\\": \\\"Janakkala\\\", \\\"natcode\\\": \\\"165\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 586.07}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[376573.449, 6768481.881], [377464.363, 6767842.058], [381333.484, 6766861.317], [384072.316, 6765670.331], [385322.603, 6763429.44], [385098.962, 6763075.223], [385262.287, 6762564.381], [385835.098, 6761640.592], [386217.457, 6761482.469], [386869.298, 6760676.567], [387933.121, 6760633.36], [388622.544, 6760383.1], [388632.617, 6760052.054], [389469.76, 6759686.921], [389528.803, 6759402.566], [389932.835, 6759052.383], [389954.66, 6756589.599], [390462.576, 6754177.542], [391118.12, 6753297.792], [389523.704, 6752433.973], [389557.061, 6751831.292], [387942.203, 6752342.139], [388267.049, 6751520.239], [388767.714, 6749581.075], [388121.993, 6747459.986], [387673.056, 6747493.55], [387407.725, 6747200.556], [386746.525, 6747497.414], [386636.26, 6747124.063], [386264.402, 6746792.44], [385921.916, 6746793.672], [385491.09, 6746566.133], [385093.775, 6747119.483], [384688.652, 6747601.889], [383723.292, 6748245.25], [383329.832, 6748383.803], [382858.784, 6749163.532], [383010.524, 6749772.808], [381042.701, 6750156.68], [380976.248, 6748608.393], [380664.827, 6748054.807], [380235.693, 6747555.818], [380185.421, 6746280.497], [380009.375, 6746073.235], [379621.449, 6746898.93], [377595.446, 6746710.917], [376787.363, 6746590.588], [376212.279, 6744342.235], [375720.805, 6743201.798], [375556.39, 6742491.036], [375619.809, 6742282.469], [376474.062, 6739845.97], [377362.838, 6737968.095], [374156.418, 6737320.495], [373106.61, 6739765.3], [372156.141, 6739206.407], [370547.351, 6740590.448], [370490.636, 6737940.44], [366974.925, 6739002.519], [366582.68, 6738914.29], [366165.726, 6738314.802], [365828.164, 6738262.778], [365243.833, 6737762.293], [364907.908, 6737238.406], [363991.72, 6737952.199], [363224.207, 6736950.4], [362384.429, 6737288.445], [360299.576, 6738784.665], [360571.039, 6739483.456], [360531.277, 6739889.36], [360127.718, 6740280.529], [359641.922, 6740059.325], [360157.093, 6741472.991], [361874.164, 6743090.354], [362909.454, 6744283.876], [362474.019, 6745986.047], [362146.552, 6749147.148], [360770.336, 6750587.964], [360222.186, 6750194.851], [360487.681, 6750983.497], [360872.685, 6752808.407], [358902.402, 6754764.647], [363979.842, 6757592.976], [365508.559, 6758301.136], [366329.932, 6758429.461], [367652.078, 6758512.357], [367503.535, 6759109.233], [366799.717, 6759307.69], [366736.616, 6759666.435], [367116.203, 6760512.116], [367687.857, 6760173.017], [368475.955, 6760081.983], [368679.045, 6760715.411], [369181.014, 6760658.764], [369564.239, 6761329.956], [370007.539, 6761492.703], [369539.986, 6762282.506], [370572.779, 6762868.62], [370423.499, 6763225.652], [370433.754, 6764534.306], [373622.287, 6765751.396], [372120.0, 6768283.183], [375364.277, 6768582.543], [376573.449, 6768481.881]]]}}, {\\\"id\\\": \\\"103\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vaala\\\", \\\"elakelaisten_osuus\\\": 43.8, \\\"freshwarea\\\": 461.44, \\\"gml_id\\\": 1601100457, \\\"landarea\\\": 1302.59, \\\"namefin\\\": \\\"Vaala\\\", \\\"nameswe\\\": \\\"Vaala\\\", \\\"natcode\\\": \\\"785\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1764.03}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[492975.088, 7126811.191], [492107.954, 7125990.601], [491515.96, 7125798.493], [491147.195, 7126834.366], [490803.486, 7127856.332], [491047.936, 7127953.066], [492975.088, 7126811.191]]], [[[505623.994, 7187816.915], [509419.203, 7183644.1], [513309.733, 7176979.673], [513309.622, 7176924.528], [512807.756, 7176427.243], [510972.573, 7176879.868], [510753.236, 7176443.67], [510944.288, 7176111.38], [510845.614, 7175759.17], [510904.106, 7174902.557], [511247.925, 7174962.066], [511155.356, 7175821.62], [511710.946, 7176309.508], [512374.768, 7175911.091], [511426.447, 7175081.082], [511698.256, 7174538.939], [511967.752, 7174431.235], [511851.87, 7174168.061], [512747.554, 7170702.664], [512858.386, 7168095.486], [512351.843, 7167592.245], [512402.468, 7166670.986], [512555.682, 7166573.413], [513101.718, 7166734.505], [513426.156, 7166635.458], [513761.141, 7166622.91], [513901.992, 7166246.429], [514260.472, 7166134.855], [514733.515, 7165699.284], [515338.866, 7165386.293], [515603.442, 7165358.478], [516137.289, 7164990.543], [516749.775, 7164770.417], [517083.438, 7164547.733], [517633.771, 7164351.08], [516902.643, 7163959.97], [516732.191, 7163577.434], [518604.214, 7162080.348], [518330.052, 7161541.374], [518106.703, 7161405.013], [519019.269, 7160802.864], [516681.369, 7158350.254], [514247.804, 7152972.912], [513081.099, 7151636.494], [511923.697, 7151030.882], [510995.096, 7151443.405], [510764.101, 7151093.151], [511135.795, 7150620.918], [509880.062, 7149855.804], [508904.711, 7147829.831], [508665.758, 7146167.43], [509865.004, 7144808.627], [510393.163, 7143999.099], [510690.105, 7144191.56], [510939.712, 7143854.233], [510620.963, 7143647.636], [512112.812, 7141506.091], [511946.855, 7139411.456], [509265.867, 7136019.588], [509082.061, 7131608.553], [502052.41, 7128720.126], [498262.02, 7129968.158], [497180.609, 7133462.036], [496215.344, 7132865.006], [496423.331, 7131771.429], [494913.088, 7131768.393], [494599.233, 7130621.624], [494250.821, 7130618.841], [494039.438, 7130976.448], [493498.295, 7130984.377], [493335.327, 7131106.481], [492519.147, 7130671.238], [492135.982, 7130938.809], [492202.326, 7131169.621], [490992.63, 7131144.094], [489646.001, 7129573.573], [487817.249, 7128077.452], [488732.51, 7126901.274], [488735.814, 7126583.419], [487801.728, 7126527.084], [485742.096, 7126738.46], [485439.378, 7127130.732], [485377.889, 7127442.435], [484732.678, 7127848.676], [484803.835, 7131970.837], [484564.683, 7132279.761], [479783.224, 7132625.835], [479191.848, 7132326.451], [478854.47, 7132719.476], [478041.878, 7132753.291], [476848.56, 7133967.86], [476685.594, 7133743.277], [476250.995, 7134149.805], [476390.37, 7134481.122], [474598.1, 7136302.976], [474006.16, 7136407.42], [474009.195, 7136904.425], [474285.366, 7137457.117], [474077.563, 7137821.364], [474331.89, 7138312.392], [474981.475, 7138853.12], [473902.142, 7139783.962], [473960.568, 7139980.959], [474857.833, 7139408.769], [474369.442, 7140447.545], [474941.826, 7140352.839], [475221.592, 7140713.302], [474855.46, 7141021.005], [475142.34, 7141336.517], [475171.27, 7141615.502], [474523.559, 7141776.647], [474170.552, 7141390.171], [474005.915, 7141702.54], [473571.159, 7142131.963], [472331.753, 7144775.921], [471216.641, 7145753.814], [471090.061, 7146091.625], [471300.753, 7146219.942], [471005.674, 7146716.238], [470428.802, 7146743.419], [470346.026, 7146556.245], [465921.867, 7150589.585], [467542.16, 7152485.193], [467087.992, 7153512.539], [468687.354, 7153794.948], [468472.957, 7154875.14], [468786.093, 7154663.327], [468833.655, 7154411.889], [469333.395, 7154537.054], [474198.204, 7160091.45], [478262.57, 7159295.134], [478316.314, 7159553.34], [477543.531, 7161173.183], [478654.459, 7161688.066], [478911.122, 7161438.733], [478780.585, 7161143.28], [479858.072, 7160504.241], [480041.233, 7160983.233], [479771.851, 7161286.833], [479568.712, 7162804.243], [481022.674, 7165374.021], [481448.606, 7165206.899], [483436.276, 7166807.934], [483181.516, 7167163.492], [483616.229, 7167460.841], [483398.655, 7168338.623], [482512.004, 7169167.236], [483402.288, 7170057.579], [483809.833, 7169301.474], [484315.453, 7169263.125], [484973.379, 7169817.951], [485162.909, 7169249.053], [484050.228, 7168604.826], [485402.749, 7167034.514], [485852.776, 7167369.231], [485120.461, 7167934.256], [486142.545, 7168674.106], [485964.922, 7169035.1], [487224.936, 7169655.551], [487632.484, 7168825.967], [488315.344, 7169468.94], [490881.138, 7170436.117], [492385.043, 7170782.047], [493321.999, 7173929.834], [494626.518, 7173444.279], [494712.061, 7173733.126], [494218.593, 7174129.23], [494483.957, 7174872.469], [495239.252, 7174599.693], [495417.572, 7175094.301], [495292.368, 7175495.244], [494780.254, 7175685.944], [494939.723, 7176125.05], [494779.852, 7177248.446], [495221.191, 7177327.857], [495764.261, 7178011.049], [495611.171, 7178262.452], [494779.158, 7178785.437], [495636.004, 7181609.164], [507026.469, 7190106.11], [505623.994, 7187816.915]], [[502087.385, 7132317.391], [502304.602, 7132465.506], [502420.294, 7132205.705], [502789.504, 7132092.999], [503053.111, 7132413.27], [503550.713, 7131888.692], [502464.094, 7131225.009], [502887.018, 7130544.818], [502529.348, 7130434.294], [502218.87, 7130695.926], [501863.187, 7130597.958], [501650.506, 7130849.799], [501686.386, 7131064.051], [501157.458, 7132050.544], [501941.642, 7132651.145], [502087.385, 7132317.391]]]]}}, {\\\"id\\\": \\\"104\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Raasepori\\\", \\\"elakelaisten_osuus\\\": 30.5, \\\"freshwarea\\\": 67.15, \\\"gml_id\\\": 1601100459, \\\"landarea\\\": 1148.3, \\\"namefin\\\": \\\"Raasepori\\\", \\\"nameswe\\\": \\\"Raseborg\\\", \\\"natcode\\\": \\\"710\\\", \\\"seawarea\\\": 1138.77, \\\"totalarea\\\": 2354.22}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[310860.868, 6678524.315], [311951.44, 6677560.051], [312658.828, 6677827.908], [312410.676, 6677169.89], [311623.041, 6676747.121], [311679.743, 6675768.827], [311998.839, 6675089.31], [312606.84, 6674738.33], [314265.561, 6675110.09], [314986.273, 6674897.838], [315717.729, 6675395.335], [316139.473, 6675078.747], [317123.94, 6674795.452], [317904.701, 6674690.987], [318863.262, 6674785.151], [320642.594, 6675615.488], [321863.285, 6676633.198], [323110.393, 6676729.425], [324054.825, 6677641.332], [324721.03, 6676726.073], [326752.368, 6677405.863], [327190.495, 6677658.81], [327029.838, 6678055.1], [328151.94, 6678390.657], [328141.853, 6677924.216], [328240.594, 6676815.612], [328567.008, 6676115.136], [328012.191, 6674712.929], [328038.44, 6673533.125], [328783.329, 6671838.636], [330160.479, 6669763.78], [328650.512, 6669753.119], [327621.841, 6670234.291], [325911.889, 6670810.19], [323062.736, 6669532.653], [323273.406, 6668139.58], [323306.74, 6666443.252], [323681.501, 6664962.25], [324255.584, 6664499.635], [324253.966, 6663218.919], [325963.981, 6660836.459], [323378.525, 6660618.908], [320371.048, 6660787.886], [319467.233, 6660137.711], [319064.593, 6658816.515], [319231.14, 6656527.212], [320035.929, 6655835.709], [321072.44, 6655921.313], [323609.869, 6653512.147], [323076.333, 6652732.268], [323238.685, 6652366.138], [321713.123, 6651408.696], [322379.242, 6649678.044], [321478.601, 6648580.638], [321592.052, 6648137.901], [322000.012, 6648109.272], [322195.304, 6648095.567], [322281.457, 6647854.84], [321238.049, 6647536.575], [321165.389, 6646881.943], [321738.624, 6646431.57], [322357.557, 6646561.8], [322544.102, 6646525.422], [323317.232, 6646374.655], [323279.758, 6646208.529], [330687.224, 6627606.382], [294489.619, 6618848.049], [286758.544, 6618646.814], [287630.844, 6630511.425], [290392.024, 6636654.745], [291975.432, 6638856.15], [291731.699, 6639661.979], [291967.02, 6641011.71], [290652.228, 6641209.755], [290208.324, 6642224.864], [291694.455, 6644885.543], [292287.468, 6645358.445], [292813.957, 6646296.352], [292046.13, 6646696.205], [290224.562, 6648810.043], [289867.337, 6649359.56], [289269.646, 6649469.478], [288744.36, 6649908.328], [288034.455, 6648986.04], [287532.561, 6648753.677], [287384.832, 6648656.082], [286552.404, 6648036.141], [286381.172, 6647670.377], [285418.993, 6647250.966], [285304.642, 6646798.301], [284237.732, 6647378.513], [284066.3, 6648457.457], [283454.598, 6649360.022], [284225.858, 6650056.338], [283926.636, 6650729.53], [283272.384, 6650656.501], [281606.202, 6650689.344], [279983.519, 6648402.351], [279112.516, 6647193.388], [278540.526, 6647022.795], [276748.17, 6645020.751], [276411.607, 6646223.735], [275809.401, 6646307.072], [275451.269, 6644750.911], [273678.884, 6645188.899], [267609.211, 6644158.39], [265772.052, 6645183.154], [266617.741, 6651350.805], [265131.108, 6654395.663], [265203.537, 6659118.664], [266091.484, 6661666.31], [268712.43, 6662037.915], [268643.954, 6658136.552], [274387.242, 6658255.018], [276085.467, 6662010.058], [276350.256, 6662951.309], [275933.903, 6665396.831], [275227.495, 6666202.15], [276921.236, 6668826.839], [278790.121, 6669802.943], [280713.644, 6667824.977], [281519.049, 6668690.273], [281645.756, 6668057.072], [285913.262, 6668838.274], [288770.471, 6671180.961], [288747.559, 6672438.2], [289292.342, 6672123.455], [289849.68, 6672262.427], [289831.396, 6672611.148], [290848.677, 6672960.012], [293075.881, 6674436.914], [293413.231, 6674347.893], [293315.942, 6675529.126], [293526.064, 6676461.0], [294051.436, 6677161.263], [294550.294, 6677619.696], [294823.024, 6678011.324], [295198.34, 6678153.616], [296303.672, 6678078.163], [296371.792, 6677813.677], [295812.62, 6677110.975], [295676.341, 6676609.07], [295648.696, 6676222.75], [298119.962, 6673665.522], [299125.388, 6675523.72], [301120.979, 6675208.747], [301694.067, 6675507.35], [304204.322, 6675868.936], [308146.69, 6678526.293], [309001.264, 6678917.712], [310860.868, 6678524.315]]]}}, {\\\"id\\\": \\\"105\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyh\\\\u00e4j\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 40.4, \\\"freshwarea\\\": 148.66, \\\"gml_id\\\": 1601100562, \\\"landarea\\\": 1310.8, \\\"namefin\\\": \\\"Pyh\\\\u00e4j\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Pyh\\\\u00e4j\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"626\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1459.46}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[435416.503, 7079992.803], [434112.111, 7079126.342], [435077.506, 7077317.736], [434271.819, 7076962.283], [433612.181, 7080054.875], [435343.365, 7080201.381], [435416.503, 7079992.803]]], [[[462785.501, 7079521.042], [461527.866, 7078487.964], [462709.449, 7075683.706], [463790.053, 7064358.732], [463036.769, 7064302.96], [463072.06, 7063916.966], [463830.206, 7063901.906], [464875.673, 7052712.042], [464854.405, 7051516.751], [460468.877, 7049594.464], [460032.116, 7049273.187], [459768.116, 7043118.699], [459485.685, 7041441.803], [458422.283, 7039438.245], [457055.198, 7036862.779], [449823.929, 7033795.763], [444765.3, 7035052.776], [440697.493, 7041240.938], [439004.42, 7042516.974], [437213.116, 7043578.989], [435241.508, 7044181.914], [427435.427, 7044777.465], [424539.134, 7045824.724], [424479.199, 7045853.194], [417999.767, 7051437.468], [421096.89, 7055672.607], [428750.955, 7058267.187], [430669.37, 7061831.369], [432158.656, 7067716.452], [432720.56, 7067144.178], [433236.228, 7067254.267], [433528.523, 7067652.573], [433051.332, 7068113.759], [433682.151, 7068499.054], [433608.488, 7068857.743], [433449.921, 7068659.957], [432217.305, 7067992.693], [434089.189, 7075393.087], [434794.364, 7075147.826], [434645.78, 7073943.999], [437500.762, 7075916.772], [437578.929, 7077166.006], [438038.941, 7077213.423], [437891.554, 7076186.817], [443500.326, 7080064.808], [443727.491, 7080161.993], [444011.429, 7079367.004], [445160.636, 7080010.56], [445000.109, 7080733.402], [463261.848, 7089025.861], [462785.501, 7079521.042]]]]}}, {\\\"id\\\": \\\"106\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Isokyr\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 31.8, \\\"freshwarea\\\": 2.78, \\\"gml_id\\\": 1601100499, \\\"landarea\\\": 354.13, \\\"namefin\\\": \\\"Isokyr\\\\u00f6\\\", \\\"nameswe\\\": \\\"Storkyro\\\", \\\"natcode\\\": \\\"152\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 356.91}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[273357.699, 7004768.631], [273378.669, 7004696.762], [275639.077, 7004604.935], [275774.91, 7004662.465], [275940.597, 7004619.438], [276048.372, 7004677.185], [276312.932, 7004580.854], [276554.174, 7004568.402], [276751.362, 7004689.281], [277012.025, 7004740.179], [277048.262, 7004549.843], [278317.434, 7004494.355], [278336.389, 7004568.998], [278511.153, 7004496.072], [279630.013, 7004441.65], [279372.208, 7003680.078], [278425.717, 7003550.03], [278499.438, 7002846.968], [279414.726, 7002867.063], [281286.726, 7002639.756], [281740.866, 7002280.853], [279386.128, 7002479.587], [279317.752, 7001690.275], [278411.117, 7001413.384], [277637.692, 7002609.333], [274362.056, 7000649.615], [274511.976, 6999991.396], [274914.073, 7000105.868], [275558.596, 6998991.457], [275171.006, 6998657.986], [274827.595, 6999350.173], [274450.772, 6998691.439], [274241.492, 6998168.155], [273697.651, 6998990.335], [273332.03, 6998373.254], [273662.388, 6998232.861], [273214.541, 6997504.453], [272963.449, 6997751.378], [270680.475, 6994333.108], [270583.441, 6992948.686], [270577.301, 6992073.799], [270120.677, 6991289.591], [268833.182, 6989764.517], [268493.124, 6989468.457], [268699.341, 6989159.458], [267643.189, 6988541.706], [268040.859, 6987629.728], [267926.138, 6987194.838], [267666.027, 6986597.449], [267252.967, 6985970.552], [266996.948, 6985298.653], [266931.601, 6984931.871], [266785.711, 6984229.161], [266585.751, 6984262.652], [266200.126, 6983728.823], [266042.089, 6983108.41], [265799.976, 6982335.728], [266234.051, 6981201.381], [266353.342, 6980364.795], [266362.723, 6979607.137], [266522.011, 6978806.995], [265908.685, 6978487.884], [265602.342, 6978514.811], [265253.958, 6977993.13], [264736.546, 6977436.002], [264323.86, 6977146.057], [264056.731, 6976841.09], [263374.212, 6976417.658], [260555.946, 6971497.385], [259059.772, 6971163.906], [260010.179, 6971737.245], [259951.198, 6971938.555], [259547.16, 6972208.676], [259643.697, 6972674.534], [259413.134, 6973102.491], [259373.836, 6973526.992], [259007.971, 6974155.456], [259091.105, 6974433.455], [258872.742, 6974568.973], [259021.178, 6976191.626], [258245.63, 6976811.036], [258695.245, 6977176.84], [258524.271, 6981138.982], [257936.041, 6981012.597], [257735.274, 6980776.68], [257513.038, 6980872.974], [257150.017, 6981158.078], [257175.859, 6981244.313], [257862.299, 6981199.703], [257628.946, 6981390.373], [257083.616, 6983087.663], [257029.531, 6983946.664], [256810.887, 6985172.895], [256447.387, 6986337.007], [255957.317, 6987155.326], [255095.696, 6988593.252], [254439.861, 6989336.047], [254952.857, 6989267.462], [255108.0, 6989544.789], [254196.833, 6989800.517], [254297.836, 6990305.979], [253998.065, 6990234.265], [253892.615, 6990776.106], [254999.171, 6992160.12], [254891.628, 6994280.498], [254447.43, 6994607.782], [254639.587, 6994953.385], [254783.573, 6995449.128], [254662.96, 6995871.731], [255111.336, 6995991.698], [255442.69, 6996881.081], [255827.356, 6996918.508], [257042.559, 6998197.139], [259700.002, 7001591.214], [260744.397, 7001168.399], [261911.292, 7000845.832], [263112.307, 7000488.762], [263764.825, 7000826.848], [264423.185, 7000886.345], [272253.875, 7004745.731], [272815.78, 7004728.879], [272972.594, 7004862.088], [273357.699, 7004768.631]]]}}, {\\\"id\\\": \\\"107\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"R\\\\u00e4\\\\u00e4kkyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 46.2, \\\"freshwarea\\\": 272.07, \\\"gml_id\\\": 1601100454, \\\"landarea\\\": 427.61, \\\"namefin\\\": \\\"R\\\\u00e4\\\\u00e4kkyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"R\\\\u00e4\\\\u00e4kkyl\\\\u00e4\\\", \\\"natcode\\\": \\\"707\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 699.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[646251.081, 6922430.786], [646542.873, 6921906.616], [647031.979, 6921595.042], [647112.265, 6921079.379], [647767.16, 6920094.842], [649081.643, 6919384.661], [649504.583, 6919105.72], [652352.969, 6918603.785], [652577.649, 6918908.503], [654478.998, 6918537.512], [654814.331, 6918271.503], [657433.149, 6909917.487], [657246.411, 6909853.9], [654612.04, 6909937.414], [653731.957, 6909271.163], [654101.267, 6907791.701], [654967.056, 6907203.2], [656095.95, 6905020.107], [654965.557, 6904499.19], [654587.375, 6904628.808], [654528.396, 6904915.316], [654189.985, 6904941.76], [654508.85, 6903828.121], [653104.174, 6903585.576], [653070.164, 6902724.598], [651204.388, 6903427.261], [650343.485, 6902444.124], [649534.599, 6901448.336], [649645.306, 6901104.978], [650819.806, 6900574.6], [651360.279, 6900463.114], [651693.86, 6899988.2], [652140.418, 6899458.995], [652612.31, 6898980.901], [651729.433, 6897559.285], [651894.537, 6897128.411], [653509.595, 6895470.246], [653806.551, 6893961.432], [650532.371, 6896175.357], [649416.568, 6897192.281], [649011.898, 6897261.278], [648213.163, 6897712.312], [646053.142, 6898160.516], [644860.205, 6899063.538], [643931.338, 6898249.346], [642927.996, 6898055.964], [642748.673, 6897233.142], [640956.131, 6896389.371], [638428.456, 6897783.52], [637319.84, 6897732.125], [636046.726, 6896449.609], [632280.933, 6899522.708], [628924.498, 6902826.779], [626294.615, 6902892.602], [626271.814, 6902900.183], [624342.554, 6904369.474], [622960.253, 6907154.988], [619516.589, 6913557.644], [618711.242, 6919371.21], [630128.715, 6921234.043], [631158.664, 6922113.32], [636900.765, 6917058.113], [639845.445, 6920265.03], [642812.498, 6921563.802], [642761.947, 6922622.43], [646251.081, 6922430.786]]]}}, {\\\"id\\\": \\\"108\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Paltamo\\\", \\\"elakelaisten_osuus\\\": 40.1, \\\"freshwarea\\\": 220.85, \\\"gml_id\\\": 1601100241, \\\"landarea\\\": 918.26, \\\"namefin\\\": \\\"Paltamo\\\", \\\"nameswe\\\": \\\"Paltamo\\\", \\\"natcode\\\": \\\"578\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1139.11}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[545674.519, 7161241.341], [546051.693, 7161602.98], [546482.096, 7161460.973], [546511.873, 7161168.834], [546766.725, 7160903.558], [546714.292, 7160706.931], [547091.711, 7160431.181], [546733.934, 7160082.681], [550842.977, 7155574.74], [550597.419, 7155357.625], [550396.056, 7152018.754], [551889.277, 7149806.046], [553169.909, 7149001.628], [553102.218, 7149590.896], [554571.818, 7149314.021], [554253.856, 7148304.563], [556036.393, 7147192.63], [556327.933, 7147748.572], [557260.463, 7146967.396], [557726.591, 7146064.733], [559031.883, 7145678.855], [559167.627, 7146114.198], [560499.92, 7145704.433], [563710.47, 7142608.613], [564034.838, 7142726.066], [564601.905, 7142418.953], [564711.141, 7142013.353], [564731.951, 7142002.513], [570594.488, 7139642.95], [566153.25, 7137942.105], [564702.16, 7134968.727], [562377.712, 7134585.701], [559907.893, 7135637.459], [558687.687, 7135470.306], [558444.19, 7134306.008], [556376.22, 7133485.754], [555109.2, 7133409.367], [554778.497, 7132843.339], [553775.564, 7131594.474], [548525.883, 7133696.606], [548064.303, 7134141.997], [547521.275, 7133672.34], [545113.067, 7135843.595], [538276.348, 7137945.896], [536981.87, 7136151.212], [531477.329, 7136138.285], [527689.922, 7131461.795], [523382.565, 7132961.268], [520667.276, 7129721.824], [514821.627, 7130717.809], [509082.061, 7131608.553], [509265.867, 7136019.588], [511946.855, 7139411.456], [512112.812, 7141506.091], [510620.963, 7143647.636], [510939.712, 7143854.233], [510690.105, 7144191.56], [510393.163, 7143999.099], [509865.004, 7144808.627], [508665.758, 7146167.43], [508904.711, 7147829.831], [509880.062, 7149855.804], [511135.795, 7150620.918], [510764.101, 7151093.151], [510995.096, 7151443.405], [511923.697, 7151030.882], [513081.099, 7151636.494], [514247.804, 7152972.912], [516681.369, 7158350.254], [519019.269, 7160802.864], [519280.693, 7161085.027], [519740.598, 7160977.558], [520038.984, 7159302.402], [521613.402, 7157577.726], [521000.98, 7157564.453], [521009.059, 7157327.187], [521905.18, 7156748.02], [522076.378, 7157071.896], [522612.858, 7157172.607], [522994.41, 7157786.937], [523027.953, 7158074.37], [523456.238, 7158236.792], [523525.487, 7158172.529], [523541.993, 7157991.07], [523240.907, 7157918.006], [523460.871, 7157756.166], [523600.675, 7155419.797], [525683.52, 7153129.324], [526181.794, 7153705.651], [526933.446, 7153623.525], [527010.103, 7154700.239], [527949.288, 7154662.759], [528344.347, 7154880.994], [529688.209, 7153332.716], [532635.137, 7155938.422], [534324.424, 7156851.226], [536251.525, 7156219.359], [536867.191, 7156638.736], [536739.54, 7156933.269], [539852.48, 7159031.591], [541695.419, 7161633.333], [544834.359, 7162161.172], [545674.519, 7161241.341]]]}}, {\\\"id\\\": \\\"109\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lemp\\\\u00e4\\\\u00e4l\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 19.5, \\\"freshwarea\\\": 37.48, \\\"gml_id\\\": 1601100650, \\\"landarea\\\": 269.58, \\\"namefin\\\": \\\"Lemp\\\\u00e4\\\\u00e4l\\\\u00e4\\\", \\\"nameswe\\\": \\\"Lemp\\\\u00e4\\\\u00e4l\\\\u00e4\\\", \\\"natcode\\\": \\\"418\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 307.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[327513.337, 6815227.089], [329786.424, 6814912.769], [329943.277, 6814696.758], [330545.508, 6814802.112], [334112.121, 6814346.136], [337790.156, 6804830.894], [336853.096, 6804453.268], [337216.54, 6803488.529], [336421.911, 6802631.684], [337509.613, 6801883.496], [334831.925, 6798988.563], [333299.183, 6796909.661], [330371.372, 6793839.079], [328844.117, 6792661.711], [327636.528, 6792948.991], [327365.606, 6793328.274], [326294.864, 6794191.574], [326314.438, 6794988.173], [325843.842, 6794740.82], [325496.362, 6795681.713], [325014.538, 6796004.595], [324589.445, 6796757.176], [324977.484, 6797413.835], [324745.435, 6797972.217], [324458.217, 6798035.259], [324707.898, 6798537.66], [324646.934, 6798826.654], [324019.518, 6799588.238], [323249.59, 6800139.654], [322480.919, 6800304.33], [322088.838, 6799627.526], [321444.853, 6799619.42], [321171.248, 6800295.921], [320944.472, 6800498.142], [321315.657, 6801675.613], [321868.994, 6802181.529], [321842.309, 6802618.305], [320875.409, 6803837.524], [318262.334, 6804714.172], [315480.728, 6807577.389], [315399.676, 6808137.51], [317226.145, 6811762.33], [318052.532, 6812526.437], [321555.346, 6812697.22], [326191.538, 6815267.876], [327513.337, 6815227.089]]]}}, {\\\"id\\\": \\\"110\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Suomussalmi\\\", \\\"elakelaisten_osuus\\\": 43.2, \\\"freshwarea\\\": 587.03, \\\"gml_id\\\": 1601100557, \\\"landarea\\\": 5270.56, \\\"namefin\\\": \\\"Suomussalmi\\\", \\\"nameswe\\\": \\\"Suomussalmi\\\", \\\"natcode\\\": \\\"777\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5857.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[615938.18, 7265151.534], [615908.356, 7265294.24], [616225.686, 7265459.776], [616445.737, 7265640.549], [616757.784, 7265796.555], [616806.325, 7266121.958], [617086.189, 7266224.705], [616991.952, 7266316.878], [616770.279, 7266427.995], [616771.666, 7266543.907], [617831.862, 7267193.629], [622744.543, 7266448.483], [624666.384, 7266501.39], [625513.142, 7266241.751], [625891.768, 7266290.583], [626210.365, 7266254.637], [626222.252, 7266253.296], [626850.681, 7266542.107], [627450.6, 7266675.5], [627256.573, 7265018.873], [626569.0, 7263862.5], [626655.5, 7255813.4], [626966.751, 7252888.386], [627803.1, 7249957.5], [623400.7, 7243261.2], [621747.6, 7241710.3], [621471.0, 7239929.5], [623106.2, 7236834.7], [626223.3, 7236883.7], [628280.4, 7236409.9], [629196.9, 7236794.9], [631681.6, 7236232.5], [633720.8, 7235464.3], [634990.7, 7234533.0], [635429.5, 7233066.2], [632198.3, 7227486.3], [633724.6, 7225799.5], [633842.3, 7225924.9], [634036.0, 7225996.4], [634190.7, 7226178.2], [634388.4, 7226182.4], [634396.5, 7226090.9], [633851.6, 7225660.1], [636031.6, 7223292.5], [634864.0, 7223084.3], [633003.7, 7221680.2], [628392.1, 7221406.9], [627419.4, 7220539.4], [623570.8, 7217777.3], [623201.5, 7212428.4], [622571.5, 7210423.9], [623670.6, 7206520.3], [623432.9, 7202901.6], [623678.0, 7201812.4], [625318.7, 7196194.9], [627133.6, 7194328.2], [628052.9, 7193044.9], [627561.6, 7190969.5], [630174.5, 7187843.2], [636309.6, 7188115.7], [636788.2, 7188411.9], [637658.2, 7188596.6], [642312.9, 7188950.8], [642871.0, 7188611.4], [644561.2, 7188846.2], [646732.9, 7186842.9], [646998.6, 7185847.5], [646741.8, 7185764.9], [644765.0, 7183087.6], [645499.6, 7179979.7], [649765.8, 7173042.2], [649570.9, 7171439.8], [649088.2, 7170432.3], [646056.4, 7169096.2], [643098.6, 7165870.1], [643118.816, 7165817.783], [641834.752, 7166148.916], [625313.669, 7170409.411], [621828.486, 7167999.239], [620982.706, 7168855.618], [619866.238, 7167998.373], [620186.781, 7167527.254], [619749.105, 7167081.296], [620042.534, 7166763.497], [619137.737, 7166137.659], [617833.942, 7162404.442], [612257.089, 7167365.002], [609096.649, 7168402.873], [602916.997, 7172428.8], [601036.981, 7173615.517], [599595.199, 7173868.48], [589552.721, 7177351.17], [586187.938, 7176802.353], [579589.937, 7181790.21], [576852.539, 7185294.712], [576342.544, 7185245.312], [576428.494, 7185838.98], [573861.767, 7189126.427], [561263.377, 7197755.394], [560548.555, 7202491.651], [559908.791, 7203137.462], [560402.692, 7203452.755], [559441.265, 7209798.393], [556561.484, 7213288.808], [556678.318, 7213674.694], [556210.299, 7213713.631], [554486.911, 7215803.646], [554695.624, 7216202.344], [554384.994, 7216264.934], [554319.663, 7216007.949], [553077.824, 7217515.782], [553364.488, 7220858.805], [556554.953, 7223754.046], [557192.335, 7226562.044], [556083.804, 7231796.448], [554543.858, 7232278.434], [554481.148, 7232071.985], [546561.028, 7233474.266], [548317.3, 7235438.073], [554298.02, 7236856.128], [559106.224, 7238007.101], [559299.671, 7237504.328], [559641.62, 7237616.474], [560149.684, 7237990.535], [560018.262, 7238222.794], [569207.34, 7240114.89], [569333.328, 7239407.009], [569800.244, 7239076.385], [570246.164, 7239141.101], [569664.274, 7239643.531], [569578.319, 7240192.322], [574191.174, 7241089.021], [574336.944, 7241519.897], [575034.507, 7241361.841], [575264.439, 7242016.676], [574808.037, 7242867.796], [575132.641, 7243796.944], [574765.204, 7244229.287], [575789.405, 7248864.655], [577047.433, 7250918.42], [576524.028, 7252846.658], [583624.765, 7256312.579], [583615.018, 7256330.741], [582425.877, 7256505.405], [582413.448, 7256791.434], [583196.96, 7256812.227], [583134.771, 7257341.58], [583678.002, 7257494.625], [583991.22, 7256490.235], [590659.529, 7259723.006], [594831.592, 7258751.668], [598101.335, 7259984.537], [599437.782, 7260034.712], [599444.706, 7260302.821], [598353.906, 7260272.729], [599590.245, 7261696.622], [600218.717, 7261466.765], [600914.546, 7261348.209], [600963.227, 7261599.338], [600687.439, 7261608.35], [600345.914, 7261905.79], [599768.382, 7261886.049], [601224.189, 7263582.43], [601324.738, 7262926.069], [601459.355, 7262915.473], [601807.325, 7263795.589], [601598.108, 7263985.379], [602704.15, 7265272.506], [602324.006, 7268038.776], [607264.126, 7268485.668], [615938.18, 7265151.534]]]}}, {\\\"id\\\": \\\"111\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Iitti\\\", \\\"elakelaisten_osuus\\\": 35.1, \\\"freshwarea\\\": 97.3, \\\"gml_id\\\": 1601100230, \\\"landarea\\\": 589.79, \\\"namefin\\\": \\\"Iitti\\\", \\\"nameswe\\\": \\\"Iitti\\\", \\\"natcode\\\": \\\"142\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 687.09}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[446535.754, 6771133.373], [445626.315, 6772778.394], [447598.506, 6773765.925], [446535.754, 6771133.373]]], [[[453782.169, 6780409.618], [454230.123, 6778164.035], [455122.835, 6778478.314], [458764.596, 6777509.207], [458825.647, 6777491.653], [459860.465, 6775512.088], [459920.876, 6774748.233], [460403.768, 6774765.026], [460751.983, 6774599.446], [461269.325, 6774930.211], [462858.51, 6774862.664], [460459.918, 6770786.289], [459438.244, 6767467.524], [460305.906, 6764308.612], [461383.968, 6764434.971], [462430.144, 6763377.659], [462919.849, 6763877.362], [463068.213, 6763248.589], [463463.845, 6763552.382], [463817.09, 6762980.13], [464142.075, 6762916.549], [464240.506, 6763286.482], [464639.057, 6763016.282], [465145.039, 6765472.887], [466153.13, 6765816.957], [466245.392, 6766072.754], [466839.051, 6766033.176], [467632.831, 6765181.927], [467832.85, 6764751.403], [468807.256, 6764268.008], [470413.303, 6764845.289], [470818.041, 6764492.036], [473201.22, 6763979.869], [472702.897, 6761851.318], [473207.48, 6760355.137], [473364.59, 6759954.864], [473791.312, 6759904.596], [473955.913, 6758492.584], [473734.364, 6757955.521], [474114.992, 6757342.122], [475134.653, 6756121.851], [474822.522, 6755929.995], [474942.337, 6755214.215], [475299.528, 6749932.349], [474945.368, 6748602.566], [474679.123, 6748600.897], [473034.053, 6748743.988], [472823.446, 6748706.482], [472657.557, 6748780.772], [472362.524, 6748798.791], [471467.482, 6749045.473], [471204.223, 6749223.624], [470888.288, 6749233.451], [470677.405, 6748823.155], [473441.11, 6745133.465], [472105.668, 6744017.877], [470952.551, 6743807.487], [471327.172, 6743280.385], [470231.717, 6742485.492], [469346.412, 6742887.586], [468927.897, 6742464.818], [468020.549, 6742041.189], [467242.312, 6741907.138], [466200.093, 6741287.426], [466285.812, 6740873.678], [467154.579, 6738367.91], [465591.364, 6737198.931], [465911.79, 6736341.409], [462123.921, 6735514.3], [461849.399, 6735056.552], [461543.239, 6735028.71], [460949.499, 6735589.409], [460623.053, 6735597.921], [460274.292, 6736314.562], [459666.316, 6736543.857], [459333.523, 6736399.056], [459287.08, 6734961.069], [457981.694, 6734948.182], [456859.041, 6736092.211], [456571.912, 6740982.234], [454713.071, 6742905.856], [452025.634, 6744479.962], [451709.739, 6744168.683], [450801.141, 6744113.329], [449867.017, 6744814.535], [450017.754, 6745276.652], [449932.587, 6745690.084], [450284.344, 6746431.287], [450656.106, 6747555.583], [450848.981, 6747842.014], [451326.445, 6748288.808], [451737.586, 6748347.511], [452341.529, 6748597.606], [452214.362, 6749423.102], [451900.68, 6749837.966], [451894.146, 6750514.422], [453348.47, 6752760.689], [454465.813, 6754038.089], [454954.81, 6755206.326], [449069.101, 6756033.111], [448153.855, 6760150.536], [448568.524, 6760574.34], [448466.122, 6761247.198], [449254.752, 6761528.176], [449480.745, 6761169.363], [449251.573, 6760789.862], [449472.457, 6760199.114], [449989.709, 6759953.244], [452204.899, 6761389.198], [452478.774, 6763996.748], [453144.291, 6766188.173], [452531.368, 6767244.204], [452343.708, 6767809.405], [452481.207, 6768239.995], [451553.733, 6768545.944], [451672.807, 6768825.894], [451835.294, 6771641.149], [448550.461, 6773623.866], [448838.598, 6774406.185], [448239.54, 6774790.021], [448631.368, 6774964.719], [448832.449, 6775428.737], [448758.183, 6776577.502], [451736.799, 6778728.477], [453782.169, 6780409.618]]]]}}, {\\\"id\\\": \\\"112\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hein\\\\u00e4vesi\\\", \\\"elakelaisten_osuus\\\": 45.1, \\\"freshwarea\\\": 289.62, \\\"gml_id\\\": 1601100139, \\\"landarea\\\": 1029.96, \\\"namefin\\\": \\\"Hein\\\\u00e4vesi\\\", \\\"nameswe\\\": \\\"Hein\\\\u00e4vesi\\\", \\\"natcode\\\": \\\"090\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1319.58}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[585838.41, 6947597.643], [591806.631, 6946786.153], [595646.042, 6942395.353], [598795.529, 6940509.266], [599881.115, 6939946.668], [599782.285, 6938646.182], [600944.254, 6937917.129], [601908.234, 6936562.687], [602964.52, 6935965.009], [603288.364, 6935459.366], [604538.268, 6934929.606], [604664.828, 6934744.868], [604859.862, 6933709.92], [603032.112, 6933153.57], [603864.674, 6932860.58], [604210.081, 6932528.472], [604696.647, 6932519.445], [604668.03, 6932130.793], [605077.388, 6932230.637], [605932.281, 6931813.756], [606721.362, 6930972.747], [607318.648, 6930724.794], [608565.739, 6931012.163], [609128.315, 6930366.664], [608499.062, 6929377.352], [607673.787, 6925423.802], [607489.861, 6923163.68], [608764.279, 6922297.35], [608999.319, 6921748.925], [608707.992, 6921218.783], [608308.424, 6920915.469], [608652.317, 6920556.323], [608644.615, 6920183.097], [609797.981, 6919374.967], [612018.017, 6919096.63], [612569.223, 6917693.335], [612969.094, 6917159.583], [612795.189, 6916971.681], [612994.501, 6916505.676], [612470.235, 6916505.098], [612281.45, 6916194.189], [611875.448, 6916105.383], [611773.839, 6915693.888], [612301.601, 6915338.254], [611813.406, 6914275.291], [611633.985, 6914099.06], [611689.128, 6913781.463], [612174.122, 6913547.465], [612313.37, 6913054.212], [611088.831, 6912872.824], [610061.359, 6912362.89], [609522.29, 6912616.673], [609156.826, 6913486.666], [608193.916, 6914136.811], [606686.682, 6912965.819], [606820.185, 6912634.7], [605757.718, 6911626.959], [604477.528, 6912537.573], [603838.969, 6912774.996], [603880.838, 6912267.078], [602910.696, 6910362.572], [601603.144, 6910192.73], [600254.493, 6908663.442], [601193.338, 6909039.881], [602293.542, 6908110.351], [601761.099, 6907553.248], [601026.758, 6908263.057], [600391.455, 6907544.063], [601243.225, 6906545.713], [600685.993, 6905778.115], [600317.407, 6904777.746], [600211.888, 6904115.278], [599895.119, 6903886.845], [599640.93, 6904441.281], [598055.181, 6904986.29], [596961.627, 6903930.018], [596589.617, 6903739.484], [595927.682, 6904998.276], [595348.621, 6905318.597], [594187.255, 6905332.276], [592905.561, 6906415.375], [592625.815, 6907353.45], [592289.706, 6908130.639], [590936.648, 6907357.79], [590932.573, 6907098.973], [591281.377, 6907080.634], [591288.03, 6906636.355], [590890.457, 6906406.456], [590881.388, 6905304.296], [590669.451, 6904611.474], [590719.665, 6903621.69], [591708.226, 6901604.331], [593308.936, 6898932.266], [592579.054, 6898281.328], [590376.916, 6899571.399], [590109.837, 6900263.92], [589169.839, 6901596.014], [588766.648, 6901317.732], [588737.246, 6900989.336], [588909.078, 6900766.84], [588474.989, 6900270.072], [586255.473, 6901934.997], [585905.795, 6901046.669], [585095.301, 6902016.088], [583498.237, 6903335.49], [583155.8, 6904390.447], [582177.824, 6905205.876], [581994.802, 6906165.651], [581212.802, 6906671.09], [581394.147, 6907305.089], [581374.728, 6907575.513], [581040.96, 6907952.349], [580467.686, 6907715.013], [579865.476, 6908197.131], [579778.52, 6908706.513], [579295.114, 6908893.739], [579099.875, 6909351.081], [577773.636, 6910007.942], [577702.241, 6910328.247], [576417.32, 6910514.968], [576842.69, 6909754.888], [574526.94, 6910305.837], [573723.136, 6911627.151], [574095.681, 6912388.745], [574011.512, 6913070.868], [574445.333, 6913590.76], [574240.342, 6913834.922], [572367.229, 6914767.549], [571629.621, 6914533.371], [571131.368, 6914751.605], [570686.991, 6914192.068], [568071.215, 6914370.703], [568165.876, 6914414.586], [568272.532, 6914580.719], [568499.739, 6914766.046], [568456.174, 6914849.629], [568348.729, 6914936.706], [568261.305, 6914972.073], [568204.356, 6915326.516], [568288.721, 6915547.827], [568237.14, 6915873.895], [568335.101, 6916047.721], [568628.705, 6916407.014], [568653.264, 6916564.774], [568769.87, 6916720.292], [568755.548, 6916816.281], [568786.508, 6916896.133], [568741.379, 6917005.678], [568633.119, 6917069.12], [568582.394, 6917199.871], [568445.97, 6917327.957], [568448.011, 6917508.605], [567719.478, 6917741.784], [567386.648, 6917904.198], [566883.178, 6918221.934], [566392.975, 6918650.857], [566383.878, 6918822.188], [566573.9, 6918862.772], [566390.959, 6920779.097], [566102.532, 6920949.194], [565260.42, 6921526.684], [565246.927, 6921287.481], [564516.121, 6921775.878], [564482.334, 6921924.618], [564286.912, 6922039.77], [564581.189, 6922873.833], [565178.653, 6923319.371], [566396.946, 6924200.407], [566963.217, 6924081.759], [567100.693, 6925040.734], [566792.978, 6925766.875], [566668.428, 6925830.849], [566640.339, 6926008.377], [566057.174, 6926344.037], [565855.256, 6926346.535], [565834.031, 6926519.285], [566328.602, 6927551.317], [566253.688, 6927747.872], [566515.382, 6927810.249], [566706.605, 6927733.281], [566730.496, 6927527.464], [566936.213, 6927383.924], [567085.604, 6927291.184], [567206.457, 6927270.567], [567417.319, 6927192.105], [567590.848, 6927221.494], [567891.526, 6927324.554], [568215.092, 6927526.456], [568321.352, 6927502.208], [568387.576, 6927437.562], [568480.895, 6927382.181], [568598.244, 6927287.283], [568805.746, 6927203.383], [569067.623, 6927055.929], [569151.923, 6926995.144], [569216.091, 6926875.844], [569389.921, 6926816.37], [569451.296, 6926686.123], [569867.278, 6926302.758], [570039.335, 6926340.323], [570178.253, 6926327.882], [570269.052, 6926394.683], [570611.353, 6926492.36], [570832.118, 6926447.628], [570926.364, 6926381.693], [571015.538, 6926388.726], [571124.771, 6926378.47], [571276.911, 6926370.758], [571534.984, 6926948.731], [571430.088, 6927834.249], [571573.33, 6928089.771], [571816.148, 6928974.0], [571782.635, 6929041.878], [571636.953, 6929191.671], [571585.772, 6929288.23], [571519.08, 6929339.031], [571648.9, 6929467.7], [570710.498, 6930222.562], [570514.046, 6930645.851], [570595.853, 6930761.386], [570464.679, 6930882.45], [570451.739, 6930995.747], [570492.455, 6931148.229], [570591.814, 6931271.48], [570565.224, 6931483.994], [570629.097, 6931616.141], [570818.92, 6931781.176], [570979.455, 6931740.293], [571100.506, 6931646.532], [571462.751, 6931625.822], [571545.755, 6931923.154], [571670.567, 6932299.692], [571642.639, 6932514.148], [572122.683, 6933666.324], [572194.984, 6933883.494], [572097.209, 6934060.51], [572030.202, 6934219.24], [572075.126, 6934248.44], [572209.383, 6934224.023], [572346.537, 6934225.37], [572335.926, 6934292.977], [572402.52, 6934364.194], [572478.558, 6934474.964], [572458.369, 6934562.566], [572402.845, 6934680.152], [572311.148, 6934825.851], [572169.659, 6934884.532], [571921.057, 6935245.884], [571951.343, 6935520.274], [572091.485, 6935712.397], [572158.755, 6936117.034], [571852.276, 6936607.932], [571858.971, 6936881.921], [571945.135, 6937032.161], [571923.466, 6937236.227], [572237.13, 6937445.807], [572308.388, 6937695.511], [572417.683, 6937688.25], [572435.733, 6937810.866], [572546.353, 6937839.122], [572596.173, 6938012.153], [572624.804, 6938131.913], [572682.038, 6938203.199], [572667.089, 6938286.798], [572548.312, 6938304.954], [572425.188, 6938350.299], [572345.773, 6938436.081], [572273.248, 6938574.725], [572148.732, 6938609.699], [572162.442, 6938702.755], [572081.217, 6938802.04], [572001.767, 6938925.877], [571993.4, 6939024.957], [572066.842, 6939019.324], [572177.727, 6938967.96], [572356.447, 6938836.808], [572425.494, 6938908.405], [572527.751, 6938984.422], [572635.141, 6938960.494], [572767.548, 6938918.698], [572944.182, 6938888.491], [573142.752, 6938669.861], [573455.703, 6938524.714], [573677.769, 6938374.28], [573763.69, 6938370.244], [574240.591, 6938653.942], [574605.744, 6938456.268], [574754.328, 6938361.377], [574917.096, 6938201.413], [575078.427, 6938136.144], [575137.0, 6938055.423], [575379.092, 6937875.76], [575840.354, 6938208.815], [575941.414, 6938077.769], [577038.081, 6937298.294], [577503.907, 6936817.082], [577771.506, 6936644.535], [577981.997, 6936382.85], [578213.164, 6936202.403], [579429.532, 6938451.895], [579070.885, 6938659.453], [578916.722, 6938635.023], [578449.882, 6938903.444], [578342.396, 6938895.327], [578046.59, 6939076.341], [577878.327, 6939115.356], [577837.931, 6939293.517], [577549.886, 6939485.154], [577361.71, 6939329.881], [577185.189, 6939342.238], [576800.107, 6939426.604], [575358.681, 6940004.235], [575737.419, 6940443.723], [576365.61, 6940622.383], [577636.468, 6940279.889], [578286.654, 6940360.357], [578939.485, 6940197.838], [579142.681, 6940543.712], [580138.826, 6941657.974], [581052.878, 6939796.349], [582070.838, 6940774.639], [582367.609, 6940740.846], [582902.44, 6941673.925], [583387.674, 6942040.794], [583460.984, 6942754.805], [582049.398, 6943203.253], [583817.125, 6944444.13], [584007.664, 6945002.859], [584215.715, 6946305.723], [584207.172, 6947549.328], [584812.796, 6948464.778], [585838.41, 6947597.643]]]}}, {\\\"id\\\": \\\"113\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Muonio\\\", \\\"elakelaisten_osuus\\\": 30.5, \\\"freshwarea\\\": 134.01, \\\"gml_id\\\": 1601100218, \\\"landarea\\\": 1905.96, \\\"namefin\\\": \\\"Muonio\\\", \\\"nameswe\\\": \\\"Muonio\\\", \\\"natcode\\\": \\\"498\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2039.97}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[366703.026, 7563861.713], [373641.706, 7562773.413], [373979.465, 7562673.076], [373957.838, 7562568.272], [374291.077, 7562404.203], [374288.174, 7562071.652], [374368.589, 7561884.254], [374320.716, 7561489.941], [374124.797, 7561073.615], [373914.93, 7561008.531], [373693.896, 7560676.09], [373604.112, 7560392.13], [373490.922, 7560270.537], [373711.623, 7558896.763], [379813.189, 7561172.107], [379979.483, 7560798.847], [380159.571, 7560355.615], [380520.913, 7560256.536], [380640.947, 7560054.727], [379097.468, 7557794.67], [379044.904, 7556949.247], [379273.568, 7556547.971], [379350.678, 7556280.78], [379319.781, 7556014.079], [380642.156, 7555502.766], [382081.429, 7556040.319], [383362.01, 7554116.119], [382196.687, 7551453.718], [381885.608, 7549851.053], [383767.499, 7548115.783], [383569.929, 7546609.318], [383322.917, 7546306.567], [383301.227, 7545991.44], [383050.239, 7545746.393], [383085.19, 7544452.224], [382444.682, 7542078.784], [380660.778, 7541695.805], [380829.963, 7540868.011], [380630.408, 7540867.148], [380424.342, 7540591.727], [380542.073, 7540227.834], [380827.34, 7540054.562], [381306.226, 7538763.711], [381452.654, 7537931.685], [380564.244, 7537118.985], [380288.908, 7536873.792], [380314.128, 7536469.729], [380811.905, 7532636.628], [381919.688, 7524538.962], [382449.333, 7520723.918], [382714.601, 7519149.066], [383443.489, 7515066.04], [385399.515, 7503625.564], [384193.776, 7503812.015], [379679.052, 7504517.657], [379009.565, 7505384.475], [378777.925, 7505202.139], [379241.63, 7504585.859], [375438.982, 7505181.063], [372473.55, 7502858.74], [372423.529, 7503073.219], [372116.262, 7503033.984], [372201.996, 7502656.03], [360235.071, 7493341.848], [360282.991, 7493092.772], [361891.647, 7491861.658], [361887.139, 7491645.558], [359795.101, 7493001.799], [352073.744, 7487075.113], [352081.969, 7486903.763], [351873.453, 7486860.983], [351729.836, 7486799.469], [351659.919, 7486740.089], [351572.036, 7486586.506], [351534.045, 7486572.866], [351430.4, 7486416.51], [351087.998, 7486074.478], [351052.126, 7485981.63], [351009.315, 7485679.997], [350924.504, 7485527.527], [350750.372, 7485385.579], [350646.795, 7485348.244], [350503.507, 7485334.545], [350155.553, 7485365.228], [350041.589, 7485406.675], [349873.765, 7485528.463], [349642.881, 7485822.239], [349384.978, 7485991.764], [349174.387, 7486086.955], [348764.454, 7486183.24], [348662.422, 7486278.606], [348554.408, 7486328.68], [348431.274, 7486422.254], [348068.658, 7486880.549], [348020.066, 7486908.474], [347837.058, 7486961.341], [347764.511, 7487005.592], [347676.833, 7487122.122], [347535.749, 7487409.031], [347422.548, 7487530.45], [347330.788, 7487573.881], [346785.188, 7487745.134], [346646.584, 7487830.182], [346566.04, 7487950.406], [346437.883, 7488307.583], [346420.071, 7488415.937], [346396.912, 7489016.03], [346370.836, 7489160.182], [346056.669, 7489695.982], [345985.808, 7490018.78], [346098.958, 7490449.242], [346217.749, 7490701.129], [346386.406, 7490974.515], [346553.999, 7491117.389], [346592.711, 7491171.721], [346596.061, 7491227.805], [346518.311, 7491592.358], [346534.182, 7491635.564], [346714.701, 7491792.712], [347176.682, 7491883.266], [347321.159, 7491949.228], [347541.653, 7492118.76], [347650.083, 7492251.36], [347747.647, 7492330.222], [347887.147, 7492533.058], [347914.762, 7492607.21], [347874.999, 7492958.042], [347934.857, 7493371.506], [347980.815, 7493480.942], [348191.242, 7493683.474], [348340.512, 7493725.174], [348412.721, 7493774.42], [348655.256, 7494025.694], [348788.676, 7494204.598], [348884.422, 7494234.036], [349074.037, 7494401.691], [349233.384, 7494489.966], [349441.128, 7494551.439], [349606.582, 7494649.184], [349717.966, 7494736.896], [349762.816, 7494801.526], [349816.898, 7495238.984], [349850.234, 7495330.849], [349906.172, 7495409.582], [350094.744, 7495544.302], [350147.292, 7495599.777], [350176.49, 7495790.659], [350169.257, 7495906.209], [350029.853, 7496127.698], [349891.156, 7496514.703], [349790.145, 7496634.3], [349614.065, 7496713.174], [349549.532, 7496761.968], [349432.634, 7496975.821], [349406.046, 7497159.581], [349305.733, 7497400.879], [349230.666, 7497659.361], [349206.811, 7497830.785], [349084.663, 7498142.621], [349088.203, 7498266.092], [349119.818, 7498347.518], [349242.91, 7498457.871], [349587.734, 7498690.485], [349693.39, 7498746.133], [349878.591, 7498758.675], [350174.468, 7498727.747], [350287.636, 7498769.327], [350376.053, 7498837.312], [350418.918, 7498847.304], [350542.879, 7498804.676], [350663.372, 7498728.354], [350716.503, 7498669.477], [350811.531, 7498509.264], [350905.299, 7498441.349], [351105.518, 7498350.279], [351202.282, 7498342.276], [351317.257, 7498374.023], [351420.454, 7498430.284], [351552.07, 7498548.486], [351738.638, 7498887.565], [352022.349, 7499257.876], [352148.572, 7499369.213], [352206.039, 7499493.466], [352219.063, 7499649.897], [352265.532, 7499777.176], [352362.617, 7499835.537], [352593.935, 7499895.545], [352720.103, 7499974.022], [352782.792, 7500031.737], [352852.525, 7500218.84], [353006.046, 7500433.224], [353037.847, 7500605.0], [352974.003, 7501122.146], [352989.677, 7501327.872], [353025.946, 7501468.336], [352981.277, 7501909.628], [352995.692, 7502155.291], [352966.414, 7502319.442], [352887.905, 7502539.98], [352877.294, 7502762.973], [352900.428, 7502827.808], [353030.602, 7503003.931], [353106.182, 7503336.182], [353172.186, 7503483.963], [353266.898, 7503787.747], [353305.591, 7503838.443], [353397.662, 7503890.549], [353512.273, 7504121.363], [353638.252, 7504300.441], [353813.266, 7504448.768], [353854.635, 7504550.379], [353849.682, 7504610.994], [353799.591, 7504717.164], [353737.515, 7504798.869], [353581.505, 7504926.74], [353515.305, 7504926.591], [353319.481, 7504883.797], [353211.867, 7504931.614], [353134.755, 7505043.949], [353046.375, 7505251.356], [353031.875, 7505320.24], [353038.932, 7505370.569], [353140.676, 7505621.813], [353142.918, 7505761.494], [353090.102, 7505936.211], [352963.46, 7506217.055], [352885.472, 7506539.947], [352860.312, 7506585.831], [352794.414, 7506631.93], [352707.821, 7506741.988], [352587.919, 7506946.625], [352327.845, 7507326.094], [352166.223, 7507603.719], [352101.126, 7507682.902], [352003.017, 7507915.214], [351880.14, 7508348.528], [351672.334, 7508801.019], [351632.85, 7508976.665], [351516.523, 7509148.688], [351410.571, 7509443.235], [351306.565, 7509651.098], [351270.747, 7509808.71], [351280.174, 7509976.587], [351320.676, 7510153.241], [351381.085, 7510317.987], [351432.96, 7510412.471], [351505.15, 7510497.451], [351544.225, 7510588.968], [351562.71, 7510725.6], [351567.14, 7511008.395], [351658.212, 7511434.544], [351645.154, 7511649.077], [351602.641, 7511874.765], [351494.224, 7512073.654], [351370.249, 7512235.105], [351340.256, 7512328.413], [351329.756, 7512480.984], [351345.483, 7512618.682], [351381.297, 7512722.407], [351473.182, 7512871.747], [351510.279, 7512982.825], [351513.514, 7513068.956], [351497.788, 7513163.988], [351390.761, 7513357.916], [351112.61, 7513562.161], [350969.13, 7513699.748], [350915.868, 7513789.148], [350903.865, 7513857.66], [350902.372, 7513935.666], [350926.33, 7513997.502], [351108.992, 7514199.634], [351186.593, 7514343.996], [351204.61, 7514499.907], [351203.045, 7514705.933], [351230.195, 7514791.057], [351249.37, 7514946.043], [351237.217, 7515025.478], [351057.502, 7515314.611], [351009.75, 7515471.356], [351098.1, 7516345.345], [351150.635, 7516450.512], [351403.65, 7516703.831], [351486.9, 7516868.941], [351508.356, 7516985.126], [351427.619, 7517255.049], [351325.816, 7517393.078], [351252.276, 7517617.801], [351076.847, 7517858.04], [351046.359, 7518002.871], [351073.095, 7518134.913], [351122.598, 7518242.43], [351465.124, 7518646.934], [351559.206, 7518816.355], [351727.669, 7519286.705], [351858.803, 7519732.985], [351859.51, 7519825.11], [351809.999, 7520028.22], [351814.012, 7520206.318], [351783.08, 7520450.344], [351803.039, 7520507.522], [351902.034, 7520664.345], [351922.294, 7520758.539], [351645.215, 7521731.244], [351631.917, 7521929.089], [351685.043, 7522307.585], [351717.04, 7522404.496], [351766.497, 7522467.724], [351903.849, 7522539.816], [351943.275, 7522578.045], [352023.97, 7522720.139], [352062.502, 7522824.42], [352083.443, 7522927.415], [352101.237, 7523323.725], [352190.563, 7523795.916], [352184.452, 7523918.679], [352150.581, 7524037.596], [352075.216, 7524161.019], [351784.238, 7524547.877], [351652.354, 7524944.427], [351634.124, 7525125.274], [351656.508, 7525298.71], [351591.546, 7525565.767], [351608.021, 7525923.968], [351525.081, 7526146.674], [351456.62, 7526634.047], [351445.405, 7526770.223], [351488.909, 7527030.83], [351629.069, 7527195.548], [351721.58, 7527333.748], [351782.55, 7527512.7], [351882.03, 7527709.328], [351916.676, 7527852.167], [351919.801, 7528058.744], [351868.078, 7528756.352], [351873.628, 7528986.228], [351809.336, 7529399.916], [351814.539, 7529533.632], [351831.916, 7529589.882], [351874.619, 7529639.731], [352000.039, 7529719.805], [352159.988, 7529781.09], [352229.616, 7529855.319], [352280.153, 7529937.623], [352376.054, 7530246.361], [352450.265, 7531024.062], [352515.599, 7531219.52], [352659.867, 7531871.34], [352691.922, 7531930.201], [352830.18, 7532062.308], [352896.596, 7532264.595], [353063.521, 7532412.887], [353118.027, 7532492.317], [353181.169, 7532688.65], [353210.146, 7532941.285], [353217.252, 7533228.373], [353300.231, 7533493.743], [353389.132, 7533584.194], [353470.391, 7533741.326], [353579.504, 7533853.617], [353722.668, 7534113.901], [353858.362, 7534242.262], [354021.533, 7534341.453], [354269.246, 7534429.538], [354528.673, 7534558.932], [354709.046, 7534614.501], [354826.696, 7534733.613], [354958.136, 7534830.589], [355037.482, 7534925.37], [355090.316, 7535040.107], [355132.451, 7535198.721], [355164.366, 7535409.296], [355234.371, 7535510.841], [355290.262, 7535548.591], [355404.0, 7535526.415], [355601.922, 7535399.463], [355649.636, 7535332.768], [355672.021, 7535229.183], [356055.164, 7534899.602], [356291.361, 7534882.057], [356437.788, 7534925.246], [356703.65, 7535104.811], [356750.877, 7535152.4], [356831.822, 7535433.916], [356916.478, 7535589.525], [356958.598, 7535731.759], [357060.179, 7535922.209], [357105.698, 7535969.985], [357231.844, 7536055.617], [357540.339, 7536186.685], [357722.345, 7536349.989], [357883.38, 7536370.699], [358024.505, 7536448.764], [358240.518, 7536518.405], [358409.193, 7536753.417], [358618.089, 7536869.186], [358927.012, 7537082.352], [359200.233, 7537376.398], [359244.418, 7537453.756], [359307.156, 7537746.547], [359369.293, 7537899.553], [359315.243, 7538271.508], [359334.439, 7538448.364], [359555.445, 7538850.576], [359607.46, 7539055.423], [359704.78, 7539307.143], [359891.315, 7539680.511], [359948.162, 7539743.887], [360084.182, 7539786.035], [360152.283, 7539837.789], [360242.881, 7539994.27], [360269.223, 7540107.718], [360192.358, 7540281.379], [360120.145, 7540583.328], [360097.28, 7540768.781], [360068.581, 7540809.787], [359953.205, 7540886.628], [359897.357, 7540956.728], [359824.719, 7541065.902], [359750.956, 7541246.898], [359739.447, 7541406.567], [359827.336, 7541781.828], [359861.165, 7542108.246], [359811.086, 7542331.527], [359681.481, 7542521.267], [359476.703, 7542734.412], [359215.933, 7542940.031], [358421.813, 7543299.605], [358029.417, 7543560.473], [357854.354, 7543649.979], [357598.224, 7543732.237], [357524.279, 7543742.156], [357338.11, 7543729.65], [357106.18, 7543651.743], [356967.466, 7543631.826], [356809.941, 7543672.818], [356682.261, 7543761.053], [356580.805, 7543881.662], [356455.608, 7544103.044], [356236.627, 7544400.339], [356079.682, 7544677.339], [355858.764, 7544960.949], [355728.738, 7545191.064], [355605.119, 7545456.035], [355546.33, 7545629.909], [355412.805, 7545856.338], [355341.903, 7546021.012], [355212.405, 7546631.748], [355210.285, 7546744.006], [355233.102, 7546870.614], [355323.36, 7547103.299], [355339.445, 7547248.033], [355320.467, 7547430.759], [355255.147, 7547552.337], [355177.801, 7547627.493], [355083.572, 7547687.839], [354732.841, 7547839.428], [354453.675, 7548021.186], [354201.413, 7548137.318], [353982.287, 7548309.053], [353742.238, 7548541.077], [353526.379, 7548598.984], [353453.771, 7548645.535], [353335.194, 7548763.92], [353088.217, 7548823.314], [352969.22, 7548898.164], [352796.422, 7549138.207], [352620.82, 7549231.814], [352564.666, 7549282.591], [352452.051, 7549485.896], [352378.867, 7550003.221], [352388.513, 7550048.978], [352482.378, 7550199.764], [352517.4, 7550307.347], [352521.03, 7550434.809], [352467.505, 7550523.877], [351999.474, 7550940.176], [351972.027, 7550989.604], [351836.815, 7551128.576], [351651.739, 7551279.554], [351382.554, 7551361.873], [351084.588, 7551388.866], [350857.698, 7551513.413], [350659.072, 7551704.386], [350526.523, 7551757.794], [350339.723, 7551792.662], [350231.082, 7551845.49], [350067.499, 7551972.709], [349842.669, 7552072.283], [349725.408, 7552195.222], [349383.399, 7552636.214], [349277.278, 7552886.609], [349264.128, 7553033.018], [349384.426, 7553539.007], [349366.513, 7553647.013], [349280.547, 7553705.244], [349075.634, 7553733.188], [348964.091, 7553801.348], [348873.98, 7553901.309], [348809.754, 7554009.636], [348777.958, 7554129.927], [348753.66, 7554364.656], [348767.679, 7554533.874], [348884.892, 7554918.162], [348841.563, 7555059.256], [348684.416, 7555360.419], [348655.766, 7555644.586], [348500.95, 7556093.204], [348466.794, 7556301.771], [348513.969, 7556741.432], [348476.221, 7556879.197], [348338.209, 7557074.41], [348244.316, 7557409.716], [348197.747, 7557520.144], [347865.36, 7558118.38], [347648.62, 7558431.817], [347619.826, 7558502.803], [347590.44, 7559215.62], [347596.047, 7559424.065], [347542.591, 7559757.042], [347447.885, 7560064.785], [347318.147, 7560348.506], [347239.458, 7560475.382], [347241.181, 7560568.361], [347486.676, 7560991.116], [347490.561, 7561088.635], [347306.218, 7561537.735], [347150.834, 7561798.057], [347128.115, 7562063.743], [347177.505, 7562247.539], [347194.845, 7562392.917], [347136.451, 7562746.568], [347070.344, 7562868.101], [347005.544, 7562935.516], [346961.962, 7563025.884], [346955.534, 7563216.556], [346868.421, 7563399.311], [346767.829, 7563515.559], [346605.175, 7563573.084], [346593.274, 7563684.165], [346694.729, 7563834.768], [346706.985, 7564016.637], [346635.66, 7564114.379], [346532.826, 7564183.761], [346455.488, 7564201.693], [346215.827, 7564143.745], [346089.756, 7564150.12], [346029.23, 7564183.246], [345991.344, 7564267.302], [345947.232, 7564546.058], [345878.353, 7564702.22], [346012.513, 7564770.911], [347534.118, 7566871.463], [364844.569, 7567317.933], [366703.026, 7563861.713]]]}}, {\\\"id\\\": \\\"114\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Myrskyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 31.2, \\\"freshwarea\\\": 5.98, \\\"gml_id\\\": 1601100371, \\\"landarea\\\": 200.37, \\\"namefin\\\": \\\"Myrskyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"M\\\\u00f6rskom\\\", \\\"natcode\\\": \\\"504\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 206.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[441787.77, 6730507.194], [441865.744, 6729719.912], [442140.745, 6727798.489], [440101.12, 6722859.864], [443010.225, 6723999.737], [445064.563, 6723948.601], [445343.495, 6723529.062], [445688.448, 6722342.716], [446071.622, 6721496.355], [445900.712, 6720871.37], [445480.975, 6720421.356], [445195.098, 6720712.928], [444545.23, 6720857.284], [443609.975, 6720715.268], [443186.422, 6720337.258], [442309.739, 6720400.252], [442871.701, 6719425.925], [442791.169, 6718908.022], [443531.073, 6717831.949], [441795.1, 6715650.319], [440616.382, 6715428.295], [437176.779, 6715782.408], [435775.766, 6714002.618], [435590.55, 6713100.484], [435459.201, 6713354.279], [434572.646, 6715095.659], [432565.266, 6717622.634], [429272.666, 6719177.545], [428821.749, 6719098.472], [426631.036, 6720528.076], [428399.511, 6723047.982], [429817.425, 6724024.601], [431013.626, 6725191.642], [431598.603, 6730923.09], [432832.439, 6730966.031], [434481.46, 6731265.425], [436420.763, 6731601.905], [437790.956, 6733479.58], [440828.446, 6733856.824], [441787.77, 6730507.194]]]}}, {\\\"id\\\": \\\"115\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Padasjoki\\\", \\\"elakelaisten_osuus\\\": 45.1, \\\"freshwarea\\\": 206.74, \\\"gml_id\\\": 1601100477, \\\"landarea\\\": 523.11, \\\"namefin\\\": \\\"Padasjoki\\\", \\\"nameswe\\\": \\\"Padasjoki\\\", \\\"natcode\\\": \\\"576\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 729.85}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[419495.344, 6812537.654], [418372.933, 6808815.704], [422133.777, 6800320.791], [420573.818, 6797562.888], [417367.426, 6799248.617], [415159.045, 6798601.617], [413947.701, 6794570.542], [412800.114, 6793668.623], [412031.07, 6793211.331], [411900.174, 6792492.136], [411522.583, 6792291.329], [411351.2, 6791654.82], [407191.44, 6791454.757], [406423.283, 6792059.94], [404883.353, 6791690.027], [403543.819, 6790950.967], [402689.517, 6790866.083], [399751.312, 6792181.474], [397906.052, 6792789.629], [394254.442, 6791800.016], [393465.775, 6795936.92], [393517.903, 6796828.215], [392474.198, 6795559.451], [392181.837, 6795560.371], [391946.114, 6795514.402], [391804.107, 6795673.826], [391641.298, 6795661.212], [391526.551, 6795657.323], [391497.794, 6795496.653], [391405.227, 6795366.008], [391282.943, 6795343.309], [390980.983, 6795606.071], [391036.153, 6795730.213], [391064.297, 6795793.542], [390936.109, 6795894.74], [390740.405, 6796049.239], [390603.723, 6796294.21], [390502.112, 6796420.791], [390337.948, 6796669.394], [390275.523, 6796722.908], [390125.816, 6796837.836], [390103.81, 6797028.136], [390028.371, 6797038.283], [389905.976, 6797054.745], [389806.054, 6797139.516], [389698.46, 6797325.946], [389601.331, 6797445.971], [389449.216, 6797400.279], [389351.005, 6797324.848], [389375.089, 6797182.54], [389276.722, 6797043.667], [389131.114, 6797126.487], [389081.893, 6797154.483], [389006.368, 6797123.558], [388923.763, 6797089.734], [388887.103, 6797020.849], [388848.978, 6796949.211], [388792.46, 6796903.018], [388817.18, 6796701.256], [388824.632, 6796503.804], [388691.172, 6796519.235], [388622.0, 6796521.85], [388570.139, 6796523.811], [388683.629, 6799573.069], [388341.3, 6800758.633], [388021.012, 6801184.476], [387130.995, 6804231.441], [387750.625, 6806310.796], [388080.117, 6807878.177], [387510.303, 6808183.703], [388582.926, 6810889.311], [386765.327, 6813331.706], [386754.669, 6814022.98], [386268.65, 6814679.956], [385870.677, 6814943.999], [386067.469, 6815673.161], [385742.49, 6816954.87], [386004.133, 6817676.616], [391802.732, 6814673.992], [392785.961, 6814784.461], [397666.369, 6816267.577], [397436.175, 6817365.213], [397647.596, 6817412.642], [398430.243, 6816807.595], [399173.093, 6816764.684], [399743.645, 6816920.095], [400669.546, 6816252.386], [401279.595, 6815341.562], [403231.682, 6817419.279], [407094.355, 6816685.901], [408166.307, 6817487.311], [413145.502, 6817748.821], [416789.253, 6818020.26], [419495.344, 6812537.654]]]}}, {\\\"id\\\": \\\"116\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Varkaus\\\", \\\"elakelaisten_osuus\\\": 36.6, \\\"freshwarea\\\": 138.84, \\\"gml_id\\\": 1601100267, \\\"landarea\\\": 385.63, \\\"namefin\\\": \\\"Varkaus\\\", \\\"nameswe\\\": \\\"Varkaus\\\", \\\"natcode\\\": \\\"915\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 524.47}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[547624.706, 6916060.277], [548039.041, 6915540.391], [548157.994, 6915148.651], [549556.111, 6913088.206], [550907.595, 6911574.219], [551216.071, 6911453.77], [551598.256, 6911044.695], [552417.99, 6910039.552], [552855.615, 6909371.726], [552872.41, 6909055.554], [553229.42, 6908411.523], [552992.935, 6908072.659], [553083.402, 6907605.706], [553511.758, 6907524.679], [554662.424, 6906456.869], [555057.936, 6906337.272], [555575.634, 6906800.784], [555791.43, 6907881.851], [556076.113, 6908330.171], [555685.867, 6909118.649], [555377.839, 6909367.866], [555486.971, 6909679.472], [556345.095, 6909984.103], [556831.999, 6909747.202], [557164.263, 6909948.323], [556841.792, 6910219.911], [556859.981, 6910931.722], [558484.922, 6910887.152], [558713.326, 6911517.498], [560682.429, 6911007.818], [561066.571, 6911436.947], [561923.213, 6913467.43], [561593.244, 6914087.177], [562752.374, 6913990.524], [563391.216, 6913696.347], [564416.794, 6914919.158], [565033.242, 6915474.136], [565483.56, 6915280.818], [565534.457, 6914743.786], [565882.233, 6914493.212], [566296.786, 6914418.844], [566940.521, 6914042.925], [568071.215, 6914370.703], [570686.991, 6914192.068], [571131.368, 6914751.605], [571629.621, 6914533.371], [572367.229, 6914767.549], [574240.342, 6913834.922], [574445.333, 6913590.76], [574011.512, 6913070.868], [574095.681, 6912388.745], [573723.136, 6911627.151], [574526.94, 6910305.837], [576842.69, 6909754.888], [576417.32, 6910514.968], [577702.241, 6910328.247], [577773.636, 6910007.942], [579099.875, 6909351.081], [579295.114, 6908893.739], [579778.52, 6908706.513], [579865.476, 6908197.131], [580467.686, 6907715.013], [581040.96, 6907952.349], [581374.728, 6907575.513], [581394.147, 6907305.089], [581212.802, 6906671.09], [581994.802, 6906165.651], [582177.824, 6905205.876], [583155.8, 6904390.447], [583498.237, 6903335.49], [585095.301, 6902016.088], [585905.795, 6901046.669], [586279.404, 6898809.814], [586269.922, 6897984.796], [585580.921, 6898037.013], [584864.057, 6898603.896], [584782.655, 6897640.055], [585014.321, 6897458.661], [584925.668, 6897037.561], [585960.522, 6896574.876], [585545.237, 6895560.131], [585504.669, 6894755.692], [586161.654, 6893979.978], [585884.866, 6893796.331], [584979.064, 6894111.0], [584742.603, 6893961.945], [585012.721, 6892678.663], [584040.289, 6892824.633], [584631.09, 6891136.022], [584253.633, 6890939.409], [582520.981, 6893197.332], [582588.03, 6893618.326], [582304.399, 6893854.453], [581374.259, 6894141.672], [580868.756, 6895759.96], [580189.111, 6896275.529], [579310.086, 6895708.428], [579034.89, 6896194.896], [579050.822, 6896196.194], [579019.719, 6896221.716], [578274.261, 6897539.476], [576521.513, 6897469.199], [575272.311, 6898072.148], [572240.425, 6898837.522], [569025.613, 6899644.777], [568587.99, 6899506.13], [568310.797, 6900064.003], [568505.472, 6900213.797], [567815.591, 6900724.033], [566930.652, 6900182.247], [565987.711, 6900494.495], [565726.236, 6900342.176], [565750.132, 6899714.53], [565361.992, 6899207.833], [563758.348, 6898243.012], [562480.762, 6898943.022], [561402.99, 6900174.115], [560780.843, 6900271.071], [560585.027, 6899854.639], [559313.846, 6899726.782], [558450.388, 6900732.768], [558458.794, 6899806.343], [557616.836, 6899889.703], [557213.296, 6900335.32], [556754.083, 6900409.287], [556770.064, 6900777.628], [556204.757, 6900929.51], [556021.98, 6900527.134], [555737.296, 6900573.013], [555956.32, 6901030.814], [555068.568, 6901763.5], [554513.792, 6900833.998], [554199.723, 6900446.553], [552683.634, 6901264.211], [552826.871, 6901750.415], [550208.376, 6903197.985], [548731.247, 6904333.403], [547861.061, 6905775.648], [546949.928, 6906488.753], [546268.241, 6906808.407], [546209.941, 6906101.189], [546579.722, 6905691.287], [546027.566, 6905265.301], [545310.973, 6905720.662], [544913.856, 6906247.536], [544515.617, 6906323.902], [544058.106, 6905912.765], [543759.897, 6905264.121], [543234.046, 6905450.447], [542491.517, 6906537.087], [542498.032, 6907101.472], [541535.26, 6908285.396], [540847.892, 6909154.228], [538747.638, 6910593.53], [538366.594, 6910397.707], [538046.313, 6912439.876], [539876.568, 6914468.605], [539220.287, 6915339.175], [541199.529, 6914793.518], [541849.256, 6914916.699], [542777.24, 6913794.059], [543287.095, 6913707.173], [543410.485, 6914199.908], [543761.309, 6914397.342], [543888.13, 6914755.48], [544451.9, 6914920.217], [545048.655, 6915431.314], [545639.787, 6915695.071], [545783.078, 6915600.754], [546229.045, 6915719.353], [546619.411, 6916800.07], [547197.076, 6916903.133], [547624.706, 6916060.277]]]}}, {\\\"id\\\": \\\"117\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Loppi\\\", \\\"elakelaisten_osuus\\\": 29.0, \\\"freshwarea\\\": 58.34, \\\"gml_id\\\": 1601100003, \\\"landarea\\\": 597.63, \\\"namefin\\\": \\\"Loppi\\\", \\\"nameswe\\\": \\\"Loppi\\\", \\\"natcode\\\": \\\"433\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 655.97}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[348623.656, 6745110.032], [350475.333, 6742078.943], [351949.171, 6743162.278], [352835.902, 6743348.879], [353683.062, 6742872.428], [354953.791, 6742856.402], [358220.688, 6738194.418], [359047.913, 6738429.29], [359641.922, 6740059.325], [360127.718, 6740280.529], [360531.277, 6739889.36], [360571.039, 6739483.456], [360299.576, 6738784.665], [362384.429, 6737288.445], [363224.207, 6736950.4], [363991.72, 6737952.199], [364907.908, 6737238.406], [365243.833, 6737762.293], [365828.164, 6738262.778], [366165.726, 6738314.802], [366582.68, 6738914.29], [366974.925, 6739002.519], [370490.636, 6737940.44], [370547.351, 6740590.448], [372156.141, 6739206.407], [373106.61, 6739765.3], [374156.418, 6737320.495], [373874.033, 6734444.033], [369268.605, 6730948.148], [370002.559, 6729985.348], [369615.465, 6728831.842], [369728.766, 6728123.905], [367404.222, 6725325.49], [366878.133, 6724828.718], [366718.033, 6722751.706], [366566.184, 6720982.625], [367281.278, 6719098.266], [365623.834, 6716265.571], [358726.22, 6715710.045], [357451.777, 6718512.487], [358173.253, 6720150.204], [356841.729, 6721419.949], [354830.592, 6722516.944], [352442.938, 6719826.442], [351726.814, 6719544.044], [352336.954, 6718035.073], [351205.054, 6717453.114], [350169.787, 6719102.849], [349238.384, 6720221.4], [348570.077, 6721581.554], [348814.75, 6723424.072], [347143.049, 6723995.425], [345453.734, 6724683.956], [343233.493, 6724226.418], [341629.409, 6724945.871], [340496.511, 6724901.414], [338539.595, 6726518.761], [338515.195, 6726577.401], [339143.523, 6739541.851], [339813.702, 6743135.782], [340169.431, 6743358.368], [340562.372, 6743206.237], [341714.084, 6742382.547], [342138.491, 6743581.987], [343866.012, 6746061.067], [346415.819, 6746091.162], [348623.656, 6745110.032]]]}}, {\\\"id\\\": \\\"118\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hanko\\\", \\\"elakelaisten_osuus\\\": 36.1, \\\"freshwarea\\\": 1.53, \\\"gml_id\\\": 1601100125, \\\"landarea\\\": 117.42, \\\"namefin\\\": \\\"Hanko\\\", \\\"nameswe\\\": \\\"Hang\\\\u00f6\\\", \\\"natcode\\\": \\\"078\\\", \\\"seawarea\\\": 681.07, \\\"totalarea\\\": 800.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[284225.858, 6650056.338], [283454.598, 6649360.022], [284066.3, 6648457.457], [284237.732, 6647378.513], [285304.642, 6646798.301], [285418.993, 6647250.966], [286381.172, 6647670.377], [286552.404, 6648036.141], [287384.832, 6648656.082], [287532.561, 6648753.677], [288034.455, 6648986.04], [288744.36, 6649908.328], [289269.646, 6649469.478], [289867.337, 6649359.56], [290224.562, 6648810.043], [292046.13, 6646696.205], [292813.957, 6646296.352], [292287.468, 6645358.445], [291694.455, 6644885.543], [290208.324, 6642224.864], [290652.228, 6641209.755], [291967.02, 6641011.71], [291731.699, 6639661.979], [291975.432, 6638856.15], [290392.024, 6636654.745], [287630.844, 6630511.425], [286758.544, 6618646.814], [266500.426, 6618119.503], [255142.309, 6616098.198], [260296.414, 6629242.348], [260786.555, 6630492.333], [262329.457, 6634156.551], [265204.952, 6641878.407], [265381.743, 6642262.002], [265772.052, 6645183.154], [267609.211, 6644158.39], [273678.884, 6645188.899], [275451.269, 6644750.911], [275809.401, 6646307.072], [276411.607, 6646223.735], [276748.17, 6645020.751], [278540.526, 6647022.795], [279112.516, 6647193.388], [279983.519, 6648402.351], [281606.202, 6650689.344], [283272.384, 6650656.501], [283926.636, 6650729.53], [284225.858, 6650056.338]]]}}, {\\\"id\\\": \\\"119\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pirkkala\\\", \\\"elakelaisten_osuus\\\": 20.6, \\\"freshwarea\\\": 22.55, \\\"gml_id\\\": 1601100295, \\\"landarea\\\": 81.42, \\\"namefin\\\": \\\"Pirkkala\\\", \\\"nameswe\\\": \\\"Birkala\\\", \\\"natcode\\\": \\\"604\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 103.97}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[324084.849, 6820860.831], [324587.738, 6821197.998], [324724.414, 6821487.323], [325656.919, 6821088.745], [325212.897, 6819910.982], [325580.263, 6819396.715], [325556.402, 6818968.554], [325667.992, 6818792.243], [325275.823, 6818624.49], [325730.716, 6817527.192], [325851.472, 6816029.221], [326191.538, 6815267.876], [321555.346, 6812697.22], [318052.532, 6812526.437], [317226.145, 6811762.33], [315399.676, 6808137.51], [315480.728, 6807577.389], [314942.732, 6807444.064], [314656.69, 6808838.397], [313684.052, 6809469.592], [313426.757, 6810316.38], [313180.534, 6810751.561], [312867.391, 6810931.619], [311934.626, 6812066.557], [311949.589, 6812722.478], [312364.696, 6813189.401], [312492.742, 6814427.452], [312823.16, 6814909.581], [313450.579, 6815045.484], [313764.52, 6815458.895], [313750.212, 6815802.722], [314312.538, 6816212.207], [316055.723, 6819868.519], [317243.86, 6820617.525], [318434.675, 6820315.214], [319633.759, 6820693.772], [322578.09, 6821620.492], [324084.849, 6820860.831]]]}}, {\\\"id\\\": \\\"120\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sund\\\", \\\"elakelaisten_osuus\\\": 25.4, \\\"freshwarea\\\": 4.29, \\\"gml_id\\\": 1601100553, \\\"landarea\\\": 108.2, \\\"namefin\\\": \\\"Sund\\\", \\\"nameswe\\\": \\\"Sund\\\", \\\"natcode\\\": \\\"771\\\", \\\"seawarea\\\": 71.83, \\\"totalarea\\\": 184.32}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[131434.375, 6700349.463], [131270.226, 6699697.125], [130436.177, 6699920.492], [129963.306, 6699910.162], [129313.391, 6700542.598], [131123.169, 6701145.303], [131434.375, 6700349.463]]], [[[128529.176, 6708406.073], [128172.76, 6706298.996], [127678.868, 6704739.919], [128511.053, 6704363.291], [129558.558, 6705628.669], [129390.279, 6704407.064], [129402.495, 6702469.904], [128903.459, 6700648.092], [128711.33, 6699686.747], [128537.154, 6699324.004], [127935.013, 6698461.715], [127807.126, 6696867.811], [127955.56, 6696507.892], [128604.921, 6695847.836], [128510.507, 6694850.514], [127256.184, 6692870.13], [126678.968, 6692476.251], [125857.187, 6692576.16], [125180.392, 6691945.45], [124953.372, 6690340.744], [123891.725, 6689744.518], [122926.827, 6689761.671], [121903.517, 6688407.998], [119119.776, 6687192.932], [115392.322, 6690682.064], [114974.5, 6691379.607], [115037.249, 6693379.02], [113871.666, 6693990.054], [113530.859, 6695006.89], [113811.636, 6695741.061], [113671.422, 6696937.184], [114090.812, 6697520.839], [114413.31, 6697409.753], [114652.449, 6697718.448], [114550.828, 6698219.031], [114679.84, 6698471.31], [115965.595, 6698860.933], [115801.372, 6699603.156], [116505.713, 6699599.458], [118480.817, 6700934.959], [119446.991, 6700591.146], [119500.822, 6701192.852], [120337.676, 6701500.946], [121237.217, 6701998.981], [121236.781, 6702587.736], [121843.056, 6702563.143], [121854.612, 6702781.082], [122212.147, 6702790.109], [122889.472, 6703228.334], [122948.489, 6703182.349], [123005.542, 6703094.986], [123366.406, 6703033.859], [123546.9, 6703767.259], [123717.366, 6704208.074], [124151.212, 6704502.971], [124356.473, 6705051.71], [125134.631, 6705738.955], [126203.379, 6705789.039], [127423.417, 6708463.885], [128529.176, 6708406.073]]]]}}, {\\\"id\\\": \\\"121\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Peders\\\\u00f6ren kunta\\\", \\\"elakelaisten_osuus\\\": 20.3, \\\"freshwarea\\\": 31.8, \\\"gml_id\\\": 1601100283, \\\"landarea\\\": 794.25, \\\"namefin\\\": \\\"Peders\\\\u00f6ren kunta\\\", \\\"nameswe\\\": \\\"Peders\\\\u00f6re\\\", \\\"natcode\\\": \\\"599\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 826.05}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[317682.309, 7045880.143], [318117.246, 7046230.089], [318275.36, 7045699.918], [318228.989, 7045198.225], [316136.27, 7044336.51], [316258.572, 7045357.717], [315910.222, 7045589.947], [316054.436, 7045843.294], [316419.764, 7045710.7], [316957.564, 7046416.67], [317682.309, 7045880.143]]], [[[319537.916, 7048722.185], [320433.6, 7047433.735], [320194.858, 7047187.128], [318536.543, 7047764.98], [317994.96, 7048248.894], [318979.297, 7048990.3], [319537.916, 7048722.185]]], [[[296397.305, 7072302.936], [296351.033, 7071028.518], [296612.161, 7070089.365], [297402.571, 7069402.598], [297906.104, 7069124.814], [298387.719, 7068433.409], [298346.695, 7067994.924], [299072.406, 7067269.228], [299179.645, 7067374.12], [299070.063, 7067739.784], [299338.874, 7067999.77], [299574.172, 7067760.238], [300128.811, 7068302.851], [300970.465, 7067443.665], [301613.657, 7066960.371], [301922.564, 7067262.579], [302259.288, 7067018.268], [302403.197, 7067163.684], [303361.915, 7066395.147], [304827.984, 7064911.569], [306923.935, 7064149.975], [307000.185, 7064366.642], [307615.197, 7064147.443], [307530.194, 7063923.479], [308283.959, 7063644.681], [309990.452, 7062384.659], [310408.525, 7062947.057], [311091.855, 7062153.809], [311288.941, 7061579.033], [310941.867, 7061289.34], [318859.594, 7049696.54], [317320.359, 7048352.836], [318488.075, 7047176.942], [317324.235, 7046404.358], [316878.68, 7046824.546], [316387.994, 7046472.128], [316376.626, 7046067.744], [315963.194, 7046377.232], [315525.485, 7045985.327], [315125.296, 7046326.801], [314940.782, 7046105.04], [315261.712, 7045582.075], [314840.118, 7045252.484], [314597.499, 7045388.974], [314518.82, 7046188.536], [314763.864, 7046574.266], [314305.278, 7047056.017], [314116.611, 7047525.918], [312524.269, 7046138.224], [314174.623, 7044211.758], [314470.522, 7044519.893], [314624.085, 7044236.963], [314746.145, 7043972.282], [314614.668, 7043683.354], [313922.262, 7043392.788], [313017.524, 7041286.911], [312763.518, 7041390.607], [312414.077, 7040931.797], [312630.256, 7040386.849], [312123.965, 7039204.525], [312128.836, 7039948.799], [311863.774, 7040329.487], [311577.038, 7039987.781], [311977.39, 7038865.608], [310586.421, 7035650.362], [305543.67, 7030183.999], [305230.708, 7030660.617], [305489.581, 7030847.461], [304724.202, 7031913.46], [304332.257, 7031730.027], [303905.415, 7032729.782], [303046.951, 7032531.013], [303091.9, 7032263.78], [302026.007, 7032045.514], [301567.475, 7032043.192], [301566.966, 7032047.259], [301303.997, 7034144.764], [299869.889, 7033967.646], [299975.652, 7033122.158], [298653.251, 7033398.214], [298610.931, 7034288.401], [294923.12, 7036000.584], [295577.374, 7034654.441], [295425.763, 7034352.946], [294870.352, 7035457.134], [294080.171, 7035861.479], [293494.077, 7038151.406], [294587.782, 7038626.185], [293810.259, 7039261.706], [294295.918, 7039510.903], [293407.144, 7040393.412], [293051.154, 7039883.581], [292866.57, 7040599.767], [294051.876, 7041131.789], [294586.144, 7041518.516], [293420.789, 7043135.999], [296118.268, 7044471.758], [295338.374, 7045596.652], [293932.716, 7044100.849], [293258.528, 7044450.176], [292515.634, 7045126.894], [292117.359, 7045926.751], [292324.655, 7046836.25], [292673.052, 7047366.209], [292168.747, 7047697.478], [293191.168, 7048692.938], [291494.463, 7048632.623], [290891.995, 7048097.321], [290381.346, 7049065.729], [291715.056, 7049521.6], [292166.972, 7050018.451], [286788.237, 7054916.087], [285611.427, 7054930.857], [285302.576, 7055596.416], [285025.439, 7055515.62], [285160.069, 7054934.119], [283971.531, 7054951.62], [282772.717, 7056026.184], [282871.686, 7056264.032], [282347.789, 7056598.258], [282266.312, 7057263.542], [281889.046, 7057417.335], [281559.286, 7057869.142], [281336.053, 7058018.823], [281132.391, 7057786.225], [280057.078, 7058651.288], [279435.365, 7060107.226], [279442.897, 7060542.845], [278927.879, 7061355.564], [280774.357, 7061896.667], [280875.383, 7061663.358], [281292.97, 7061867.18], [281213.608, 7062079.336], [281707.11, 7062797.928], [282056.268, 7063159.587], [282438.273, 7063080.099], [282677.714, 7062349.818], [285935.946, 7065282.119], [286091.504, 7064627.153], [288153.112, 7065746.077], [288703.35, 7065948.123], [288557.12, 7066169.116], [288870.399, 7066301.684], [288947.896, 7066882.206], [289819.425, 7066947.741], [290679.07, 7065614.307], [290851.992, 7065475.175], [290802.108, 7064843.289], [291240.887, 7064033.082], [292182.056, 7063704.839], [292497.838, 7063441.693], [292906.813, 7063457.022], [292794.995, 7063784.853], [292303.588, 7064470.181], [293115.534, 7064951.447], [293368.986, 7066204.459], [293115.78, 7067570.4], [291799.242, 7069329.807], [291957.105, 7069533.067], [291766.748, 7069903.87], [294208.135, 7074306.894], [296397.305, 7072302.936]]]]}}, {\\\"id\\\": \\\"122\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Saltvik\\\", \\\"elakelaisten_osuus\\\": 24.5, \\\"freshwarea\\\": 7.38, \\\"gml_id\\\": 1601100502, \\\"landarea\\\": 152.24, \\\"namefin\\\": \\\"Saltvik\\\", \\\"nameswe\\\": \\\"Saltvik\\\", \\\"natcode\\\": \\\"736\\\", \\\"seawarea\\\": 1007.25, \\\"totalarea\\\": 1166.87}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[131638.596, 6704799.22], [131345.854, 6703146.948], [129810.123, 6701383.425], [129402.495, 6702469.904], [129390.279, 6704407.064], [129558.558, 6705628.669], [131638.596, 6704799.22]]], [[[144830.895, 6712138.921], [145388.252, 6709681.236], [143711.533, 6709433.72], [143244.91, 6709568.178], [142803.492, 6709913.341], [142273.539, 6711163.927], [143566.589, 6712407.023], [144536.224, 6712841.245], [144830.895, 6712138.921]]], [[[137667.564, 6737834.671], [136118.41, 6721648.385], [132141.589, 6717921.452], [132353.223, 6716896.664], [132660.877, 6716630.626], [132305.634, 6716075.149], [132261.723, 6715480.569], [131985.96, 6715409.07], [131871.47, 6715975.601], [131434.596, 6716717.822], [131807.953, 6717072.531], [132141.589, 6717921.452], [129962.898, 6718738.534], [128236.965, 6718063.933], [128542.04, 6715840.082], [128541.63, 6715839.502], [128439.774, 6715694.992], [128588.06, 6715592.087], [129174.398, 6714526.367], [129182.41, 6714394.744], [129300.871, 6714298.602], [130144.267, 6712819.972], [130256.333, 6711546.611], [129815.88, 6710863.109], [130182.636, 6710252.613], [129731.357, 6710162.268], [129438.456, 6709088.693], [128529.176, 6708406.073], [128244.65, 6709668.778], [129029.581, 6711069.187], [129047.117, 6712024.112], [128327.533, 6712066.542], [128238.364, 6711221.855], [127690.37, 6710866.13], [127481.218, 6710392.776], [126239.217, 6709795.613], [127423.417, 6708463.885], [126203.379, 6705789.039], [125134.631, 6705738.955], [124356.473, 6705051.71], [124151.212, 6704502.971], [123717.366, 6704208.074], [123546.9, 6703767.259], [123366.406, 6703033.859], [123005.542, 6703094.986], [122948.489, 6703182.349], [122889.472, 6703228.334], [122212.147, 6702790.109], [121854.612, 6702781.082], [121843.056, 6702563.143], [121236.781, 6702587.736], [121237.217, 6701998.981], [120337.676, 6701500.946], [119500.822, 6701192.852], [119446.991, 6700591.146], [118480.817, 6700934.959], [116505.713, 6699599.458], [115801.372, 6699603.156], [115965.595, 6698860.933], [114679.84, 6698471.31], [114550.828, 6698219.031], [114652.449, 6697718.448], [114413.31, 6697409.753], [114090.812, 6697520.839], [114005.692, 6698174.673], [113697.447, 6698455.102], [113415.45, 6698888.696], [113358.31, 6699381.907], [113531.202, 6699884.586], [113027.572, 6700702.43], [112886.586, 6701269.566], [112284.589, 6701847.024], [111870.734, 6702128.26], [111836.366, 6702337.741], [112119.437, 6703021.62], [111679.892, 6704057.717], [112231.68, 6704545.763], [112249.95, 6704765.62], [111567.574, 6704825.13], [111443.586, 6704037.637], [110514.816, 6703756.667], [110229.385, 6704317.96], [109873.937, 6704743.878], [109474.113, 6706706.402], [110162.871, 6707193.064], [110161.17, 6707198.652], [111063.284, 6707262.551], [111768.158, 6707772.331], [111928.539, 6708470.635], [112533.927, 6709005.893], [112969.712, 6710172.148], [113289.912, 6710075.617], [113184.797, 6710926.978], [112904.885, 6711401.642], [113728.929, 6711464.197], [114136.489, 6712395.098], [114262.641, 6713248.345], [114444.067, 6713650.172], [113840.842, 6713844.984], [113108.579, 6713790.951], [112496.732, 6713579.095], [112190.72, 6714042.077], [111529.815, 6714149.452], [111541.877, 6714393.608], [112609.121, 6715281.607], [112541.416, 6715516.664], [112946.181, 6716023.974], [112904.358, 6717129.398], [114676.301, 6718570.434], [113277.995, 6720056.424], [109256.595, 6723254.537], [107440.164, 6751862.314], [120025.136, 6752653.647], [124826.518, 6756009.051], [137667.564, 6737834.671]]]]}}, {\\\"id\\\": \\\"123\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kyyj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 38.0, \\\"freshwarea\\\": 21.41, \\\"gml_id\\\": 1601100327, \\\"landarea\\\": 448.2, \\\"namefin\\\": \\\"Kyyj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Kyyj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"312\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 469.61}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[387722.5, 7002395.289], [387848.408, 7002364.531], [392497.779, 6996301.495], [392882.821, 6992449.832], [390972.196, 6992394.961], [389844.021, 6991566.121], [389548.311, 6991970.373], [385393.848, 6988902.17], [385931.12, 6987943.049], [384272.962, 6986791.723], [384047.116, 6986525.328], [383913.867, 6985880.679], [383215.366, 6985974.508], [381450.344, 6986725.817], [381305.033, 6986418.696], [380963.13, 6986557.765], [381664.814, 6988014.952], [380366.815, 6988318.226], [379683.288, 6987071.163], [378689.622, 6987616.264], [375187.66, 6983308.504], [373620.306, 6983481.983], [374672.274, 6981626.807], [372207.177, 6980426.019], [370479.529, 6983800.297], [365541.96, 6984316.807], [365544.861, 6984345.116], [364930.083, 6986491.736], [363722.06, 6985907.039], [363260.793, 6987161.698], [363401.754, 6987520.965], [362732.775, 6988377.622], [363531.787, 6988666.619], [363181.559, 6989363.341], [363132.975, 6990375.999], [363789.242, 6990500.403], [363273.193, 6992324.279], [363111.574, 6992513.781], [360782.411, 6990767.356], [360712.309, 6991311.304], [360138.248, 6991228.844], [360150.526, 6990856.187], [359253.887, 6991051.526], [359139.14, 6992003.281], [360727.7, 6992213.415], [360810.584, 6991571.783], [361560.998, 6991691.116], [361501.423, 6992082.253], [362314.486, 6992188.166], [362081.45, 6993893.991], [362619.068, 6993966.417], [362458.797, 6995675.229], [364487.59, 6995842.523], [366787.924, 7001300.583], [375623.274, 7005527.284], [387722.5, 7002395.289]]]}}, {\\\"id\\\": \\\"124\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ulvila\\\", \\\"elakelaisten_osuus\\\": 29.6, \\\"freshwarea\\\": 21.86, \\\"gml_id\\\": 1601100037, \\\"landarea\\\": 400.65, \\\"namefin\\\": \\\"Ulvila\\\", \\\"nameswe\\\": \\\"Ulvsby\\\", \\\"natcode\\\": \\\"886\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 422.51}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[247459.686, 6835751.501], [256997.689, 6825762.4], [248698.524, 6818563.014], [247214.744, 6818439.338], [245988.279, 6818473.314], [244149.578, 6817574.745], [243646.133, 6818153.648], [243557.511, 6818637.787], [242615.492, 6819904.237], [241199.626, 6820529.969], [242061.019, 6817512.722], [237821.514, 6819564.74], [234844.966, 6819765.636], [234444.788, 6819634.739], [233581.064, 6819535.591], [231610.445, 6817887.41], [231299.695, 6817282.896], [230542.474, 6818167.522], [229447.931, 6817717.475], [226216.288, 6817923.852], [222798.712, 6816662.929], [222569.956, 6816742.727], [222750.075, 6817836.414], [223076.741, 6818017.723], [223215.874, 6819828.828], [222982.021, 6820161.191], [223085.804, 6821203.094], [222930.911, 6821748.896], [223545.99, 6822273.891], [226631.804, 6822877.583], [226746.977, 6824134.989], [226880.726, 6824857.103], [227196.595, 6825268.014], [227244.814, 6825840.046], [227101.171, 6826875.488], [227697.626, 6826727.964], [227833.796, 6828083.784], [227590.59, 6828603.917], [227893.757, 6829593.382], [230896.902, 6832882.707], [232307.876, 6833638.112], [233506.439, 6832910.476], [233678.217, 6833113.631], [232955.457, 6833850.217], [233523.503, 6834035.055], [234576.631, 6832853.686], [235503.669, 6833498.103], [235608.622, 6833990.444], [236191.412, 6833122.228], [236705.229, 6833132.339], [236199.58, 6835004.226], [236597.005, 6835196.476], [237604.673, 6834119.628], [237832.52, 6834865.638], [237735.079, 6835218.132], [239786.04, 6836441.196], [247459.686, 6835751.501]]]}}, {\\\"id\\\": \\\"125\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pietarsaari\\\", \\\"elakelaisten_osuus\\\": 29.1, \\\"freshwarea\\\": 3.44, \\\"gml_id\\\": 1601100546, \\\"landarea\\\": 88.44, \\\"namefin\\\": \\\"Pietarsaari\\\", \\\"nameswe\\\": \\\"Jakobstad\\\", \\\"natcode\\\": \\\"598\\\", \\\"seawarea\\\": 304.47, \\\"totalarea\\\": 396.35}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[283302.135, 7078473.119], [283002.667, 7077574.05], [282785.246, 7077234.003], [282165.677, 7077737.917], [282154.752, 7078056.88], [282463.885, 7078749.965], [283302.135, 7078473.119]]], [[[277854.121, 7075671.98], [280871.578, 7074425.507], [280872.19, 7074425.823], [281051.506, 7074518.356], [281227.489, 7074279.12], [281228.16, 7074278.207], [281519.413, 7074157.894], [281519.526, 7074158.538], [281557.539, 7074374.518], [281760.299, 7074655.262], [282410.169, 7074383.183], [282313.122, 7073920.475], [282113.87, 7073902.962], [283360.471, 7073342.797], [283539.973, 7073871.627], [284267.578, 7073474.751], [284472.631, 7072872.823], [286141.714, 7072073.626], [286300.911, 7072121.619], [286325.705, 7071984.193], [286906.082, 7072474.684], [287149.412, 7073133.589], [287668.601, 7073025.132], [289200.53, 7072188.182], [289376.006, 7071501.427], [289408.071, 7071324.13], [289439.99, 7071147.643], [289204.199, 7071035.358], [289156.37, 7070918.632], [289169.619, 7070878.276], [289204.199, 7070825.828], [289398.751, 7070690.062], [289435.348, 7070664.523], [289617.688, 7070483.6], [289516.992, 7071270.314], [290155.115, 7070983.76], [290015.618, 7070303.206], [290484.751, 7070259.358], [290757.273, 7070179.983], [290806.663, 7069938.23], [290807.544, 7069933.92], [291498.295, 7069655.198], [291766.748, 7069903.87], [291957.105, 7069533.067], [291799.242, 7069329.807], [293115.78, 7067570.4], [293368.986, 7066204.459], [293115.534, 7064951.447], [292303.588, 7064470.181], [292794.995, 7063784.853], [292906.813, 7063457.022], [292497.838, 7063441.693], [292182.056, 7063704.839], [291240.887, 7064033.082], [290802.108, 7064843.289], [290851.992, 7065475.175], [290679.07, 7065614.307], [289819.425, 7066947.741], [288947.896, 7066882.206], [288870.399, 7066301.684], [288557.12, 7066169.116], [288703.35, 7065948.123], [288153.112, 7065746.077], [286091.504, 7064627.153], [285935.946, 7065282.119], [282677.714, 7062349.818], [282438.273, 7063080.099], [282056.268, 7063159.587], [281707.11, 7062797.928], [281213.608, 7062079.336], [281292.97, 7061867.18], [280875.383, 7061663.358], [280774.357, 7061896.667], [278927.879, 7061355.564], [278207.453, 7061555.916], [277989.961, 7062719.151], [276237.929, 7064283.511], [271459.859, 7068033.225], [252487.751, 7080001.836], [258909.03, 7087671.558], [277854.121, 7075671.98]]]]}}, {\\\"id\\\": \\\"126\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuhmo\\\", \\\"elakelaisten_osuus\\\": 42.8, \\\"freshwarea\\\": 650.31, \\\"gml_id\\\": 1601100014, \\\"landarea\\\": 4806.53, \\\"namefin\\\": \\\"Kuhmo\\\", \\\"nameswe\\\": \\\"Kuhmo\\\", \\\"natcode\\\": \\\"290\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5456.84}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[641834.752, 7166148.916], [643118.816, 7165817.783], [643537.0, 7164740.3], [643263.6, 7159882.5], [644745.2, 7156655.3], [645488.5, 7156275.4], [645327.2, 7154299.7], [646420.9, 7153137.9], [647130.9, 7150803.3], [646782.7, 7149753.4], [647165.9, 7148945.5], [646744.2, 7145332.2], [650079.5, 7141364.7], [651432.8, 7140641.9], [654995.1, 7139984.0], [658749.9, 7137873.7], [659610.4, 7136804.9], [662859.4, 7134723.3], [662671.4, 7132662.9], [664072.7, 7131369.8], [668670.1, 7130865.7], [670234.4, 7126414.7], [668243.8, 7124378.9], [670949.9, 7119004.9], [672914.0, 7116577.8], [673111.6, 7113176.8], [672194.5, 7107229.7], [670626.3, 7103579.0], [668642.7, 7099655.3], [664370.9, 7093769.5], [662902.1, 7091174.7], [660434.6, 7081278.5], [655135.0, 7078672.2], [648059.894, 7074292.903], [646600.4, 7073377.2], [646581.916, 7073365.668], [646409.504, 7073169.277], [645181.824, 7072925.551], [645179.136, 7072925.018], [645175.2, 7072924.236], [645174.593, 7072924.116], [641828.736, 7072259.878], [637169.834, 7066938.585], [634339.733, 7071800.544], [631746.055, 7086294.3], [624975.482, 7085186.935], [613632.135, 7082669.316], [609999.639, 7082122.697], [606127.874, 7081796.115], [608266.617, 7094962.388], [600218.014, 7098870.308], [596758.145, 7103352.808], [597695.078, 7104371.5], [593697.541, 7108060.956], [592975.486, 7108248.541], [593103.257, 7108796.829], [592692.838, 7109133.027], [592138.647, 7109360.583], [592405.534, 7110691.572], [592028.043, 7112523.782], [592637.746, 7112520.824], [592803.503, 7113453.707], [591865.772, 7113307.775], [591713.184, 7114057.208], [591068.155, 7114344.688], [590941.634, 7115033.467], [591219.817, 7115153.553], [590442.923, 7116005.368], [590634.08, 7116890.584], [591144.782, 7116810.957], [591154.191, 7116821.509], [589989.355, 7122562.648], [590027.428, 7123473.763], [589345.478, 7124717.825], [589723.863, 7124929.668], [589092.886, 7125174.871], [584731.874, 7132752.879], [585167.672, 7132823.816], [587606.177, 7136319.633], [589308.963, 7143251.048], [587275.958, 7152515.004], [589351.221, 7153309.61], [590375.152, 7153701.988], [593557.471, 7150637.057], [597415.536, 7149590.96], [599106.823, 7148753.012], [599099.059, 7149136.915], [604073.238, 7149445.731], [615987.541, 7157158.424], [617833.942, 7162404.442], [619137.737, 7166137.659], [620042.534, 7166763.497], [619749.105, 7167081.296], [620186.781, 7167527.254], [619866.238, 7167998.373], [620982.706, 7168855.618], [621828.486, 7167999.239], [625313.669, 7170409.411], [641834.752, 7166148.916]]]}}, {\\\"id\\\": \\\"127\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Somero\\\", \\\"elakelaisten_osuus\\\": 36.6, \\\"freshwarea\\\": 29.85, \\\"gml_id\\\": 1601100541, \\\"landarea\\\": 667.83, \\\"namefin\\\": \\\"Somero\\\", \\\"nameswe\\\": \\\"Somero\\\", \\\"natcode\\\": \\\"761\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 697.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[291982.254, 6741912.91], [295788.771, 6738326.977], [296901.865, 6736363.869], [297095.812, 6738030.047], [300009.447, 6736955.048], [304237.405, 6739157.851], [306249.318, 6739838.496], [306783.464, 6740018.12], [308140.037, 6739670.172], [308607.988, 6739889.216], [308709.805, 6739519.368], [309356.366, 6739351.631], [309159.559, 6737515.969], [310693.38, 6736424.062], [311144.907, 6734830.544], [313084.851, 6733612.289], [313841.68, 6733718.05], [315811.531, 6733413.106], [318787.478, 6732082.177], [318244.134, 6730715.347], [318782.759, 6729183.198], [320440.782, 6729830.608], [322243.763, 6728565.552], [325879.434, 6728702.16], [328653.723, 6728053.214], [329047.891, 6728298.825], [329807.293, 6727796.991], [330561.662, 6727772.87], [328533.193, 6724398.218], [331428.893, 6722861.159], [330656.411, 6720753.845], [329538.069, 6719382.828], [329369.756, 6717651.055], [327002.246, 6717531.525], [327071.772, 6717260.806], [328002.562, 6715511.561], [328037.555, 6715192.55], [327643.662, 6715019.231], [327383.022, 6714872.665], [327438.632, 6714803.662], [327251.032, 6714638.848], [327372.421, 6714411.264], [327516.528, 6714275.339], [327494.928, 6714122.357], [327624.999, 6714024.393], [327624.08, 6713907.718], [327749.454, 6713873.671], [327917.366, 6713591.638], [328244.548, 6712063.462], [327992.013, 6711743.402], [326277.398, 6710299.979], [325493.682, 6710711.926], [320774.171, 6710467.086], [319453.481, 6711387.269], [315435.5, 6708165.017], [314237.272, 6710227.55], [314141.375, 6710583.191], [312425.037, 6710150.229], [311964.209, 6712118.575], [313244.424, 6711780.289], [313642.011, 6711941.115], [313645.233, 6711947.927], [310002.925, 6713131.776], [308930.079, 6714040.505], [308624.811, 6714548.661], [307866.038, 6716061.265], [307804.393, 6716379.817], [309224.065, 6722809.054], [307921.9, 6722794.718], [307602.437, 6722296.504], [306480.202, 6721293.681], [305687.709, 6721154.769], [305654.454, 6720562.244], [302390.447, 6717646.38], [300638.097, 6718692.216], [297343.36, 6721877.18], [294254.901, 6722618.658], [292306.716, 6722632.42], [293395.265, 6724071.006], [293574.447, 6724476.571], [294519.301, 6725929.236], [295245.555, 6726870.063], [295306.358, 6727167.025], [293359.04, 6729021.933], [294821.4, 6732609.042], [294391.915, 6732720.282], [293937.001, 6733131.285], [293462.602, 6733271.746], [292222.129, 6739539.638], [290626.556, 6743768.628], [291982.254, 6741912.91]]]}}, {\\\"id\\\": \\\"128\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Mustasaari\\\", \\\"elakelaisten_osuus\\\": 23.8, \\\"freshwarea\\\": 17.42, \\\"gml_id\\\": 1601100105, \\\"landarea\\\": 849.13, \\\"namefin\\\": \\\"Mustasaari\\\", \\\"nameswe\\\": \\\"Korsholm\\\", \\\"natcode\\\": \\\"499\\\", \\\"seawarea\\\": 2312.05, \\\"totalarea\\\": 3178.6}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[235005.778, 7045684.757], [234101.374, 7044347.866], [233504.718, 7041741.024], [233938.89, 7040842.064], [234990.679, 7040057.034], [236534.737, 7040274.738], [237693.419, 7039801.029], [247128.467, 7024805.811], [247449.951, 7022858.161], [247648.468, 7022415.465], [247611.575, 7021710.552], [247484.353, 7021509.086], [247450.644, 7020512.096], [247367.348, 7020339.897], [247321.842, 7018898.101], [249337.848, 7018700.736], [250249.208, 7017759.807], [250553.197, 7017304.527], [250892.971, 7014514.038], [251126.589, 7011109.029], [250455.7, 7011048.701], [250663.291, 7010466.81], [249608.738, 7010240.525], [249759.486, 7009922.571], [249422.684, 7009588.924], [249221.349, 7010044.644], [248620.606, 7009652.039], [247366.595, 7009498.587], [248221.007, 7008795.182], [247873.228, 7008722.879], [244471.573, 7004745.248], [244048.143, 7004316.932], [243670.904, 7004373.326], [243741.263, 7004595.618], [243403.775, 7004885.835], [243134.587, 7004595.875], [243220.458, 7004223.01], [242667.128, 7003390.552], [242806.905, 7002986.305], [242914.54, 7001206.841], [242430.106, 6999521.908], [242116.029, 6998782.654], [242175.076, 6997874.222], [241960.337, 6997873.282], [241621.239, 6996569.823], [241068.004, 6994084.207], [240529.242, 6993490.376], [239785.962, 6992526.804], [239588.662, 6992380.711], [239652.093, 6992249.7], [238093.674, 6990516.512], [236026.14, 6987753.665], [235110.453, 6984519.06], [234390.451, 6985308.054], [234786.913, 6985451.635], [233933.374, 6986273.848], [233598.704, 6986145.368], [233148.491, 6986631.409], [233443.958, 6986747.961], [229404.45, 6990666.326], [227999.886, 6992159.244], [226520.624, 6994184.332], [225700.808, 6995393.87], [224736.825, 6995280.116], [224706.123, 6995547.622], [224474.887, 6996031.976], [226823.861, 7000508.003], [227498.828, 7001218.993], [229196.718, 7003954.518], [229739.242, 7003586.686], [231406.095, 7002243.967], [232992.94, 7001358.02], [234677.858, 7001040.096], [235762.652, 7000545.201], [236440.947, 7000982.102], [237368.694, 7001856.279], [238241.009, 7002513.762], [238362.336, 7002539.32], [238359.454, 7002614.447], [238832.411, 7002977.577], [237965.329, 7006779.367], [237727.293, 7006861.958], [237796.508, 7008047.356], [238548.657, 7008577.757], [236844.291, 7009057.206], [235869.932, 7010315.282], [235420.84, 7009968.234], [235578.113, 7008942.966], [235017.761, 7008632.816], [234859.023, 7009214.522], [234297.116, 7009250.993], [233811.18, 7009540.439], [233645.984, 7009049.604], [232920.231, 7007814.511], [231682.677, 7008326.755], [230984.638, 7009147.235], [231100.702, 7009436.219], [230973.489, 7009860.683], [231337.411, 7010648.464], [231138.138, 7010885.132], [231321.371, 7011469.268], [230794.968, 7013262.236], [229525.298, 7013192.594], [229505.996, 7013556.677], [229095.1, 7013410.081], [229127.66, 7013842.273], [228968.308, 7014175.499], [228456.828, 7014545.458], [228233.332, 7015040.515], [226748.098, 7015804.506], [225133.977, 7016310.783], [223365.593, 7015951.057], [222852.494, 7016910.6], [221965.404, 7017499.564], [221438.319, 7016645.455], [220488.995, 7017221.365], [220550.857, 7015168.506], [218517.859, 7013033.254], [217432.903, 7014022.64], [198928.241, 7011668.255], [164704.525, 7032920.449], [169981.568, 7039577.166], [186369.361, 7054850.359], [198787.783, 7057740.11], [220786.098, 7067997.0], [235005.778, 7045684.757]], [[217581.918, 7017022.241], [217797.487, 7016636.726], [218215.97, 7016574.774], [218198.122, 7016078.0], [217997.545, 7015844.913], [217797.374, 7016021.4], [217123.397, 7015687.534], [216987.842, 7016040.323], [217127.042, 7017123.988], [217325.666, 7017213.397], [217581.918, 7017022.241]]]}}, {\\\"id\\\": \\\"129\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Jyv\\\\u00e4skyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 21.7, \\\"freshwarea\\\": 295.38, \\\"gml_id\\\": 1601100303, \\\"landarea\\\": 1170.97, \\\"namefin\\\": \\\"Jyv\\\\u00e4skyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"Jyv\\\\u00e4skyl\\\\u00e4\\\", \\\"natcode\\\": \\\"179\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1466.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[428581.185, 6922470.267], [429245.725, 6921917.289], [430079.284, 6921745.17], [430683.046, 6920845.638], [431565.59, 6920578.912], [432579.088, 6919546.976], [432587.987, 6919141.54], [435041.509, 6917101.281], [437240.565, 6918211.574], [438907.64, 6917192.168], [440099.168, 6915765.852], [440256.222, 6913634.115], [439337.765, 6911941.885], [438646.355, 6908785.546], [440648.112, 6907668.529], [440337.346, 6906732.706], [441000.779, 6906462.119], [441288.456, 6907181.23], [441960.183, 6907272.597], [441801.298, 6905061.403], [442590.902, 6905971.398], [444043.25, 6905817.797], [444246.875, 6904857.786], [444812.645, 6904869.585], [446169.47, 6907882.274], [447919.278, 6905724.057], [450731.448, 6904351.727], [450432.575, 6903630.717], [450699.889, 6900952.102], [450373.81, 6900752.455], [450226.087, 6899445.211], [450047.667, 6899427.557], [449843.14, 6900533.866], [449395.823, 6900374.128], [448968.172, 6899516.403], [449351.158, 6898238.893], [450467.029, 6894738.746], [449829.788, 6895223.019], [448877.044, 6897252.067], [448633.745, 6897156.442], [448596.979, 6896321.666], [448065.604, 6896087.884], [448585.193, 6895178.429], [449044.179, 6894698.866], [449346.385, 6895100.965], [449874.075, 6894584.578], [450487.338, 6894267.401], [450544.412, 6893508.118], [446758.548, 6893501.598], [444774.182, 6889891.05], [445059.694, 6886424.957], [445709.658, 6882931.776], [443223.249, 6884676.96], [440662.531, 6889559.686], [440149.758, 6889748.782], [438461.234, 6888941.842], [437618.514, 6889037.83], [437141.033, 6887403.681], [437094.213, 6885285.371], [435350.145, 6885807.582], [435390.256, 6886240.379], [433868.946, 6886801.784], [433736.25, 6889665.586], [432474.667, 6890668.589], [433289.116, 6891777.422], [434853.152, 6890881.742], [435560.496, 6891724.767], [437152.516, 6891742.341], [435547.503, 6894835.547], [435520.04, 6894857.225], [434793.671, 6895045.074], [434217.355, 6893640.367], [431927.296, 6894450.362], [430769.598, 6896258.974], [430600.781, 6897516.207], [427144.745, 6895709.884], [426629.627, 6895947.894], [426376.844, 6897288.566], [426487.439, 6899875.054], [425743.026, 6902051.391], [423552.427, 6900748.688], [422220.914, 6900840.313], [421725.2, 6901048.376], [421503.174, 6900573.737], [421426.058, 6899949.691], [420821.578, 6898527.538], [420499.348, 6898006.912], [420668.681, 6897137.272], [420905.67, 6896612.732], [420770.799, 6896105.234], [420839.974, 6895655.202], [421531.137, 6894849.459], [421953.286, 6894739.145], [421943.7, 6893579.215], [422345.843, 6892704.272], [423210.494, 6892619.312], [424031.16, 6892855.821], [423716.002, 6890725.382], [423190.816, 6890576.839], [422835.669, 6889290.658], [422074.082, 6888571.644], [420601.026, 6884704.181], [423410.271, 6884389.546], [423263.34, 6883148.446], [423687.169, 6883031.097], [425939.293, 6882761.9], [427278.115, 6882913.769], [428617.477, 6882358.201], [428595.848, 6882613.439], [430211.625, 6883207.27], [431703.421, 6883301.642], [435607.855, 6881871.84], [435701.534, 6880259.189], [439124.156, 6879679.644], [445076.777, 6874341.848], [445635.759, 6873001.296], [445769.711, 6872360.412], [446244.058, 6872128.978], [446666.152, 6871283.1], [446771.912, 6870783.003], [443798.993, 6867447.858], [441623.456, 6864347.166], [439556.55, 6862532.984], [436611.82, 6862773.351], [434295.044, 6858049.571], [429523.223, 6859202.449], [427502.344, 6859263.009], [426658.191, 6858729.218], [426101.449, 6857100.673], [418420.896, 6865901.62], [418250.703, 6867525.678], [417552.668, 6867216.917], [417310.945, 6867505.68], [416447.796, 6867378.77], [416362.732, 6868120.58], [414304.909, 6870324.203], [413496.032, 6869295.766], [412690.358, 6869821.359], [413003.027, 6871218.571], [412624.076, 6871316.065], [413064.502, 6871883.508], [413286.181, 6872470.176], [412923.533, 6873028.821], [412486.324, 6872868.617], [412190.427, 6873946.347], [414710.242, 6875916.537], [413278.784, 6877115.65], [413084.312, 6878494.804], [413002.761, 6879965.501], [409056.613, 6880785.675], [410260.493, 6883246.743], [412079.128, 6884456.367], [411880.006, 6885159.272], [413774.843, 6887509.407], [412069.554, 6889046.478], [410640.455, 6892336.108], [412436.266, 6894758.376], [413180.13, 6895525.97], [414035.756, 6897273.568], [413464.114, 6901262.435], [416087.126, 6902369.482], [418088.644, 6902448.101], [417623.195, 6904866.724], [420058.91, 6909578.23], [421768.443, 6913763.393], [419445.931, 6913605.884], [419364.571, 6914933.275], [416208.333, 6916669.568], [415666.672, 6917312.341], [414076.5, 6916726.796], [412161.221, 6916039.044], [411349.66, 6918711.998], [412749.26, 6919022.569], [413338.006, 6917308.572], [415531.663, 6918008.289], [415296.776, 6919329.108], [417562.973, 6919581.838], [417681.676, 6918648.987], [419776.319, 6919054.383], [421940.386, 6919388.501], [422219.432, 6917827.664], [422668.482, 6917206.773], [425046.74, 6919917.377], [426631.071, 6922750.799], [428581.185, 6922470.267]]]}}, {\\\"id\\\": \\\"130\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vaasa\\\", \\\"elakelaisten_osuus\\\": 22.9, \\\"freshwarea\\\": 4.87, \\\"gml_id\\\": 1601100203, \\\"landarea\\\": 364.67, \\\"namefin\\\": \\\"Vaasa\\\", \\\"nameswe\\\": \\\"Vasa\\\", \\\"natcode\\\": \\\"905\\\", \\\"seawarea\\\": 205.59, \\\"totalarea\\\": 575.13}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[222852.494, 7016910.6], [223365.593, 7015951.057], [225133.977, 7016310.783], [226748.098, 7015804.506], [228233.332, 7015040.515], [228456.828, 7014545.458], [228968.308, 7014175.499], [229127.66, 7013842.273], [229095.1, 7013410.081], [229505.996, 7013556.677], [229525.298, 7013192.594], [230794.968, 7013262.236], [231321.371, 7011469.268], [231138.138, 7010885.132], [231337.411, 7010648.464], [230973.489, 7009860.683], [231100.702, 7009436.219], [230984.638, 7009147.235], [231682.677, 7008326.755], [232920.231, 7007814.511], [233645.984, 7009049.604], [233811.18, 7009540.439], [234297.116, 7009250.993], [234859.023, 7009214.522], [235017.761, 7008632.816], [235578.113, 7008942.966], [235420.84, 7009968.234], [235869.932, 7010315.282], [236844.291, 7009057.206], [238548.657, 7008577.757], [237796.508, 7008047.356], [237727.293, 7006861.958], [237965.329, 7006779.367], [238832.411, 7002977.577], [238359.454, 7002614.447], [238362.336, 7002539.32], [238241.009, 7002513.762], [237368.694, 7001856.279], [236440.947, 7000982.102], [235762.652, 7000545.201], [234677.858, 7001040.096], [232992.94, 7001358.02], [231406.095, 7002243.967], [229739.242, 7003586.686], [229196.718, 7003954.518], [227498.828, 7001218.993], [226823.861, 7000508.003], [224474.887, 6996031.976], [224706.123, 6995547.622], [224100.254, 6995266.449], [221516.905, 6998045.178], [218273.186, 6999866.89], [218276.769, 6999955.281], [218062.239, 7000075.538], [217877.201, 6999947.551], [217816.047, 6999861.124], [216684.072, 6999848.307], [215857.362, 7000239.514], [215969.429, 7000488.151], [215268.304, 7001048.299], [215149.9, 7001522.135], [214718.588, 7001851.991], [198928.241, 7011668.255], [217432.903, 7014022.64], [218517.859, 7013033.254], [220550.857, 7015168.506], [220488.995, 7017221.365], [221438.319, 7016645.455], [221965.404, 7017499.564], [222852.494, 7016910.6]]], [[[251711.586, 7010458.079], [251829.387, 7009977.724], [252420.91, 7009920.11], [252989.513, 7009620.356], [253335.482, 7009334.672], [253375.844, 7009357.636], [253623.43, 7009178.436], [253586.534, 7009129.209], [253725.425, 7009015.488], [254196.121, 7008133.173], [254114.224, 7008080.466], [254144.609, 7008037.808], [254235.893, 7008060.123], [254545.052, 7007483.503], [254877.902, 7007122.179], [254918.46, 7007172.936], [255025.574, 7007123.347], [255006.49, 7007079.186], [254934.33, 7007063.839], [255599.843, 7006328.56], [255752.81, 7006226.219], [255846.783, 7006054.112], [256208.114, 7005653.499], [256302.38, 7005647.38], [256385.548, 7005560.32], [256328.043, 7005521.302], [257377.924, 7004357.906], [258642.833, 7002609.152], [259700.002, 7001591.214], [257042.559, 6998197.139], [255827.356, 6996918.508], [255442.69, 6996881.081], [255111.336, 6995991.698], [254662.96, 6995871.731], [254783.573, 6995449.128], [254639.587, 6994953.385], [254447.43, 6994607.782], [254891.628, 6994280.498], [254999.171, 6992160.12], [253892.615, 6990776.106], [253532.592, 6990389.842], [252618.378, 6991488.937], [251972.957, 6991981.721], [250126.583, 6993987.657], [250062.279, 6994169.974], [249510.435, 6994061.168], [249259.121, 6994610.529], [249308.246, 6994963.606], [248861.539, 6995458.438], [249167.815, 6995427.564], [249116.317, 6995812.264], [248331.12, 6997202.951], [248010.109, 6997645.04], [247318.364, 6997886.537], [246644.15, 6998476.214], [245994.218, 6998880.013], [244975.085, 6999098.906], [244182.152, 6999509.663], [242914.54, 7001206.841], [242806.905, 7002986.305], [242667.128, 7003390.552], [243220.458, 7004223.01], [243134.587, 7004595.875], [243403.775, 7004885.835], [243741.263, 7004595.618], [243670.904, 7004373.326], [244048.143, 7004316.932], [244471.573, 7004745.248], [247873.228, 7008722.879], [248221.007, 7008795.182], [247366.595, 7009498.587], [248620.606, 7009652.039], [249221.349, 7010044.644], [249422.684, 7009588.924], [249759.486, 7009922.571], [249608.738, 7010240.525], [250663.291, 7010466.81], [250819.524, 7010502.201], [251711.586, 7010458.079]]], [[[217581.918, 7017022.241], [217797.487, 7016636.726], [218215.97, 7016574.774], [218198.122, 7016078.0], [217997.545, 7015844.913], [217797.374, 7016021.4], [217123.397, 7015687.534], [216987.842, 7016040.323], [217127.042, 7017123.988], [217325.666, 7017213.397], [217581.918, 7017022.241]]]]}}, {\\\"id\\\": \\\"131\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"K\\\\u00e4rs\\\\u00e4m\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 33.1, \\\"freshwarea\\\": 4.96, \\\"gml_id\\\": 1601100344, \\\"landarea\\\": 695.97, \\\"namefin\\\": \\\"K\\\\u00e4rs\\\\u00e4m\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"K\\\\u00e4rs\\\\u00e4m\\\\u00e4ki\\\", \\\"natcode\\\": \\\"317\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 700.93}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[440915.288, 7109285.027], [442416.869, 7108546.273], [442740.113, 7107723.233], [442817.201, 7106792.984], [443240.27, 7106596.602], [443249.362, 7106816.546], [443132.244, 7107462.005], [443345.377, 7108103.246], [446522.158, 7106569.01], [447461.914, 7105740.225], [447902.265, 7105137.097], [448313.886, 7104474.808], [448472.154, 7104526.712], [448346.983, 7105010.491], [448140.183, 7105703.166], [449607.504, 7105619.072], [456126.838, 7101250.439], [455681.109, 7100325.496], [456194.76, 7099799.421], [455987.803, 7099478.276], [457111.353, 7098884.225], [457337.006, 7098972.075], [457945.448, 7098438.543], [458209.88, 7098690.43], [457950.725, 7099224.815], [458418.159, 7099050.971], [460317.508, 7096721.518], [463238.399, 7091462.177], [463261.848, 7089025.861], [445000.109, 7080733.402], [445160.636, 7080010.56], [444011.429, 7079367.004], [443727.491, 7080161.993], [443500.326, 7080064.808], [437891.554, 7076186.817], [438038.941, 7077213.423], [437578.929, 7077166.006], [437500.762, 7075916.772], [434645.78, 7073943.999], [434794.364, 7075147.826], [434089.189, 7075393.087], [434376.058, 7076510.066], [434271.819, 7076962.283], [435077.506, 7077317.736], [434112.111, 7079126.342], [435416.503, 7079992.803], [435343.365, 7080201.381], [433612.181, 7080054.875], [431776.632, 7088599.14], [428100.788, 7089104.381], [429710.16, 7093852.544], [428734.858, 7094486.945], [429141.668, 7094719.5], [427821.996, 7096158.258], [428282.552, 7097106.906], [428949.574, 7096811.773], [429784.468, 7097683.887], [430127.858, 7097597.014], [430723.251, 7095617.284], [431065.229, 7094858.91], [431742.223, 7095549.189], [430839.992, 7097216.401], [431417.651, 7097706.202], [433160.782, 7098644.831], [431982.795, 7099480.933], [431864.851, 7099182.058], [431135.367, 7099082.82], [429302.692, 7099745.568], [429865.173, 7100052.333], [429843.6, 7100256.483], [430287.903, 7100518.91], [430884.532, 7100634.514], [431101.819, 7100356.495], [432461.092, 7100447.976], [431816.691, 7101581.192], [432810.388, 7102369.215], [433102.959, 7102149.302], [435651.558, 7104036.445], [435522.505, 7105008.437], [434421.221, 7106183.645], [433981.202, 7106932.035], [434209.923, 7107173.092], [434895.171, 7106989.521], [437478.819, 7107965.386], [440434.527, 7109915.434], [440915.288, 7109285.027]]]}}, {\\\"id\\\": \\\"132\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ilmajoki\\\", \\\"elakelaisten_osuus\\\": 25.7, \\\"freshwarea\\\": 2.89, \\\"gml_id\\\": 1601100237, \\\"landarea\\\": 576.81, \\\"namefin\\\": \\\"Ilmajoki\\\", \\\"nameswe\\\": \\\"Ilmajoki\\\", \\\"natcode\\\": \\\"145\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 579.7}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[282008.251, 6978737.198], [282122.97, 6978693.309], [283232.335, 6978432.002], [283664.485, 6977700.784], [283488.399, 6976733.321], [283527.959, 6976327.287], [283876.019, 6975704.121], [284315.584, 6975923.023], [284530.277, 6975905.285], [284586.114, 6975794.181], [284086.938, 6975434.866], [283947.038, 6974994.482], [283601.814, 6974771.328], [283396.441, 6974255.747], [282802.191, 6973884.279], [282306.825, 6973467.72], [281828.75, 6972697.449], [281584.334, 6972210.734], [281240.476, 6971840.5], [281237.632, 6971295.268], [281389.341, 6970983.631], [281038.592, 6970324.089], [281544.598, 6969975.164], [281466.588, 6969309.395], [280866.387, 6968750.152], [279978.322, 6967912.053], [282392.879, 6966042.001], [286903.348, 6961102.961], [289023.13, 6956906.454], [287678.771, 6956695.766], [287751.944, 6955860.196], [288198.946, 6955347.537], [288001.141, 6955128.675], [287789.558, 6955340.255], [287574.773, 6954694.179], [288326.554, 6953841.244], [287804.874, 6953746.028], [287379.632, 6953350.057], [286844.821, 6953952.313], [286617.683, 6953752.373], [288436.657, 6951723.95], [287666.496, 6951654.805], [279999.648, 6950989.351], [279534.586, 6950550.416], [279152.416, 6949750.325], [277334.583, 6951851.61], [277449.777, 6950734.283], [278838.779, 6949119.492], [278375.08, 6948122.066], [277556.862, 6948483.14], [277545.789, 6948483.993], [277558.517, 6948875.845], [275440.228, 6948976.386], [276270.191, 6950628.09], [274928.722, 6951909.741], [273631.988, 6951765.052], [272782.14, 6950986.595], [271708.111, 6952148.279], [271098.697, 6951979.182], [270681.681, 6952444.074], [270412.725, 6952153.314], [270005.798, 6952608.907], [269747.719, 6952386.321], [266667.427, 6955989.94], [266095.787, 6956205.937], [266224.327, 6956621.863], [265695.552, 6957148.392], [265242.437, 6957415.779], [264208.28, 6958286.913], [262822.302, 6958834.121], [261347.874, 6959554.489], [260306.138, 6959527.129], [260421.375, 6960019.823], [260236.396, 6960377.096], [259659.416, 6960752.228], [259457.694, 6960275.49], [259841.288, 6959573.132], [252161.233, 6963676.432], [253149.213, 6965195.64], [255005.203, 6967040.636], [259059.772, 6971163.906], [260555.946, 6971497.385], [263569.078, 6972182.969], [266153.558, 6972084.328], [276025.641, 6975899.362], [281068.5, 6979090.525], [282008.251, 6978737.198]]]}}, {\\\"id\\\": \\\"133\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Asikkala\\\", \\\"elakelaisten_osuus\\\": 37.2, \\\"freshwarea\\\": 192.25, \\\"gml_id\\\": 1601100029, \\\"landarea\\\": 563.3, \\\"namefin\\\": \\\"Asikkala\\\", \\\"nameswe\\\": \\\"Asikkala\\\", \\\"natcode\\\": \\\"016\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 755.55}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[436139.68, 6798279.085], [435714.468, 6793683.539], [435912.756, 6793343.376], [438298.685, 6793402.429], [439614.677, 6792895.536], [440622.224, 6791358.827], [439936.661, 6789861.635], [442401.762, 6788656.952], [440493.85, 6784765.802], [439890.598, 6783966.518], [440521.701, 6783307.034], [440987.936, 6781552.543], [441856.214, 6780190.765], [439242.476, 6776610.948], [438438.634, 6774760.005], [434407.88, 6774122.311], [434003.039, 6775347.813], [433282.034, 6775181.47], [433359.604, 6774888.989], [433139.295, 6774523.833], [432528.703, 6775012.582], [431461.978, 6774767.914], [430081.94, 6774838.368], [428726.492, 6774920.418], [427213.664, 6775783.431], [426019.4, 6776263.984], [424998.946, 6776487.676], [422974.529, 6776314.184], [422536.607, 6776416.537], [421278.199, 6780454.098], [418825.563, 6778235.154], [417940.39, 6777421.02], [417483.815, 6777714.331], [415806.434, 6776787.72], [414239.989, 6775727.322], [413344.828, 6776188.131], [411314.767, 6776690.058], [410286.05, 6776298.634], [409865.59, 6776502.56], [408513.141, 6775493.552], [407223.608, 6774944.921], [406663.163, 6775852.337], [406383.247, 6775964.177], [406032.03, 6776779.079], [406024.744, 6777231.029], [405156.381, 6776822.41], [405567.344, 6777880.867], [406006.036, 6778040.352], [406219.526, 6778344.36], [405543.606, 6778672.92], [405044.307, 6779651.612], [405370.66, 6780349.245], [405999.854, 6780622.507], [406265.646, 6781833.301], [406876.241, 6781524.029], [406080.567, 6782628.908], [406234.849, 6783164.31], [405873.607, 6783690.232], [406389.66, 6784299.182], [406441.67, 6784737.811], [406063.954, 6785184.927], [406241.342, 6785766.563], [405819.153, 6785808.028], [405126.069, 6786312.915], [405049.224, 6787035.15], [404565.365, 6787725.623], [404168.445, 6788189.007], [403321.352, 6788860.331], [403543.819, 6790950.967], [404883.353, 6791690.027], [406423.283, 6792059.94], [407191.44, 6791454.757], [411351.2, 6791654.82], [411522.583, 6792291.329], [411900.174, 6792492.136], [412031.07, 6793211.331], [412800.114, 6793668.623], [413947.701, 6794570.542], [415159.045, 6798601.617], [417367.426, 6799248.617], [420573.818, 6797562.888], [422133.777, 6800320.791], [425173.633, 6801803.328], [425663.734, 6801443.68], [426813.13, 6801279.627], [430753.562, 6801508.514], [432732.949, 6804050.61], [436139.68, 6798279.085]]]}}, {\\\"id\\\": \\\"134\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Enonteki\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 33.3, \\\"freshwarea\\\": 438.72, \\\"gml_id\\\": 1601100227, \\\"landarea\\\": 7952.59, \\\"namefin\\\": \\\"Enonteki\\\\u00f6\\\", \\\"nameswe\\\": \\\"Enontekis\\\", \\\"natcode\\\": \\\"047\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 8391.31}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[278397.09, 7698177.339], [288050.239, 7694506.83], [291243.04, 7687274.067], [295442.425, 7679040.86], [300228.18, 7670665.046], [306845.179, 7657087.14], [307161.09, 7652860.431], [312349.459, 7642216.793], [312778.75, 7629816.301], [319505.541, 7632432.574], [322200.054, 7630181.246], [329788.186, 7625337.079], [339725.231, 7624877.973], [344227.47, 7617794.98], [352500.749, 7622510.881], [355725.67, 7624214.321], [365237.82, 7625173.24], [367835.23, 7630085.33], [370024.363, 7637575.002], [373994.08, 7639342.62], [378445.301, 7638072.857], [381910.19, 7632637.89], [385308.294, 7633566.049], [384896.35, 7629552.91], [387080.23, 7628527.94], [388724.329, 7626424.829], [390751.67, 7625243.05], [397363.57, 7622976.72], [402989.349, 7620779.9], [409903.159, 7615424.808], [412612.09, 7607069.13], [414458.47, 7606155.54], [418947.929, 7588234.057], [405397.163, 7587244.1], [402562.307, 7585537.697], [401534.885, 7584928.284], [400107.768, 7584070.386], [399583.4, 7583755.166], [398732.691, 7583234.635], [397306.862, 7582384.246], [394718.448, 7580790.26], [381943.253, 7561966.502], [379813.189, 7561172.107], [373711.623, 7558896.763], [373490.922, 7560270.537], [373604.112, 7560392.13], [373693.896, 7560676.09], [373914.93, 7561008.531], [374124.797, 7561073.615], [374320.716, 7561489.941], [374368.589, 7561884.254], [374288.174, 7562071.652], [374291.077, 7562404.203], [373957.838, 7562568.272], [373979.465, 7562673.076], [373641.706, 7562773.413], [366703.026, 7563861.713], [364844.569, 7567317.933], [347534.118, 7566871.463], [346012.513, 7564770.911], [345878.353, 7564702.22], [345812.437, 7564817.4], [345681.316, 7564962.288], [345538.59, 7565075.734], [345412.1, 7565074.129], [345279.9, 7565038.792], [345150.313, 7565015.288], [344998.833, 7565035.022], [344850.051, 7565068.602], [344744.291, 7565039.9], [344670.693, 7564933.459], [344640.02, 7564802.77], [344645.289, 7564668.215], [344611.603, 7564517.644], [344533.503, 7564401.366], [344437.815, 7564294.028], [344368.837, 7564239.412], [344262.159, 7564192.729], [344148.393, 7564164.48], [344005.508, 7564155.662], [343851.9, 7564173.498], [343681.108, 7564208.196], [343356.783, 7564142.483], [343249.89, 7564051.732], [343137.212, 7564005.386], [343012.531, 7563999.638], [342839.597, 7563992.397], [342668.098, 7563973.088], [342583.341, 7563923.27], [342528.93, 7563759.678], [342473.134, 7563608.273], [342328.772, 7563411.174], [342083.561, 7563243.298], [341924.017, 7563143.165], [341683.968, 7563157.371], [341525.056, 7563109.288], [341379.426, 7563006.472], [340996.963, 7562703.269], [340905.791, 7562645.804], [340798.509, 7562627.151], [340694.868, 7562640.451], [340578.601, 7562722.451], [340415.573, 7562911.083], [340281.43, 7563036.092], [340187.886, 7563090.95], [340164.913, 7563192.33], [340198.769, 7563306.829], [340208.022, 7563410.547], [340114.374, 7563741.944], [340118.62, 7563865.938], [340100.052, 7564015.187], [340021.071, 7564159.463], [339962.85, 7564517.049], [339832.248, 7565030.646], [339808.792, 7565202.183], [339864.916, 7565439.784], [339905.463, 7565726.319], [339977.991, 7565890.906], [340050.214, 7566129.741], [340055.081, 7566265.746], [340091.755, 7566396.103], [340136.837, 7566772.562], [340206.438, 7566959.39], [340206.885, 7567007.48], [340164.692, 7567125.842], [340056.91, 7567335.701], [340030.443, 7567487.354], [340055.43, 7568141.294], [340119.406, 7568256.299], [340236.439, 7568388.601], [340269.727, 7568491.147], [340287.028, 7568754.721], [340433.882, 7569079.945], [340503.469, 7569186.62], [340958.293, 7569492.137], [340995.069, 7569584.456], [341012.906, 7569898.133], [340992.623, 7569973.317], [340892.705, 7570100.627], [340767.261, 7570199.174], [340627.413, 7570250.354], [340533.823, 7570225.07], [340413.273, 7570261.221], [340328.831, 7570337.645], [340248.751, 7570459.982], [340216.782, 7570581.804], [340244.384, 7570810.866], [340206.484, 7571053.22], [340372.896, 7571289.239], [340415.787, 7571423.342], [340410.932, 7571789.356], [340316.638, 7572034.448], [340324.084, 7572226.464], [340363.087, 7572366.867], [340582.604, 7572833.04], [340621.9, 7572979.354], [340803.002, 7573479.486], [340835.814, 7573820.565], [340818.159, 7574073.93], [340694.277, 7574410.706], [340666.221, 7574534.286], [340606.008, 7575308.789], [340532.505, 7575486.792], [340397.016, 7575587.636], [340310.008, 7575613.955], [340063.465, 7575577.978], [339509.201, 7575853.702], [339373.407, 7575948.574], [339257.107, 7576072.555], [339153.482, 7576249.997], [338965.925, 7576597.904], [338879.586, 7576800.544], [338822.968, 7576873.456], [338407.354, 7577234.614], [338291.361, 7577364.571], [337990.864, 7577782.155], [337881.115, 7578529.103], [337844.375, 7578679.164], [337720.295, 7578889.692], [337676.948, 7579028.148], [337562.707, 7579194.091], [337544.736, 7579399.354], [337558.519, 7579557.022], [337604.233, 7579671.0], [337581.742, 7579906.607], [337658.958, 7580293.56], [337701.304, 7580419.771], [337847.812, 7580665.091], [337899.615, 7580820.855], [337883.585, 7581228.488], [337935.761, 7581514.488], [337896.587, 7581574.554], [337778.568, 7581622.442], [337718.448, 7581736.941], [337631.025, 7581992.726], [337430.766, 7582336.198], [337334.018, 7582381.894], [337237.343, 7582372.865], [337147.018, 7582331.188], [337038.227, 7582322.543], [336645.504, 7582333.991], [336425.085, 7582503.259], [336230.04, 7582617.151], [335883.684, 7582918.913], [335699.226, 7583044.319], [335590.762, 7583163.956], [335403.165, 7583307.522], [334984.008, 7583719.202], [334678.209, 7583906.76], [334593.041, 7584011.203], [334470.575, 7584253.823], [334331.263, 7584358.944], [334268.61, 7584472.265], [334293.002, 7584641.512], [334247.694, 7584862.219], [334199.062, 7585259.549], [334121.954, 7585323.54], [333961.962, 7585375.526], [333634.653, 7585411.784], [333412.623, 7585466.913], [333161.606, 7585463.259], [332764.08, 7585541.105], [332470.162, 7585521.592], [332264.941, 7585551.799], [331855.997, 7585642.153], [331753.124, 7585753.534], [331634.682, 7585955.88], [331532.482, 7586488.176], [331482.016, 7586645.029], [331188.544, 7586961.607], [331123.515, 7587103.109], [331045.461, 7587343.552], [330953.986, 7587438.369], [330870.495, 7587492.682], [330714.742, 7587546.687], [330567.551, 7587650.41], [330433.808, 7587703.289], [330301.407, 7587782.14], [330186.783, 7587974.333], [329603.836, 7588701.292], [329497.751, 7588784.833], [329365.817, 7588833.575], [329205.121, 7588829.773], [329138.726, 7588865.204], [329105.377, 7588959.058], [328997.203, 7589080.814], [328735.298, 7589492.859], [328753.821, 7589896.671], [328850.021, 7590285.368], [328956.699, 7590375.16], [329024.503, 7590495.495], [328996.361, 7590641.834], [329272.292, 7591018.294], [329342.086, 7591207.077], [329292.967, 7591345.854], [329079.065, 7591478.981], [328845.305, 7591695.234], [328708.218, 7591800.408], [328384.956, 7591953.125], [328154.147, 7591990.969], [328017.757, 7592070.054], [327835.206, 7592213.165], [327752.057, 7592311.667], [327650.956, 7592527.352], [327570.999, 7592609.715], [327469.794, 7592631.042], [327368.942, 7592620.248], [327184.745, 7592549.735], [326982.846, 7592448.006], [326643.073, 7592317.462], [326283.124, 7591928.066], [326147.767, 7591830.739], [325939.595, 7591761.2], [325733.355, 7591729.65], [325208.727, 7591828.528], [324869.096, 7591817.806], [324743.788, 7591878.287], [324597.111, 7592032.013], [324482.848, 7592476.309], [324499.657, 7592876.27], [324406.314, 7592971.315], [324021.809, 7593253.944], [323606.011, 7593397.901], [323304.531, 7593463.715], [322980.252, 7593592.887], [322891.214, 7593693.745], [322874.146, 7593828.866], [322928.248, 7593904.245], [323136.056, 7594081.772], [323177.585, 7594185.808], [323176.691, 7594284.055], [323114.572, 7594401.49], [322802.987, 7594774.52], [322725.326, 7594900.842], [322598.336, 7595043.723], [322477.745, 7595078.075], [322349.317, 7595038.703], [322271.814, 7595052.755], [322096.185, 7595224.256], [321732.262, 7595389.732], [321386.902, 7595656.296], [321214.93, 7595977.84], [321163.172, 7596140.861], [321190.653, 7596361.882], [321402.846, 7597282.653], [321370.142, 7597464.709], [321219.156, 7597648.954], [321060.517, 7597685.288], [320703.285, 7597683.913], [320565.76, 7597663.037], [320428.173, 7597485.87], [320385.783, 7597325.804], [320393.992, 7597213.133], [320375.743, 7597015.679], [320277.03, 7596930.659], [320035.892, 7596885.148], [319677.841, 7596751.549], [319194.424, 7596754.758], [319000.913, 7596698.779], [318874.876, 7596551.038], [318783.101, 7596483.659], [318580.856, 7596414.109], [318456.329, 7596450.647], [318360.101, 7596529.852], [318169.206, 7597028.779], [318097.876, 7597279.018], [317959.48, 7597628.943], [317888.262, 7597764.945], [317787.371, 7597870.407], [317578.365, 7597941.457], [317345.392, 7597937.554], [317168.702, 7597896.702], [317018.063, 7597932.646], [316873.558, 7598048.409], [316679.954, 7598301.002], [316578.955, 7598404.516], [316283.16, 7598582.312], [315961.783, 7598847.602], [315726.855, 7598922.023], [315147.453, 7599048.468], [314795.341, 7599068.879], [314515.993, 7598983.28], [314395.052, 7598895.418], [314305.411, 7598908.152], [314229.57, 7599032.313], [314146.837, 7599333.294], [313964.158, 7599724.013], [313858.011, 7599871.46], [313563.495, 7600351.63], [313439.177, 7600619.626], [313183.364, 7601063.733], [313168.959, 7601201.999], [313249.078, 7601459.587], [313213.152, 7601543.651], [313025.054, 7601636.964], [312851.528, 7601614.073], [312679.223, 7601502.513], [312565.135, 7601489.774], [312408.543, 7601616.15], [312265.262, 7601896.083], [312122.25, 7601916.408], [311891.088, 7601881.193], [311737.131, 7601791.972], [311561.246, 7601644.559], [311414.289, 7601484.21], [311322.791, 7601253.915], [311044.618, 7601010.129], [310922.381, 7600855.329], [310570.428, 7600478.051], [310252.366, 7600238.228], [310084.876, 7599973.266], [309872.326, 7599781.283], [309693.636, 7599653.3], [309302.895, 7599647.094], [309161.671, 7599685.372], [309127.32, 7599805.468], [309139.042, 7600003.512], [309262.076, 7600105.916], [309378.041, 7600520.867], [309365.054, 7600612.719], [309289.828, 7600767.19], [309280.222, 7600892.898], [309303.321, 7601023.385], [309382.277, 7601188.56], [309382.644, 7601293.131], [309362.482, 7601353.475], [309369.45, 7601423.245], [309444.018, 7601524.397], [309579.03, 7601645.741], [309616.102, 7601754.739], [309603.503, 7601850.519], [309546.02, 7602001.157], [309451.239, 7602181.699], [309339.904, 7602337.731], [309326.324, 7602403.468], [309361.393, 7602492.517], [309555.223, 7602718.606], [309652.721, 7602867.797], [309679.818, 7602977.802], [309648.274, 7603145.961], [309695.085, 7603372.665], [309862.769, 7603700.007], [309818.276, 7603758.794], [309683.817, 7603824.534], [309538.013, 7603837.122], [309399.566, 7603883.15], [309178.594, 7603748.343], [309056.14, 7603732.444], [308847.092, 7603757.359], [308310.09, 7603927.846], [307783.66, 7604143.508], [307657.181, 7604168.226], [307487.256, 7604120.861], [307429.424, 7604066.285], [307309.994, 7603818.638], [307189.956, 7603685.777], [307070.086, 7603615.303], [306963.374, 7603615.874], [306579.356, 7603785.158], [306415.014, 7603692.888], [306280.162, 7603754.702], [306176.626, 7603827.458], [306037.757, 7604010.402], [305929.009, 7604111.802], [305826.875, 7604138.136], [305732.543, 7604121.447], [305587.137, 7604037.379], [305441.794, 7603867.33], [305135.21, 7603668.051], [304559.851, 7603192.385], [304462.915, 7603210.145], [304411.036, 7603255.559], [304166.102, 7603579.733], [304038.232, 7603670.998], [303948.258, 7603778.598], [303850.954, 7604024.039], [303771.61, 7604049.826], [303626.512, 7604006.028], [303530.566, 7604013.638], [303445.596, 7604070.409], [303364.411, 7604084.638], [303044.48, 7603947.689], [302771.215, 7603854.358], [302680.283, 7603770.936], [302427.577, 7603621.244], [302380.69, 7603535.376], [302245.069, 7603428.293], [302072.138, 7603371.186], [301809.66, 7603184.236], [301640.92, 7603088.444], [301366.042, 7603200.513], [301211.257, 7603183.82], [300955.132, 7603221.574], [300781.598, 7603259.128], [300676.87, 7603319.913], [300603.251, 7603409.776], [300580.888, 7603669.545], [300517.845, 7603925.365], [300501.676, 7604045.688], [300522.206, 7604311.227], [300473.311, 7604386.511], [300318.526, 7604510.667], [300241.535, 7604546.605], [300024.105, 7604467.77], [299925.97, 7604413.229], [299901.033, 7604345.293], [299821.464, 7604274.831], [299698.981, 7604218.669], [299592.874, 7604205.222], [299541.404, 7604314.954], [299530.616, 7604448.833], [299486.531, 7604511.614], [299190.913, 7604617.721], [298946.745, 7604654.232], [298830.261, 7604617.67], [298690.615, 7604691.989], [298567.153, 7604686.302], [298489.552, 7604575.341], [297945.827, 7604432.625], [297849.85, 7604383.948], [297641.206, 7604453.172], [297548.043, 7604468.522], [297406.822, 7604426.346], [297265.987, 7604508.884], [297201.143, 7604605.902], [297137.906, 7604658.552], [297037.536, 7604984.496], [296846.03, 7605184.754], [296776.191, 7605513.719], [296568.508, 7605894.702], [296504.26, 7606118.435], [296293.986, 7606433.294], [296275.022, 7606586.085], [296236.323, 7606702.688], [296135.164, 7606879.804], [296142.728, 7607136.632], [296113.592, 7607449.43], [296139.51, 7607768.732], [296139.296, 7608008.185], [295990.655, 7608697.118], [295750.061, 7609212.196], [295718.944, 7609344.105], [295738.082, 7609429.352], [295998.606, 7609782.869], [296049.467, 7609908.527], [296060.037, 7610134.822], [296274.494, 7610324.63], [296234.78, 7610592.18], [296117.096, 7610724.708], [295961.699, 7610762.435], [295881.886, 7610689.923], [295712.299, 7610665.129], [295659.478, 7610722.321], [295378.408, 7611134.862], [295342.889, 7611323.53], [295283.433, 7611494.438], [295284.435, 7611605.009], [295134.426, 7611756.885], [294891.237, 7612136.362], [294869.262, 7612239.157], [294941.218, 7612435.177], [294919.233, 7612558.105], [294857.151, 7612703.078], [294760.197, 7612801.315], [294626.128, 7612891.137], [294426.818, 7613074.058], [294075.842, 7613269.587], [293970.349, 7613405.326], [293826.868, 7613643.013], [293726.336, 7613725.523], [293617.759, 7613929.48], [293518.317, 7614305.579], [293396.566, 7614599.474], [293288.029, 7614722.961], [293079.348, 7614872.557], [292882.199, 7615157.846], [292635.174, 7615448.119], [292543.393, 7615598.122], [292524.609, 7615712.718], [292555.885, 7615844.398], [292526.949, 7615937.809], [292354.162, 7616083.852], [291987.413, 7616607.394], [291869.092, 7616733.89], [291752.196, 7616753.621], [291548.362, 7616749.912], [291374.012, 7616819.649], [291157.989, 7616774.803], [290963.348, 7616681.626], [290877.742, 7616752.506], [290833.859, 7616837.428], [290836.646, 7616945.188], [290954.24, 7617155.312], [290877.837, 7617237.454], [290728.209, 7617292.613], [290547.696, 7617320.747], [290328.058, 7617421.179], [290152.676, 7617561.418], [289999.082, 7617596.92], [289624.291, 7617555.883], [289281.041, 7617407.104], [289108.864, 7617518.874], [288480.756, 7617422.7], [288320.04, 7617225.532], [288097.429, 7617195.422], [287965.372, 7617244.872], [287838.109, 7617261.619], [287693.11, 7617181.534], [287507.192, 7617196.116], [287350.412, 7617179.553], [287217.754, 7617202.882], [287071.323, 7617269.838], [286844.292, 7617417.298], [286621.074, 7617421.533], [286258.197, 7617520.122], [286063.48, 7617628.166], [285771.823, 7617733.786], [285563.94, 7617767.526], [285199.334, 7617950.72], [285007.387, 7617925.574], [284947.486, 7618032.121], [284955.817, 7618135.897], [284903.472, 7618277.893], [284704.493, 7618404.382], [284556.219, 7618453.322], [284424.477, 7618587.191], [284388.286, 7618769.853], [284470.226, 7619389.355], [284482.795, 7619899.102], [284474.162, 7620034.773], [284399.899, 7620196.309], [284462.697, 7620263.252], [284546.337, 7620677.352], [284674.391, 7620769.191], [285068.371, 7620926.268], [285057.158, 7621012.917], [285049.297, 7621070.99], [285109.93, 7621136.949], [285033.593, 7621198.123], [285030.742, 7621331.204], [285062.186, 7621545.371], [285030.425, 7621651.126], [285061.312, 7621778.824], [285003.381, 7621905.276], [284902.37, 7622023.966], [284808.092, 7622290.871], [284643.962, 7622584.86], [284560.939, 7622681.696], [284438.212, 7622703.968], [284251.584, 7622873.481], [284141.815, 7622944.752], [284048.373, 7623098.955], [283898.257, 7623270.832], [283443.396, 7623599.857], [283321.819, 7623734.661], [283311.576, 7623954.981], [283243.484, 7624100.584], [283123.303, 7624249.358], [282993.924, 7624467.472], [282973.137, 7624582.201], [282993.84, 7624749.189], [282938.122, 7624837.19], [282587.11, 7624894.31], [282503.687, 7624946.888], [282393.072, 7625151.071], [282264.923, 7625280.545], [282016.275, 7625373.765], [281901.225, 7625695.068], [281857.848, 7625926.702], [281880.734, 7626095.449], [281932.376, 7626208.978], [281714.741, 7626483.935], [281203.889, 7626812.557], [280867.932, 7626795.898], [280599.365, 7626929.377], [280377.232, 7627003.874], [280149.314, 7627181.512], [279868.168, 7627370.541], [279739.131, 7627530.23], [279772.395, 7627742.043], [279639.984, 7627948.344], [279517.168, 7627948.596], [279401.71, 7628002.377], [279247.349, 7628210.813], [279150.475, 7628148.169], [279088.28, 7628049.793], [278984.802, 7628001.83], [278880.513, 7628066.575], [278446.061, 7628031.655], [278252.666, 7628030.928], [278120.062, 7628134.679], [278074.982, 7628247.789], [278001.605, 7628279.212], [277875.191, 7628263.738], [277767.94, 7628198.048], [277478.443, 7628142.599], [277378.003, 7628198.13], [277157.604, 7628257.125], [276975.334, 7628358.802], [276870.204, 7628509.556], [276719.451, 7628624.604], [276531.338, 7628705.732], [276391.318, 7628836.58], [276269.986, 7628872.957], [276087.244, 7628979.908], [275957.126, 7628989.002], [275761.318, 7628966.422], [275705.836, 7629003.473], [275607.015, 7629235.588], [275510.904, 7629362.035], [275447.527, 7629513.329], [275354.201, 7629627.387], [275159.045, 7629691.333], [275061.307, 7629781.683], [274953.83, 7629915.308], [274740.486, 7629938.774], [274601.817, 7630003.056], [274343.915, 7630244.421], [274320.49, 7630432.002], [274090.712, 7630632.299], [274028.284, 7630713.035], [273968.126, 7630876.128], [274019.986, 7631130.586], [274160.622, 7631265.763], [274186.616, 7631363.467], [274138.83, 7631829.264], [274093.807, 7631942.498], [273999.266, 7632024.513], [273944.056, 7632136.766], [273880.311, 7632324.342], [273883.011, 7632471.033], [273994.083, 7632612.884], [274093.531, 7632679.376], [274236.672, 7632739.409], [274283.221, 7632801.159], [274295.053, 7632878.513], [274266.639, 7633036.395], [273984.388, 7633835.814], [273888.909, 7634008.529], [273932.48, 7634100.747], [274142.68, 7634405.705], [274166.704, 7634524.075], [274136.889, 7634688.126], [274012.075, 7634869.802], [273864.294, 7635089.833], [273849.432, 7635311.827], [273925.777, 7635573.043], [273972.618, 7636017.29], [274036.757, 7636113.47], [274244.285, 7636591.833], [274086.589, 7636827.151], [273996.699, 7637121.573], [273996.349, 7637300.716], [273918.819, 7637616.365], [273852.473, 7637699.42], [273714.811, 7637795.548], [273567.903, 7638001.312], [273462.413, 7638220.234], [273546.908, 7638297.274], [273552.962, 7638439.537], [273488.83, 7638504.27], [273257.629, 7638511.099], [273039.501, 7638649.495], [272850.174, 7638712.517], [272582.539, 7638839.707], [272424.995, 7638851.019], [272323.832, 7638833.167], [272248.456, 7638749.856], [272138.787, 7638736.785], [272042.4, 7638679.896], [271830.032, 7638612.422], [271715.5, 7638515.042], [271596.926, 7638478.504], [271416.837, 7638492.368], [271182.448, 7638243.892], [271091.246, 7638178.422], [270980.464, 7638159.253], [270897.439, 7638115.149], [270760.472, 7638116.622], [270540.217, 7638152.559], [270179.123, 7638293.027], [269817.936, 7638554.282], [269718.379, 7638709.083], [269721.277, 7638819.472], [269668.846, 7638961.525], [269633.731, 7639176.371], [269371.576, 7639663.276], [269314.089, 7639896.413], [269031.158, 7640397.442], [268822.713, 7640653.628], [268710.879, 7641171.93], [268633.85, 7641370.805], [268568.698, 7641445.704], [268572.591, 7641586.216], [268532.2, 7641910.231], [268645.556, 7641975.49], [268631.091, 7642073.517], [268549.945, 7642190.307], [268313.356, 7642690.753], [268298.05, 7642861.358], [268417.032, 7643145.462], [268248.861, 7643462.023], [268163.335, 7643555.038], [268167.06, 7643653.333], [268118.854, 7643756.751], [268032.724, 7643808.138], [267913.881, 7644009.261], [267832.452, 7644401.77], [267751.077, 7644494.468], [267502.474, 7644648.287], [267401.115, 7644722.875], [267432.153, 7644787.864], [267222.669, 7644924.039], [267150.637, 7644896.028], [266919.24, 7645002.72], [266775.187, 7645113.766], [266621.019, 7645298.698], [266526.503, 7645466.842], [266420.677, 7645560.533], [266272.158, 7645743.96], [266120.875, 7645763.202], [266020.324, 7645825.636], [265972.649, 7645912.885], [265840.394, 7646020.807], [265899.585, 7646228.133], [265893.446, 7646327.361], [265789.897, 7646469.02], [265547.774, 7646718.334], [265422.954, 7646960.276], [265181.933, 7647109.339], [264955.928, 7647367.521], [264845.802, 7647455.036], [264694.993, 7647619.116], [264452.566, 7647754.21], [264407.271, 7647805.0], [264415.663, 7647984.78], [264367.365, 7648114.589], [264415.555, 7648232.459], [264439.207, 7648346.782], [264374.11, 7648480.132], [264016.084, 7648725.551], [263932.42, 7648854.7], [263933.95, 7648989.367], [263974.843, 7649194.482], [263917.522, 7649325.001], [263796.352, 7649441.879], [263550.767, 7649623.625], [263487.839, 7649738.597], [263409.514, 7649800.879], [263309.288, 7649925.651], [263104.122, 7650071.231], [263013.382, 7650048.12], [262916.875, 7650090.053], [262849.93, 7650185.309], [262413.1, 7650428.618], [262002.919, 7650795.996], [261978.482, 7650893.012], [262044.272, 7651045.379], [261989.347, 7651352.634], [262028.49, 7651427.224], [262039.146, 7651512.685], [261916.996, 7651639.723], [261627.363, 7651864.163], [261479.615, 7652136.594], [261265.541, 7652311.144], [261098.731, 7652474.883], [261087.455, 7652562.548], [261034.33, 7652694.717], [260885.818, 7652800.249], [260550.521, 7652852.221], [260415.323, 7652910.125], [260326.574, 7652929.156], [260177.894, 7652873.716], [260122.887, 7652927.573], [260159.661, 7652992.273], [260249.924, 7653087.777], [260312.304, 7653226.353], [260111.314, 7653510.258], [259994.716, 7653612.578], [259915.86, 7653749.365], [259800.813, 7653807.242], [259711.107, 7653876.646], [259588.429, 7654078.192], [259357.003, 7654260.524], [259191.939, 7654560.938], [259087.888, 7654647.923], [258901.471, 7654730.142], [258847.086, 7654590.788], [258844.183, 7654462.275], [258799.396, 7654358.131], [258645.972, 7654156.281], [258401.443, 7654090.365], [258233.79, 7654306.497], [257950.394, 7654294.831], [257846.137, 7654180.621], [257755.899, 7654145.411], [257515.94, 7654284.332], [257493.284, 7654399.323], [257561.59, 7654716.44], [257535.719, 7654799.556], [257412.221, 7654854.225], [257198.98, 7654784.262], [257004.588, 7654802.114], [256842.296, 7654899.652], [256742.998, 7654994.21], [256584.835, 7655104.771], [256317.556, 7655033.137], [255828.174, 7654997.946], [255739.612, 7654799.632], [255635.383, 7654745.715], [255529.524, 7654635.673], [255448.944, 7654436.521], [255227.976, 7654384.366], [254928.658, 7654434.664], [254720.548, 7654489.876], [254521.546, 7654591.578], [254320.622, 7654748.823], [254319.967, 7654934.764], [254398.458, 7655013.381], [254624.443, 7655095.237], [254709.62, 7655040.389], [254825.18, 7655046.849], [255008.816, 7655088.667], [255192.525, 7655211.042], [255338.044, 7655254.677], [255410.768, 7655356.025], [255350.066, 7655553.332], [255204.467, 7655908.123], [254979.905, 7656339.303], [254981.536, 7656614.842], [254838.512, 7656827.364], [254786.94, 7657109.034], [254664.778, 7657530.259], [254563.926, 7657689.352], [254444.673, 7657736.588], [254032.172, 7658107.639], [253777.954, 7658111.511], [253627.144, 7658174.308], [253633.633, 7658298.419], [253612.463, 7658507.888], [253541.373, 7658702.165], [253522.111, 7658810.819], [253462.166, 7659354.056], [253474.507, 7659477.598], [253463.1, 7659585.376], [253408.013, 7659679.416], [253576.957, 7659755.146], [253678.12, 7659822.588], [253772.279, 7659856.365], [253885.358, 7660020.103], [254292.914, 7660206.792], [254394.036, 7660351.64], [254627.27, 7660306.203], [255341.992, 7660017.484], [255400.45, 7660017.696], [255426.577, 7660037.211], [255489.774, 7660226.096], [255511.07, 7660419.152], [255589.228, 7660636.73], [255704.107, 7660778.146], [255963.01, 7661029.994], [256046.569, 7661200.76], [256314.22, 7661560.348], [256379.223, 7661686.625], [256456.979, 7661900.209], [256508.201, 7662150.649], [256488.383, 7662416.229], [256497.047, 7662966.754], [256450.72, 7663128.312], [256301.797, 7663513.406], [255865.949, 7664152.617], [255798.477, 7664304.225], [255537.634, 7664678.393], [255430.822, 7665081.46], [255225.113, 7665140.258], [254955.371, 7665163.212], [254746.83, 7665395.309], [254368.098, 7665718.923], [254247.794, 7665724.917], [254135.04, 7665846.822], [253942.275, 7666015.008], [253895.771, 7666134.35], [253733.527, 7666325.627], [253651.878, 7666597.415], [253576.626, 7666771.944], [253538.093, 7666971.026], [253475.608, 7667112.063], [253272.971, 7667457.796], [253124.382, 7668738.898], [253036.967, 7668952.913], [252905.252, 7669127.063], [252491.05, 7669571.377], [252117.694, 7670005.422], [251919.984, 7670282.945], [251816.426, 7670555.041], [251665.091, 7670672.892], [251371.148, 7670815.158], [250827.692, 7671040.843], [250262.038, 7671252.833], [249986.977, 7671406.742], [249699.532, 7671577.997], [249452.94, 7671775.333], [249098.124, 7672162.51], [249002.631, 7672216.17], [248625.069, 7672168.928], [248456.67, 7672117.08], [248115.15, 7672128.642], [247738.761, 7672236.246], [247411.822, 7672232.279], [246650.417, 7672462.301], [246061.091, 7672679.436], [245920.02, 7672781.864], [245792.821, 7672820.596], [245623.838, 7672905.68], [245557.646, 7672990.664], [245276.673, 7673227.65], [245140.274, 7673275.323], [245099.129, 7673243.565], [245049.54, 7673297.121], [245063.906, 7673359.325], [244942.527, 7673375.31], [244829.696, 7673416.661], [244761.738, 7673483.734], [244777.368, 7673580.754], [244709.778, 7673671.971], [244578.382, 7673709.062], [244476.285, 7673654.156], [244444.428, 7673720.248], [244323.391, 7673780.531], [244167.699, 7673632.843], [243986.149, 7673856.058], [243894.62, 7673929.452], [243880.25, 7674069.698], [243852.032, 7674130.896], [243798.072, 7674176.447], [243582.38, 7674115.207], [243470.949, 7674150.329], [243418.313, 7674250.102], [243304.573, 7674363.946], [243137.16, 7674444.137], [243093.37, 7674498.797], [243090.919, 7674575.243], [243238.707, 7674571.778], [250470.957, 7680517.905], [256505.789, 7675314.62], [263044.62, 7669896.14], [265802.13, 7677211.78], [263895.03, 7679431.84], [263731.479, 7681402.49], [261962.909, 7687451.244], [262915.935, 7690767.229], [266991.532, 7694694.646], [274712.645, 7699672.756], [278397.09, 7698177.339]]]}}, {\\\"id\\\": \\\"135\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Konnevesi\\\", \\\"elakelaisten_osuus\\\": 37.9, \\\"freshwarea\\\": 167.91, \\\"gml_id\\\": 1601100452, \\\"landarea\\\": 512.94, \\\"namefin\\\": \\\"Konnevesi\\\", \\\"nameswe\\\": \\\"Konnevesi\\\", \\\"natcode\\\": \\\"275\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 680.85}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[458701.957, 6966221.441], [459791.964, 6966970.282], [460407.526, 6966405.5], [460882.112, 6965695.76], [461282.179, 6965443.648], [467106.855, 6957611.173], [469658.072, 6959845.472], [469041.648, 6960703.851], [469335.815, 6961030.086], [471765.145, 6962221.13], [475927.647, 6954737.946], [475760.939, 6954016.626], [476716.756, 6951611.785], [477584.407, 6950202.436], [477611.021, 6949453.67], [477904.767, 6948643.448], [478015.889, 6947937.86], [477941.621, 6947050.701], [479045.267, 6945730.463], [479386.969, 6942287.987], [478249.466, 6941544.986], [479411.708, 6940469.437], [479157.422, 6940051.468], [478038.127, 6939818.197], [477876.07, 6938879.092], [477181.939, 6936869.617], [476299.979, 6935562.593], [475184.149, 6934035.833], [474689.158, 6933671.414], [473405.906, 6933594.764], [472811.89, 6933709.596], [472415.998, 6934175.017], [472155.808, 6933684.213], [469100.672, 6930714.591], [468796.986, 6931941.094], [462639.254, 6935706.632], [462139.353, 6936171.941], [462169.336, 6936846.668], [461000.857, 6937477.269], [460854.862, 6937801.274], [460335.072, 6937816.264], [459600.362, 6938835.848], [459285.495, 6938206.1], [460217.138, 6935182.69], [460492.155, 6935164.469], [460691.129, 6934282.429], [459856.001, 6933657.84], [459432.568, 6934243.301], [458611.006, 6933761.49], [459012.159, 6931798.585], [459363.423, 6930946.031], [459736.887, 6929131.066], [459019.239, 6929150.248], [457583.072, 6927759.006], [455688.132, 6929005.09], [453070.658, 6933332.825], [450476.004, 6939564.802], [454337.693, 6941963.477], [455772.408, 6944342.346], [456448.486, 6947529.827], [460762.497, 6949987.9], [457047.041, 6951136.807], [455809.048, 6953731.546], [456195.899, 6958039.915], [455815.178, 6959175.019], [454985.547, 6960096.641], [454519.175, 6960232.356], [454031.123, 6960701.89], [453321.693, 6960613.372], [452768.681, 6960853.181], [452365.219, 6961319.414], [452160.903, 6961894.71], [451737.207, 6962433.42], [451335.251, 6963117.425], [451164.781, 6963567.752], [451115.313, 6964142.152], [450806.678, 6964549.138], [450310.043, 6966508.131], [453848.006, 6967979.933], [456811.171, 6968809.34], [458701.957, 6966221.441]]]}}, {\\\"id\\\": \\\"136\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pudasj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 38.2, \\\"freshwarea\\\": 228.99, \\\"gml_id\\\": 1601100581, \\\"landarea\\\": 5638.28, \\\"namefin\\\": \\\"Pudasj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Pudasj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"615\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5867.27}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[531660.85, 7309046.605], [535048.175, 7302408.077], [535884.599, 7302094.746], [535817.024, 7301806.136], [535060.569, 7302026.853], [534776.431, 7300873.374], [533535.1, 7296872.75], [532616.564, 7295659.374], [533226.706, 7295360.36], [534084.889, 7294383.174], [534974.38, 7293910.579], [536961.49, 7282789.967], [537909.957, 7281546.95], [535943.053, 7265221.671], [537669.706, 7262243.342], [537946.687, 7259511.668], [537677.226, 7259241.407], [538010.915, 7258962.895], [538090.651, 7258206.488], [537767.002, 7258017.103], [538129.451, 7257147.978], [538191.121, 7256729.063], [539503.847, 7255253.881], [540211.858, 7254258.172], [543365.044, 7253910.199], [543278.524, 7253677.822], [544112.562, 7253347.618], [544295.81, 7253800.159], [545504.152, 7253656.689], [545636.248, 7253752.079], [553051.591, 7246493.273], [554298.02, 7236856.128], [548317.3, 7235438.073], [546561.028, 7233474.266], [546079.16, 7232934.514], [544482.124, 7231907.344], [544368.356, 7231717.778], [544098.808, 7228826.7], [542025.612, 7218946.15], [540189.565, 7219482.677], [540112.195, 7219684.252], [539261.493, 7219764.172], [537001.747, 7220439.024], [537436.874, 7221714.292], [537205.274, 7221759.158], [536588.049, 7220563.082], [534758.896, 7221110.698], [533551.181, 7221762.978], [532943.52, 7221652.841], [531310.618, 7222140.256], [528954.901, 7220528.329], [528871.692, 7220739.673], [528357.565, 7220537.026], [528499.561, 7220216.185], [526884.205, 7219102.23], [521288.698, 7218248.539], [515503.419, 7218599.02], [509507.524, 7218968.144], [503488.449, 7220113.921], [500220.485, 7220360.008], [495227.937, 7218716.364], [482550.406, 7219321.807], [480898.69, 7219399.672], [480617.687, 7219881.979], [475394.804, 7224931.99], [468009.568, 7231051.786], [464234.849, 7239236.425], [465233.745, 7240335.297], [466450.287, 7239721.078], [469486.148, 7243468.261], [469885.986, 7244381.284], [470974.357, 7243936.154], [472010.361, 7244865.746], [471272.057, 7245038.713], [469433.944, 7244688.273], [469030.616, 7244761.003], [468164.453, 7245289.956], [467296.157, 7245435.485], [467404.968, 7245570.153], [467826.188, 7245667.785], [468174.847, 7245584.04], [469195.914, 7244999.034], [469996.536, 7245093.948], [471266.904, 7245456.396], [471670.56, 7247556.266], [473314.69, 7247271.047], [472162.137, 7250232.787], [460700.885, 7255425.283], [460805.317, 7260669.371], [461180.564, 7260200.061], [461376.242, 7260217.956], [461329.173, 7260610.15], [460818.539, 7261099.149], [460866.028, 7263402.904], [462065.657, 7264317.803], [461829.217, 7264753.401], [460892.921, 7264753.013], [461012.297, 7270595.634], [461385.917, 7289578.81], [471025.547, 7288118.193], [484387.523, 7287656.105], [484995.636, 7286582.189], [485123.272, 7287582.702], [491950.939, 7286610.701], [499142.254, 7289689.139], [499235.538, 7287920.681], [501042.17, 7288021.036], [500988.292, 7288966.558], [500310.68, 7288928.564], [500253.45, 7290165.373], [501636.379, 7290752.891], [502260.953, 7290134.425], [503301.393, 7289791.985], [504634.667, 7291145.659], [504039.851, 7291733.689], [505056.583, 7292164.352], [507166.61, 7295450.605], [507479.963, 7294891.142], [508212.012, 7295299.661], [507436.658, 7295872.402], [510346.426, 7300404.934], [510198.168, 7300524.436], [510343.04, 7301054.458], [510643.715, 7300863.891], [511182.114, 7301706.19], [510845.385, 7301771.808], [510762.418, 7302235.932], [511279.346, 7302467.646], [511529.369, 7302247.424], [515125.083, 7307843.199], [515799.148, 7307772.498], [515802.239, 7308088.796], [515327.33, 7308163.016], [518504.474, 7313091.031], [518845.212, 7312611.05], [520347.462, 7312026.017], [521912.154, 7312566.625], [522617.133, 7312376.021], [523951.184, 7311273.286], [524396.557, 7311674.753], [524669.036, 7311650.939], [525075.979, 7311856.245], [525384.513, 7311736.735], [525605.31, 7311830.115], [525845.757, 7311895.595], [525712.282, 7312386.469], [525842.687, 7312955.607], [526133.236, 7313263.097], [526180.542, 7313480.006], [526456.432, 7313746.442], [526653.689, 7314223.002], [526884.518, 7314566.414], [527046.824, 7314623.068], [527137.978, 7314815.974], [527138.055, 7314986.615], [527685.955, 7315041.923], [527771.011, 7314801.401], [528087.124, 7314773.819], [528226.506, 7315178.631], [528369.989, 7315100.51], [528659.807, 7315210.376], [528977.868, 7315272.473], [529119.709, 7315457.893], [529401.652, 7315434.262], [529768.18, 7315646.993], [531660.85, 7309046.605]]]}}, {\\\"id\\\": \\\"137\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Haapavesi\\\", \\\"elakelaisten_osuus\\\": 28.6, \\\"freshwarea\\\": 36.33, \\\"gml_id\\\": 1601100571, \\\"landarea\\\": 1049.82, \\\"namefin\\\": \\\"Haapavesi\\\", \\\"nameswe\\\": \\\"Haapavesi\\\", \\\"natcode\\\": \\\"071\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1086.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[424749.226, 7139462.176], [425799.694, 7138315.664], [425748.473, 7137355.075], [426283.114, 7135660.844], [425646.306, 7135493.342], [425528.754, 7135056.838], [425743.527, 7134996.625], [426131.147, 7135199.303], [426397.737, 7135098.648], [426790.233, 7134243.615], [426589.356, 7133625.524], [426063.839, 7133312.104], [425944.007, 7132953.497], [426522.483, 7131972.51], [426839.418, 7132472.724], [429282.174, 7127588.7], [429534.938, 7127613.616], [429577.58, 7125540.654], [430222.482, 7125357.273], [430105.917, 7125157.327], [430525.584, 7124678.937], [431171.74, 7123756.853], [431561.468, 7124004.537], [431970.497, 7123304.486], [431854.216, 7123066.278], [432948.444, 7121990.308], [434441.179, 7120031.902], [434840.489, 7120109.792], [435819.211, 7117419.712], [436224.307, 7117516.822], [436146.501, 7117148.049], [436379.623, 7116607.179], [435986.849, 7116141.419], [436044.205, 7115660.761], [435969.928, 7115115.003], [438062.252, 7113307.167], [439136.147, 7111768.137], [438926.985, 7111693.237], [438973.656, 7111287.472], [439357.166, 7111302.865], [439737.433, 7110764.298], [440434.527, 7109915.434], [437478.819, 7107965.386], [434895.171, 7106989.521], [434209.923, 7107173.092], [433981.202, 7106932.035], [434421.221, 7106183.645], [435522.505, 7105008.437], [435651.558, 7104036.445], [433102.959, 7102149.302], [432810.388, 7102369.215], [431816.691, 7101581.192], [432461.092, 7100447.976], [431101.819, 7100356.495], [430884.532, 7100634.514], [430287.903, 7100518.91], [429843.6, 7100256.483], [429865.173, 7100052.333], [429302.692, 7099745.568], [431135.367, 7099082.82], [431864.851, 7099182.058], [431982.795, 7099480.933], [433160.782, 7098644.831], [431417.651, 7097706.202], [430839.992, 7097216.401], [431742.223, 7095549.189], [431065.229, 7094858.91], [430723.251, 7095617.284], [430127.858, 7097597.014], [429784.468, 7097683.887], [428949.574, 7096811.773], [428282.552, 7097106.906], [427821.996, 7096158.258], [429141.668, 7094719.5], [428734.858, 7094486.945], [429710.16, 7093852.544], [428100.788, 7089104.381], [421899.65, 7089957.4], [421489.823, 7090674.493], [421236.256, 7090993.911], [420783.659, 7090739.358], [421624.632, 7089997.264], [419904.813, 7090244.14], [412283.839, 7099338.06], [411526.154, 7099938.148], [412249.705, 7101408.151], [411882.447, 7101755.315], [411815.246, 7102140.261], [411545.761, 7102501.078], [411007.529, 7102581.572], [411221.186, 7103325.184], [412013.69, 7103584.55], [411704.106, 7104038.678], [411351.362, 7103900.729], [410277.754, 7103751.905], [409479.241, 7103026.648], [409820.351, 7101780.473], [409480.343, 7101244.43], [408837.127, 7101508.174], [406325.634, 7103536.203], [403461.736, 7106084.121], [399696.069, 7109515.536], [399547.853, 7109418.412], [398092.767, 7110671.231], [397302.592, 7110823.481], [397308.226, 7111227.548], [398010.991, 7110887.267], [398706.949, 7111260.53], [398753.47, 7111889.69], [398547.342, 7112354.515], [398573.792, 7112876.047], [397706.921, 7114349.107], [396757.38, 7113148.424], [396558.298, 7113452.457], [396150.24, 7115313.066], [397625.775, 7115847.214], [398965.831, 7115149.903], [399467.364, 7115428.934], [400352.008, 7113773.541], [405409.09, 7117751.303], [406958.581, 7120982.531], [406585.189, 7121178.323], [406742.102, 7121456.401], [407083.916, 7121277.406], [407189.441, 7121468.34], [408956.066, 7122719.884], [408630.496, 7123090.345], [408707.787, 7123265.156], [409454.033, 7123127.446], [410560.796, 7124034.406], [410287.658, 7124669.043], [411261.048, 7125188.48], [411286.587, 7125807.483], [411390.819, 7126018.226], [411653.612, 7127865.561], [411614.184, 7129077.795], [411959.816, 7129233.028], [411722.078, 7129410.705], [412109.654, 7129860.303], [412412.839, 7130076.675], [412800.27, 7130590.981], [413393.48, 7130751.39], [413178.911, 7130205.15], [413621.721, 7129987.953], [413525.4, 7129640.172], [414337.419, 7129328.392], [414201.491, 7128832.205], [413739.047, 7128351.639], [414585.358, 7128431.228], [414592.667, 7128845.686], [415751.492, 7128973.014], [415758.456, 7129465.787], [415612.426, 7129754.505], [415404.57, 7131350.946], [414785.77, 7131309.562], [413364.233, 7131985.017], [413197.95, 7131891.125], [413280.051, 7131299.822], [413145.304, 7131236.787], [412559.132, 7131636.641], [412342.829, 7131597.129], [412287.083, 7131826.121], [412467.457, 7132457.35], [412832.492, 7132206.416], [412943.368, 7132543.933], [412602.992, 7132689.943], [413085.589, 7132979.09], [413338.867, 7133532.386], [413153.288, 7133717.67], [412256.298, 7133061.933], [412011.279, 7133411.913], [412986.623, 7134009.983], [413847.312, 7133920.912], [414061.779, 7134187.282], [414249.635, 7133698.992], [414500.93, 7133756.186], [414604.498, 7133456.383], [414379.192, 7133331.011], [414182.958, 7133400.057], [414119.822, 7133232.117], [414161.154, 7133009.405], [414439.604, 7133144.261], [415047.572, 7133366.955], [415004.996, 7133796.942], [416123.35, 7133707.455], [423658.044, 7139590.133], [424749.226, 7139462.176]]]}}, {\\\"id\\\": \\\"138\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Eurajoki\\\", \\\"elakelaisten_osuus\\\": 28.7, \\\"freshwarea\\\": 6.12, \\\"gml_id\\\": 1601100072, \\\"landarea\\\": 514.78, \\\"namefin\\\": \\\"Eurajoki\\\", \\\"nameswe\\\": \\\"Eura\\\\u00e5minne\\\", \\\"natcode\\\": \\\"051\\\", \\\"seawarea\\\": 984.06, \\\"totalarea\\\": 1504.96}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[202168.603, 6831250.639], [203577.811, 6828336.864], [208476.605, 6825314.244], [208161.603, 6824000.184], [207926.737, 6823170.663], [208979.267, 6822542.926], [209262.224, 6822609.127], [209562.143, 6822429.728], [209519.218, 6822225.263], [211065.023, 6821297.569], [214725.689, 6821843.447], [215160.166, 6821647.308], [217790.058, 6817656.44], [222220.992, 6811753.405], [220859.776, 6811818.054], [220925.877, 6811580.418], [225662.856, 6806606.062], [227362.612, 6804975.66], [226039.015, 6802920.209], [225238.036, 6799992.913], [225828.691, 6799167.506], [226187.815, 6798146.308], [228311.619, 6794665.851], [228320.316, 6792513.998], [226943.719, 6791808.203], [225586.3, 6791762.741], [223873.007, 6789854.999], [221967.166, 6791880.81], [220913.893, 6790609.982], [218405.064, 6790550.582], [217513.519, 6790122.248], [217184.564, 6790090.058], [216665.606, 6789775.592], [215822.293, 6789914.197], [215022.59, 6790079.222], [212066.55, 6791271.757], [211581.514, 6791785.95], [210748.219, 6792849.488], [210361.984, 6794118.153], [209628.378, 6795860.778], [209070.403, 6795356.668], [208738.942, 6795234.848], [208115.928, 6795670.33], [207680.348, 6796621.233], [205014.723, 6798457.467], [204953.291, 6799040.108], [203975.546, 6799395.966], [200972.322, 6801695.954], [200326.504, 6802914.56], [198095.002, 6803699.074], [168669.946, 6810232.566], [170321.221, 6817669.663], [172620.274, 6828024.886], [174575.7, 6837156.888], [202168.603, 6831250.639]]]}}, {\\\"id\\\": \\\"139\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Toholampi\\\", \\\"elakelaisten_osuus\\\": 30.7, \\\"freshwarea\\\": 8.07, \\\"gml_id\\\": 1601100610, \\\"landarea\\\": 608.82, \\\"namefin\\\": \\\"Toholampi\\\", \\\"nameswe\\\": \\\"Toholampi\\\", \\\"natcode\\\": \\\"849\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 616.89}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[362467.851, 7086740.214], [364193.249, 7086431.63], [364299.362, 7085819.176], [364807.017, 7086218.885], [366522.022, 7084521.521], [373383.552, 7081747.121], [377495.558, 7069660.278], [379448.13, 7064635.839], [381923.367, 7060577.08], [381634.052, 7060104.657], [381397.054, 7060356.629], [379380.389, 7058881.148], [378953.964, 7059098.67], [378059.719, 7059559.345], [377545.757, 7059452.847], [377587.763, 7059212.02], [378008.459, 7059250.739], [379031.093, 7058631.026], [377646.531, 7057639.508], [378522.306, 7056607.355], [378073.243, 7056269.757], [377760.852, 7056850.974], [376696.55, 7056952.339], [374573.093, 7055427.188], [375044.408, 7054493.481], [374730.238, 7054179.076], [373933.57, 7053973.293], [371310.62, 7051260.955], [367615.541, 7055326.944], [366929.68, 7054703.574], [366624.328, 7055038.96], [366131.198, 7054589.954], [365452.915, 7054213.527], [365066.24, 7054638.952], [364689.502, 7054297.312], [364155.185, 7054892.655], [363600.898, 7054727.796], [363611.719, 7055184.089], [364320.52, 7055825.039], [364123.423, 7056043.226], [364642.616, 7056512.058], [364539.532, 7056846.879], [361831.441, 7059842.605], [362726.85, 7060697.021], [360611.099, 7063021.249], [359478.022, 7063876.663], [351298.905, 7073363.513], [352851.228, 7074739.614], [350991.082, 7077125.887], [351994.219, 7078215.353], [352255.918, 7078854.465], [351792.818, 7079300.908], [352756.71, 7080302.535], [352777.808, 7080986.915], [353235.56, 7081697.494], [353629.222, 7082033.34], [353566.919, 7081440.778], [353712.687, 7081317.911], [357570.565, 7085428.766], [358071.505, 7085882.339], [359757.705, 7085237.115], [360517.07, 7084883.562], [361911.194, 7085791.207], [361906.771, 7086111.432], [361578.607, 7085863.272], [361516.454, 7086328.559], [361427.181, 7086614.167], [361639.221, 7087219.811], [361931.506, 7087351.616], [362467.851, 7086740.214]]]}}, {\\\"id\\\": \\\"140\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kihni\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 37.4, \\\"freshwarea\\\": 33.39, \\\"gml_id\\\": 1601100527, \\\"landarea\\\": 357.11, \\\"namefin\\\": \\\"Kihni\\\\u00f6\\\", \\\"nameswe\\\": \\\"Kihni\\\\u00f6\\\", \\\"natcode\\\": \\\"250\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 390.5}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[304928.165, 6916471.996], [304770.712, 6916054.671], [311248.686, 6904814.865], [313738.511, 6896936.1], [311165.511, 6897849.174], [310524.506, 6896577.965], [308740.105, 6894433.08], [307300.736, 6891993.291], [306598.599, 6891659.57], [306556.562, 6888949.323], [305767.405, 6889360.707], [305688.692, 6889975.799], [304702.423, 6889676.482], [304304.449, 6889186.754], [303425.555, 6889505.103], [300753.285, 6889450.293], [298515.309, 6889387.86], [298498.932, 6890041.777], [297695.621, 6891181.07], [297277.857, 6892167.089], [297686.953, 6892231.556], [297826.319, 6893772.822], [296832.092, 6893304.118], [296523.958, 6893533.308], [296287.523, 6894928.401], [295864.907, 6895313.285], [295684.346, 6896457.368], [294569.222, 6897911.658], [294280.345, 6898732.776], [294286.318, 6901761.643], [293408.32, 6901765.473], [293429.874, 6903266.368], [292847.171, 6902990.773], [292281.129, 6912796.944], [300261.951, 6915694.297], [304153.954, 6917135.548], [304928.165, 6916471.996]]]}}, {\\\"id\\\": \\\"141\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lapinj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 33.5, \\\"freshwarea\\\": 9.43, \\\"gml_id\\\": 1601100630, \\\"landarea\\\": 329.88, \\\"namefin\\\": \\\"Lapinj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Lapptr\\\\u00e4sk\\\", \\\"natcode\\\": \\\"407\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 339.31}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[460274.292, 6736314.562], [460623.053, 6735597.921], [460949.499, 6735589.409], [461543.239, 6735028.71], [461849.399, 6735056.552], [461845.446, 6733023.196], [463515.285, 6730882.573], [463148.947, 6729190.057], [463855.781, 6726862.312], [465138.786, 6726002.731], [464312.711, 6725246.074], [464374.531, 6719150.045], [464851.763, 6715615.68], [465270.518, 6712092.409], [465014.428, 6711141.991], [465962.776, 6708202.682], [463715.775, 6708444.266], [460791.156, 6707265.49], [460761.028, 6707666.214], [460382.946, 6708000.297], [460513.591, 6708501.319], [460268.123, 6709227.323], [459482.571, 6710095.309], [459031.554, 6710166.421], [458535.76, 6709483.491], [457279.551, 6711470.576], [457154.888, 6712990.061], [457025.128, 6714570.621], [456658.87, 6715432.769], [454696.644, 6717911.046], [453524.092, 6715321.262], [452025.658, 6715458.079], [450143.084, 6717622.116], [450470.228, 6720524.54], [450277.394, 6721881.086], [449391.837, 6723569.39], [445343.495, 6723529.062], [445064.563, 6723948.601], [443010.225, 6723999.737], [440101.12, 6722859.864], [442140.745, 6727798.489], [441865.744, 6729719.912], [441787.77, 6730507.194], [446949.958, 6731617.598], [451349.21, 6728185.135], [453151.057, 6728618.779], [454321.599, 6729747.732], [457124.658, 6731439.279], [457664.832, 6732883.306], [456859.041, 6736092.211], [457981.694, 6734948.182], [459287.08, 6734961.069], [459333.523, 6736399.056], [459666.316, 6736543.857], [460274.292, 6736314.562]]]}}, {\\\"id\\\": \\\"142\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Luoto\\\", \\\"elakelaisten_osuus\\\": 16.3, \\\"freshwarea\\\": 34.1, \\\"gml_id\\\": 1601100017, \\\"landarea\\\": 142.45, \\\"namefin\\\": \\\"Luoto\\\", \\\"nameswe\\\": \\\"Larsmo\\\", \\\"natcode\\\": \\\"440\\\", \\\"seawarea\\\": 676.73, \\\"totalarea\\\": 853.28}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[319537.916, 7048722.185], [318979.297, 7048990.3], [317994.96, 7048248.894], [318536.543, 7047764.98], [320194.858, 7047187.128], [320433.6, 7047433.735], [321139.149, 7046416.089], [320481.677, 7046141.494], [318228.989, 7045198.225], [318275.36, 7045699.918], [318117.246, 7046230.089], [317682.309, 7045880.143], [316957.564, 7046416.67], [316419.764, 7045710.7], [316054.436, 7045843.294], [315910.222, 7045589.947], [316258.572, 7045357.717], [316136.27, 7044336.51], [314614.668, 7043683.354], [314746.145, 7043972.282], [314624.085, 7044236.963], [314470.522, 7044519.893], [314174.623, 7044211.758], [312524.269, 7046138.224], [314116.611, 7047525.918], [314305.278, 7047056.017], [314763.864, 7046574.266], [314518.82, 7046188.536], [314597.499, 7045388.974], [314840.118, 7045252.484], [315261.712, 7045582.075], [314940.782, 7046105.04], [315125.296, 7046326.801], [315525.485, 7045985.327], [315963.194, 7046377.232], [316376.626, 7046067.744], [316387.994, 7046472.128], [316878.68, 7046824.546], [317324.235, 7046404.358], [318488.075, 7047176.942], [317320.359, 7048352.836], [318859.594, 7049696.54], [319537.916, 7048722.185]]], [[[291807.56, 7098121.415], [294514.867, 7091683.132], [294511.641, 7091683.074], [294292.616, 7091679.163], [294288.648, 7091147.349], [294467.242, 7091024.318], [294625.992, 7090960.817], [294685.523, 7090845.724], [294814.535, 7090891.257], [294820.461, 7090893.349], [295048.765, 7090201.471], [295341.074, 7090096.11], [295350.159, 7089325.653], [295407.502, 7089166.136], [295547.431, 7089121.056], [295771.153, 7088651.754], [295613.176, 7088597.811], [295613.005, 7088597.752], [296784.793, 7085450.62], [296965.458, 7085083.322], [296912.295, 7084548.425], [297574.143, 7082650.797], [296771.245, 7081578.462], [296048.421, 7079638.589], [297122.559, 7079319.902], [297181.061, 7079155.977], [297297.234, 7079120.232], [297403.704, 7079236.489], [298918.854, 7078786.958], [299168.969, 7078795.357], [299315.016, 7078590.46], [299015.297, 7078375.488], [298921.962, 7078310.943], [294882.065, 7075420.622], [294208.135, 7074306.894], [291766.748, 7069903.87], [291498.295, 7069655.198], [290807.544, 7069933.92], [290806.663, 7069938.23], [290757.273, 7070179.983], [290484.751, 7070259.358], [290015.618, 7070303.206], [290155.115, 7070983.76], [289516.992, 7071270.314], [289617.688, 7070483.6], [289435.348, 7070664.523], [289398.751, 7070690.062], [289204.199, 7070825.828], [289169.619, 7070878.276], [289156.37, 7070918.632], [289204.199, 7071035.358], [289439.99, 7071147.643], [289408.071, 7071324.13], [289376.006, 7071501.427], [289200.53, 7072188.182], [287668.601, 7073025.132], [287149.412, 7073133.589], [286906.082, 7072474.684], [286325.705, 7071984.193], [286300.911, 7072121.619], [286141.714, 7072073.626], [284472.631, 7072872.823], [284267.578, 7073474.751], [283539.973, 7073871.627], [283360.471, 7073342.797], [282113.87, 7073902.962], [282313.122, 7073920.475], [282410.169, 7074383.183], [281760.299, 7074655.262], [281557.539, 7074374.518], [281519.526, 7074158.538], [281519.413, 7074157.894], [281228.16, 7074278.207], [281227.489, 7074279.12], [281051.506, 7074518.356], [280872.19, 7074425.823], [280871.578, 7074425.507], [277854.121, 7075671.98], [258909.03, 7087671.558], [260193.135, 7089205.321], [264816.605, 7098922.614], [265172.03, 7099627.478], [265557.509, 7100328.414], [265835.15, 7100798.916], [266136.611, 7101281.791], [267955.773, 7104064.432], [269009.719, 7105592.531], [269376.234, 7106089.28], [269757.326, 7106576.967], [291807.56, 7098121.415]], [[283302.135, 7078473.119], [283002.667, 7077574.05], [282785.246, 7077234.003], [282165.677, 7077737.917], [282154.752, 7078056.88], [282463.885, 7078749.965], [283302.135, 7078473.119]]]]}}, {\\\"id\\\": \\\"143\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Puolanka\\\", \\\"elakelaisten_osuus\\\": 46.6, \\\"freshwarea\\\": 137.41, \\\"gml_id\\\": 1601100323, \\\"landarea\\\": 2461.28, \\\"namefin\\\": \\\"Puolanka\\\", \\\"nameswe\\\": \\\"Puolanka\\\", \\\"natcode\\\": \\\"620\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2598.69}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[554481.148, 7232071.985], [554543.858, 7232278.434], [556083.804, 7231796.448], [557192.335, 7226562.044], [556554.953, 7223754.046], [553364.488, 7220858.805], [553077.824, 7217515.782], [554319.663, 7216007.949], [554384.994, 7216264.934], [554695.624, 7216202.344], [554486.911, 7215803.646], [556210.299, 7213713.631], [556678.318, 7213674.694], [556561.484, 7213288.808], [559441.265, 7209798.393], [560402.692, 7203452.755], [559908.791, 7203137.462], [560548.555, 7202491.651], [561263.377, 7197755.394], [554520.03, 7187574.191], [550152.366, 7187538.985], [550531.818, 7181480.342], [549870.942, 7181227.127], [549859.964, 7181071.38], [550305.433, 7180938.683], [550550.891, 7181143.788], [551354.01, 7167975.529], [543017.706, 7164416.606], [541695.419, 7161633.333], [539852.48, 7159031.591], [536739.54, 7156933.269], [536867.191, 7156638.736], [536251.525, 7156219.359], [534324.424, 7156851.226], [532635.137, 7155938.422], [529688.209, 7153332.716], [528344.347, 7154880.994], [527949.288, 7154662.759], [527010.103, 7154700.239], [526933.446, 7153623.525], [526181.794, 7153705.651], [525683.52, 7153129.324], [523600.675, 7155419.797], [523460.871, 7157756.166], [523240.907, 7157918.006], [523541.993, 7157991.07], [523525.487, 7158172.529], [523456.238, 7158236.792], [523027.953, 7158074.37], [522994.41, 7157786.937], [522612.858, 7157172.607], [522076.378, 7157071.896], [521905.18, 7156748.02], [521009.059, 7157327.187], [521000.98, 7157564.453], [521613.402, 7157577.726], [520038.984, 7159302.402], [519740.598, 7160977.558], [519280.693, 7161085.027], [519019.269, 7160802.864], [518106.703, 7161405.013], [518330.052, 7161541.374], [518604.214, 7162080.348], [516732.191, 7163577.434], [516902.643, 7163959.97], [517633.771, 7164351.08], [517083.438, 7164547.733], [516749.775, 7164770.417], [516137.289, 7164990.543], [515603.442, 7165358.478], [515338.866, 7165386.293], [514733.515, 7165699.284], [514260.472, 7166134.855], [513901.992, 7166246.429], [513761.141, 7166622.91], [513426.156, 7166635.458], [513101.718, 7166734.505], [512555.682, 7166573.413], [512402.468, 7166670.986], [512351.843, 7167592.245], [512858.386, 7168095.486], [512747.554, 7170702.664], [511851.87, 7174168.061], [511967.752, 7174431.235], [511698.256, 7174538.939], [511426.447, 7175081.082], [512374.768, 7175911.091], [511710.946, 7176309.508], [511155.356, 7175821.62], [511247.925, 7174962.066], [510904.106, 7174902.557], [510845.614, 7175759.17], [510944.288, 7176111.38], [510753.236, 7176443.67], [510972.573, 7176879.868], [512807.756, 7176427.243], [513309.622, 7176924.528], [513309.733, 7176979.673], [509419.203, 7183644.1], [505623.994, 7187816.915], [507026.469, 7190106.11], [507390.372, 7190073.213], [508762.594, 7189690.243], [509520.2, 7189056.111], [509956.969, 7188971.666], [510130.064, 7189328.663], [516827.553, 7187548.477], [517799.928, 7189652.096], [517550.028, 7189707.345], [517118.804, 7191004.398], [518328.386, 7191517.877], [518648.894, 7191427.506], [519089.725, 7192382.917], [517507.176, 7196237.904], [519169.724, 7199968.623], [518887.991, 7201332.921], [517810.522, 7201975.067], [518601.067, 7202443.564], [518218.533, 7203942.415], [516054.102, 7206745.027], [515212.558, 7207157.508], [514968.394, 7208139.192], [512366.127, 7211527.24], [515503.419, 7218599.02], [521288.698, 7218248.539], [526884.205, 7219102.23], [528499.561, 7220216.185], [528357.565, 7220537.026], [528871.692, 7220739.673], [528954.901, 7220528.329], [531310.618, 7222140.256], [532943.52, 7221652.841], [533551.181, 7221762.978], [534758.896, 7221110.698], [536588.049, 7220563.082], [537205.274, 7221759.158], [537436.874, 7221714.292], [537001.747, 7220439.024], [539261.493, 7219764.172], [540112.195, 7219684.252], [540189.565, 7219482.677], [542025.612, 7218946.15], [544098.808, 7228826.7], [544368.356, 7231717.778], [544482.124, 7231907.344], [546079.16, 7232934.514], [546561.028, 7233474.266], [554481.148, 7232071.985]]]}}, {\\\"id\\\": \\\"144\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"N\\\\u00e4rpi\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 31.4, \\\"freshwarea\\\": 7.75, \\\"gml_id\\\": 1601100185, \\\"landarea\\\": 977.71, \\\"namefin\\\": \\\"N\\\\u00e4rpi\\\\u00f6\\\", \\\"nameswe\\\": \\\"N\\\\u00e4rpes\\\", \\\"natcode\\\": \\\"545\\\", \\\"seawarea\\\": 1348.68, \\\"totalarea\\\": 2334.14}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[220702.666, 6970946.939], [220369.98, 6970662.279], [220647.97, 6970190.435], [221820.45, 6970818.294], [222157.229, 6969979.705], [225407.011, 6969905.637], [225316.532, 6968333.54], [225826.298, 6968364.419], [225835.875, 6968347.423], [226092.496, 6968542.149], [226129.857, 6968721.814], [226855.786, 6968232.571], [227513.795, 6968132.728], [227556.6, 6968569.653], [228088.379, 6968679.549], [228187.239, 6968346.957], [227994.262, 6967923.382], [228945.182, 6967606.74], [230402.056, 6970713.036], [231118.654, 6970711.502], [231031.785, 6969607.382], [231637.866, 6965358.679], [233606.195, 6962292.145], [231363.016, 6960481.964], [231024.692, 6960669.753], [231378.207, 6961746.909], [231414.678, 6962386.182], [231163.641, 6962505.278], [230447.534, 6960169.17], [229832.798, 6959690.925], [230098.42, 6959457.831], [229069.084, 6958625.229], [228317.573, 6958605.255], [228581.774, 6958234.132], [226534.377, 6956810.068], [226075.453, 6956548.487], [225565.632, 6954822.793], [224375.245, 6953707.543], [222606.645, 6953265.494], [222613.453, 6949969.791], [222360.69, 6948029.851], [223234.279, 6947987.379], [223310.661, 6947484.256], [222504.412, 6944931.612], [218740.744, 6935882.546], [217419.419, 6937062.217], [217058.599, 6936696.917], [217977.842, 6936162.885], [217811.732, 6935874.027], [218719.864, 6935511.963], [218977.094, 6933299.884], [215136.367, 6928430.564], [211146.583, 6924964.769], [207363.251, 6922635.02], [206946.501, 6922330.874], [206795.065, 6921916.981], [206331.241, 6921854.239], [206220.164, 6921394.958], [202884.344, 6918063.091], [196226.57, 6914506.107], [174060.771, 6912686.247], [173652.367, 6917659.555], [195818.395, 6919478.746], [200873.402, 6922174.185], [203692.397, 6926277.615], [203767.375, 6928456.071], [203138.056, 6930061.462], [202301.553, 6931484.329], [201845.874, 6931728.17], [201562.449, 6931503.617], [200723.47, 6927928.049], [195357.709, 6925093.925], [173191.31, 6923274.095], [172554.38, 6931030.284], [165571.9, 6964248.198], [196738.526, 6964268.011], [196943.302, 6963832.484], [198369.421, 6963987.223], [201572.233, 6964639.084], [201873.557, 6964380.894], [202472.924, 6964448.347], [204013.334, 6963814.176], [203929.582, 6962300.586], [204441.356, 6962338.016], [205059.947, 6963192.806], [206232.34, 6963404.521], [206751.967, 6963204.098], [207029.228, 6962611.7], [207666.866, 6961981.637], [207564.2, 6961622.67], [208119.84, 6961636.346], [208463.25, 6963197.29], [208988.654, 6962794.684], [209337.541, 6963129.215], [209243.561, 6963642.885], [209963.537, 6963446.786], [210137.175, 6966195.735], [210228.17, 6966476.101], [210776.759, 6967190.005], [211356.009, 6966713.72], [211840.708, 6966978.485], [212900.027, 6967883.301], [212057.982, 6968825.915], [211747.403, 6968498.363], [211342.133, 6969221.706], [212945.489, 6970117.193], [212960.376, 6971155.43], [213838.628, 6971105.629], [214057.559, 6971107.767], [220633.07, 6971179.744], [220702.666, 6970946.939]]]}}, {\\\"id\\\": \\\"145\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nakkila\\\", \\\"elakelaisten_osuus\\\": 32.0, \\\"freshwarea\\\": 1.98, \\\"gml_id\\\": 1601100493, \\\"landarea\\\": 182.9, \\\"namefin\\\": \\\"Nakkila\\\", \\\"nameswe\\\": \\\"Nakkila\\\", \\\"natcode\\\": \\\"531\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 184.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[237821.514, 6819564.74], [242061.019, 6817512.722], [239081.692, 6816384.633], [236183.252, 6811797.216], [236480.534, 6810752.991], [237369.472, 6810497.411], [238423.304, 6810593.775], [238975.168, 6810055.049], [237606.857, 6809119.709], [237122.207, 6809510.526], [236374.885, 6809231.085], [236822.296, 6808826.994], [235301.15, 6808261.888], [233500.552, 6808192.746], [232617.285, 6807931.558], [233394.317, 6805753.473], [232817.34, 6805578.279], [232204.822, 6805676.003], [231264.332, 6805889.148], [230405.554, 6805778.096], [230387.858, 6806216.264], [229967.165, 6806350.075], [229400.257, 6805801.004], [229242.546, 6806718.259], [229000.519, 6806634.365], [228415.784, 6806848.099], [226487.056, 6807892.814], [225662.856, 6806606.062], [220925.877, 6811580.418], [220859.776, 6811818.054], [222220.992, 6811753.405], [217790.058, 6817656.44], [222549.467, 6816618.906], [222569.956, 6816742.727], [222798.712, 6816662.929], [226216.288, 6817923.852], [229447.931, 6817717.475], [230542.474, 6818167.522], [231299.695, 6817282.896], [231610.445, 6817887.41], [233581.064, 6819535.591], [234444.788, 6819634.739], [234844.966, 6819765.636], [237821.514, 6819564.74]]]}}, {\\\"id\\\": \\\"146\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"J\\\\u00e4mij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 35.3, \\\"freshwarea\\\": 9.97, \\\"gml_id\\\": 1601100307, \\\"landarea\\\": 214.36, \\\"namefin\\\": \\\"J\\\\u00e4mij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"J\\\\u00e4mij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"181\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 224.33}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[272023.804, 6875965.587], [272598.825, 6874051.206], [273437.465, 6872987.396], [274850.954, 6872494.898], [275315.93, 6872759.145], [275323.976, 6872333.451], [275885.414, 6872139.68], [276267.698, 6871570.627], [276198.02, 6871124.782], [275680.971, 6871216.549], [275669.397, 6870908.75], [276133.015, 6870721.659], [275910.319, 6869265.813], [278323.469, 6868086.654], [278572.568, 6866949.817], [275792.774, 6865943.376], [276268.01, 6864631.834], [277336.369, 6865243.966], [277955.806, 6863841.968], [278339.024, 6863784.611], [278502.729, 6862900.782], [280289.516, 6860650.004], [279922.315, 6858975.628], [279101.868, 6858497.504], [279484.233, 6857934.596], [278571.112, 6855468.919], [277644.238, 6854132.246], [277107.858, 6853831.966], [276210.864, 6854399.776], [274554.987, 6853710.661], [274760.022, 6852913.667], [273953.067, 6852257.372], [272934.326, 6852661.663], [272629.757, 6852498.621], [272494.73, 6852837.498], [271012.094, 6853427.434], [271821.964, 6855863.802], [266868.261, 6858846.038], [265239.556, 6860206.001], [266478.619, 6864323.015], [266260.175, 6864968.471], [266463.337, 6865695.771], [266266.878, 6866139.203], [266234.668, 6867922.215], [266159.771, 6869318.258], [264565.804, 6870028.141], [264506.398, 6870917.548], [265591.546, 6872077.463], [267047.883, 6874113.449], [267551.776, 6873619.128], [267668.031, 6873710.762], [267574.754, 6874276.135], [269192.446, 6875092.514], [269588.736, 6874860.816], [269858.712, 6875294.584], [270396.131, 6874960.139], [270224.89, 6874487.661], [271125.664, 6873958.489], [270958.37, 6876045.398], [271747.796, 6876503.156], [272023.804, 6875965.587]]]}}, {\\\"id\\\": \\\"147\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Inari\\\", \\\"elakelaisten_osuus\\\": 31.1, \\\"freshwarea\\\": 2277.33, \\\"gml_id\\\": 1601100487, \\\"landarea\\\": 15056.29, \\\"namefin\\\": \\\"Inari\\\", \\\"nameswe\\\": \\\"Enare\\\", \\\"natcode\\\": \\\"148\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 17333.62}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[554063.014, 7746246.426], [558386.737, 7744294.652], [565156.163, 7741196.677], [574110.447, 7736900.35], [582627.154, 7733342.157], [584267.973, 7727117.443], [585669.319, 7723639.877], [586616.03, 7721266.982], [589360.096, 7714494.339], [589818.849, 7713320.444], [590499.865, 7711661.591], [591393.468, 7709444.233], [590882.806, 7708368.185], [589891.699, 7706209.646], [588509.571, 7703247.35], [587138.873, 7700281.345], [585518.691, 7698096.293], [584844.551, 7697154.116], [581739.923, 7692906.697], [578621.173, 7688673.403], [577902.294, 7687714.277], [576270.076, 7685483.609], [572494.649, 7680463.163], [572620.742, 7674614.358], [572467.563, 7673292.445], [572358.296, 7672430.089], [571833.152, 7667814.046], [572043.046, 7667410.543], [573904.425, 7664025.11], [576968.0, 7661361.3], [560007.8, 7647301.7], [556836.5, 7645589.8], [559012.8, 7642293.0], [566777.3, 7642600.7], [572439.8, 7640848.7], [569068.4, 7625464.4], [558541.9, 7603716.6], [560577.601, 7595569.21], [560413.957, 7595426.777], [560012.894, 7595363.48], [559786.488, 7595107.506], [559659.54, 7594975.267], [559666.643, 7595077.155], [559540.567, 7595040.441], [559289.97, 7594967.466], [559131.374, 7594892.62], [558980.782, 7594722.061], [559044.126, 7594585.992], [559009.323, 7594395.419], [558861.816, 7594297.994], [558435.753, 7594226.372], [558266.31, 7594150.522], [558060.148, 7594055.735], [557840.376, 7594073.08], [557596.453, 7593987.977], [557435.972, 7593899.09], [557379.801, 7594001.781], [557307.139, 7593964.132], [557243.77, 7594005.082], [557121.895, 7593886.484], [556991.104, 7593818.592], [556802.324, 7593882.441], [556611.584, 7593826.968], [556390.678, 7593562.241], [556109.306, 7593421.22], [555930.342, 7593400.669], [555513.446, 7593430.098], [555413.838, 7593431.127], [555300.928, 7593316.54], [555132.15, 7593282.069], [554964.403, 7593287.809], [554870.752, 7593345.776], [554896.242, 7593418.428], [554815.592, 7593433.646], [554635.65, 7593326.597], [554457.753, 7593305.27], [554129.866, 7593379.985], [553994.814, 7593304.953], [553824.876, 7593282.011], [553860.338, 7593472.732], [553722.869, 7593505.43], [553410.197, 7593388.44], [553222.653, 7593183.534], [552890.368, 7593335.343], [552623.975, 7593373.121], [552482.77, 7593516.595], [552517.352, 7593722.957], [552398.384, 7593948.85], [552153.88, 7594082.919], [552054.45, 7594352.696], [551958.374, 7594484.09], [551901.385, 7594654.279], [551793.382, 7594867.065], [520679.447, 7581259.14], [466815.733, 7578112.381], [457691.128, 7574162.963], [439160.589, 7578248.588], [418947.929, 7588234.057], [414458.47, 7606155.54], [414700.73, 7609194.77], [415210.71, 7611781.7], [415372.969, 7611834.747], [415358.734, 7611906.325], [415475.387, 7611916.01], [415452.252, 7612004.212], [415534.382, 7612053.374], [415638.596, 7612005.637], [415725.6, 7612063.086], [415733.052, 7612162.976], [415887.19, 7612306.413], [415947.882, 7612436.643], [416129.838, 7612545.588], [416304.074, 7612475.616], [416465.565, 7612520.412], [416476.264, 7612646.498], [416559.262, 7612750.894], [416446.479, 7612820.877], [416500.845, 7612876.112], [416596.369, 7612826.478], [416665.972, 7612851.242], [416750.804, 7612807.173], [416832.481, 7612838.429], [416918.775, 7612961.505], [416939.543, 7613088.376], [417033.24, 7613030.538], [417096.141, 7613096.732], [417169.003, 7612920.678], [417243.19, 7612962.868], [417430.005, 7612949.276], [417537.004, 7612996.992], [417653.808, 7612967.199], [417683.622, 7613089.242], [417802.189, 7613079.411], [417957.364, 7612780.815], [417929.273, 7612712.992], [418017.467, 7612698.695], [418075.926, 7612598.733], [418060.144, 7612548.752], [418148.176, 7612485.106], [418169.308, 7612541.793], [418235.102, 7612513.76], [418318.099, 7612551.065], [418333.714, 7612477.901], [418448.523, 7612447.247], [418509.541, 7612534.582], [418563.46, 7612511.298], [418661.017, 7612606.579], [418752.748, 7612643.895], [418836.519, 7612601.896], [418901.558, 7612699.707], [419017.716, 7612700.466], [419124.064, 7612755.521], [419194.104, 7612755.508], [419285.841, 7612805.362], [419262.007, 7612847.772], [419297.102, 7612930.378], [419211.193, 7612946.602], [419198.786, 7613016.42], [419219.917, 7613230.516], [419304.517, 7613297.169], [419272.371, 7613417.799], [419290.925, 7613521.0], [419466.292, 7613617.926], [419515.624, 7613693.066], [419695.498, 7613750.036], [419674.255, 7613677.258], [419770.86, 7613619.6], [419770.097, 7613678.594], [419860.335, 7613735.288], [419928.368, 7613683.94], [419942.305, 7613590.008], [420013.025, 7613686.126], [420101.531, 7613745.416], [420148.498, 7613821.593], [420234.254, 7613859.06], [420402.037, 7613856.721], [420506.38, 7613918.054], [420555.542, 7614015.799], [420643.744, 7614023.897], [420707.365, 7613965.192], [420733.391, 7613907.354], [420731.657, 7613842.288], [420819.569, 7613755.242], [420931.774, 7613710.707], [420907.679, 7613636.147], [420977.466, 7613505.094], [421170.065, 7613360.212], [421291.813, 7613357.609], [421332.01, 7613300.928], [421344.734, 7613230.945], [421468.217, 7613215.907], [421479.205, 7613335.631], [421433.225, 7613370.622], [421580.007, 7613508.676], [421665.731, 7613510.3], [421756.607, 7613460.374], [421949.135, 7613589.248], [421892.454, 7613687.572], [421928.314, 7613806.139], [421851.448, 7613923.556], [421882.622, 7613998.159], [421945.826, 7614011.496], [422011.6, 7613930.778], [422089.101, 7613972.71], [422107.032, 7614036.91], [422218.234, 7614189.52], [422198.931, 7614309.635], [422221.26, 7614442.351], [422270.238, 7614502.402], [422306.86, 7614591.282], [422305.414, 7614743.684], [422360.938, 7614811.354], [422407.497, 7614935.415], [422620.628, 7614940.62], [422778.814, 7615071.045], [422853.365, 7615100.0], [422943.94, 7615183.249], [423102.412, 7615096.303], [423306.002, 7615127.146], [423385.086, 7615311.293], [423444.667, 7615347.553], [423417.134, 7615525.2], [423508.029, 7615555.151], [423574.996, 7615714.327], [423511.892, 7615782.582], [423447.243, 7615899.002], [423453.425, 7615983.999], [423530.951, 7616152.19], [423556.709, 7616364.425], [423544.603, 7616587.735], [423501.074, 7616704.154], [423405.517, 7616786.061], [423388.775, 7616852.77], [423403.972, 7617116.519], [423439.516, 7617232.938], [423447.319, 7617415.438], [423415.145, 7617451.902], [423423.726, 7617514.104], [423473.06, 7617554.856], [423389.622, 7617783.655], [423433.85, 7617878.914], [423414.274, 7618067.968], [423464.184, 7618303.207], [423406.579, 7618367.774], [423396.503, 7618439.121], [423428.03, 7618507.192], [423401.396, 7618557.859], [423376.927, 7618782.199], [423322.934, 7618856.811], [423329.371, 7619028.403], [423313.609, 7619143.382], [423343.444, 7619211.149], [423350.912, 7619414.524], [423368.684, 7619481.49], [423300.688, 7619530.171], [423246.598, 7619598.426], [423247.371, 7619689.605], [423204.358, 7619826.888], [423207.448, 7619933.262], [423247.114, 7620055.35], [423310.396, 7620159.642], [423345.297, 7620409.245], [423542.187, 7621285.017], [423541.165, 7621468.815], [423496.114, 7621819.956], [423513.968, 7621970.708], [423448.388, 7621960.364], [423421.761, 7622016.643], [423472.315, 7622198.819], [423462.463, 7622367.644], [423521.611, 7622431.776], [423583.941, 7622636.316], [423632.125, 7622660.868], [423649.904, 7622741.612], [423614.805, 7622802.732], [423626.303, 7622897.135], [423665.636, 7622937.737], [423761.614, 7622961.943], [423801.796, 7623024.822], [423874.413, 7623344.341], [423935.323, 7623526.582], [424058.997, 7623616.744], [424210.271, 7623623.92], [424275.693, 7623684.512], [424270.786, 7623840.563], [424312.541, 7623943.439], [424277.62, 7624125.8], [424251.471, 7624207.526], [424221.114, 7624198.327], [424162.723, 7624252.665], [424031.868, 7624291.762], [423952.962, 7624787.986], [423991.812, 7625082.33], [424024.255, 7625183.545], [424022.294, 7625309.075], [424039.015, 7625376.432], [424028.121, 7625646.329], [424075.323, 7625833.924], [424078.348, 7625961.612], [424189.696, 7626074.775], [424155.807, 7626322.884], [424174.556, 7626417.878], [424152.736, 7626544.826], [424177.587, 7626699.284], [424171.431, 7626819.129], [424044.45, 7626984.308], [423999.144, 7627110.71], [423997.546, 7627187.308], [424015.897, 7627192.893], [424069.862, 7627297.167], [424079.727, 7627380.396], [424130.791, 7627525.612], [424106.773, 7627605.186], [424126.798, 7627802.478], [424102.096, 7627873.225], [424116.424, 7627964.449], [424156.698, 7627979.58], [424170.585, 7628093.992], [424208.274, 7628169.368], [424224.142, 7628458.968], [424253.896, 7628542.278], [424291.585, 7628494.672], [424364.555, 7628622.435], [424427.594, 7628687.337], [424469.849, 7628795.505], [424599.362, 7628965.846], [424635.04, 7629231.495], [424647.15, 7629489.607], [424547.468, 7629545.962], [424529.616, 7629605.469], [424601.157, 7629677.806], [424612.927, 7629910.938], [424641.414, 7630011.03], [424675.723, 7630078.851], [424749.127, 7630161.033], [424761.096, 7630232.844], [424794.798, 7630273.27], [424831.547, 7630363.616], [424833.056, 7630409.908], [424869.612, 7630512.515], [424871.799, 7630542.242], [424827.016, 7630577.967], [424813.428, 7630730.429], [424843.619, 7630788.294], [424925.749, 7630829.994], [424900.549, 7630886.851], [424934.27, 7631009.832], [424968.981, 7631259.754], [424868.81, 7631351.006], [424948.975, 7631477.214], [424990.918, 7631771.465], [425118.686, 7631905.684], [425151.596, 7632008.286], [425238.578, 7632024.215], [425325.514, 7632315.16], [425328.232, 7632352.222], [425287.09, 7632394.384], [425309.044, 7632523.224], [425336.791, 7632576.784], [425408.288, 7632619.232], [425430.358, 7632721.973], [425487.689, 7632846.616], [425601.36, 7632978.154], [425623.945, 7633038.811], [425630.507, 7633169.938], [425683.555, 7633182.815], [425765.262, 7633255.628], [425878.19, 7633314.35], [425952.274, 7633275.401], [425975.967, 7633319.887], [426088.718, 7633427.801], [426079.928, 7633455.278], [426225.586, 7633584.503], [426375.064, 7633837.034], [426435.076, 7633894.466], [426788.051, 7634080.956], [426919.691, 7634124.836], [426986.575, 7634124.022], [427162.323, 7634205.499], [427272.394, 7634213.506], [427293.963, 7634302.938], [427331.828, 7634338.715], [427346.317, 7634405.7], [427397.208, 7634493.299], [427492.711, 7634626.228], [427583.052, 7634717.215], [427707.055, 7634942.659], [427685.51, 7635125.735], [427711.297, 7635201.111], [427808.598, 7635234.719], [428021.203, 7635387.024], [428225.761, 7635479.947], [428309.004, 7635609.65], [428338.563, 7635694.57], [428384.017, 7635741.956], [428511.625, 7635716.769], [428554.708, 7635758.397], [428561.313, 7635852.28], [428618.097, 7635918.099], [428676.561, 7635948.913], [428732.96, 7636046.513], [428756.832, 7636371.736], [428802.273, 7636422.989], [428788.452, 7636467.239], [428854.271, 7636611.783], [428915.428, 7636621.036], [428900.731, 7636690.508], [428906.539, 7636785.366], [428966.549, 7637024.122], [429001.496, 7637077.982], [429070.441, 7637138.338], [429061.406, 7637191.896], [429086.599, 7637328.939], [429083.345, 7637358.381], [429045.496, 7637411.14], [429048.498, 7637443.559], [429061.936, 7637462.879], [429137.37, 7637480.287], [429197.813, 7637623.899], [429244.022, 7637691.994], [429368.987, 7637817.317], [429456.323, 7637834.605], [429471.981, 7637937.235], [429488.587, 7637956.564], [429578.928, 7638010.769], [429669.1, 7638025.712], [429980.944, 7638377.939], [430009.337, 7638437.305], [430126.134, 7638533.455], [430257.128, 7638730.267], [430485.562, 7638883.202], [430734.001, 7639016.132], [430770.782, 7639031.62], [430852.734, 7639020.006], [430888.871, 7639034.202], [430943.722, 7639076.791], [430973.405, 7639132.931], [431043.502, 7639167.856], [431165.056, 7639299.416], [431119.901, 7639358.372], [431086.329, 7639486.549], [431140.209, 7639531.479], [431190.22, 7639607.864], [431334.594, 7639716.193], [431427.688, 7639811.13], [431865.842, 7640015.689], [431921.337, 7640020.852], [431967.555, 7639980.694], [432038.638, 7640004.872], [432068.466, 7639984.072], [432118.799, 7640022.789], [432127.186, 7640060.216], [432263.486, 7640157.188], [432354.02, 7640190.65], [432485.606, 7640285.13], [432544.407, 7640299.116], [432650.985, 7640356.327], [432732.226, 7640477.246], [432823.598, 7640503.839], [432983.158, 7640655.216], [433182.992, 7640787.575], [433245.75, 7640761.089], [433321.752, 7640781.241], [433377.601, 7640854.939], [433444.791, 7640910.241], [433734.575, 7641079.488], [433811.727, 7641205.579], [433933.701, 7641206.86], [434033.397, 7641338.581], [434138.265, 7641384.831], [434396.697, 7641559.392], [434515.023, 7641610.018], [434560.646, 7641671.508], [434594.366, 7641824.243], [434680.556, 7641884.982], [434674.221, 7641945.335], [434955.771, 7642091.105], [435071.077, 7642167.629], [435244.275, 7642237.182], [435559.749, 7642400.868], [435728.411, 7642550.847], [435746.296, 7642628.87], [435613.934, 7642760.487], [435615.896, 7642859.052], [435562.709, 7642984.516], [435640.837, 7643049.984], [435788.412, 7643082.709], [436010.023, 7643204.766], [436149.602, 7643225.127], [436490.902, 7643042.994], [436549.44, 7643061.097], [436616.9, 7643240.228], [436697.658, 7643318.334], [436867.151, 7643371.832], [436907.986, 7643332.53], [437049.214, 7643335.694], [437511.581, 7643665.791], [437625.55, 7643719.246], [437929.524, 7643808.239], [438022.784, 7643978.188], [438381.611, 7644198.956], [438637.996, 7644315.396], [438741.771, 7644476.146], [438852.037, 7644485.971], [439015.698, 7644529.744], [439201.747, 7644459.299], [439264.044, 7644472.081], [439353.576, 7644451.733], [439448.38, 7644391.004], [439512.291, 7644300.478], [439536.742, 7644134.298], [439475.3, 7643985.459], [439492.778, 7643894.354], [439626.608, 7643786.787], [439805.039, 7643678.407], [439934.529, 7643657.59], [440123.092, 7643567.016], [440220.052, 7643278.593], [440357.209, 7643071.769], [440486.98, 7642999.733], [440576.624, 7642899.046], [440679.343, 7642878.777], [440777.242, 7642832.354], [440936.145, 7642584.467], [441306.389, 7642418.148], [441467.077, 7642383.139], [441595.591, 7642396.432], [441821.764, 7642492.302], [441989.141, 7642469.526], [442070.711, 7642394.312], [442192.007, 7642374.714], [442277.281, 7642315.073], [442508.223, 7642296.323], [442616.277, 7642237.528], [442855.16, 7642161.785], [443088.218, 7642026.189], [443238.646, 7641997.585], [443516.196, 7642075.977], [443717.202, 7642161.984], [443824.468, 7642263.482], [443889.756, 7642454.511], [444058.584, 7642615.188], [444139.559, 7642657.392], [444197.889, 7642722.711], [444302.128, 7642788.241], [444478.575, 7642802.78], [444614.213, 7642840.829], [444686.082, 7642909.176], [444709.212, 7642975.262], [444817.591, 7643013.592], [444871.781, 7643080.998], [444876.934, 7643148.041], [444851.956, 7643243.567], [444827.144, 7643488.623], [444864.221, 7643545.828], [444953.207, 7643630.046], [445111.049, 7643891.176], [445196.858, 7644114.699], [445394.427, 7644192.032], [445513.604, 7644281.547], [445644.315, 7644312.162], [445747.408, 7644394.77], [445914.604, 7644423.185], [445954.293, 7644488.121], [445923.194, 7644587.737], [445927.81, 7644703.699], [446004.614, 7644857.835], [446093.693, 7645675.498], [446157.159, 7645823.434], [446225.487, 7645896.529], [446302.29, 7646141.24], [446303.88, 7646242.408], [446398.162, 7646386.48], [446431.389, 7646547.16], [446653.996, 7646888.613], [446753.045, 7647138.089], [446716.215, 7647219.906], [446757.848, 7647332.911], [446947.965, 7647664.588], [447065.145, 7647837.801], [447164.95, 7648124.226], [447437.906, 7648575.675], [447521.325, 7648751.715], [447532.98, 7648862.737], [447581.437, 7648958.424], [447595.545, 7649090.301], [447504.151, 7649174.948], [447578.37, 7649508.014], [447697.366, 7649725.15], [447842.124, 7649729.444], [447890.581, 7649822.678], [447899.168, 7649941.674], [448071.528, 7650263.699], [448144.521, 7650484.516], [448187.457, 7650551.375], [448256.769, 7650595.538], [448327.308, 7650962.34], [448477.586, 7651208.306], [448467.158, 7651345.09], [448419.929, 7651459.179], [448514.39, 7651787.338], [448445.078, 7651949.884], [448422.381, 7652059.066], [448485.56, 7652147.393], [448492.921, 7652236.333], [448449.984, 7652306.872], [448453.051, 7652405.626], [448421.503, 7652522.526], [448425.847, 7652590.942], [448488.628, 7652803.711], [448595.355, 7652954.602], [448651.174, 7652990.792], [448728.46, 7653140.457], [448774.463, 7653273.561], [448786.117, 7653370.475], [448864.63, 7653485.177], [448871.902, 7653625.768], [448900.206, 7653738.503], [449029.016, 7653907.182], [449205.057, 7654200.993], [449531.527, 7654418.059], [449627.373, 7654548.328], [449622.769, 7654621.159], [449643.624, 7654656.735], [449683.494, 7654683.11], [449842.973, 7654899.021], [450055.203, 7655082.421], [450145.22, 7655222.479], [450261.511, 7655355.755], [450460.035, 7655263.982], [450499.291, 7655291.584], [450598.659, 7655502.587], [450710.294, 7655663.907], [450759.365, 7655835.04], [451000.423, 7656317.158], [451050.721, 7656483.383], [451061.148, 7656635.503], [451140.225, 7656845.975], [451139.048, 7657063.029], [451096.111, 7657199.199], [451091.878, 7657396.069], [451010.238, 7657553.734], [450950.74, 7657806.447], [450909.643, 7657898.455], [450879.788, 7658074.636], [450816.712, 7658135.781], [450618.229, 7658212.009], [450486.424, 7658208.987], [450399.384, 7658177.284], [450341.166, 7658212.444], [450254.464, 7658340.59], [450123.684, 7658452.688], [450082.783, 7658559.744], [450120.092, 7658808.709], [450110.764, 7659001.711], [449973.123, 7659131.862], [449911.579, 7659309.899], [449907.001, 7659447.264], [449951.483, 7659645.289], [449893.996, 7659778.067], [449921.469, 7659818.73], [450079.913, 7659931.561], [450139.464, 7660018.377], [450150.943, 7660182.68], [450103.59, 7660354.874], [450099.284, 7660522.046], [450166.545, 7660628.684], [450267.652, 7660731.989], [450282.959, 7660811.19], [450171.033, 7660917.377], [450122.962, 7661013.518], [450139.07, 7661057.289], [450222.593, 7661121.031], [450248.52, 7661171.364], [450250.068, 7661259.503], [450192.92, 7661459.518], [450079.55, 7661552.864], [450066.606, 7661600.829], [449956.638, 7661789.215], [449876.268, 7661986.076], [449775.305, 7662166.168], [449508.251, 7662810.175], [449473.083, 7662960.736], [449360.987, 7663142.068], [449339.007, 7663262.958], [449171.286, 7663753.943], [449166.006, 7663844.047], [449212.259, 7663912.1], [449399.657, 7664012.046], [449460.994, 7664076.209], [449421.738, 7664262.533], [449375.273, 7664375.134], [449382.966, 7664554.268], [449322.522, 7664845.501], [449321.423, 7664941.112], [449244.341, 7665064.242], [449234.444, 7665318.535], [449256.582, 7665554.348], [449351.096, 7665856.569], [449367.58, 7666042.298], [449460.809, 7666172.351], [449492.754, 7666288.558], [449467.752, 7666346.43], [449506.053, 7666455.518], [449467.588, 7666699.493], [449366.692, 7666815.183], [449264.49, 7666844.476], [449185.339, 7666972.833], [449072.374, 7667025.148], [449070.985, 7667129.317], [449125.616, 7667354.786], [449129.783, 7667495.993], [449157.674, 7667607.256], [449169.135, 7667780.72], [449205.247, 7667864.983], [449287.138, 7667967.791], [449411.314, 7668172.234], [449565.5, 7668600.584], [449579.587, 7668763.431], [449567.754, 7668998.404], [449585.785, 7669134.766], [449713.841, 7669450.366], [449770.049, 7669656.836], [449886.503, 7669790.564], [449887.733, 7669853.355], [449942.419, 7669922.887], [450013.913, 7670066.872], [450047.473, 7670177.924], [450040.761, 7670238.332], [450066.766, 7670403.459], [450004.15, 7670487.281], [449986.455, 7670688.639], [450041.529, 7670800.939], [450052.345, 7670983.906], [449891.009, 7671266.921], [449883.728, 7671333.783], [509298.018, 7705016.705], [512337.242, 7708583.356], [534552.519, 7717650.877], [541847.919, 7728142.119], [551149.248, 7749613.176], [554063.014, 7746246.426]]]}}, {\\\"id\\\": \\\"148\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lemland\\\", \\\"elakelaisten_osuus\\\": 19.4, \\\"freshwarea\\\": 0.88, \\\"gml_id\\\": 1601100648, \\\"landarea\\\": 113.21, \\\"namefin\\\": \\\"Lemland\\\", \\\"nameswe\\\": \\\"Lemland\\\", \\\"natcode\\\": \\\"417\\\", \\\"seawarea\\\": 851.21, \\\"totalarea\\\": 965.3}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[119968.06, 6685070.517], [121754.315, 6681069.97], [122598.066, 6681210.756], [123220.42, 6680609.177], [123436.443, 6680098.927], [123432.357, 6679629.172], [123445.359, 6679598.236], [123491.246, 6679489.058], [123452.37, 6679204.528], [123294.274, 6679078.871], [123520.083, 6678817.063], [123876.333, 6676778.549], [124583.15, 6675227.705], [124339.175, 6670082.241], [122213.966, 6667083.38], [122021.539, 6666252.477], [121004.739, 6665420.552], [119981.542, 6665771.016], [118628.437, 6665346.325], [118435.609, 6664672.148], [117472.934, 6663786.486], [113834.858, 6662405.891], [113817.644, 6662410.489], [113811.165, 6662396.889], [112854.254, 6662026.822], [113489.201, 6647528.952], [101936.132, 6627506.006], [88483.137, 6651045.069], [104351.304, 6675054.16], [104703.971, 6675789.112], [104620.598, 6677467.691], [105860.231, 6678069.951], [106669.075, 6677676.693], [107772.447, 6677580.713], [108021.271, 6678038.524], [108067.706, 6678337.705], [108314.781, 6678598.04], [108426.203, 6678964.271], [108657.102, 6679222.814], [108957.647, 6679362.605], [109606.966, 6682052.048], [110191.91, 6682169.658], [110787.737, 6681827.959], [110845.711, 6682192.62], [111215.629, 6682269.514], [111202.706, 6682897.761], [111864.912, 6682719.547], [112211.991, 6682714.355], [112483.761, 6682802.606], [112861.977, 6682381.497], [113561.309, 6681973.052], [113816.862, 6682563.743], [113852.122, 6683535.198], [114156.947, 6684134.663], [115079.385, 6684389.033], [116705.2, 6686678.39], [119119.776, 6687192.932], [119968.06, 6685070.517]]]}}, {\\\"id\\\": \\\"149\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lumparland\\\", \\\"elakelaisten_osuus\\\": 28.5, \\\"freshwarea\\\": 0.04, \\\"gml_id\\\": 1601100012, \\\"landarea\\\": 36.35, \\\"namefin\\\": \\\"Lumparland\\\", \\\"nameswe\\\": \\\"Lumparland\\\", \\\"natcode\\\": \\\"438\\\", \\\"seawarea\\\": 50.65, \\\"totalarea\\\": 87.04}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[125404.738, 6690205.365], [125587.22, 6689411.61], [126227.365, 6689237.197], [127018.894, 6689314.916], [127129.559, 6688085.333], [127410.99, 6687834.05], [127796.612, 6687741.876], [128333.353, 6686950.727], [128566.174, 6686225.904], [128191.981, 6685661.595], [128402.188, 6685130.869], [129814.817, 6684900.634], [130347.166, 6683722.631], [129346.124, 6682604.677], [128383.179, 6681541.747], [127697.849, 6681101.196], [126755.987, 6680481.423], [126847.698, 6679646.401], [127132.259, 6679243.938], [127393.358, 6678439.433], [126801.023, 6677541.866], [127123.664, 6676715.269], [127458.389, 6676592.98], [127627.404, 6676141.632], [127372.356, 6675348.363], [126575.94, 6675617.47], [124583.15, 6675227.705], [123876.333, 6676778.549], [123520.083, 6678817.063], [123294.274, 6679078.871], [123452.37, 6679204.528], [123491.246, 6679489.058], [123445.359, 6679598.236], [123432.357, 6679629.172], [123436.443, 6680098.927], [123220.42, 6680609.177], [122598.066, 6681210.756], [121754.315, 6681069.97], [119968.06, 6685070.517], [119119.776, 6687192.932], [121903.517, 6688407.998], [122926.827, 6689761.671], [123891.725, 6689744.518], [124953.372, 6690340.744], [125404.738, 6690205.365]]]}}, {\\\"id\\\": \\\"150\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sonkaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 39.5, \\\"freshwarea\\\": 110.88, \\\"gml_id\\\": 1601100543, \\\"landarea\\\": 1465.91, \\\"namefin\\\": \\\"Sonkaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Sonkaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"762\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1576.79}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[512776.493, 7095851.907], [518557.507, 7093812.219], [520502.611, 7093336.756], [520689.395, 7093149.515], [520734.952, 7092515.29], [520367.927, 7092148.981], [520762.838, 7092076.659], [520998.113, 7091275.183], [522029.293, 7090894.056], [524354.101, 7091504.383], [523400.532, 7092809.191], [526482.682, 7092271.614], [531899.222, 7088122.338], [532559.692, 7088605.513], [536559.717, 7087017.864], [536885.671, 7086582.535], [537365.218, 7086313.182], [537505.952, 7086030.966], [538582.032, 7085233.406], [538925.193, 7084741.48], [543902.663, 7080507.429], [544756.828, 7080852.564], [545558.664, 7080024.947], [552296.423, 7073096.138], [556534.357, 7066842.237], [557710.527, 7065881.285], [557283.635, 7065020.838], [557454.56, 7064441.67], [556835.539, 7063486.793], [557140.349, 7063129.284], [556935.134, 7062945.009], [556305.075, 7062684.654], [554032.136, 7057571.29], [552849.183, 7055449.82], [551964.323, 7055300.106], [551747.103, 7055001.686], [551907.318, 7054590.752], [552275.511, 7054329.314], [552646.59, 7053837.849], [553451.413, 7053235.76], [553487.27, 7052866.764], [553151.005, 7052789.109], [553392.449, 7052334.833], [553346.662, 7051995.314], [552958.02, 7051473.896], [552948.132, 7050791.93], [552583.93, 7051070.639], [552338.657, 7051033.69], [552070.123, 7050370.574], [552458.828, 7049888.612], [552250.041, 7049429.666], [552613.419, 7048993.698], [552753.469, 7048527.051], [552594.324, 7048188.254], [552339.893, 7048164.261], [551995.297, 7048471.678], [551885.234, 7048092.538], [551998.128, 7047850.761], [551564.441, 7047673.126], [551773.224, 7047305.505], [546904.842, 7043752.963], [545106.06, 7044690.372], [544167.438, 7044953.759], [543778.014, 7045507.403], [542588.874, 7045217.742], [542280.298, 7045286.412], [542251.314, 7044905.266], [542363.771, 7044656.967], [541472.393, 7044323.961], [539031.782, 7043354.451], [538160.284, 7043607.562], [535640.013, 7042788.776], [535229.288, 7041983.499], [531121.155, 7041726.879], [530853.838, 7042021.394], [531302.612, 7042513.674], [531881.895, 7042836.204], [531865.821, 7043067.188], [531582.372, 7043185.312], [531500.713, 7043639.966], [529125.511, 7046802.022], [528312.038, 7047149.278], [528140.702, 7047664.469], [526863.342, 7049999.763], [526431.719, 7049624.824], [526387.486, 7050229.226], [526699.369, 7050328.355], [526910.578, 7050972.008], [523392.38, 7051854.815], [523282.321, 7052469.906], [523284.916, 7052909.329], [522831.799, 7052924.021], [522571.707, 7052712.105], [522257.338, 7052406.427], [522067.416, 7052405.978], [521911.34, 7052652.872], [521741.276, 7053244.06], [521743.533, 7053636.728], [521401.015, 7053930.859], [520844.593, 7054119.629], [520381.274, 7055303.63], [520243.917, 7055957.984], [518261.549, 7054881.637], [518336.512, 7055307.693], [518216.52, 7055627.326], [517880.809, 7056151.165], [517269.061, 7056482.233], [516706.465, 7057127.616], [516806.093, 7057781.068], [516749.927, 7058232.378], [516419.838, 7058845.893], [516449.712, 7059056.542], [516298.591, 7059432.261], [516010.453, 7059907.165], [515521.391, 7060619.682], [514648.9, 7061035.364], [514296.358, 7061011.425], [514163.036, 7061228.63], [513790.441, 7061649.197], [513568.192, 7062251.608], [513259.901, 7062359.21], [512905.775, 7062367.74], [511866.881, 7063471.11], [511500.786, 7063874.701], [511086.959, 7064663.219], [510793.763, 7065154.911], [510656.663, 7065555.376], [510359.524, 7065870.637], [510371.604, 7066349.169], [511052.53, 7066684.389], [511318.59, 7066631.502], [510929.882, 7067145.775], [511055.622, 7067667.845], [511478.545, 7067839.467], [511853.579, 7067693.942], [511995.211, 7067889.337], [512573.258, 7067986.821], [512706.051, 7068306.866], [512577.65, 7068771.111], [512928.864, 7069036.692], [513057.199, 7069281.442], [512962.997, 7069838.939], [512431.866, 7070258.961], [512508.157, 7070512.259], [512211.906, 7070754.756], [512904.875, 7070982.63], [514353.596, 7070731.002], [514510.551, 7071424.278], [513904.534, 7072216.038], [515804.094, 7072750.355], [515716.353, 7073129.761], [517222.424, 7073467.71], [517516.113, 7074280.666], [516697.548, 7075743.419], [516564.91, 7077099.964], [517597.696, 7077833.356], [513612.741, 7083285.012], [512577.835, 7084447.804], [512598.18, 7085955.598], [512535.642, 7087959.096], [513924.868, 7089640.232], [513013.625, 7090199.121], [513094.151, 7090396.759], [512273.037, 7091555.951], [512249.509, 7091914.278], [511835.077, 7092410.772], [511693.124, 7091015.547], [507902.768, 7090204.353], [507863.502, 7092051.098], [507875.657, 7093364.068], [507692.825, 7094299.084], [506186.982, 7095616.254], [505835.73, 7095992.143], [505965.857, 7096106.027], [506419.508, 7096756.403], [512776.493, 7095851.907]]]}}, {\\\"id\\\": \\\"151\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"V\\\\u00e5rd\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 29.9, \\\"freshwarea\\\": 0.39, \\\"gml_id\\\": 1601100265, \\\"landarea\\\": 101.71, \\\"namefin\\\": \\\"V\\\\u00e5rd\\\\u00f6\\\", \\\"nameswe\\\": \\\"V\\\\u00e5rd\\\\u00f6\\\", \\\"natcode\\\": \\\"941\\\", \\\"seawarea\\\": 470.46, \\\"totalarea\\\": 572.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[140496.266, 6721258.001], [144820.222, 6715222.738], [144536.224, 6712841.245], [143566.589, 6712407.023], [142273.539, 6711163.927], [142803.492, 6709913.341], [143244.91, 6709568.178], [143711.533, 6709433.72], [143835.101, 6708555.449], [147210.369, 6709978.728], [148689.254, 6702665.077], [144951.168, 6691887.873], [142597.847, 6694122.714], [141029.635, 6691859.312], [138894.675, 6690310.516], [141286.857, 6686588.354], [140761.833, 6686139.095], [140587.388, 6685460.726], [140178.663, 6685347.594], [139709.82, 6684792.268], [140007.498, 6684116.295], [139853.144, 6683420.0], [139235.181, 6684006.846], [138669.906, 6684184.647], [138186.263, 6684729.698], [137201.41, 6684758.158], [135967.905, 6686158.176], [135296.419, 6686417.698], [134448.19, 6686461.159], [133969.078, 6686166.075], [133390.281, 6685467.842], [134797.124, 6683258.574], [133870.645, 6681525.413], [131859.494, 6683368.712], [130561.18, 6682647.953], [131038.69, 6681805.741], [131117.444, 6681438.73], [130772.843, 6681246.236], [130249.436, 6681475.716], [129346.124, 6682604.677], [130347.166, 6683722.631], [129814.817, 6684900.634], [128402.188, 6685130.869], [128191.981, 6685661.595], [128566.174, 6686225.904], [128333.353, 6686950.727], [127796.612, 6687741.876], [127410.99, 6687834.05], [127129.559, 6688085.333], [127018.894, 6689314.916], [126227.365, 6689237.197], [125587.22, 6689411.61], [125404.738, 6690205.365], [124953.372, 6690340.744], [125180.392, 6691945.45], [125857.187, 6692576.16], [126678.968, 6692476.251], [127256.184, 6692870.13], [128510.507, 6694850.514], [128604.921, 6695847.836], [127955.56, 6696507.892], [127807.126, 6696867.811], [127935.013, 6698461.715], [128537.154, 6699324.004], [128711.33, 6699686.747], [128903.459, 6700648.092], [129402.495, 6702469.904], [129810.123, 6701383.425], [131345.854, 6703146.948], [131638.596, 6704799.22], [129558.558, 6705628.669], [128511.053, 6704363.291], [127678.868, 6704739.919], [128172.76, 6706298.996], [128529.176, 6708406.073], [127423.417, 6708463.885], [126239.217, 6709795.613], [127481.218, 6710392.776], [127690.37, 6710866.13], [128238.364, 6711221.855], [128327.533, 6712066.542], [129047.117, 6712024.112], [129029.581, 6711069.187], [128244.65, 6709668.778], [128529.176, 6708406.073], [129438.456, 6709088.693], [129731.357, 6710162.268], [130182.636, 6710252.613], [129815.88, 6710863.109], [130256.333, 6711546.611], [130144.267, 6712819.972], [129300.871, 6714298.602], [129182.41, 6714394.744], [129174.398, 6714526.367], [128588.06, 6715592.087], [128439.774, 6715694.992], [128541.63, 6715839.502], [128542.04, 6715840.082], [128236.965, 6718063.933], [129962.898, 6718738.534], [132141.589, 6717921.452], [131807.953, 6717072.531], [131434.596, 6716717.822], [131871.47, 6715975.601], [131985.96, 6715409.07], [132261.723, 6715480.569], [132305.634, 6716075.149], [132660.877, 6716630.626], [132353.223, 6716896.664], [132141.589, 6717921.452], [136118.41, 6721648.385], [140496.266, 6721258.001]], [[131434.375, 6700349.463], [131270.226, 6699697.125], [130436.177, 6699920.492], [129963.306, 6699910.162], [129313.391, 6700542.598], [131123.169, 6701145.303], [131434.375, 6700349.463]]]}}, {\\\"id\\\": \\\"152\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Virolahti\\\", \\\"elakelaisten_osuus\\\": 37.4, \\\"freshwarea\\\": 4.26, \\\"gml_id\\\": 1601100115, \\\"landarea\\\": 371.99, \\\"namefin\\\": \\\"Virolahti\\\", \\\"nameswe\\\": \\\"Virolahti\\\", \\\"natcode\\\": \\\"935\\\", \\\"seawarea\\\": 182.73, \\\"totalarea\\\": 558.98}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[533054.508, 6724595.773], [533665.562, 6724441.541], [534140.045, 6724137.729], [536478.844, 6721814.426], [536998.408, 6720861.312], [538104.794, 6720777.958], [539539.714, 6720951.102], [538967.638, 6721994.476], [539828.886, 6722635.326], [540507.119, 6721681.717], [540932.147, 6721620.946], [541266.315, 6721206.416], [541785.703, 6721619.854], [542562.779, 6723205.122], [542386.348, 6723495.104], [543046.178, 6724018.099], [543291.176, 6724428.037], [543851.95, 6724460.729], [544135.936, 6724321.688], [544832.553, 6724586.088], [545522.782, 6723349.692], [546048.979, 6721578.71], [547311.039, 6719640.304], [547343.565, 6719586.008], [548657.893, 6720007.34], [547825.1, 6719059.5], [546461.9, 6716574.2], [546455.5, 6716507.0], [546273.6, 6716379.8], [546232.3, 6716292.6], [546115.9, 6716315.5], [546036.7, 6716232.9], [545950.7, 6716129.9], [545955.2, 6716048.6], [546078.5, 6716006.6], [546290.9, 6715734.4], [546249.8, 6715417.3], [546138.1, 6715084.9], [546207.6, 6714858.5], [546178.2, 6714729.0], [546266.4, 6714439.3], [546467.4, 6714232.8], [544662.6, 6713418.5], [543701.5, 6712444.4], [542496.9, 6711086.9], [542651.9, 6708203.4], [542201.2, 6707775.0], [542022.9, 6706838.3], [542213.1, 6706125.0], [541592.65, 6704192.36], [541142.9, 6703902.6], [541149.1, 6701892.4], [538218.5, 6700345.8], [537811.9, 6699895.7], [540002.0, 6695252.9], [535867.756, 6689985.432], [533133.806, 6692476.121], [530702.194, 6694690.109], [529368.513, 6697249.292], [528670.1, 6698756.278], [528762.732, 6699897.507], [529428.661, 6700522.936], [527499.361, 6701906.215], [523999.107, 6702711.317], [521882.893, 6704353.956], [522354.125, 6705382.677], [522051.836, 6707424.777], [521869.73, 6708463.052], [521842.515, 6709124.799], [520873.202, 6710352.203], [520622.4, 6711009.539], [519552.214, 6713696.147], [519769.007, 6714602.161], [520522.006, 6716725.834], [521257.299, 6718540.708], [523134.227, 6721455.648], [524868.521, 6722898.181], [525393.114, 6722276.936], [526710.297, 6720158.302], [527075.76, 6718457.091], [527893.821, 6720083.242], [529548.251, 6720382.138], [529138.988, 6724633.121], [529538.225, 6724834.344], [529771.634, 6724428.41], [530157.175, 6724876.033], [530737.542, 6724750.789], [531302.317, 6724323.866], [531554.216, 6724136.144], [532238.88, 6724019.993], [531703.05, 6724995.099], [532376.378, 6725084.27], [533054.508, 6724595.773]]]}}, {\\\"id\\\": \\\"153\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Merij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 27.3, \\\"freshwarea\\\": 1.66, \\\"gml_id\\\": 1601100260, \\\"landarea\\\": 229.97, \\\"namefin\\\": \\\"Merij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Merij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"483\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 231.63}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[388288.333, 7123824.356], [387683.683, 7123366.242], [387017.8, 7123333.295], [386789.544, 7123909.575], [386844.265, 7124606.67], [387156.331, 7124900.108], [386735.737, 7125288.343], [386843.369, 7125635.489], [387152.879, 7125443.912], [387214.778, 7125768.843], [387522.528, 7125953.539], [388288.333, 7123824.356]]], [[[380911.402, 7143726.214], [380836.222, 7143491.241], [381028.457, 7143372.998], [380921.129, 7143011.239], [380429.35, 7142860.059], [380616.729, 7142697.663], [380224.362, 7142381.502], [379680.254, 7142166.466], [379442.737, 7142465.86], [379981.859, 7142828.954], [380041.195, 7143016.575], [379227.955, 7142765.237], [378494.281, 7142932.089], [378875.553, 7143270.21], [379401.519, 7143208.188], [379395.34, 7143635.659], [380351.868, 7143842.539], [380911.402, 7143726.214]]], [[[378443.684, 7142024.148], [378726.802, 7142300.353], [379042.311, 7141883.84], [378522.312, 7141526.268], [378975.156, 7140916.235], [378591.482, 7140972.27], [378582.883, 7140413.771], [379518.627, 7139757.59], [379632.108, 7139553.932], [379240.91, 7139532.436], [378835.908, 7139659.122], [378186.685, 7139148.5], [377292.844, 7140202.24], [377052.278, 7140288.467], [376767.859, 7140134.752], [377192.119, 7139709.588], [376806.969, 7137839.033], [380668.091, 7138418.494], [380424.431, 7138852.106], [380648.872, 7139060.772], [381081.365, 7139012.924], [381325.926, 7139183.151], [380630.047, 7139774.607], [380254.294, 7140285.456], [380654.147, 7140589.878], [380941.621, 7140537.915], [381425.466, 7140766.119], [381292.148, 7141359.109], [381045.025, 7141520.685], [381101.274, 7141791.921], [382014.763, 7141647.28], [382058.905, 7141314.04], [381785.172, 7141209.702], [381813.443, 7140753.987], [382206.489, 7140848.006], [382309.908, 7140610.729], [382512.337, 7140674.262], [382646.024, 7140246.041], [382485.772, 7140143.511], [383016.55, 7139330.018], [383493.356, 7139562.244], [383450.923, 7140265.503], [383216.881, 7141305.206], [383678.325, 7141589.226], [384308.984, 7140737.04], [384558.612, 7141403.913], [385116.536, 7141764.81], [385380.944, 7141349.025], [385006.081, 7141056.035], [386693.361, 7141215.378], [386861.714, 7140775.299], [386263.267, 7140645.522], [385963.016, 7140202.344], [385346.611, 7140328.59], [385421.215, 7139956.309], [385688.611, 7139667.125], [385701.487, 7139305.76], [386225.342, 7139159.085], [387419.924, 7139470.277], [387869.239, 7139325.387], [387729.731, 7138878.23], [387787.125, 7138595.696], [387987.367, 7138529.045], [389109.579, 7138731.501], [389501.532, 7138958.103], [389553.514, 7139478.131], [390239.785, 7139325.863], [390957.586, 7139369.036], [390917.33, 7139646.374], [390594.492, 7139647.985], [390244.192, 7140355.373], [391137.614, 7140371.693], [393726.336, 7140926.876], [393746.123, 7140314.3], [395509.596, 7140945.884], [395589.135, 7140143.869], [391053.732, 7139254.63], [390965.747, 7139070.177], [389149.881, 7136760.159], [389016.164, 7136987.62], [389582.0, 7137694.731], [389383.641, 7137860.028], [388993.814, 7137699.516], [388579.489, 7137242.57], [388556.972, 7136928.296], [388986.396, 7136551.184], [387396.9, 7134503.554], [387052.434, 7134882.43], [386903.325, 7134619.119], [387120.741, 7134144.81], [386586.568, 7133455.816], [387111.716, 7131206.026], [384705.995, 7129693.643], [384368.003, 7130807.78], [383799.841, 7131105.705], [383174.579, 7130617.675], [383086.519, 7130844.901], [382908.332, 7131018.138], [382741.419, 7130949.214], [382735.947, 7130178.663], [380835.556, 7130247.002], [380391.303, 7128512.533], [381665.42, 7126750.935], [381402.658, 7125666.142], [381958.554, 7124655.961], [381707.302, 7124536.945], [381375.488, 7124746.594], [381350.203, 7124206.099], [381794.718, 7124157.384], [382533.228, 7124646.444], [383149.835, 7124529.478], [383470.816, 7124007.431], [383477.143, 7123704.016], [383085.433, 7123797.891], [383112.163, 7123236.59], [382835.682, 7123069.109], [383437.403, 7121969.216], [382543.364, 7120022.976], [380556.177, 7121005.928], [378469.196, 7123750.398], [374214.283, 7127202.616], [371482.912, 7129662.964], [368791.01, 7133254.305], [367731.058, 7134639.838], [368074.216, 7134530.996], [368163.433, 7134694.9], [368264.464, 7134584.399], [368439.351, 7134727.041], [368244.696, 7134922.16], [368526.327, 7135064.135], [368390.8, 7135360.603], [369476.535, 7135971.49], [369232.94, 7136647.064], [369745.038, 7136927.221], [370021.285, 7136701.966], [369970.829, 7136271.756], [370201.324, 7136077.373], [371592.385, 7137148.52], [371564.166, 7136828.983], [371060.304, 7136206.755], [371223.948, 7135729.36], [371088.873, 7135137.078], [370752.861, 7134389.882], [370075.784, 7133753.234], [370342.235, 7133305.849], [370560.602, 7133193.09], [370671.449, 7133635.18], [370981.109, 7133567.774], [371327.364, 7134439.114], [371866.219, 7134460.006], [371875.01, 7134932.006], [372085.606, 7135789.008], [372104.872, 7136144.45], [371633.611, 7136358.06], [371936.242, 7136972.103], [371927.632, 7137323.396], [372243.391, 7137607.43], [373765.029, 7137666.45], [373739.103, 7138479.138], [374635.111, 7139001.851], [374461.626, 7139388.951], [374102.841, 7139757.015], [373122.368, 7139788.194], [373123.411, 7139922.489], [373569.925, 7140184.24], [376007.533, 7140680.404], [377985.088, 7142433.632], [378443.684, 7142024.148]]]]}}, {\\\"id\\\": \\\"154\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Virrat\\\", \\\"elakelaisten_osuus\\\": 40.9, \\\"freshwarea\\\": 136.41, \\\"gml_id\\\": 1601100375, \\\"landarea\\\": 1162.67, \\\"namefin\\\": \\\"Virrat\\\", \\\"nameswe\\\": \\\"Virdois\\\", \\\"natcode\\\": \\\"936\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1299.08}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[336987.61, 6929367.886], [338489.746, 6929365.582], [338583.246, 6932174.94], [340214.894, 6931990.53], [340738.76, 6928959.927], [340305.99, 6929067.577], [340194.41, 6928683.492], [340673.178, 6928541.979], [340090.974, 6926557.551], [340261.385, 6925736.272], [340478.735, 6925243.97], [340427.319, 6924692.017], [340262.62, 6924127.964], [340387.137, 6923823.651], [340448.679, 6923133.136], [340961.525, 6922195.209], [341008.871, 6921479.901], [342075.228, 6921040.23], [342540.245, 6920984.86], [344617.79, 6919777.67], [344590.659, 6919411.754], [345455.368, 6918226.112], [345809.974, 6912634.291], [346935.619, 6910860.52], [347148.85, 6911272.219], [347884.878, 6911249.475], [348370.354, 6910688.402], [348523.117, 6908389.531], [351709.824, 6905580.695], [355176.866, 6905410.076], [355159.141, 6904226.449], [355890.153, 6904007.804], [356116.354, 6904183.48], [356360.623, 6903931.432], [356104.218, 6903369.404], [355427.217, 6903740.57], [354845.451, 6903201.325], [355008.868, 6902437.442], [353155.041, 6903263.672], [352935.972, 6903045.425], [353787.088, 6901304.659], [352365.202, 6901393.548], [352004.437, 6901207.282], [351814.901, 6900400.466], [351897.633, 6900118.666], [352411.331, 6899986.972], [351575.436, 6898333.39], [351121.105, 6897886.046], [350809.28, 6897231.949], [350416.262, 6897414.976], [350263.748, 6897887.729], [349750.549, 6898215.699], [349233.748, 6897682.944], [349083.798, 6897118.844], [348167.618, 6897357.202], [347575.537, 6896591.378], [347012.654, 6896938.241], [346283.029, 6895601.541], [345587.855, 6893890.194], [345382.816, 6891191.697], [342499.175, 6893025.99], [339400.132, 6894159.091], [338880.069, 6894510.952], [338069.907, 6895869.608], [337458.771, 6895964.05], [337233.164, 6895617.757], [336410.226, 6897371.766], [335851.273, 6898435.948], [334884.316, 6898502.558], [334426.904, 6897386.605], [336586.275, 6892485.493], [334889.439, 6891252.703], [333625.22, 6891345.126], [332853.741, 6890729.143], [332427.01, 6889306.606], [332274.053, 6888999.717], [332297.748, 6888568.876], [332205.534, 6888237.195], [331609.344, 6888155.42], [331076.893, 6887900.327], [330622.887, 6887822.548], [330297.41, 6887580.743], [328341.363, 6888940.497], [326675.837, 6888024.827], [324642.406, 6886969.457], [319421.316, 6892184.389], [318778.676, 6892564.573], [313738.511, 6896936.1], [311248.686, 6904814.865], [304770.712, 6916054.671], [304928.165, 6916471.996], [304153.954, 6917135.548], [303722.172, 6917387.209], [304557.424, 6918599.408], [304582.831, 6919024.121], [304443.81, 6919329.209], [304771.39, 6919350.96], [305006.473, 6919039.782], [305248.121, 6919752.177], [305848.285, 6919848.181], [305991.684, 6919496.622], [306810.359, 6919850.312], [306670.641, 6920199.306], [306949.593, 6921221.147], [306336.852, 6921033.314], [306092.343, 6921653.445], [307589.854, 6925168.085], [310933.466, 6926894.948], [310739.623, 6926324.497], [310740.236, 6925423.721], [311223.136, 6924891.075], [311807.83, 6925403.748], [312556.608, 6924539.479], [311899.599, 6923976.23], [312224.973, 6923674.716], [312777.727, 6924272.215], [313350.101, 6923606.307], [313410.146, 6922749.722], [315029.68, 6921444.987], [316169.578, 6921054.096], [317757.498, 6921783.127], [319892.311, 6920033.249], [319415.82, 6925258.906], [322979.767, 6924761.088], [327654.949, 6924153.087], [332876.856, 6929137.749], [333907.931, 6929240.817], [333753.681, 6929498.285], [334454.584, 6930197.409], [334923.994, 6929233.05], [335415.965, 6928765.619], [335555.61, 6929039.629], [335375.785, 6929821.898], [335908.271, 6930228.305], [335270.372, 6931504.254], [336977.473, 6933246.544], [336987.61, 6929367.886]]]}}, {\\\"id\\\": \\\"155\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hailuoto\\\", \\\"elakelaisten_osuus\\\": 43.5, \\\"freshwarea\\\": 1.69, \\\"gml_id\\\": 1601100001, \\\"landarea\\\": 205.66, \\\"namefin\\\": \\\"Hailuoto\\\", \\\"nameswe\\\": \\\"Karl\\\\u00f6\\\", \\\"natcode\\\": \\\"072\\\", \\\"seawarea\\\": 875.35, \\\"totalarea\\\": 1082.7}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[403898.34, 7225741.843], [412254.653, 7216585.946], [411722.421, 7215387.29], [407784.854, 7208121.521], [405158.02, 7206221.723], [396054.571, 7199665.012], [393701.714, 7199025.715], [360431.691, 7212610.604], [362935.407, 7220553.464], [364872.193, 7230928.956], [403898.34, 7225741.843]]]}}, {\\\"id\\\": \\\"156\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kaavi\\\", \\\"elakelaisten_osuus\\\": 43.6, \\\"freshwarea\\\": 115.53, \\\"gml_id\\\": 1601100346, \\\"landarea\\\": 674.07, \\\"namefin\\\": \\\"Kaavi\\\", \\\"nameswe\\\": \\\"Kaavi\\\", \\\"natcode\\\": \\\"204\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 789.6}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[592454.262, 6997369.501], [592537.421, 6996890.095], [592655.625, 6996342.444], [592964.81, 6995948.878], [593257.002, 6995668.851], [593470.617, 6995115.403], [593370.599, 6994784.689], [593633.82, 6994220.892], [593808.104, 6993697.193], [594071.775, 6993305.435], [594427.609, 6993135.014], [594639.966, 6993145.15], [594878.03, 6992920.713], [595448.325, 6992766.431], [595848.724, 6992384.613], [595957.685, 6992110.76], [596470.334, 6992295.184], [597409.5, 6991065.729], [603179.212, 6988433.798], [604624.085, 6985773.066], [604769.267, 6985511.617], [600951.146, 6983125.651], [601288.074, 6982379.281], [601134.211, 6982304.263], [600817.084, 6983041.679], [600004.69, 6982527.134], [600300.323, 6982130.271], [599592.72, 6981070.662], [601032.277, 6980708.389], [601148.464, 6980171.303], [600634.009, 6980300.484], [601327.515, 6979098.637], [600520.579, 6978666.383], [599687.828, 6978742.902], [598181.638, 6980303.522], [598006.633, 6979998.463], [598467.246, 6977705.912], [599035.585, 6977652.382], [599351.976, 6977236.85], [599939.743, 6977092.184], [599725.925, 6976782.691], [600096.102, 6976221.818], [600489.358, 6975959.837], [601118.559, 6975606.52], [601727.993, 6973823.995], [602339.378, 6974126.681], [602386.277, 6973823.38], [602052.51, 6973516.023], [602254.595, 6973094.307], [603328.504, 6972761.958], [604178.073, 6971666.939], [604572.325, 6971984.091], [605263.127, 6971277.462], [605620.118, 6971268.911], [606127.63, 6970652.673], [606486.574, 6970599.583], [606795.79, 6970125.15], [600253.626, 6965170.24], [599157.333, 6962004.419], [598528.382, 6961955.347], [596852.811, 6963585.258], [596944.851, 6964221.214], [596178.319, 6964546.156], [594804.275, 6965422.38], [594217.13, 6965599.842], [593303.536, 6966822.173], [593557.874, 6967246.858], [593407.877, 6967411.829], [592898.437, 6967288.324], [592178.462, 6967957.981], [591179.258, 6968338.911], [590971.118, 6968032.506], [590410.127, 6967702.932], [588917.517, 6965889.245], [587750.825, 6966309.018], [586694.586, 6967763.286], [587146.21, 6968751.843], [586754.345, 6969424.324], [586632.529, 6969847.01], [585575.12, 6971033.813], [584536.543, 6972596.292], [584477.328, 6972686.825], [584305.799, 6973842.948], [584310.041, 6973884.595], [583791.628, 6974001.735], [583323.975, 6973947.549], [583212.232, 6974119.25], [583047.095, 6974263.118], [582824.809, 6974358.307], [582747.876, 6974420.221], [581407.369, 6974960.777], [580637.318, 6975058.867], [580539.066, 6975882.396], [579255.043, 6977157.343], [578780.628, 6977113.104], [577339.339, 6978540.576], [576399.176, 6978692.687], [576161.055, 6978660.952], [575596.362, 6979135.297], [575174.74, 6979205.773], [574679.682, 6979969.122], [574767.346, 6980136.724], [573245.503, 6980640.546], [573329.096, 6980923.426], [573141.947, 6981442.567], [572356.133, 6981269.302], [572592.041, 6982072.238], [571687.788, 6982415.469], [570284.522, 6982319.942], [571983.445, 6984329.84], [572241.373, 6985197.05], [572068.143, 6985692.157], [572387.838, 6986388.113], [572862.649, 6986142.955], [573057.551, 6986388.982], [573248.6, 6986164.362], [573702.404, 6986522.452], [573783.207, 6987117.207], [574577.481, 6987854.197], [574163.694, 6988158.428], [572335.585, 6991282.943], [571733.551, 6991275.974], [571640.112, 6992014.534], [571393.852, 6992250.435], [570809.415, 6991975.702], [570678.616, 6992184.047], [570748.676, 6993623.086], [571156.377, 6993264.364], [571805.805, 6993098.427], [571478.993, 6993796.211], [571860.211, 6993989.585], [571628.25, 6994530.892], [571884.101, 6994396.105], [572071.823, 6994820.198], [571598.39, 6995079.477], [574636.769, 6996431.194], [574564.49, 6996920.37], [574040.726, 6997165.868], [574257.162, 6997527.924], [574061.276, 6998169.958], [574258.551, 6998400.855], [575595.299, 6998272.453], [577163.756, 6998612.34], [577129.47, 6999071.876], [578030.113, 6999120.953], [577962.833, 7000380.05], [582304.669, 7000640.637], [582972.905, 7000391.019], [583562.361, 7000386.901], [588843.378, 7002040.871], [592454.262, 6997369.501]]]}}, {\\\"id\\\": \\\"157\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kemi\\\", \\\"elakelaisten_osuus\\\": 33.8, \\\"freshwarea\\\": 7.38, \\\"gml_id\\\": 1601100403, \\\"landarea\\\": 95.37, \\\"namefin\\\": \\\"Kemi\\\", \\\"nameswe\\\": \\\"Kemi\\\", \\\"natcode\\\": \\\"240\\\", \\\"seawarea\\\": 644.53, \\\"totalarea\\\": 747.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[388570.103, 7298829.981], [389258.448, 7297812.724], [389883.5, 7297355.627], [389945.182, 7297747.327], [393000.651, 7295717.355], [392947.81, 7294661.255], [393557.315, 7294613.774], [394766.558, 7293967.312], [394644.891, 7293676.559], [393844.901, 7293969.106], [393663.388, 7293847.826], [393656.937, 7293520.858], [394051.098, 7293089.47], [394514.079, 7290690.837], [396443.969, 7290581.243], [396035.422, 7290066.137], [395393.088, 7290347.27], [395391.592, 7289347.595], [396006.827, 7289239.257], [395836.599, 7288166.204], [396561.004, 7287772.167], [393569.713, 7283988.54], [392279.663, 7283657.013], [382862.563, 7261658.231], [367343.815, 7249044.486], [367435.866, 7268614.049], [367437.08, 7268913.439], [367671.471, 7270576.236], [369174.752, 7279707.957], [382603.667, 7296353.473], [385992.898, 7297648.827], [386195.869, 7297953.1], [388122.169, 7299270.588], [388570.103, 7298829.981]]]}}, {\\\"id\\\": \\\"158\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tuusniemi\\\", \\\"elakelaisten_osuus\\\": 44.8, \\\"freshwarea\\\": 156.25, \\\"gml_id\\\": 1601100638, \\\"landarea\\\": 543.17, \\\"namefin\\\": \\\"Tuusniemi\\\", \\\"nameswe\\\": \\\"Tuusniemi\\\", \\\"natcode\\\": \\\"857\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 699.42}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[572592.041, 6982072.238], [572356.133, 6981269.302], [573141.947, 6981442.567], [573329.096, 6980923.426], [573245.503, 6980640.546], [574767.346, 6980136.724], [574679.682, 6979969.122], [575174.74, 6979205.773], [575596.362, 6979135.297], [576161.055, 6978660.952], [576399.176, 6978692.687], [577339.339, 6978540.576], [578780.628, 6977113.104], [579255.043, 6977157.343], [580539.066, 6975882.396], [580637.318, 6975058.867], [581407.369, 6974960.777], [582747.876, 6974420.221], [582824.809, 6974358.307], [583047.095, 6974263.118], [583212.232, 6974119.25], [583323.975, 6973947.549], [583791.628, 6974001.735], [584310.041, 6973884.595], [584305.799, 6973842.948], [584477.328, 6972686.825], [584536.543, 6972596.292], [585575.12, 6971033.813], [586632.529, 6969847.01], [586754.345, 6969424.324], [587146.21, 6968751.843], [586694.586, 6967763.286], [587750.825, 6966309.018], [588917.517, 6965889.245], [589124.816, 6964415.962], [587637.091, 6961501.947], [587318.356, 6961708.872], [586781.731, 6961402.507], [586372.708, 6961774.851], [585768.374, 6961786.608], [583873.471, 6960006.168], [583417.623, 6958121.116], [584040.305, 6956378.601], [587148.6, 6952676.304], [584774.075, 6949717.383], [584812.796, 6948464.778], [584207.172, 6947549.328], [584215.715, 6946305.723], [584007.664, 6945002.859], [583817.125, 6944444.13], [582049.398, 6943203.253], [583460.984, 6942754.805], [583387.674, 6942040.794], [582902.44, 6941673.925], [582367.609, 6940740.846], [582070.838, 6940774.639], [581052.878, 6939796.349], [580138.826, 6941657.974], [579142.681, 6940543.712], [578939.485, 6940197.838], [578286.654, 6940360.357], [577636.468, 6940279.889], [576365.61, 6940622.383], [575737.419, 6940443.723], [575358.681, 6940004.235], [575019.273, 6940139.827], [574673.507, 6940980.084], [573446.394, 6942245.162], [572286.96, 6942568.721], [571911.809, 6942867.597], [571429.803, 6943017.233], [570604.837, 6942913.569], [569835.846, 6943143.769], [569882.075, 6943616.534], [569336.414, 6944118.444], [569817.745, 6944339.056], [569438.188, 6945314.793], [570186.575, 6945325.348], [569294.955, 6946037.91], [568561.461, 6946557.71], [567926.799, 6946736.052], [567248.3, 6947448.528], [567637.326, 6947559.207], [569718.567, 6952673.969], [570379.925, 6952493.116], [570569.272, 6952584.973], [570479.919, 6952801.036], [570162.69, 6953150.803], [569703.954, 6953769.01], [569651.836, 6954411.842], [569404.581, 6954807.93], [569049.477, 6955140.742], [568819.566, 6955646.357], [568532.682, 6955860.714], [567941.005, 6955711.724], [567878.446, 6955877.671], [567996.016, 6956986.575], [567383.612, 6957241.162], [566531.461, 6958786.938], [565949.591, 6959995.959], [566999.018, 6960287.285], [567964.938, 6960009.314], [568394.355, 6960047.031], [568016.083, 6961152.694], [567859.272, 6961597.938], [566948.311, 6962657.428], [565222.803, 6961126.907], [564891.235, 6960473.694], [564334.853, 6960318.624], [563816.703, 6960456.932], [566521.504, 6963132.529], [567745.495, 6963129.954], [567908.612, 6964056.469], [568239.264, 6964701.207], [568048.271, 6965776.447], [567509.711, 6965528.522], [567260.324, 6966269.145], [567339.676, 6966607.574], [567418.776, 6967470.752], [567334.243, 6967785.605], [564508.293, 6965089.983], [564100.564, 6966025.021], [563640.182, 6966049.711], [563289.883, 6966313.925], [562706.893, 6966552.034], [562422.506, 6967068.017], [562099.173, 6967444.743], [561692.516, 6967941.18], [561112.914, 6968470.716], [561612.989, 6969220.679], [561447.753, 6969559.541], [561557.605, 6969988.568], [560929.351, 6970918.187], [560396.461, 6971570.12], [559343.081, 6972366.99], [559143.678, 6973267.712], [560055.784, 6973274.028], [560508.395, 6973864.092], [561742.102, 6973172.78], [563007.087, 6972026.803], [563574.132, 6971810.111], [563904.827, 6971986.284], [563921.596, 6972288.933], [563758.138, 6972821.483], [563518.336, 6973235.557], [563216.202, 6973460.573], [563345.045, 6973925.886], [565630.927, 6973071.647], [565739.976, 6973765.767], [566133.015, 6973965.589], [564418.603, 6974762.455], [564554.442, 6975385.203], [565713.776, 6975023.558], [565750.758, 6975348.326], [566013.352, 6975319.04], [566047.627, 6976518.655], [565066.422, 6976756.052], [564588.991, 6977264.844], [564984.039, 6977614.375], [565132.786, 6977872.8], [565479.294, 6978187.781], [565862.183, 6978290.35], [566361.821, 6978303.778], [566453.146, 6978652.992], [566115.64, 6979133.73], [565321.606, 6979442.186], [564631.672, 6979793.218], [563188.166, 6980011.06], [561846.791, 6980728.921], [562037.08, 6981198.842], [563359.47, 6980478.152], [566535.388, 6979928.196], [569542.577, 6980297.982], [570600.289, 6981089.902], [570284.522, 6982319.942], [571687.788, 6982415.469], [572592.041, 6982072.238]]]}}, {\\\"id\\\": \\\"159\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lohja\\\", \\\"elakelaisten_osuus\\\": 27.4, \\\"freshwarea\\\": 170.56, \\\"gml_id\\\": 1601100022, \\\"landarea\\\": 939.17, \\\"namefin\\\": \\\"Lohja\\\", \\\"nameswe\\\": \\\"Lojo\\\", \\\"natcode\\\": \\\"444\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1109.73}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[332162.632, 6727612.894], [332283.617, 6727231.085], [333014.817, 6726919.3], [333831.31, 6726317.468], [334371.929, 6726306.184], [336222.196, 6724541.267], [336719.739, 6724930.643], [337096.257, 6724257.507], [336905.383, 6723911.912], [337329.431, 6723446.878], [336691.403, 6722628.462], [335970.914, 6722756.012], [335363.142, 6721764.357], [335614.969, 6721446.236], [336149.589, 6721123.568], [337095.663, 6722165.544], [337396.548, 6722934.84], [340873.387, 6715975.412], [343830.319, 6711946.476], [343689.743, 6711161.061], [344565.478, 6708737.405], [343088.693, 6705507.978], [342320.02, 6702608.377], [342332.096, 6701328.023], [342588.24, 6700785.319], [342449.466, 6700524.444], [341980.601, 6700173.762], [341664.302, 6699827.095], [342640.679, 6699725.891], [342067.039, 6698486.552], [343618.334, 6698186.568], [343903.356, 6696816.829], [344796.879, 6696988.756], [345536.454, 6695499.79], [345790.284, 6695101.034], [345907.536, 6694529.922], [345724.96, 6693756.118], [345912.732, 6693008.579], [345493.322, 6690244.929], [345713.071, 6687943.616], [348417.581, 6689549.867], [349093.986, 6688735.556], [349518.905, 6689020.53], [350363.933, 6688252.079], [351084.214, 6687267.974], [350150.857, 6686590.204], [348432.639, 6684532.268], [347755.179, 6683675.588], [346658.898, 6683627.58], [346110.335, 6683692.275], [343177.709, 6680551.318], [343117.684, 6681906.059], [342100.125, 6680560.278], [342829.409, 6680197.418], [341984.342, 6679755.135], [341112.128, 6680696.181], [339355.676, 6680363.89], [338766.559, 6680052.266], [338602.741, 6680623.867], [338116.178, 6680332.146], [338370.847, 6679743.356], [337345.651, 6678886.728], [336504.425, 6678461.636], [336202.331, 6677948.558], [335803.444, 6677775.55], [336079.221, 6677116.583], [336139.187, 6676444.443], [335415.626, 6676257.048], [334931.274, 6676379.156], [334085.902, 6675495.796], [334582.909, 6675293.781], [334593.506, 6674736.995], [334488.258, 6674031.399], [334644.843, 6673704.074], [334388.106, 6672664.936], [334526.292, 6672025.248], [336005.637, 6671797.73], [334911.515, 6670348.246], [333527.226, 6669946.107], [332317.643, 6670155.027], [330821.842, 6669801.593], [330160.479, 6669763.78], [328783.329, 6671838.636], [328038.44, 6673533.125], [328012.191, 6674712.929], [328567.008, 6676115.136], [328240.594, 6676815.612], [328141.853, 6677924.216], [328151.94, 6678390.657], [327029.838, 6678055.1], [327190.495, 6677658.81], [326752.368, 6677405.863], [324721.03, 6676726.073], [324054.825, 6677641.332], [323110.393, 6676729.425], [321863.285, 6676633.198], [320642.594, 6675615.488], [318863.262, 6674785.151], [317904.701, 6674690.987], [317123.94, 6674795.452], [316139.473, 6675078.747], [315717.729, 6675395.335], [314986.273, 6674897.838], [314265.561, 6675110.09], [312606.84, 6674738.33], [311998.839, 6675089.31], [311679.743, 6675768.827], [311623.041, 6676747.121], [312410.676, 6677169.89], [312658.828, 6677827.908], [314278.739, 6678574.4], [313993.449, 6679357.709], [314253.062, 6679640.469], [313729.863, 6680577.226], [313549.956, 6681769.58], [313608.45, 6682308.012], [314298.047, 6682451.864], [313632.967, 6683270.744], [312236.212, 6684157.07], [311893.034, 6684183.946], [311807.545, 6684683.595], [311139.037, 6685125.451], [311402.739, 6685482.729], [311672.632, 6685673.071], [311633.409, 6685884.911], [311879.08, 6685929.454], [312636.046, 6685266.045], [312771.764, 6686403.47], [313064.193, 6686375.57], [313042.056, 6685303.479], [313407.291, 6685196.412], [313660.858, 6687654.06], [314406.387, 6687630.939], [316234.726, 6689800.029], [317054.174, 6688711.47], [318599.844, 6689674.073], [319231.631, 6690169.649], [319425.238, 6690794.283], [319409.151, 6692532.305], [319813.052, 6693508.174], [319757.935, 6694107.783], [319836.611, 6695490.734], [319703.935, 6695854.48], [319234.718, 6695995.216], [319314.378, 6696972.814], [320340.276, 6697060.956], [320907.257, 6697465.156], [322338.971, 6698959.51], [322622.818, 6698673.89], [323127.585, 6698912.221], [323121.55, 6698918.567], [322884.789, 6700820.565], [323346.815, 6702887.257], [323521.746, 6703467.077], [323117.104, 6705869.091], [318062.995, 6706087.889], [319406.81, 6707686.962], [319136.184, 6708592.486], [320774.171, 6710467.086], [325493.682, 6710711.926], [326277.398, 6710299.979], [327992.013, 6711743.402], [328244.548, 6712063.462], [327917.366, 6713591.638], [327749.454, 6713873.671], [327624.08, 6713907.718], [327624.999, 6714024.393], [327494.928, 6714122.357], [327516.528, 6714275.339], [327372.421, 6714411.264], [327251.032, 6714638.848], [327438.632, 6714803.662], [327383.022, 6714872.665], [327643.662, 6715019.231], [328037.555, 6715192.55], [328002.562, 6715511.561], [327071.772, 6717260.806], [327002.246, 6717531.525], [329369.756, 6717651.055], [329538.069, 6719382.828], [330656.411, 6720753.845], [331428.893, 6722861.159], [328533.193, 6724398.218], [330561.662, 6727772.87], [331531.475, 6728183.032], [332162.632, 6727612.894]]]}}, {\\\"id\\\": \\\"160\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kaarina\\\", \\\"elakelaisten_osuus\\\": 24.0, \\\"freshwarea\\\": 1.05, \\\"gml_id\\\": 1601100342, \\\"landarea\\\": 150.65, \\\"namefin\\\": \\\"Kaarina\\\", \\\"nameswe\\\": \\\"S:t Karins\\\", \\\"natcode\\\": \\\"202\\\", \\\"seawarea\\\": 27.88, \\\"totalarea\\\": 179.58}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[257066.481, 6714452.398], [257212.873, 6714707.055], [257446.584, 6713502.467], [257299.702, 6713010.931], [257534.588, 6712560.654], [257272.581, 6712383.465], [257517.69, 6711836.8], [257619.415, 6709672.103], [257318.54, 6709768.931], [257040.024, 6709398.744], [257641.557, 6709312.335], [257766.937, 6705467.721], [257527.964, 6705005.012], [256811.564, 6704579.284], [257754.814, 6704127.765], [257203.771, 6703443.778], [257834.386, 6703206.768], [257945.707, 6702009.431], [257642.924, 6701722.189], [257285.343, 6701095.376], [256302.593, 6700619.42], [256120.94, 6699836.912], [254777.4, 6699406.538], [254131.465, 6698342.865], [253263.73, 6699454.95], [252481.244, 6699956.133], [251618.891, 6698953.09], [251166.445, 6698872.105], [250716.896, 6698999.901], [250213.026, 6698813.27], [249709.224, 6698463.159], [249333.861, 6699004.649], [248806.785, 6699282.254], [248345.07, 6699473.846], [247739.825, 6699922.772], [247899.547, 6700196.869], [248501.265, 6700688.666], [248599.454, 6701857.878], [247795.906, 6702155.608], [246953.274, 6702063.973], [246646.968, 6701900.693], [245811.129, 6701838.426], [245519.042, 6701493.617], [244648.514, 6701346.796], [243467.383, 6700981.615], [242848.909, 6701215.192], [242586.616, 6701498.548], [242173.459, 6701448.133], [241481.885, 6700941.815], [241174.872, 6701432.765], [241384.58, 6701972.949], [241197.924, 6703081.102], [240373.16, 6703192.745], [240051.274, 6703759.665], [240200.39, 6704259.06], [240036.254, 6705106.084], [239767.447, 6705590.767], [240582.211, 6706184.043], [241030.459, 6706214.132], [241776.984, 6706438.115], [242897.594, 6707103.652], [243575.088, 6707737.168], [244865.892, 6708294.322], [245139.861, 6708768.784], [244869.462, 6709369.222], [245266.866, 6709451.216], [244460.089, 6711826.499], [244095.139, 6712519.864], [243762.982, 6712390.701], [243438.857, 6712982.504], [244279.15, 6714124.228], [245058.936, 6713448.535], [245370.121, 6713650.59], [246348.984, 6711392.688], [246904.943, 6710051.877], [248326.493, 6710494.214], [249138.58, 6710567.666], [249127.668, 6710201.136], [250203.755, 6710357.776], [250466.79, 6711006.867], [251364.554, 6711261.809], [252959.785, 6712239.521], [253811.266, 6712904.892], [254323.403, 6712241.042], [254662.539, 6712554.895], [254088.965, 6713109.862], [255544.191, 6714079.823], [256564.38, 6714725.429], [257066.481, 6714452.398]]]}}, {\\\"id\\\": \\\"161\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Halsua\\\", \\\"elakelaisten_osuus\\\": 36.5, \\\"freshwarea\\\": 15.32, \\\"gml_id\\\": 1601100117, \\\"landarea\\\": 413.02, \\\"namefin\\\": \\\"Halsua\\\", \\\"nameswe\\\": \\\"Halsua\\\", \\\"natcode\\\": \\\"074\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 428.34}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[361992.935, 7048013.702], [363040.234, 7048776.159], [362978.199, 7049290.843], [363043.621, 7049840.926], [363193.361, 7049847.635], [363587.214, 7048897.567], [362792.097, 7048218.522], [362814.762, 7047863.404], [362555.475, 7047780.68], [362395.677, 7047666.317], [366662.923, 7043990.815], [367400.966, 7044688.69], [367673.776, 7044400.547], [368361.798, 7045084.633], [367574.977, 7045514.404], [367346.154, 7045368.174], [367054.39, 7045437.739], [366394.242, 7045682.928], [366483.128, 7046098.7], [366713.141, 7045822.86], [367291.436, 7045895.014], [368584.366, 7045298.537], [370959.148, 7047641.992], [372978.266, 7045479.255], [374026.326, 7046622.371], [375704.143, 7044833.012], [375917.317, 7045263.261], [376147.525, 7045093.904], [377260.599, 7046448.84], [378377.148, 7046180.973], [378342.541, 7044968.25], [377546.307, 7043882.242], [376755.509, 7043713.511], [377063.648, 7043386.456], [377086.864, 7041546.341], [375846.13, 7040198.235], [377113.288, 7039375.952], [377118.27, 7038935.371], [377496.364, 7038511.495], [377635.634, 7037979.999], [376883.302, 7037160.438], [376662.199, 7037362.745], [375691.363, 7036302.643], [375795.437, 7036072.848], [373275.525, 7034944.775], [373491.019, 7034495.96], [374101.469, 7034789.466], [375626.753, 7031588.23], [374026.127, 7030837.784], [374329.738, 7029859.59], [370293.451, 7029678.875], [368311.879, 7025840.863], [361813.563, 7027035.695], [361422.964, 7026662.235], [360935.555, 7027162.652], [358048.851, 7025710.982], [357848.768, 7026462.836], [359344.89, 7027281.454], [359813.382, 7027952.088], [359558.905, 7028437.638], [358736.7, 7028665.051], [358679.863, 7028508.291], [357790.64, 7029278.235], [356191.962, 7030297.235], [356038.167, 7030589.603], [356711.348, 7031461.727], [355614.066, 7032246.011], [356380.37, 7032997.856], [355374.182, 7034831.3], [354574.5, 7034828.044], [354522.297, 7034181.772], [355234.521, 7033682.646], [355021.022, 7033407.456], [354582.626, 7033745.303], [354126.067, 7033308.988], [353844.073, 7033156.743], [353465.95, 7033420.294], [354021.97, 7038537.854], [353358.672, 7040505.2], [354597.61, 7041268.702], [353890.844, 7042287.18], [354895.471, 7042973.357], [355217.569, 7044069.025], [354787.428, 7044819.691], [354243.771, 7044590.444], [353492.654, 7046340.735], [352829.619, 7047102.871], [352918.254, 7047105.757], [352964.543, 7047350.3], [352789.636, 7047383.2], [352748.026, 7047233.904], [352507.231, 7047470.066], [352645.633, 7047644.051], [352760.876, 7047634.99], [352980.019, 7047769.599], [352920.95, 7047856.85], [353073.37, 7047984.33], [353367.545, 7048485.754], [353508.522, 7048401.236], [353776.885, 7049560.067], [353961.746, 7049692.385], [353432.667, 7050443.076], [354208.134, 7051862.952], [354665.976, 7051593.978], [355999.493, 7053151.35], [361992.935, 7048013.702]]]}}, {\\\"id\\\": \\\"162\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rovaniemi\\\", \\\"elakelaisten_osuus\\\": 23.5, \\\"freshwarea\\\": 435.24, \\\"gml_id\\\": 1601100441, \\\"landarea\\\": 7581.51, \\\"namefin\\\": \\\"Rovaniemi\\\", \\\"nameswe\\\": \\\"Rovaniemi\\\", \\\"natcode\\\": \\\"698\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 8016.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[428225.465, 7449190.611], [428510.971, 7449194.171], [439783.761, 7447292.232], [439864.442, 7443756.549], [441904.732, 7443241.658], [442431.183, 7446371.194], [442375.084, 7446880.74], [443914.672, 7446611.512], [443979.364, 7446077.903], [444563.305, 7446133.498], [444624.143, 7446491.831], [445592.175, 7446329.286], [446044.534, 7445951.883], [446029.096, 7446267.544], [452469.739, 7445168.698], [469159.234, 7430996.277], [469561.888, 7430551.328], [469724.744, 7430667.283], [471704.895, 7427914.232], [471560.807, 7427805.159], [472593.655, 7426370.374], [472803.488, 7426627.286], [473599.506, 7426182.978], [474247.473, 7426513.576], [474380.713, 7426246.65], [474052.592, 7426032.877], [478933.385, 7425099.02], [476747.712, 7424183.039], [479535.844, 7419967.287], [482775.729, 7413840.117], [484879.162, 7411583.272], [487336.531, 7388696.712], [486582.212, 7383990.811], [507395.134, 7359359.02], [511192.147, 7356938.071], [510487.383, 7354769.37], [512214.036, 7350805.994], [511734.922, 7348523.66], [514039.777, 7347093.346], [514687.481, 7346415.994], [511710.473, 7342032.767], [511430.613, 7342223.719], [511398.289, 7342580.689], [510549.41, 7342321.741], [508896.663, 7342246.265], [508434.047, 7341934.666], [504368.778, 7342356.769], [503880.735, 7342906.34], [503296.932, 7343013.207], [502994.744, 7343533.351], [502914.426, 7344478.911], [502364.393, 7344673.949], [501308.819, 7344908.359], [501306.643, 7345096.074], [501726.364, 7345777.128], [501759.162, 7346048.991], [500965.991, 7346672.452], [500109.423, 7347538.638], [498700.36, 7346912.29], [498452.953, 7348054.485], [497960.504, 7348192.827], [497812.346, 7347872.385], [498319.328, 7347369.19], [497943.636, 7346989.851], [497325.941, 7346967.578], [496895.851, 7347606.631], [497279.453, 7348387.664], [496789.839, 7348850.95], [496965.94, 7349047.847], [496994.607, 7349819.234], [496356.87, 7350722.555], [496010.891, 7352584.256], [495660.353, 7352513.153], [495535.822, 7353564.179], [495412.555, 7353560.131], [494893.713, 7352923.449], [494419.968, 7352799.452], [494099.53, 7353063.713], [494078.607, 7353488.915], [494060.948, 7353498.588], [492699.581, 7353429.766], [487771.299, 7353224.598], [481133.189, 7351742.13], [481085.208, 7349732.969], [482188.486, 7349668.8], [482256.027, 7349268.003], [481263.053, 7349108.674], [480752.784, 7347663.452], [481337.577, 7347363.929], [481615.069, 7346546.214], [483530.02, 7345025.514], [482855.508, 7344139.762], [476092.148, 7340941.284], [475504.657, 7341334.976], [474851.537, 7343345.403], [474858.468, 7344085.991], [473756.75, 7344098.048], [473764.902, 7344865.517], [471563.333, 7344903.843], [471672.949, 7344557.206], [469798.11, 7343959.856], [468071.99, 7342265.828], [468023.708, 7341915.491], [466397.029, 7341971.238], [464056.317, 7340212.43], [463120.705, 7340412.976], [462068.881, 7339659.063], [460770.999, 7337969.309], [460567.28, 7338419.233], [459895.239, 7338530.412], [459563.534, 7339208.503], [459128.2, 7339206.662], [459130.488, 7338626.096], [458736.026, 7338025.663], [458819.568, 7337531.496], [457934.233, 7337960.185], [452522.9, 7340575.256], [452351.052, 7339960.582], [451898.944, 7340207.1], [452242.297, 7340711.583], [444853.57, 7344279.765], [434485.956, 7344048.166], [434294.556, 7344457.067], [434104.01, 7344242.201], [434060.204, 7344049.189], [425254.52, 7344288.386], [419840.958, 7347820.19], [415906.354, 7350333.902], [411114.474, 7353361.247], [401561.363, 7359275.278], [405450.151, 7363995.214], [413178.062, 7374305.669], [412499.786, 7390323.379], [412284.105, 7394267.949], [412035.943, 7398569.006], [411780.011, 7401738.84], [411431.451, 7402183.838], [411736.599, 7402270.586], [411402.469, 7405428.684], [410941.021, 7407214.327], [410555.001, 7406972.236], [410269.597, 7407273.587], [410325.318, 7407457.559], [410822.204, 7407720.82], [410393.861, 7409755.931], [410673.665, 7409834.931], [410719.948, 7411626.776], [410405.207, 7411672.258], [410215.922, 7410585.533], [408763.358, 7417278.326], [409423.99, 7417331.926], [409580.035, 7417959.226], [408560.891, 7418204.463], [408640.436, 7419672.575], [408848.759, 7420090.103], [408565.452, 7420135.889], [408258.283, 7419674.536], [406913.773, 7426046.917], [406318.284, 7428850.514], [406495.398, 7429223.069], [406113.615, 7429785.127], [402830.611, 7445148.327], [403173.487, 7445078.796], [403275.76, 7445311.71], [402746.625, 7445638.082], [402638.583, 7446197.379], [402848.86, 7446709.413], [402450.905, 7447167.556], [401952.851, 7450100.357], [407471.426, 7452716.507], [428225.465, 7449190.611]]]}}, {\\\"id\\\": \\\"163\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kivij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 45.9, \\\"freshwarea\\\": 115.92, \\\"gml_id\\\": 1601100437, \\\"landarea\\\": 483.96, \\\"namefin\\\": \\\"Kivij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Kivij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"265\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 599.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[390543.096, 7013842.652], [398765.11, 7012978.815], [404997.049, 7013443.761], [406100.98, 7012930.05], [406380.889, 7013464.827], [415187.249, 7017754.47], [417944.63, 7015240.824], [418598.16, 7013933.236], [415409.531, 7013715.616], [416243.432, 7004263.989], [417980.501, 6997686.862], [415279.52, 6997465.632], [409559.159, 6996768.814], [407056.988, 6995879.364], [406632.844, 6993800.996], [406862.156, 6990601.843], [406198.822, 6989870.001], [405308.726, 6990611.153], [404012.229, 6990282.464], [404239.471, 6989775.572], [403924.781, 6989505.585], [403730.955, 6990201.829], [402883.47, 6990123.484], [403336.98, 6988480.955], [401391.256, 6987961.64], [400224.392, 6992283.04], [398271.071, 6992115.202], [397962.149, 6991186.929], [397320.986, 6991049.415], [396408.544, 6991135.367], [393293.146, 6991026.531], [392882.821, 6992449.832], [392497.779, 6996301.495], [387848.408, 7002364.531], [387722.5, 7002395.289], [385696.266, 7003990.698], [386612.126, 7009629.973], [387535.842, 7011924.633], [387123.571, 7015642.183], [387878.205, 7015986.847], [387296.023, 7017190.734], [389814.314, 7018219.869], [390543.096, 7013842.652]]]}}, {\\\"id\\\": \\\"164\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kokem\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 35.4, \\\"freshwarea\\\": 50.78, \\\"gml_id\\\": 1601100594, \\\"landarea\\\": 480.48, \\\"namefin\\\": \\\"Kokem\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Kumo\\\", \\\"natcode\\\": \\\"271\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 531.26}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[260519.503, 6818726.479], [263236.792, 6817580.91], [263748.329, 6815011.608], [262883.624, 6814780.764], [264251.866, 6808859.591], [262460.383, 6807729.462], [264528.391, 6804790.051], [264362.048, 6804367.733], [263766.103, 6804151.454], [264692.351, 6801683.504], [264680.039, 6800779.63], [262979.515, 6799631.995], [261823.927, 6798138.535], [261215.647, 6798409.508], [261042.989, 6798083.878], [261921.493, 6797169.814], [261614.126, 6796475.47], [261236.8, 6796008.788], [261186.609, 6795011.854], [260977.567, 6794749.789], [260517.096, 6794468.61], [260447.953, 6794135.422], [259011.851, 6795243.666], [258955.778, 6794452.525], [258174.839, 6793955.76], [259279.988, 6793089.133], [256997.76, 6790195.252], [253803.569, 6793179.746], [246310.079, 6793564.282], [241334.386, 6800405.003], [240709.941, 6801260.276], [238966.13, 6802053.866], [238940.819, 6802705.332], [238188.062, 6803039.945], [238676.334, 6804822.362], [240678.433, 6804285.356], [243240.898, 6803122.737], [243284.861, 6803458.087], [243876.903, 6803399.199], [243698.638, 6802836.576], [244226.689, 6803166.506], [244472.782, 6804355.056], [243441.158, 6804942.157], [244099.204, 6806169.888], [244321.937, 6806904.356], [244336.218, 6807415.127], [245277.843, 6807615.157], [245530.933, 6808224.243], [245679.363, 6809006.975], [245339.557, 6808975.792], [245212.673, 6809408.404], [245688.606, 6809924.623], [246503.759, 6810017.019], [247010.391, 6810307.934], [246684.208, 6810684.98], [247259.045, 6810958.771], [246445.529, 6812417.922], [246167.082, 6812506.022], [246125.599, 6813001.728], [245406.169, 6813520.646], [244812.718, 6814694.687], [243747.259, 6816498.866], [244627.987, 6817099.047], [244149.578, 6817574.745], [245988.279, 6818473.314], [247214.744, 6818439.338], [248698.524, 6818563.014], [256997.689, 6825762.4], [260519.503, 6818726.479]]]}}, {\\\"id\\\": \\\"165\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Parkano\\\", \\\"elakelaisten_osuus\\\": 37.7, \\\"freshwarea\\\": 56.74, \\\"gml_id\\\": 1601100247, \\\"landarea\\\": 852.93, \\\"namefin\\\": \\\"Parkano\\\", \\\"nameswe\\\": \\\"Parkano\\\", \\\"natcode\\\": \\\"581\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 909.67}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[292847.171, 6902990.773], [293429.874, 6903266.368], [293408.32, 6901765.473], [294286.318, 6901761.643], [294280.345, 6898732.776], [294569.222, 6897911.658], [295684.346, 6896457.368], [295864.907, 6895313.285], [296287.523, 6894928.401], [296523.958, 6893533.308], [296832.092, 6893304.118], [297826.319, 6893772.822], [297686.953, 6892231.556], [297277.857, 6892167.089], [297695.621, 6891181.07], [298498.932, 6890041.777], [298515.309, 6889387.86], [300753.285, 6889450.293], [303425.555, 6889505.103], [304304.449, 6889186.754], [304702.423, 6889676.482], [305688.692, 6889975.799], [305767.405, 6889360.707], [306556.562, 6888949.323], [308082.872, 6888171.256], [308106.153, 6887549.454], [309561.128, 6887575.23], [310145.228, 6887445.005], [309982.605, 6883789.476], [308938.913, 6881751.294], [309302.757, 6880211.524], [307348.687, 6877745.982], [307236.528, 6877253.31], [306921.704, 6877445.607], [307132.545, 6876639.82], [306551.8, 6875938.515], [306164.701, 6875299.577], [306526.779, 6874055.906], [306054.178, 6873782.575], [306184.906, 6868744.272], [298116.818, 6868555.33], [298027.259, 6868720.853], [297717.874, 6868660.474], [297160.857, 6870986.654], [295992.451, 6871505.151], [296399.311, 6872544.7], [296174.694, 6873153.872], [296291.292, 6873549.238], [296920.44, 6873837.937], [297545.156, 6873772.866], [298101.16, 6873832.847], [298010.671, 6874198.944], [297504.414, 6874346.5], [294594.715, 6873726.119], [293633.943, 6873726.907], [292658.808, 6873168.31], [292624.543, 6872562.221], [291001.564, 6869897.938], [290121.841, 6870881.29], [289594.115, 6870779.882], [288706.019, 6871131.626], [288135.292, 6871074.12], [287866.532, 6877633.844], [286571.455, 6877346.133], [285749.186, 6875245.865], [285087.319, 6874521.186], [284838.619, 6875247.022], [285651.803, 6875999.758], [285540.194, 6877032.109], [283049.208, 6875811.589], [282899.318, 6875361.175], [282203.708, 6875541.329], [282410.512, 6876185.347], [280543.178, 6876588.11], [280650.222, 6874634.009], [280058.91, 6874685.988], [279835.125, 6873748.394], [276267.698, 6871570.627], [275885.414, 6872139.68], [275323.976, 6872333.451], [275315.93, 6872759.145], [274850.954, 6872494.898], [273437.465, 6872987.396], [272598.825, 6874051.206], [272023.804, 6875965.587], [271747.796, 6876503.156], [272285.428, 6876780.299], [272284.096, 6877936.503], [270517.333, 6878421.852], [270869.943, 6879793.934], [270167.395, 6880373.457], [269982.002, 6880207.72], [270275.283, 6879458.856], [269811.08, 6878173.579], [269335.935, 6878164.907], [269188.59, 6879134.629], [269750.138, 6879422.856], [269594.366, 6879865.833], [268657.973, 6880338.361], [268111.236, 6880174.072], [265892.059, 6881961.973], [265604.691, 6882061.381], [265534.528, 6882446.651], [266498.242, 6882295.559], [267868.558, 6883316.302], [268316.86, 6884072.023], [270056.732, 6886111.32], [273731.978, 6887419.275], [273251.424, 6886577.759], [273668.704, 6886339.63], [274445.337, 6887671.762], [275055.77, 6887314.384], [279532.37, 6888121.838], [279291.257, 6897176.927], [279725.49, 6898572.869], [282330.985, 6899664.929], [282491.403, 6899164.528], [282888.481, 6899218.773], [282948.014, 6899373.35], [283056.388, 6899309.256], [284575.913, 6900287.774], [284173.085, 6901215.432], [283629.204, 6901946.889], [284026.338, 6903029.016], [284420.523, 6903162.065], [283929.311, 6904362.077], [284204.897, 6904466.86], [283972.17, 6905004.74], [283858.852, 6906225.5], [284029.158, 6907503.804], [283923.159, 6907759.119], [283105.171, 6907642.375], [283567.028, 6909286.087], [283518.208, 6909603.087], [283762.358, 6909688.478], [283403.351, 6910509.331], [283701.696, 6911326.951], [287089.675, 6910900.346], [292281.129, 6912796.944], [292847.171, 6902990.773]], [[284163.636, 6878953.042], [284529.413, 6877576.393], [284488.131, 6877155.726], [283938.579, 6877182.881], [283984.948, 6877596.563], [283697.327, 6878275.469], [283209.286, 6878080.685], [283106.931, 6877248.55], [282711.725, 6877281.338], [282671.351, 6878151.068], [282934.053, 6878922.504], [283388.179, 6879354.658], [284163.636, 6878953.042]]]}}, {\\\"id\\\": \\\"166\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Orip\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 30.3, \\\"freshwarea\\\": 0.08, \\\"gml_id\\\": 1601100208, \\\"landarea\\\": 117.64, \\\"namefin\\\": \\\"Orip\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Orip\\\\u00e4\\\\u00e4\\\", \\\"natcode\\\": \\\"561\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 117.72}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[262864.135, 6769538.468], [261547.886, 6767805.953], [260228.214, 6767544.723], [260453.834, 6766992.793], [260273.288, 6766640.709], [261906.975, 6766296.309], [261542.276, 6764518.83], [260797.574, 6764229.146], [257779.821, 6768440.944], [259284.949, 6769135.523], [260942.911, 6769767.253], [262864.135, 6769538.468]]], [[[270234.312, 6761390.084], [270756.745, 6761666.39], [270827.408, 6760961.345], [270825.138, 6755416.674], [270297.624, 6753790.496], [271244.907, 6750496.837], [272536.435, 6749239.962], [269332.746, 6749678.537], [268663.875, 6750141.368], [268497.564, 6750847.861], [268214.675, 6750621.712], [267904.906, 6750877.99], [265548.574, 6751474.511], [263769.786, 6751382.9], [262113.411, 6752950.561], [260436.312, 6753935.293], [258623.453, 6756894.97], [259236.822, 6757191.994], [259474.956, 6757798.275], [258697.329, 6757976.773], [259190.35, 6759178.957], [259833.832, 6759912.942], [260892.532, 6760578.264], [260791.972, 6760960.05], [261310.08, 6762245.338], [261728.108, 6762641.748], [262536.479, 6761148.167], [262926.268, 6761713.269], [263175.389, 6760872.689], [264131.843, 6761149.175], [264370.494, 6759954.756], [267905.994, 6760155.556], [269719.065, 6761118.296], [269720.298, 6763195.854], [270251.786, 6763214.648], [270234.312, 6761390.084]]]]}}, {\\\"id\\\": \\\"167\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Oulu\\\", \\\"elakelaisten_osuus\\\": 19.9, \\\"freshwarea\\\": 80.08, \\\"gml_id\\\": 1601100216, \\\"landarea\\\": 2971.96, \\\"namefin\\\": \\\"Oulu\\\", \\\"nameswe\\\": \\\"Ule\\\\u00e5borg\\\", \\\"natcode\\\": \\\"564\\\", \\\"seawarea\\\": 765.5, \\\"totalarea\\\": 3817.54}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[435609.141, 7249252.604], [432819.367, 7248335.924], [432575.526, 7248425.641], [432651.55, 7249188.537], [435596.671, 7249434.605], [435609.141, 7249252.604]]], [[[454541.099, 7271357.86], [454689.127, 7270616.058], [461012.297, 7270595.634], [460892.921, 7264753.013], [461829.217, 7264753.401], [462065.657, 7264317.803], [460866.028, 7263402.904], [460818.539, 7261099.149], [461329.173, 7260610.15], [461376.242, 7260217.956], [461180.564, 7260200.061], [460805.317, 7260669.371], [460700.885, 7255425.283], [472162.137, 7250232.787], [473314.69, 7247271.047], [471670.56, 7247556.266], [471266.904, 7245456.396], [469996.536, 7245093.948], [469195.914, 7244999.034], [468174.847, 7245584.04], [467826.188, 7245667.785], [467404.968, 7245570.153], [467296.157, 7245435.485], [468164.453, 7245289.956], [469030.616, 7244761.003], [469433.944, 7244688.273], [471272.057, 7245038.713], [472010.361, 7244865.746], [470974.357, 7243936.154], [469885.986, 7244381.284], [469486.148, 7243468.261], [466450.287, 7239721.078], [465233.745, 7240335.297], [464234.849, 7239236.425], [468009.568, 7231051.786], [475394.804, 7224931.99], [480617.687, 7219881.979], [480898.69, 7219399.672], [482550.406, 7219321.807], [482511.286, 7218447.031], [483051.779, 7218599.301], [483177.126, 7218273.313], [482451.614, 7218233.329], [482511.559, 7217793.069], [482433.139, 7216885.53], [482498.577, 7216433.498], [481673.172, 7214525.888], [483946.324, 7210095.09], [484484.313, 7209919.485], [484909.749, 7210070.683], [485547.498, 7209948.22], [486108.712, 7210049.838], [486526.606, 7209301.121], [485848.322, 7208527.126], [484698.533, 7208266.135], [484671.702, 7208103.549], [485520.896, 7208147.746], [484869.946, 7207406.204], [485310.087, 7206136.857], [487687.552, 7207375.227], [488615.371, 7204851.929], [489212.055, 7204161.91], [488875.547, 7203985.017], [489185.771, 7203676.045], [488905.238, 7203393.428], [489060.395, 7203209.791], [485062.106, 7199180.203], [484991.917, 7199525.36], [485030.403, 7199847.128], [484863.342, 7199956.938], [484699.471, 7199822.089], [484634.194, 7199386.685], [484724.666, 7199129.238], [483975.656, 7196420.516], [482570.677, 7196524.689], [481549.587, 7197095.068], [481471.919, 7197407.787], [481043.445, 7197523.488], [480974.68, 7197269.048], [480318.462, 7197616.784], [480084.818, 7197558.095], [479907.349, 7198014.411], [479200.446, 7198155.58], [477842.145, 7193155.706], [477094.633, 7191754.258], [476055.556, 7192040.503], [476284.444, 7192886.745], [475723.81, 7193335.32], [475630.272, 7193848.165], [475245.356, 7193985.954], [474792.617, 7193751.726], [474318.697, 7192016.92], [472836.461, 7192794.205], [472900.206, 7193073.71], [471748.255, 7193931.586], [471179.627, 7194844.033], [470992.982, 7195373.86], [470667.816, 7195480.533], [470553.5, 7195327.617], [470825.235, 7194914.815], [471302.173, 7194051.805], [471893.398, 7193557.487], [471272.134, 7191252.664], [470190.148, 7192104.154], [468815.623, 7193188.223], [468376.402, 7192628.189], [467213.815, 7193549.533], [467640.636, 7194076.758], [466514.166, 7195027.249], [466030.856, 7194487.016], [465324.897, 7194508.701], [464482.338, 7194784.938], [463264.563, 7195279.722], [465608.498, 7198169.996], [464965.35, 7198854.76], [463371.362, 7199430.183], [462729.928, 7199409.936], [461925.943, 7200131.506], [461881.169, 7200984.877], [461715.217, 7201434.652], [462538.155, 7202085.092], [461758.819, 7203136.159], [461248.766, 7202429.007], [461042.318, 7202643.953], [460129.584, 7202765.132], [459394.531, 7202481.919], [458772.98, 7202668.908], [458368.205, 7202915.259], [457900.404, 7203272.079], [457347.665, 7202938.655], [456943.54, 7202633.036], [456537.913, 7202678.222], [457297.009, 7205506.559], [456711.415, 7205505.653], [455978.988, 7205906.259], [455529.293, 7205782.716], [455212.025, 7206321.527], [454714.217, 7205860.802], [454641.581, 7206075.817], [452122.336, 7204716.322], [451684.555, 7205071.094], [451995.151, 7205404.68], [451810.65, 7205605.707], [451427.707, 7205440.645], [451503.348, 7206341.315], [451298.365, 7206372.952], [449922.61, 7203902.173], [450090.16, 7203731.282], [451400.904, 7204981.831], [451692.431, 7204372.934], [451859.703, 7204575.974], [452514.718, 7203826.126], [445082.473, 7197035.875], [445124.977, 7196769.367], [444894.902, 7196609.982], [444628.921, 7197009.975], [444433.001, 7196804.384], [444188.545, 7197272.937], [444038.434, 7197449.583], [443233.471, 7196945.75], [442969.099, 7197253.45], [441822.183, 7196944.258], [441801.28, 7196696.349], [441414.527, 7195826.948], [441351.033, 7196378.233], [441195.26, 7196612.329], [440834.202, 7196667.966], [440331.054, 7196554.657], [439980.948, 7196840.426], [440361.296, 7196882.91], [440107.431, 7197265.781], [440372.786, 7197460.702], [439819.994, 7198411.25], [439410.179, 7199117.032], [437397.397, 7200739.678], [437868.012, 7200987.136], [437864.88, 7201451.532], [437175.562, 7200882.337], [434499.733, 7202605.988], [430531.487, 7202640.455], [428847.322, 7202947.939], [426188.062, 7203600.46], [426063.946, 7203160.564], [426094.275, 7202566.478], [426320.166, 7202154.113], [426231.047, 7201713.286], [425934.667, 7201222.769], [425549.598, 7200640.147], [425711.926, 7200044.475], [425853.555, 7199853.078], [425963.431, 7199665.062], [425865.918, 7199487.647], [426059.702, 7198661.89], [425994.868, 7198552.285], [426401.642, 7197497.376], [426386.798, 7197366.2], [426230.992, 7196134.158], [424311.252, 7196521.252], [423581.433, 7195557.463], [420782.008, 7196394.278], [420929.535, 7196824.492], [420391.319, 7196643.734], [407784.854, 7208121.521], [411722.421, 7215387.29], [412254.653, 7216585.946], [403898.34, 7225741.843], [364872.193, 7230928.956], [366270.584, 7238420.621], [388075.268, 7234147.593], [414985.888, 7237798.666], [414822.784, 7236281.805], [417042.583, 7235995.332], [418420.272, 7237409.324], [420987.788, 7238750.265], [421537.328, 7238769.747], [422030.849, 7238385.984], [422774.725, 7238065.007], [430615.373, 7237222.465], [432388.139, 7237418.018], [432420.399, 7237414.132], [433400.201, 7237297.111], [433402.186, 7237296.874], [433608.298, 7237271.33], [434320.768, 7237185.676], [434438.188, 7237171.559], [434497.404, 7237165.236], [434602.02, 7237152.753], [434646.26, 7237147.916], [434752.608, 7237136.649], [434800.38, 7237130.895], [434912.957, 7237120.241], [434970.836, 7237111.278], [435019.752, 7237103.647], [435038.837, 7237101.383], [435351.734, 7237066.104], [435478.632, 7237051.633], [435624.928, 7237060.673], [435687.613, 7237070.645], [435729.949, 7237024.836], [435881.213, 7237005.15], [435988.959, 7237000.373], [436182.707, 7236886.15], [436366.553, 7236779.105], [436429.496, 7236714.907], [436485.022, 7236687.947], [436542.438, 7236683.949], [436760.946, 7236344.701], [436859.98, 7236244.509], [437289.106, 7235928.857], [437355.76, 7235859.602], [437389.747, 7235913.698], [437413.501, 7235933.846], [437686.982, 7236167.735], [438231.937, 7236636.213], [438504.662, 7236870.284], [438526.001, 7236889.247], [438602.398, 7236954.301], [438864.25, 7237179.957], [438945.178, 7237251.149], [439046.893, 7237340.495], [439062.289, 7237353.2], [439168.31, 7237446.069], [440010.195, 7238177.315], [440053.065, 7238214.597], [440096.977, 7238253.406], [440234.758, 7238375.142], [440288.527, 7238422.652], [440356.408, 7238482.085], [440492.43, 7238600.925], [440645.284, 7238729.566], [440816.204, 7238878.92], [440950.474, 7239000.968], [441023.528, 7239065.933], [440920.634, 7239214.877], [440744.562, 7239469.75], [440711.04, 7239518.275], [440642.577, 7239617.378], [440623.165, 7239699.402], [440791.706, 7239830.216], [440657.888, 7239991.759], [440531.821, 7240143.947], [440764.104, 7240513.239], [440803.616, 7240575.772], [440766.081, 7240624.079], [440717.382, 7240686.751], [440551.4, 7240899.664], [439966.074, 7240708.313], [439927.722, 7240760.033], [439741.231, 7240683.145], [438997.292, 7240946.528], [438728.124, 7241042.393], [438639.057, 7241094.811], [438564.399, 7241190.253], [438262.376, 7241581.211], [438235.084, 7241616.967], [438232.294, 7241621.352], [438220.193, 7241641.175], [438096.342, 7241845.769], [438163.656, 7241886.246], [438179.275, 7241895.156], [438137.337, 7241950.552], [438085.811, 7241997.501], [438041.018, 7242050.956], [438025.059, 7242070.697], [438014.618, 7242083.213], [437970.055, 7242134.017], [437940.698, 7242149.533], [437911.582, 7242142.927], [437899.732, 7242121.208], [437853.772, 7242159.216], [437945.408, 7242368.672], [438015.636, 7242377.294], [438051.624, 7242369.948], [438095.049, 7242380.402], [438139.462, 7242364.957], [438181.096, 7242328.807], [438219.247, 7242266.379], [438218.289, 7242252.044], [438187.594, 7242234.837], [438209.38, 7242209.675], [438259.446, 7242096.623], [438259.1, 7242072.29], [438246.435, 7242068.834], [438245.121, 7242051.644], [438321.253, 7241969.836], [438375.29, 7241929.107], [438448.365, 7241898.253], [438501.841, 7241891.876], [438590.359, 7241923.095], [438618.006, 7241923.28], [438668.934, 7241974.682], [438688.957, 7242030.326], [438713.384, 7242069.44], [438698.776, 7242081.44], [438716.179, 7242148.231], [438771.774, 7242233.316], [438795.08, 7242251.049], [438831.065, 7242271.482], [438841.317, 7242268.741], [438860.38, 7242281.774], [438885.853, 7242275.042], [438902.487, 7242306.637], [438940.64, 7242336.284], [438992.607, 7242454.969], [439016.699, 7242546.718], [439018.324, 7242597.39], [439048.618, 7242712.863], [439029.194, 7242821.531], [438987.0, 7242907.518], [438935.47, 7242985.146], [438813.323, 7243034.883], [438742.559, 7243073.685], [438711.489, 7243100.556], [438653.168, 7243155.234], [438570.546, 7243211.932], [438496.034, 7243224.357], [438438.448, 7243214.646], [438412.783, 7243220.777], [438371.926, 7243249.069], [438348.187, 7243283.952], [438342.633, 7243318.158], [438300.685, 7243362.365], [438306.317, 7243381.242], [438327.857, 7243406.756], [438317.404, 7243506.46], [438333.785, 7243618.452], [438379.751, 7243720.938], [438394.456, 7243776.943], [438466.979, 7243905.113], [438505.248, 7243997.049], [438537.338, 7244178.42], [438585.33, 7244237.576], [438609.72, 7244255.41], [438623.807, 7244275.156], [438623.521, 7244296.747], [438645.227, 7244328.606], [438707.046, 7244374.257], [438731.087, 7244419.7], [438739.176, 7244482.295], [438729.611, 7244554.542], [438652.376, 7244722.096], [438575.456, 7244836.812], [438517.183, 7244906.351], [438482.158, 7244984.02], [438409.377, 7245186.164], [438413.847, 7245251.836], [438405.563, 7245253.26], [438365.097, 7245262.39], [438300.916, 7245358.721], [438277.568, 7245382.323], [438179.146, 7245226.887], [437920.405, 7245059.052], [437671.586, 7245566.51], [437771.771, 7245716.043], [437839.755, 7245814.967], [437676.614, 7245973.074], [437741.614, 7246042.049], [435486.112, 7248251.902], [437101.716, 7251320.914], [436755.625, 7252505.571], [444079.256, 7270323.677], [449211.357, 7271229.371], [449250.194, 7271301.868], [454068.902, 7271714.991], [454541.099, 7271357.86]], [[484067.512, 7201371.061], [484119.141, 7200252.672], [484350.559, 7200179.941], [484576.93, 7199904.956], [483877.178, 7199918.456], [483850.869, 7198905.421], [482977.729, 7199140.003], [483328.194, 7201498.637], [483859.673, 7201626.338], [484067.512, 7201371.061]], [[483960.445, 7203194.991], [484976.406, 7203438.889], [485412.04, 7202933.429], [485418.887, 7202411.019], [484746.387, 7202503.742], [485058.026, 7202811.502], [484736.278, 7202974.075], [483736.809, 7202623.376], [483447.245, 7202688.878], [483375.2, 7202801.8], [483649.685, 7203102.423], [483568.932, 7203462.987], [483960.445, 7203194.991]], [[456431.141, 7248705.838], [456766.802, 7248138.04], [457360.943, 7247970.644], [459258.555, 7248453.677], [460015.237, 7247820.89], [460520.949, 7242121.548], [453395.501, 7240901.587], [453304.001, 7241823.144], [453168.835, 7243281.572], [452976.425, 7245448.545], [452673.328, 7248026.658], [453721.83, 7248064.032], [454679.509, 7248187.745], [454676.239, 7248470.344], [455867.482, 7248770.67], [456431.141, 7248705.838]]]]}}, {\\\"id\\\": \\\"168\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ruokolahti\\\", \\\"elakelaisten_osuus\\\": 39.6, \\\"freshwarea\\\": 277.58, \\\"gml_id\\\": 1601100443, \\\"landarea\\\": 942.27, \\\"namefin\\\": \\\"Ruokolahti\\\", \\\"nameswe\\\": \\\"Ruokolahti\\\", \\\"natcode\\\": \\\"700\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1219.85}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[620151.114, 6827002.29], [618976.698, 6822775.013], [618961.202, 6822781.622], [618959.17, 6822774.405], [618556.525, 6821336.418], [617953.956, 6818825.979], [616934.369, 6819136.207], [616440.175, 6819746.949], [615680.838, 6819528.231], [614937.321, 6819785.317], [613916.497, 6818368.728], [613350.867, 6817724.999], [612570.536, 6817623.219], [612394.416, 6817927.151], [611581.985, 6818337.888], [610033.227, 6815822.391], [611681.196, 6814924.61], [612109.663, 6814273.815], [613287.563, 6813250.195], [613648.111, 6813324.835], [615023.114, 6812491.613], [614790.972, 6811964.521], [613863.907, 6810975.914], [613909.552, 6810425.981], [613652.36, 6809727.207], [613502.726, 6808842.434], [612970.962, 6806620.452], [612669.583, 6806301.651], [612086.467, 6806453.713], [609604.464, 6806683.562], [609442.911, 6806897.4], [608356.053, 6807293.944], [607889.976, 6806883.307], [608233.914, 6806527.044], [608722.584, 6806805.981], [609330.881, 6806548.118], [609310.884, 6806212.706], [610931.76, 6805770.365], [610177.766, 6804582.797], [610151.83, 6804132.758], [610777.953, 6803879.01], [611134.807, 6802750.563], [610262.988, 6802405.638], [610136.203, 6801735.097], [610256.487, 6801363.137], [609819.806, 6800881.004], [609666.338, 6800359.754], [610536.864, 6798906.628], [611075.882, 6798638.78], [611201.586, 6798294.372], [610816.91, 6798130.993], [609877.752, 6798031.681], [609386.034, 6798165.399], [608875.624, 6797795.772], [609331.8, 6797242.202], [610367.84, 6796625.01], [610329.748, 6796038.511], [609943.921, 6795825.829], [610373.902, 6795216.418], [610452.754, 6794743.548], [609968.633, 6794441.103], [609515.457, 6794293.079], [609043.947, 6794321.848], [609185.527, 6792786.074], [609484.7, 6792534.617], [609296.602, 6791821.333], [608560.973, 6791652.929], [610488.015, 6789015.407], [610861.94, 6788936.183], [611631.689, 6788369.955], [611969.414, 6788012.02], [609151.794, 6785866.767], [608698.741, 6785463.503], [608340.239, 6785752.209], [608339.867, 6785752.508], [603481.503, 6789663.155], [603912.652, 6790749.549], [603425.182, 6790904.384], [602761.39, 6791332.681], [603074.977, 6792576.039], [602890.257, 6793122.363], [602534.202, 6793268.213], [602024.201, 6792775.966], [602190.985, 6793377.261], [602873.162, 6795012.41], [602392.775, 6795958.022], [602086.541, 6795477.001], [599669.874, 6794877.355], [598941.403, 6795109.88], [598466.211, 6794274.749], [599346.282, 6792701.622], [599204.259, 6792013.805], [597829.105, 6790248.147], [597225.264, 6790900.146], [594667.94, 6790521.272], [593682.619, 6791103.442], [591600.941, 6789522.577], [591358.837, 6789769.532], [590731.268, 6790415.065], [588050.936, 6789358.495], [588651.35, 6788698.311], [588745.838, 6787998.473], [586253.678, 6786335.467], [586394.714, 6785968.495], [585889.599, 6786089.993], [580741.853, 6790605.096], [574927.383, 6795299.456], [572035.026, 6799994.33], [570104.336, 6801060.389], [568422.799, 6804020.559], [566913.4, 6805721.647], [567647.605, 6805338.011], [567322.732, 6806203.053], [567456.176, 6806459.55], [568055.634, 6806242.644], [568668.681, 6807035.426], [568711.062, 6807414.371], [569323.81, 6808056.314], [569794.608, 6809923.955], [570287.21, 6809660.368], [571512.413, 6809889.788], [571548.622, 6811103.766], [571611.776, 6811611.702], [572376.92, 6811868.767], [572218.613, 6812335.399], [572631.944, 6812587.301], [573049.675, 6812643.283], [574207.305, 6813180.98], [575172.613, 6814167.395], [576045.059, 6814506.169], [575596.635, 6817590.723], [575718.785, 6818224.569], [576626.611, 6820614.718], [577153.999, 6820542.953], [577618.34, 6819454.134], [577874.71, 6819246.883], [579323.121, 6820886.44], [581202.267, 6819220.706], [581149.842, 6816953.893], [581815.155, 6817073.99], [581990.121, 6816690.388], [582296.247, 6816815.96], [583155.829, 6816630.993], [584032.415, 6816790.525], [584439.839, 6816553.567], [584644.836, 6815998.289], [587022.962, 6816208.759], [587791.2, 6816699.644], [587853.116, 6815685.2], [589040.968, 6816138.666], [589413.997, 6816104.506], [589715.42, 6817049.628], [590489.684, 6817407.605], [591585.069, 6817815.57], [592276.282, 6817623.793], [593466.402, 6817891.525], [595424.474, 6817314.955], [595438.864, 6819265.774], [596561.602, 6820001.675], [596433.819, 6820651.16], [596718.363, 6821421.612], [596327.952, 6823806.064], [596879.88, 6823986.246], [597543.986, 6823690.271], [598091.278, 6823686.95], [599250.305, 6823211.564], [599879.391, 6823224.035], [600339.558, 6822975.738], [603980.674, 6824572.057], [604875.308, 6824099.292], [606818.159, 6824234.436], [607543.852, 6824001.872], [608945.766, 6823948.263], [610697.076, 6824648.54], [617951.047, 6827182.424], [620151.114, 6827002.29]]]}}, {\\\"id\\\": \\\"169\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Taivassalo\\\", \\\"elakelaisten_osuus\\\": 37.5, \\\"freshwarea\\\": 1.68, \\\"gml_id\\\": 1601100620, \\\"landarea\\\": 140.28, \\\"namefin\\\": \\\"Taivassalo\\\", \\\"nameswe\\\": \\\"T\\\\u00f6vsala\\\", \\\"natcode\\\": \\\"833\\\", \\\"seawarea\\\": 75.72, \\\"totalarea\\\": 217.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[196668.657, 6734991.766], [196207.868, 6734848.822], [196328.1, 6734488.125], [196328.404, 6734487.214], [196328.715, 6734486.28], [196341.432, 6734448.129], [195994.392, 6734576.494], [195768.046, 6734082.207], [196665.219, 6733749.633], [196985.835, 6733986.17], [197256.222, 6733779.525], [197700.902, 6734193.418], [198131.59, 6734299.788], [199431.638, 6733873.249], [199128.857, 6732834.778], [199276.768, 6732741.728], [200078.324, 6733046.312], [200836.804, 6732996.353], [201893.511, 6733298.73], [201911.684, 6732992.367], [202747.62, 6733106.47], [202944.206, 6733250.651], [203287.119, 6732996.678], [203464.428, 6732707.528], [204078.315, 6732798.927], [204493.692, 6732162.114], [205359.178, 6731151.498], [205942.622, 6731267.194], [206333.833, 6731254.387], [207341.981, 6731695.551], [207573.149, 6731969.23], [208058.535, 6732702.467], [208420.917, 6732993.837], [208770.171, 6733002.452], [209938.592, 6731518.089], [210466.239, 6730688.182], [210756.33, 6729854.584], [211452.292, 6728395.149], [211684.089, 6727794.583], [212009.516, 6727740.584], [212305.854, 6728224.432], [212737.8, 6727749.691], [213145.727, 6727613.489], [214247.914, 6726375.842], [213829.192, 6725561.012], [213020.784, 6724988.746], [212666.578, 6725094.901], [212267.27, 6724810.316], [211863.904, 6724213.416], [211468.966, 6723983.186], [211129.99, 6723891.315], [210800.714, 6724257.575], [210611.713, 6724453.203], [209751.23, 6724719.66], [209622.708, 6724425.277], [209381.041, 6723213.336], [208586.659, 6721440.512], [208735.315, 6721366.326], [208986.515, 6720127.157], [208866.164, 6719773.628], [208477.544, 6719570.733], [208486.602, 6719331.368], [208558.563, 6719051.384], [208360.244, 6719094.54], [208027.195, 6719299.329], [207778.093, 6719110.198], [207866.453, 6718885.384], [207944.572, 6718048.583], [208229.426, 6717701.334], [208419.783, 6717493.374], [207715.057, 6717548.731], [206825.9, 6717720.804], [206231.228, 6717947.675], [204900.481, 6716119.568], [203663.663, 6715607.006], [199729.771, 6715828.949], [199244.059, 6718739.965], [198856.749, 6719007.097], [198718.91, 6719390.193], [198531.645, 6720324.362], [198730.751, 6720472.579], [198811.077, 6721123.901], [198931.498, 6721642.805], [199293.314, 6721506.899], [199305.922, 6722050.634], [198258.485, 6723103.684], [197689.565, 6723310.926], [197483.776, 6723636.168], [197198.389, 6724267.326], [197367.459, 6724835.154], [197802.175, 6725849.426], [198491.208, 6726160.496], [198495.912, 6726269.098], [198050.176, 6726928.299], [196809.792, 6728434.026], [193747.868, 6731395.801], [192762.13, 6731724.553], [192169.833, 6732315.211], [191924.172, 6734143.657], [192613.512, 6734127.278], [192904.154, 6733453.59], [193149.394, 6733378.276], [193295.424, 6733693.414], [193508.331, 6734567.698], [194219.169, 6733586.707], [194263.898, 6733403.293], [194663.56, 6733077.918], [194804.705, 6733371.103], [194729.923, 6733617.239], [195019.65, 6733674.817], [194961.244, 6734167.141], [195011.908, 6734410.759], [195142.247, 6734893.467], [195348.206, 6735108.993], [195417.963, 6735358.742], [195701.788, 6735657.636], [196668.657, 6734991.766]]]}}, {\\\"id\\\": \\\"170\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Mikkeli\\\", \\\"elakelaisten_osuus\\\": 30.3, \\\"freshwarea\\\": 681.22, \\\"gml_id\\\": 1601100193, \\\"landarea\\\": 2548.35, \\\"namefin\\\": \\\"Mikkeli\\\", \\\"nameswe\\\": \\\"S:t Michel\\\", \\\"natcode\\\": \\\"491\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3229.57}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[507952.822, 6895578.39], [508753.806, 6894111.592], [508402.653, 6893496.839], [508400.059, 6892749.443], [509930.768, 6890993.191], [512464.849, 6887776.874], [518164.326, 6880086.976], [517669.366, 6879757.315], [518801.286, 6878448.701], [519289.482, 6877232.305], [519388.106, 6875967.328], [519939.195, 6875124.459], [520552.042, 6874895.344], [520597.747, 6872217.053], [521409.024, 6871258.946], [521656.431, 6870459.271], [522074.665, 6869903.199], [524684.224, 6867326.26], [522597.492, 6865496.683], [523136.58, 6864646.831], [522579.014, 6863890.232], [522075.338, 6861948.814], [522802.566, 6859173.242], [523186.12, 6858051.998], [523759.889, 6857636.47], [524067.171, 6856866.683], [524738.403, 6856186.862], [525242.501, 6855837.707], [525705.827, 6853738.36], [525981.894, 6853627.995], [527692.141, 6851124.328], [528478.024, 6850931.81], [529153.462, 6849385.839], [529145.368, 6849010.091], [528540.621, 6847863.152], [529127.456, 6846974.777], [530113.662, 6846765.81], [530946.209, 6845785.413], [530899.232, 6845219.976], [531351.606, 6844529.416], [531814.526, 6843555.512], [533031.788, 6843100.553], [533294.886, 6842802.131], [533323.564, 6842390.295], [533730.407, 6841531.138], [534405.459, 6840748.452], [535327.823, 6841404.158], [536354.018, 6841313.246], [536981.785, 6841562.29], [537408.186, 6841046.557], [538475.358, 6840721.394], [538819.223, 6840203.506], [538622.804, 6839940.311], [540471.463, 6839192.624], [540791.237, 6838888.733], [542838.406, 6839615.065], [543646.078, 6838550.639], [543635.495, 6837939.048], [543924.373, 6837922.796], [546460.769, 6835848.308], [546490.862, 6834961.367], [546609.719, 6834192.679], [546447.371, 6833601.8], [545358.225, 6833390.561], [545181.588, 6833077.806], [546159.204, 6832206.839], [546411.915, 6831635.012], [546521.076, 6830764.365], [546201.507, 6830547.851], [546398.533, 6829607.932], [545961.618, 6828261.175], [546267.197, 6827859.838], [546276.197, 6827343.747], [546851.168, 6826789.874], [547531.038, 6825415.33], [547859.379, 6823891.352], [547044.932, 6823725.09], [546663.062, 6823914.436], [546213.743, 6823948.82], [545671.963, 6823773.388], [545643.81, 6823274.384], [545052.617, 6823097.259], [544790.825, 6822576.194], [544876.182, 6821916.799], [544030.568, 6820542.724], [543660.504, 6820619.911], [543406.603, 6820025.697], [543086.431, 6820131.452], [542981.276, 6819830.674], [543193.132, 6819264.342], [543147.216, 6818717.426], [541796.259, 6819101.764], [541368.327, 6819810.875], [540503.777, 6819771.587], [540731.493, 6818584.47], [540004.827, 6818234.077], [539680.218, 6818428.128], [539166.627, 6818306.075], [540037.89, 6817705.124], [540062.545, 6817354.666], [540423.684, 6816914.845], [540431.339, 6816338.635], [540786.99, 6815822.291], [540443.729, 6815672.75], [540121.158, 6815826.586], [539618.361, 6815876.563], [540004.561, 6815312.228], [539481.222, 6815160.853], [539641.061, 6814564.596], [539952.737, 6814357.981], [540196.242, 6813846.19], [540525.026, 6811494.846], [538712.359, 6811249.237], [537706.066, 6810845.193], [536986.353, 6810847.384], [536252.352, 6810131.367], [536662.493, 6809393.671], [536417.096, 6808794.412], [536815.138, 6808512.43], [536773.357, 6808213.851], [536242.969, 6808208.648], [536123.526, 6806988.542], [536670.91, 6806589.61], [537311.154, 6806636.398], [537270.474, 6806098.716], [537738.091, 6805505.562], [538939.513, 6804641.819], [540059.564, 6804182.511], [542379.233, 6803375.649], [540382.265, 6799672.642], [537266.521, 6799720.606], [534599.948, 6801263.658], [533577.486, 6800893.289], [532883.759, 6801417.368], [532096.377, 6801040.013], [531862.069, 6801157.263], [531633.565, 6800592.99], [531972.233, 6800095.596], [531929.757, 6799331.507], [531521.828, 6798534.429], [532309.253, 6798563.049], [532862.492, 6798303.235], [532582.314, 6797240.966], [532244.95, 6797206.177], [531709.761, 6797554.23], [531304.335, 6796323.729], [531694.781, 6796048.145], [531337.628, 6795584.032], [529856.413, 6796728.052], [529091.235, 6795122.901], [529956.79, 6794738.365], [530550.157, 6794209.386], [531584.139, 6794548.356], [531973.485, 6794214.696], [530951.313, 6792241.092], [529178.633, 6791501.48], [527218.911, 6792945.679], [524818.382, 6792733.55], [523073.983, 6793120.781], [523370.675, 6791813.317], [523545.608, 6791368.4], [523461.348, 6790744.054], [523251.535, 6790453.971], [522574.91, 6790287.235], [521781.63, 6790328.413], [520893.79, 6790133.287], [520099.707, 6790484.939], [519846.614, 6790008.632], [519557.335, 6789502.137], [519699.948, 6788738.05], [520389.219, 6787322.132], [520334.347, 6786709.482], [519698.777, 6786117.366], [519054.867, 6786323.731], [517689.31, 6787193.867], [517030.066, 6788365.285], [517267.066, 6788854.187], [517313.143, 6789339.089], [518026.15, 6789845.565], [518678.091, 6790033.543], [518645.013, 6790560.019], [518224.362, 6790728.828], [518096.61, 6791134.261], [517435.273, 6791808.582], [516398.985, 6793165.923], [516216.753, 6794022.172], [515597.994, 6795524.156], [515544.611, 6796239.964], [515252.23, 6796241.662], [514970.747, 6795809.336], [514614.289, 6796320.826], [514561.143, 6796236.17], [514023.727, 6796523.439], [512201.465, 6797018.827], [511641.685, 6798136.868], [512118.491, 6798171.456], [512945.593, 6797951.748], [513808.406, 6797879.985], [513939.451, 6798162.87], [513949.942, 6798891.473], [513459.839, 6799149.865], [512724.502, 6799294.216], [512173.555, 6799600.43], [511218.846, 6799698.528], [510234.647, 6799543.586], [509196.373, 6798930.13], [507699.046, 6799313.48], [507487.573, 6798112.554], [507000.468, 6798496.794], [505921.702, 6799101.741], [505536.556, 6799496.878], [504004.076, 6799965.98], [503827.246, 6800312.24], [501698.101, 6801891.99], [500711.901, 6801993.844], [500381.406, 6801637.298], [499739.201, 6801254.138], [499146.242, 6801194.959], [497532.996, 6801506.625], [497932.309, 6802522.25], [500010.075, 6803737.436], [500823.338, 6804696.652], [500810.541, 6805112.684], [501030.648, 6805670.159], [502607.546, 6805176.662], [502724.961, 6805334.904], [503802.623, 6805314.917], [504863.399, 6804330.02], [504767.84, 6803996.355], [505701.061, 6803869.311], [506088.103, 6804137.632], [506533.92, 6804216.875], [507219.535, 6803943.343], [507259.721, 6804869.814], [507473.733, 6805091.426], [507965.233, 6805040.549], [508030.004, 6805507.96], [507777.705, 6805810.936], [508227.414, 6806969.071], [508807.475, 6807537.844], [508287.286, 6807633.502], [506895.251, 6807697.07], [506031.205, 6807287.731], [505668.852, 6807321.115], [505246.624, 6807175.472], [503969.04, 6807703.952], [504105.483, 6808005.331], [503908.957, 6808900.568], [502914.448, 6810936.04], [502522.006, 6811137.656], [502326.278, 6812306.783], [503296.68, 6812963.922], [503326.068, 6813452.267], [503605.444, 6814553.114], [502889.836, 6814398.34], [503041.968, 6815342.659], [500929.32, 6816275.871], [500413.424, 6815437.348], [500513.296, 6815215.598], [500381.755, 6814409.223], [499470.225, 6814532.668], [499467.324, 6814876.529], [499140.753, 6815600.533], [498604.571, 6815629.518], [498399.311, 6816127.896], [498670.618, 6816752.322], [498066.771, 6818863.905], [498287.679, 6819192.574], [498423.817, 6820280.736], [498666.514, 6820836.413], [499442.898, 6820857.11], [499617.919, 6822011.445], [499854.719, 6822633.496], [500393.398, 6822943.873], [501076.919, 6823044.735], [501318.15, 6823435.759], [501289.522, 6825279.035], [501032.721, 6826056.219], [500185.566, 6825916.471], [500107.482, 6826470.678], [499801.715, 6827003.929], [499279.017, 6828584.488], [499591.389, 6828918.554], [499424.652, 6829654.856], [499136.666, 6830146.455], [498307.009, 6829952.983], [498435.626, 6829203.017], [498032.3, 6829176.566], [497442.151, 6830848.061], [497690.144, 6831900.338], [498503.464, 6831383.712], [498413.945, 6832580.168], [498799.787, 6832788.186], [498950.522, 6833566.272], [499324.371, 6833526.79], [499750.047, 6832532.693], [500367.853, 6832655.149], [500009.293, 6833544.687], [499460.444, 6834188.414], [499216.407, 6834844.657], [499758.882, 6835621.346], [499571.153, 6836484.296], [499403.217, 6836994.489], [498536.266, 6837493.382], [498403.518, 6837888.221], [497731.191, 6838059.747], [497472.79, 6839137.808], [498754.866, 6839570.141], [498729.372, 6840374.614], [499060.835, 6840837.128], [498204.606, 6841240.707], [498168.815, 6840864.117], [497330.743, 6840306.049], [497145.52, 6839907.593], [496972.391, 6839958.97], [496835.744, 6840531.137], [496519.869, 6841217.556], [496640.618, 6841669.573], [496437.452, 6842078.412], [496400.212, 6842368.588], [496608.824, 6843029.221], [496565.438, 6843488.092], [496292.866, 6843738.077], [496083.752, 6844725.864], [496248.516, 6845005.275], [495511.662, 6845070.184], [495434.995, 6844656.151], [494902.713, 6844459.327], [494301.898, 6844579.945], [493865.734, 6844951.219], [494274.462, 6846080.564], [493875.62, 6848092.705], [494171.39, 6848908.415], [494165.586, 6850168.704], [494236.555, 6850516.363], [492549.244, 6850480.864], [492796.436, 6851863.405], [492144.203, 6851645.288], [491641.104, 6852180.967], [490908.079, 6855597.278], [490900.576, 6856569.983], [491168.661, 6857515.602], [491632.971, 6857690.135], [491942.328, 6858283.438], [492292.094, 6859185.933], [492168.139, 6859933.429], [491469.512, 6861567.262], [491672.927, 6861940.113], [492435.718, 6861785.281], [492978.885, 6863187.214], [493475.481, 6863385.936], [493706.192, 6862845.258], [494318.04, 6863170.929], [494348.32, 6863906.129], [495438.012, 6863998.215], [495825.116, 6864157.835], [495743.118, 6864715.404], [496308.149, 6864499.415], [496503.609, 6864707.627], [496529.108, 6865274.422], [496963.839, 6865520.29], [497430.352, 6865236.51], [497857.684, 6864631.26], [498084.098, 6864028.807], [499088.696, 6863305.51], [499547.978, 6864716.229], [499623.362, 6865053.505], [499404.395, 6865607.501], [499903.44, 6865884.47], [499918.927, 6866575.989], [500676.312, 6867357.779], [501103.341, 6867044.91], [501725.985, 6867315.706], [502161.709, 6867194.759], [502447.891, 6867318.312], [503145.901, 6867944.864], [503041.634, 6869021.226], [503442.168, 6869358.892], [504318.709, 6869557.219], [504861.792, 6869066.622], [505332.101, 6868996.253], [506052.402, 6869600.613], [506637.48, 6870143.566], [506373.457, 6870457.367], [504669.65, 6871254.134], [504019.896, 6873189.941], [504200.816, 6873887.26], [503817.458, 6874269.887], [503772.954, 6873688.005], [503242.857, 6874343.234], [503503.444, 6874606.171], [502994.341, 6875157.91], [501583.198, 6875007.839], [500786.932, 6875335.472], [500508.7, 6875801.847], [499902.015, 6876139.091], [499748.302, 6876641.899], [499772.907, 6877415.511], [499603.252, 6877668.918], [498988.8, 6877223.425], [498575.037, 6878547.675], [497445.42, 6878604.48], [497355.325, 6879378.192], [496853.062, 6879133.296], [495573.15, 6879347.931], [494894.234, 6880334.132], [493436.446, 6879166.913], [493046.865, 6880027.676], [492394.851, 6881106.815], [491195.965, 6882594.132], [491250.688, 6884186.653], [491534.066, 6885480.833], [491158.712, 6886712.432], [491753.569, 6886819.495], [491756.265, 6887480.128], [492319.43, 6888548.702], [492647.595, 6888538.709], [492717.654, 6889067.575], [493948.84, 6889812.718], [494503.236, 6889557.715], [494918.173, 6888472.058], [495742.044, 6887484.164], [496133.383, 6887833.927], [496120.386, 6888190.883], [495632.409, 6889030.285], [495749.224, 6890556.024], [495972.233, 6890631.096], [496180.334, 6890053.438], [496676.551, 6889679.487], [497327.357, 6890127.892], [497227.314, 6891736.06], [497830.373, 6891605.32], [498238.211, 6890856.926], [498584.865, 6891807.646], [498730.198, 6892795.147], [499701.504, 6893022.765], [499544.164, 6893791.352], [499329.345, 6894444.186], [499950.39, 6894888.109], [500378.085, 6894424.242], [501742.478, 6892150.935], [502271.66, 6892433.925], [502897.908, 6891959.422], [502126.821, 6895022.082], [503302.126, 6893809.518], [503821.08, 6893769.906], [504282.197, 6894214.15], [504622.436, 6893899.756], [505252.209, 6894396.834], [504853.894, 6894466.618], [505638.262, 6895755.08], [507048.686, 6896374.06], [507952.822, 6895578.39]]]}}, {\\\"id\\\": \\\"171\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rautalampi\\\", \\\"elakelaisten_osuus\\\": 40.0, \\\"freshwarea\\\": 223.03, \\\"gml_id\\\": 1601100421, \\\"landarea\\\": 538.96, \\\"namefin\\\": \\\"Rautalampi\\\", \\\"nameswe\\\": \\\"Rautalampi\\\", \\\"natcode\\\": \\\"686\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 761.99}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[483246.754, 6968417.548], [484097.44, 6967769.417], [485780.451, 6967338.264], [486435.407, 6967922.596], [487721.702, 6966716.404], [488451.531, 6965433.161], [489016.698, 6964932.947], [489291.423, 6964361.363], [489290.739, 6963784.499], [489471.179, 6963337.872], [489955.304, 6962907.059], [491557.604, 6964449.612], [491950.636, 6963827.477], [495739.647, 6956179.048], [495226.642, 6953616.546], [496150.42, 6949401.785], [496097.619, 6946471.076], [497194.281, 6944914.636], [495888.262, 6943862.205], [495743.735, 6943034.061], [495825.803, 6942288.334], [496500.686, 6942023.564], [497946.484, 6940443.878], [498291.888, 6940363.157], [499490.447, 6941583.481], [499678.349, 6941395.264], [498033.519, 6939522.216], [495221.475, 6940518.094], [495248.626, 6940060.827], [495427.895, 6939324.525], [492747.299, 6939534.931], [491093.104, 6939556.034], [491367.852, 6938855.224], [491820.766, 6938390.351], [492656.622, 6938539.237], [495488.747, 6936168.862], [495172.04, 6935488.876], [494498.431, 6935222.205], [494515.929, 6934883.157], [494102.727, 6934489.215], [493516.921, 6934440.989], [493044.599, 6934152.335], [493072.402, 6933491.134], [493681.359, 6932700.77], [494172.989, 6932857.494], [495106.377, 6932403.011], [495156.045, 6931941.087], [493973.591, 6929319.901], [494074.44, 6928880.184], [493788.071, 6928274.445], [493368.945, 6927753.752], [493404.028, 6927492.789], [492607.558, 6927306.728], [492053.544, 6926524.574], [491409.967, 6926353.788], [490836.528, 6925006.647], [490546.015, 6924779.434], [491357.503, 6923541.203], [487638.623, 6921438.362], [486882.258, 6922377.42], [486496.124, 6922880.016], [486229.228, 6922836.945], [486167.402, 6923603.078], [484991.471, 6924674.438], [484429.694, 6925353.86], [483744.218, 6925844.391], [481068.066, 6924451.701], [478236.926, 6927565.728], [474655.318, 6930607.672], [474546.662, 6930609.871], [473832.964, 6931234.643], [473665.617, 6931040.391], [473282.969, 6931370.355], [473136.857, 6931857.8], [472749.38, 6932102.256], [473436.727, 6933257.536], [473405.906, 6933594.764], [474689.158, 6933671.414], [475184.149, 6934035.833], [476299.979, 6935562.593], [477181.939, 6936869.617], [477876.07, 6938879.092], [478038.127, 6939818.197], [479157.422, 6940051.468], [479411.708, 6940469.437], [478249.466, 6941544.986], [479386.969, 6942287.987], [479045.267, 6945730.463], [477941.621, 6947050.701], [478015.889, 6947937.86], [477904.767, 6948643.448], [477611.021, 6949453.67], [477584.407, 6950202.436], [476716.756, 6951611.785], [475760.939, 6954016.626], [475927.647, 6954737.946], [471765.145, 6962221.13], [473487.499, 6963204.072], [474475.106, 6962377.414], [473945.267, 6964114.392], [476259.876, 6965228.509], [476471.164, 6965629.408], [478056.224, 6965326.842], [478492.954, 6964514.774], [479151.981, 6965063.756], [480126.197, 6963891.438], [481370.758, 6964484.125], [481570.125, 6965007.023], [481127.077, 6965282.981], [481017.004, 6965699.529], [480574.895, 6966000.586], [480283.257, 6967207.928], [483056.071, 6968826.888], [483246.754, 6968417.548]]]}}, {\\\"id\\\": \\\"172\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pieks\\\\u00e4m\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 38.4, \\\"freshwarea\\\": 267.52, \\\"gml_id\\\": 1601100533, \\\"landarea\\\": 1568.71, \\\"namefin\\\": \\\"Pieks\\\\u00e4m\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Pieks\\\\u00e4m\\\\u00e4ki\\\", \\\"natcode\\\": \\\"593\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1836.23}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[519788.018, 6931533.146], [519861.123, 6930550.852], [520244.811, 6930269.431], [521042.272, 6930382.162], [521425.623, 6929425.444], [522744.397, 6928290.694], [523252.599, 6928072.366], [523683.027, 6928184.647], [523779.644, 6927684.084], [523965.11, 6927219.139], [523960.7, 6926720.155], [525184.623, 6926292.926], [527296.975, 6925180.197], [528024.381, 6925178.704], [528926.419, 6924685.512], [529548.17, 6924226.704], [531049.478, 6922745.632], [531264.588, 6922342.786], [532537.482, 6921088.407], [533729.715, 6918891.212], [534186.333, 6918515.969], [535450.227, 6917662.627], [535793.999, 6916121.358], [535755.819, 6915394.953], [534969.05, 6913593.58], [535897.899, 6911473.723], [533568.831, 6910060.24], [532501.981, 6908279.106], [532893.872, 6907771.43], [531974.602, 6907105.497], [532555.466, 6906506.646], [532804.565, 6906629.898], [533721.303, 6905695.083], [533292.893, 6905321.037], [532788.792, 6905863.228], [531444.721, 6905350.907], [530508.999, 6906671.462], [529523.603, 6905937.144], [529142.712, 6905837.95], [528870.916, 6905179.563], [528517.046, 6905858.278], [527805.631, 6905471.856], [527580.555, 6905916.051], [526910.288, 6906326.468], [527020.729, 6905733.192], [526723.448, 6905302.548], [526526.563, 6905486.27], [525626.562, 6904890.354], [526211.243, 6904373.655], [527267.728, 6902678.66], [528126.98, 6901664.48], [528563.503, 6901271.943], [528972.938, 6900715.173], [528777.818, 6900429.288], [529295.509, 6899861.024], [528461.249, 6899495.666], [528133.881, 6899973.768], [527694.983, 6899568.075], [526967.073, 6900229.621], [526491.984, 6900492.606], [526062.923, 6900324.109], [527767.84, 6896252.779], [528418.684, 6895470.201], [528372.009, 6894308.272], [528534.976, 6893457.965], [529063.144, 6892230.92], [529311.429, 6891216.735], [529510.269, 6890756.743], [530369.525, 6891537.109], [530758.966, 6891709.222], [531346.044, 6891823.902], [532883.421, 6891073.612], [532233.285, 6890320.114], [532090.542, 6890463.955], [531904.017, 6890293.023], [532027.171, 6889694.167], [532465.309, 6889950.333], [533069.157, 6889236.559], [533148.227, 6888942.779], [532907.212, 6888507.764], [533340.354, 6888140.306], [532588.86, 6887225.572], [533454.62, 6886325.842], [532635.254, 6885796.451], [533237.914, 6884987.313], [533728.749, 6884152.911], [533388.109, 6884049.854], [533247.478, 6883656.867], [533051.248, 6883782.642], [532435.007, 6883282.345], [532379.697, 6883052.614], [532084.149, 6882835.227], [532697.751, 6881907.383], [532940.204, 6881940.726], [533396.753, 6881511.176], [532509.253, 6880464.205], [532437.997, 6880258.383], [532199.282, 6879964.704], [532836.93, 6879319.374], [532728.549, 6878782.84], [533144.458, 6878589.504], [533479.957, 6879055.518], [533683.384, 6878843.886], [533465.195, 6878632.77], [534402.546, 6877665.815], [534175.036, 6877445.242], [533478.532, 6878271.445], [532776.01, 6877775.159], [531437.221, 6877619.727], [530850.955, 6878630.835], [528262.195, 6878443.401], [528833.372, 6877650.513], [528494.356, 6877489.236], [528182.318, 6877853.158], [527296.324, 6877172.123], [527115.369, 6877429.164], [527966.292, 6878081.162], [527737.45, 6878400.91], [525502.1, 6878229.336], [525775.484, 6877849.715], [524710.524, 6877813.879], [524837.623, 6878180.209], [524267.194, 6878149.183], [522127.447, 6879903.222], [521102.675, 6881517.856], [519407.856, 6880521.488], [520373.644, 6878434.95], [519814.838, 6878060.522], [520577.627, 6877408.432], [520552.042, 6874895.344], [519939.195, 6875124.459], [519388.106, 6875967.328], [519289.482, 6877232.305], [518801.286, 6878448.701], [517669.366, 6879757.315], [518164.326, 6880086.976], [512464.849, 6887776.874], [509930.768, 6890993.191], [508400.059, 6892749.443], [508402.653, 6893496.839], [508753.806, 6894111.592], [507952.822, 6895578.39], [507048.686, 6896374.06], [505638.262, 6895755.08], [504853.894, 6894466.618], [505252.209, 6894396.834], [504622.436, 6893899.756], [504282.197, 6894214.15], [503821.08, 6893769.906], [503302.126, 6893809.518], [502126.821, 6895022.082], [502897.908, 6891959.422], [502271.66, 6892433.925], [501742.478, 6892150.935], [500378.085, 6894424.242], [499950.39, 6894888.109], [499329.345, 6894444.186], [499544.164, 6893791.352], [499701.504, 6893022.765], [498730.198, 6892795.147], [498584.865, 6891807.646], [498238.211, 6890856.926], [497830.373, 6891605.32], [497227.314, 6891736.06], [497327.357, 6890127.892], [496676.551, 6889679.487], [496180.334, 6890053.438], [495972.233, 6890631.096], [495749.224, 6890556.024], [495632.409, 6889030.285], [496120.386, 6888190.883], [496133.383, 6887833.927], [495742.044, 6887484.164], [494918.173, 6888472.058], [494503.236, 6889557.715], [493948.84, 6889812.718], [492717.654, 6889067.575], [492647.595, 6888538.709], [492319.43, 6888548.702], [492192.946, 6888939.602], [491854.909, 6889109.743], [491553.672, 6889526.441], [491098.38, 6890743.148], [490845.627, 6891160.886], [490659.248, 6891855.623], [490669.886, 6892693.11], [490514.648, 6893075.655], [490068.904, 6893613.604], [489852.513, 6894127.948], [489375.506, 6894511.064], [488995.064, 6894331.833], [488520.055, 6894480.243], [488458.883, 6893909.698], [487947.591, 6894517.747], [487705.691, 6894382.8], [486995.504, 6895217.427], [485779.066, 6897713.731], [485783.669, 6896428.454], [485808.915, 6896063.474], [485516.334, 6895906.801], [485281.911, 6896539.271], [484285.139, 6897883.585], [483859.542, 6898909.931], [483943.808, 6899299.569], [483626.938, 6899705.536], [483173.805, 6900779.372], [483260.959, 6902118.931], [483720.404, 6902171.63], [484087.832, 6901122.339], [483963.784, 6900800.168], [484045.954, 6900450.31], [484536.556, 6900254.193], [484974.575, 6900711.011], [485924.297, 6899306.887], [485933.596, 6900248.149], [485767.352, 6900839.665], [485864.905, 6901606.856], [484950.772, 6904244.27], [484563.399, 6905857.331], [484680.05, 6906140.018], [483572.48, 6908502.157], [482486.503, 6910651.182], [483110.099, 6910961.93], [482894.349, 6911327.397], [482774.296, 6911902.185], [482860.032, 6912308.661], [488410.363, 6913649.456], [488076.504, 6914268.859], [486261.823, 6916443.569], [484184.19, 6918204.444], [484157.798, 6918635.073], [483489.126, 6919208.534], [483488.424, 6919483.323], [484466.114, 6921010.214], [484621.423, 6921559.096], [484791.128, 6921787.04], [484417.808, 6922752.799], [484568.855, 6923180.87], [484414.15, 6923815.706], [484650.613, 6924302.686], [484991.471, 6924674.438], [486167.402, 6923603.078], [486229.228, 6922836.945], [486496.124, 6922880.016], [486882.258, 6922377.42], [487638.623, 6921438.362], [491357.503, 6923541.203], [490546.015, 6924779.434], [490836.528, 6925006.647], [491409.967, 6926353.788], [492053.544, 6926524.574], [492607.558, 6927306.728], [493404.028, 6927492.789], [493368.945, 6927753.752], [493788.071, 6928274.445], [494015.685, 6927392.702], [495120.148, 6926070.444], [496713.41, 6925071.557], [496897.785, 6924577.23], [497281.738, 6924110.156], [497493.305, 6923492.7], [498105.643, 6923797.081], [498017.041, 6924411.339], [498547.465, 6924789.184], [498311.083, 6925438.814], [497483.479, 6927158.521], [497537.859, 6927817.613], [498480.313, 6928662.911], [498925.389, 6927604.051], [499270.352, 6927500.495], [499683.787, 6927049.08], [499852.823, 6926485.709], [503160.479, 6926689.347], [503516.586, 6927577.799], [504195.908, 6928607.103], [504558.14, 6928458.629], [504838.293, 6928218.713], [505265.032, 6928189.748], [505433.734, 6929230.339], [506102.983, 6929649.511], [505874.645, 6930580.097], [506873.147, 6929597.4], [507085.365, 6929148.583], [508405.24, 6927936.581], [508775.791, 6927236.868], [508637.45, 6926831.531], [509136.198, 6925615.888], [508598.941, 6925350.611], [510084.372, 6924990.589], [509765.393, 6926570.933], [510883.215, 6927539.844], [511238.256, 6927096.684], [510460.615, 6926185.998], [510650.231, 6925616.404], [511379.634, 6925864.301], [511594.191, 6927678.736], [512923.607, 6927659.298], [512944.067, 6927035.395], [513812.093, 6925769.997], [514245.671, 6926063.019], [514639.03, 6925702.548], [514947.394, 6925889.388], [515592.643, 6928346.987], [517400.241, 6929606.302], [518672.908, 6929515.493], [517892.708, 6930872.506], [518821.659, 6930779.302], [519126.314, 6931399.871], [517734.413, 6932478.908], [518411.365, 6933201.719], [518710.738, 6933279.584], [519788.018, 6931533.146]]]}}, {\\\"id\\\": \\\"173\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Alaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 33.0, \\\"freshwarea\\\": 47.92, \\\"gml_id\\\": 1601100010, \\\"landarea\\\": 1008.83, \\\"namefin\\\": \\\"Alaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Alaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"005\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1056.75}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[350749.549, 6962519.423], [350536.485, 6961614.012], [350233.376, 6961683.594], [349992.204, 6960528.208], [350258.812, 6960460.931], [350201.856, 6960216.284], [349567.129, 6960347.228], [349203.997, 6960722.272], [349310.587, 6960973.341], [349208.47, 6961217.275], [349142.025, 6961920.27], [349576.326, 6961814.522], [349721.332, 6962463.856], [349266.381, 6962569.566], [349292.83, 6962826.886], [350749.549, 6962519.423]]], [[[355378.09, 7006296.539], [355741.162, 7006136.802], [356247.124, 7006082.67], [356270.784, 7005868.223], [356791.574, 7005410.779], [357113.298, 7005076.054], [357452.604, 7005219.8], [359118.039, 7005913.191], [362040.89, 7002146.911], [361718.123, 7003363.475], [364150.54, 7004163.783], [366588.895, 7001524.047], [366787.924, 7001300.583], [364487.59, 6995842.523], [362458.797, 6995675.229], [362619.068, 6993966.417], [362081.45, 6993893.991], [362314.486, 6992188.166], [361501.423, 6992082.253], [361560.998, 6991691.116], [360810.584, 6991571.783], [360727.7, 6992213.415], [359139.14, 6992003.281], [359253.887, 6991051.526], [360150.526, 6990856.187], [360138.248, 6991228.844], [360712.309, 6991311.304], [360782.411, 6990767.356], [363111.574, 6992513.781], [363273.193, 6992324.279], [363789.242, 6990500.403], [363132.975, 6990375.999], [363181.559, 6989363.341], [363531.787, 6988666.619], [362732.775, 6988377.622], [363401.754, 6987520.965], [363260.793, 6987161.698], [361103.642, 6986962.139], [359440.518, 6987288.841], [359773.526, 6987491.382], [359796.862, 6988410.936], [359571.896, 6988496.19], [359557.119, 6989160.018], [357053.687, 6988910.385], [357253.221, 6989560.736], [357682.314, 6989617.482], [357374.742, 6990194.169], [356521.54, 6989872.16], [356374.199, 6989501.815], [356823.062, 6987754.571], [357028.645, 6987355.834], [355544.694, 6987206.679], [354474.733, 6986533.071], [354491.878, 6986932.962], [353201.238, 6987021.497], [353148.988, 6986588.102], [352735.097, 6986606.128], [352596.223, 6985774.006], [352599.116, 6984860.202], [351486.828, 6985842.647], [350083.086, 6986744.5], [349712.132, 6986959.375], [349574.585, 6986831.945], [349571.794, 6986826.104], [350779.113, 6985839.506], [350769.665, 6985436.95], [350277.72, 6985726.684], [350032.603, 6986093.496], [349403.004, 6985932.989], [347855.045, 6977136.532], [347587.579, 6977285.136], [346951.941, 6973669.696], [352208.717, 6971788.105], [352076.711, 6971476.667], [354149.024, 6971727.655], [354508.004, 6970011.824], [353146.369, 6969710.866], [352228.488, 6969780.842], [352396.032, 6968940.423], [352148.04, 6968787.232], [351756.852, 6969272.238], [351435.555, 6969068.457], [351733.58, 6968428.665], [351184.705, 6967755.287], [350979.315, 6966989.288], [350929.932, 6966078.164], [350556.548, 6965661.156], [350562.24, 6965076.074], [350346.715, 6964906.287], [350006.155, 6965169.686], [349811.276, 6964741.203], [349920.736, 6964407.767], [349445.746, 6964368.88], [349136.945, 6963885.313], [348320.016, 6960219.487], [348604.168, 6959564.335], [347302.684, 6959056.438], [346754.622, 6960392.901], [347407.831, 6960710.268], [346684.645, 6961242.367], [346836.633, 6961626.646], [346680.51, 6962138.434], [346370.41, 6962622.67], [346033.466, 6962902.709], [345555.806, 6962635.162], [345273.225, 6961724.547], [343298.204, 6961570.195], [340572.015, 6962466.395], [340157.19, 6962295.322], [339734.353, 6962487.597], [339859.916, 6962790.345], [339046.709, 6963078.849], [336830.159, 6965327.371], [333911.129, 6968504.392], [331925.547, 6970644.883], [328845.615, 6976651.359], [325846.0, 6979874.279], [325329.616, 6980289.04], [325181.946, 6980624.328], [324693.63, 6980808.208], [324159.201, 6981217.003], [323928.781, 6981069.822], [323281.486, 6981415.652], [320404.452, 6986053.073], [322248.819, 6986848.722], [322582.275, 6987160.996], [322692.663, 6988079.052], [326686.023, 6990198.5], [326813.055, 6991939.304], [329916.903, 6994485.861], [330165.207, 6994246.771], [330255.87, 6994937.841], [330808.702, 6995023.233], [330698.57, 6995665.808], [330110.392, 6997517.773], [330678.353, 6999788.214], [332374.566, 6999661.105], [332660.314, 7000879.018], [333629.564, 7000713.2], [334329.441, 7002293.676], [335410.104, 7002082.47], [335264.183, 7001363.35], [334678.182, 7000463.592], [334785.181, 6999966.11], [335875.889, 6998150.953], [341921.025, 7002025.352], [342903.79, 7001937.357], [342794.912, 7001249.763], [343000.19, 7000437.209], [343371.715, 7000717.489], [343230.733, 7000963.675], [345476.078, 7001572.78], [352385.537, 7005311.72], [353198.936, 7004095.729], [353758.517, 7004785.768], [354233.29, 7003938.872], [354506.926, 7004065.953], [354223.371, 7004639.464], [355257.33, 7005693.9], [354702.613, 7006452.437], [354806.052, 7006517.327], [355378.09, 7006296.539]]]]}}, {\\\"id\\\": \\\"174\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lestij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 38.1, \\\"freshwarea\\\": 78.76, \\\"gml_id\\\": 1601100656, \\\"landarea\\\": 480.3, \\\"namefin\\\": \\\"Lestij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Lestij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"421\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 559.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[382095.705, 7060308.614], [382074.78, 7060027.664], [388640.584, 7055639.208], [391823.151, 7052793.048], [396223.967, 7045813.228], [402107.619, 7038128.976], [395339.008, 7035351.22], [388595.831, 7027489.373], [382428.688, 7030046.839], [378728.175, 7031589.024], [374632.251, 7028884.941], [374329.738, 7029859.59], [374026.127, 7030837.784], [375626.753, 7031588.23], [374101.469, 7034789.466], [373491.019, 7034495.96], [373275.525, 7034944.775], [375795.437, 7036072.848], [375691.363, 7036302.643], [376662.199, 7037362.745], [376883.302, 7037160.438], [377635.634, 7037979.999], [377496.364, 7038511.495], [377118.27, 7038935.371], [377113.288, 7039375.952], [375846.13, 7040198.235], [377086.864, 7041546.341], [377063.648, 7043386.456], [376755.509, 7043713.511], [377546.307, 7043882.242], [378342.541, 7044968.25], [378377.148, 7046180.973], [377260.599, 7046448.84], [376147.525, 7045093.904], [375917.317, 7045263.261], [375704.143, 7044833.012], [374026.326, 7046622.371], [375370.463, 7048084.477], [372366.465, 7050892.728], [372000.551, 7050495.081], [371310.62, 7051260.955], [373933.57, 7053973.293], [374730.238, 7054179.076], [375044.408, 7054493.481], [374573.093, 7055427.188], [376696.55, 7056952.339], [377760.852, 7056850.974], [378073.243, 7056269.757], [378522.306, 7056607.355], [377646.531, 7057639.508], [379031.093, 7058631.026], [378008.459, 7059250.739], [377587.763, 7059212.02], [377545.757, 7059452.847], [378059.719, 7059559.345], [378953.964, 7059098.67], [379380.389, 7058881.148], [381397.054, 7060356.629], [381634.052, 7060104.657], [381923.367, 7060577.08], [382095.705, 7060308.614]]]}}, {\\\"id\\\": \\\"175\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kemi\\\\u00f6nsaari\\\", \\\"elakelaisten_osuus\\\": 38.1, \\\"freshwarea\\\": 10.91, \\\"gml_id\\\": 1601100523, \\\"landarea\\\": 686.84, \\\"namefin\\\": \\\"Kemi\\\\u00f6nsaari\\\", \\\"nameswe\\\": \\\"Kimito\\\\u00f6n\\\", \\\"natcode\\\": \\\"322\\\", \\\"seawarea\\\": 2103.26, \\\"totalarea\\\": 2801.01}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[270264.563, 6687416.932], [270710.961, 6687732.813], [270956.42, 6687336.53], [270752.862, 6686514.01], [270969.28, 6686189.452], [271358.412, 6686160.68], [271679.027, 6686174.549], [272376.068, 6686296.848], [273279.148, 6687394.227], [273726.319, 6687815.33], [274069.563, 6687208.504], [274272.536, 6686334.936], [273321.97, 6685369.798], [273379.044, 6684492.497], [273113.614, 6684024.872], [272860.048, 6683178.436], [271523.15, 6681935.883], [270789.11, 6680874.368], [270678.956, 6680418.317], [271043.118, 6680178.78], [271409.506, 6679729.618], [271198.777, 6679234.257], [271332.959, 6678710.462], [270342.413, 6678139.253], [270751.669, 6676303.282], [271299.176, 6675376.241], [272356.235, 6673278.834], [270474.039, 6671399.825], [270085.205, 6670475.611], [269319.176, 6669733.371], [269142.593, 6668899.06], [267994.457, 6668360.905], [267929.987, 6667576.663], [267977.402, 6667137.169], [269130.951, 6666229.659], [268068.775, 6664760.524], [266870.436, 6664892.356], [265752.131, 6665401.189], [265857.994, 6663056.007], [266091.484, 6661666.31], [265203.537, 6659118.664], [265131.108, 6654395.663], [266617.741, 6651350.805], [265772.052, 6645183.154], [265381.743, 6642262.002], [265204.952, 6641878.407], [262329.457, 6634156.551], [260786.555, 6630492.333], [260296.414, 6629242.348], [255142.309, 6616098.198], [253746.902, 6615849.108], [239601.928, 6606209.473], [222640.662, 6606081.581], [222476.706, 6628316.514], [221615.162, 6636968.678], [221600.647, 6637114.44], [221108.392, 6642057.967], [221041.479, 6646423.43], [220861.647, 6647117.697], [220157.32, 6647572.778], [219716.28, 6649389.456], [219889.209, 6650329.806], [226266.431, 6655202.401], [230575.092, 6657728.263], [230697.586, 6660053.427], [231242.31, 6660798.276], [231475.95, 6661873.493], [231197.711, 6665258.007], [234265.395, 6669060.096], [236881.861, 6673222.258], [237975.096, 6673931.345], [241054.522, 6673534.838], [241688.079, 6674899.28], [241638.869, 6675501.43], [242741.873, 6676521.598], [243189.269, 6678153.934], [243113.871, 6678863.134], [244437.512, 6679408.462], [244943.823, 6680916.326], [246090.461, 6682388.012], [246363.616, 6683902.563], [248026.628, 6687616.531], [250181.949, 6686937.043], [250470.32, 6686572.08], [250745.984, 6686248.777], [251271.326, 6686156.182], [251787.372, 6685533.016], [251273.079, 6683581.538], [253207.295, 6683133.248], [254479.51, 6683527.573], [255652.778, 6684103.196], [255680.485, 6684370.06], [256534.255, 6684960.135], [257966.843, 6685396.7], [260683.278, 6685790.71], [261081.016, 6686308.483], [261402.43, 6686341.007], [263224.228, 6686031.715], [263457.313, 6685897.352], [264086.197, 6686018.318], [264678.983, 6686710.132], [265272.484, 6686817.086], [266759.825, 6686198.811], [266724.673, 6686827.786], [267328.89, 6686915.129], [268151.311, 6687902.961], [268391.028, 6688022.198], [268872.237, 6688221.782], [270264.563, 6687416.932]]]}}, {\\\"id\\\": \\\"176\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nivala\\\", \\\"elakelaisten_osuus\\\": 26.5, \\\"freshwarea\\\": 9.03, \\\"gml_id\\\": 1601100165, \\\"landarea\\\": 527.84, \\\"namefin\\\": \\\"Nivala\\\", \\\"nameswe\\\": \\\"Nivala\\\", \\\"natcode\\\": \\\"535\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 536.87}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[405043.635, 7073454.897], [404858.867, 7073060.044], [404427.764, 7072635.765], [404472.013, 7071929.164], [404006.997, 7072193.633], [403724.234, 7071705.817], [404138.666, 7071155.707], [404223.09, 7070845.862], [403821.295, 7071063.138], [403474.216, 7071448.715], [403312.837, 7071674.73], [403811.242, 7072356.267], [403479.644, 7072899.507], [403572.882, 7073129.729], [404211.383, 7072795.469], [404568.424, 7073079.784], [404504.384, 7074074.974], [404695.369, 7074409.123], [405043.635, 7073454.897]]], [[[398614.748, 7098768.564], [398683.838, 7098435.776], [398425.321, 7097997.745], [398091.666, 7097607.545], [397544.509, 7097413.226], [396384.272, 7098245.198], [396658.169, 7098382.597], [397114.808, 7098063.256], [397673.366, 7098231.101], [398150.392, 7098396.254], [398377.093, 7098806.908], [398614.748, 7098768.564]]], [[[395828.167, 7098459.944], [395283.16, 7098689.957], [394852.012, 7098330.69], [395036.493, 7097738.791], [394577.95, 7097308.594], [394317.414, 7098119.34], [394544.207, 7098414.931], [394238.295, 7099033.772], [395707.303, 7099091.225], [395828.167, 7098459.944]]], [[[406325.634, 7103536.203], [408837.127, 7101508.174], [409480.343, 7101244.43], [409820.351, 7101780.473], [409479.241, 7103026.648], [410277.754, 7103751.905], [411351.362, 7103900.729], [411704.106, 7104038.678], [412013.69, 7103584.55], [411221.186, 7103325.184], [411007.529, 7102581.572], [411545.761, 7102501.078], [411815.246, 7102140.261], [411882.447, 7101755.315], [412249.705, 7101408.151], [411526.154, 7099938.148], [412283.839, 7099338.06], [419904.813, 7090244.14], [415736.044, 7090900.859], [415370.708, 7090286.735], [415019.832, 7090620.611], [413821.191, 7086388.723], [413274.394, 7086803.69], [413399.394, 7086214.709], [413719.111, 7086036.375], [413124.945, 7083966.119], [414004.609, 7084624.17], [414213.275, 7084367.63], [411611.515, 7081667.319], [410154.647, 7080151.669], [409565.726, 7079225.77], [409277.451, 7079122.565], [409117.389, 7078726.387], [407517.296, 7079592.544], [406829.657, 7079361.124], [406267.643, 7079380.958], [407140.407, 7080809.136], [406932.182, 7081001.408], [406714.469, 7080762.122], [406444.336, 7081019.872], [405829.575, 7080735.444], [405388.511, 7081862.573], [404782.767, 7081992.238], [404609.217, 7081761.005], [404793.148, 7081308.088], [405062.079, 7081329.262], [405290.839, 7080332.491], [405744.857, 7079855.79], [405937.906, 7079142.823], [406905.546, 7079112.965], [407444.567, 7079308.231], [409031.436, 7078475.134], [407824.304, 7075756.954], [407413.988, 7075640.355], [407007.357, 7074116.141], [407431.431, 7073536.432], [407621.704, 7073938.274], [407639.163, 7075215.199], [407916.596, 7075261.657], [408118.418, 7074975.451], [408257.623, 7075305.542], [409101.001, 7075419.036], [410496.984, 7075102.166], [408490.652, 7072709.498], [408713.533, 7072335.775], [408458.155, 7072019.046], [407914.115, 7072018.809], [407886.749, 7072601.48], [405659.317, 7074256.556], [405405.261, 7073880.057], [405110.403, 7074211.201], [404789.889, 7076126.075], [405132.689, 7076531.792], [405022.438, 7076854.284], [404142.546, 7076769.263], [403762.07, 7076238.82], [403219.85, 7076031.388], [402556.635, 7075485.117], [402210.064, 7075647.829], [401783.123, 7075402.214], [401605.894, 7074722.459], [402146.815, 7074402.628], [401870.691, 7074062.799], [402102.784, 7073743.079], [401969.716, 7072896.756], [401704.369, 7072939.824], [401175.352, 7073384.291], [400866.899, 7073774.739], [400635.832, 7074148.499], [400696.224, 7074333.473], [401137.52, 7074058.722], [401490.433, 7074152.26], [401302.158, 7074792.444], [401513.698, 7075572.464], [401104.678, 7075899.949], [402193.632, 7077208.976], [402034.806, 7077586.607], [401745.096, 7077840.361], [402036.017, 7078157.736], [402245.921, 7077981.178], [402640.26, 7078442.206], [402674.889, 7079017.902], [402779.413, 7079438.759], [402630.848, 7079703.481], [401708.039, 7078671.582], [401917.0, 7078461.884], [401566.572, 7078085.001], [401306.411, 7078346.689], [400767.072, 7077786.483], [400732.828, 7078209.335], [400291.869, 7077955.018], [400388.457, 7077578.697], [400775.199, 7077005.682], [400358.469, 7076413.627], [400177.647, 7076822.285], [399885.271, 7076388.236], [399661.117, 7076499.012], [399903.684, 7077060.139], [399100.843, 7078770.502], [398801.026, 7078602.058], [398488.0, 7079192.189], [397902.835, 7079716.611], [398346.315, 7080353.96], [397529.352, 7082069.143], [395307.709, 7083895.069], [395099.752, 7083618.715], [394553.484, 7084072.689], [393830.344, 7084191.857], [393673.62, 7083719.718], [393060.503, 7083536.667], [392978.179, 7083860.351], [392648.207, 7083888.379], [392573.535, 7084164.03], [393244.735, 7084280.997], [392992.647, 7084475.403], [393152.903, 7084984.342], [393070.283, 7085650.653], [391145.53, 7087145.829], [390589.06, 7087859.448], [388882.532, 7090384.636], [387148.592, 7090495.362], [386290.914, 7090974.035], [385327.078, 7091473.462], [385652.962, 7091853.317], [385974.682, 7091905.449], [385950.696, 7092589.928], [384932.82, 7092432.464], [384771.36, 7092959.291], [384323.357, 7093223.3], [384342.984, 7095390.186], [385165.296, 7094760.841], [386742.888, 7094562.4], [387551.349, 7093999.778], [388428.318, 7094217.608], [389005.775, 7093411.071], [389364.791, 7093271.479], [389506.4, 7093477.724], [388782.886, 7094246.431], [388620.052, 7094885.519], [388758.509, 7095565.917], [389097.73, 7096242.88], [389447.972, 7096499.552], [389883.037, 7097067.211], [389396.79, 7097091.462], [389303.1, 7097838.349], [389714.913, 7098261.328], [390374.342, 7097886.689], [390229.855, 7097305.462], [390632.352, 7097272.442], [390946.079, 7097740.246], [390941.155, 7098011.552], [391222.813, 7098092.853], [391526.059, 7097749.352], [391256.334, 7097421.941], [392125.446, 7096544.834], [392459.327, 7097074.729], [392818.242, 7097266.987], [393147.781, 7096889.401], [393584.739, 7097024.416], [393702.848, 7096814.65], [393239.802, 7096602.942], [393549.682, 7096340.35], [393911.904, 7096252.152], [394340.27, 7096452.676], [395082.415, 7095891.496], [395247.981, 7096304.59], [395139.601, 7096597.591], [395532.158, 7096783.791], [396122.102, 7097601.366], [397874.997, 7096815.305], [403461.736, 7106084.121], [406325.634, 7103536.203]]]]}}, {\\\"id\\\": \\\"177\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Miehikk\\\\u00e4l\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 43.4, \\\"freshwarea\\\": 17.9, \\\"gml_id\\\": 1601100085, \\\"landarea\\\": 422.47, \\\"namefin\\\": \\\"Miehikk\\\\u00e4l\\\\u00e4\\\", \\\"nameswe\\\": \\\"Miehikk\\\\u00e4l\\\\u00e4\\\", \\\"natcode\\\": \\\"489\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 440.37}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[524630.075, 6742888.895], [527469.948, 6740530.869], [529917.56, 6740394.849], [532012.909, 6741095.286], [532977.917, 6741313.207], [533539.991, 6741280.526], [536144.442, 6740827.036], [536909.932, 6740884.321], [538283.682, 6740269.784], [538858.65, 6740202.117], [538676.978, 6739600.214], [539642.06, 6736586.392], [540945.537, 6736020.135], [542138.954, 6736180.682], [543196.006, 6737341.418], [544231.998, 6736903.972], [544518.179, 6737137.945], [545726.972, 6737104.987], [546373.838, 6736931.505], [546476.716, 6736006.467], [546768.702, 6735144.863], [546852.966, 6734251.609], [547232.619, 6733454.634], [548054.206, 6731183.759], [548530.918, 6730634.085], [549245.441, 6729308.127], [550827.606, 6728592.727], [552035.718, 6728188.888], [552290.819, 6727232.569], [552060.816, 6726531.448], [551997.444, 6726090.923], [552842.602, 6726047.841], [553434.841, 6726174.68], [553437.766, 6726175.286], [553444.47, 6726176.673], [554169.941, 6726326.841], [550125.439, 6721677.372], [548657.893, 6720007.34], [547343.565, 6719586.008], [547311.039, 6719640.304], [546048.979, 6721578.71], [545522.782, 6723349.692], [544832.553, 6724586.088], [544135.936, 6724321.688], [543851.95, 6724460.729], [543291.176, 6724428.037], [543046.178, 6724018.099], [542386.348, 6723495.104], [542562.779, 6723205.122], [541785.703, 6721619.854], [541266.315, 6721206.416], [540932.147, 6721620.946], [540507.119, 6721681.717], [539828.886, 6722635.326], [538967.638, 6721994.476], [539539.714, 6720951.102], [538104.794, 6720777.958], [536998.408, 6720861.312], [536478.844, 6721814.426], [534140.045, 6724137.729], [533665.562, 6724441.541], [533054.508, 6724595.773], [532376.378, 6725084.27], [531703.05, 6724995.099], [532238.88, 6724019.993], [531554.216, 6724136.144], [531302.317, 6724323.866], [530737.542, 6724750.789], [530157.175, 6724876.033], [529771.634, 6724428.41], [529538.225, 6724834.344], [529138.988, 6724633.121], [529548.251, 6720382.138], [527893.821, 6720083.242], [527075.76, 6718457.091], [526710.297, 6720158.302], [525393.114, 6722276.936], [524868.521, 6722898.181], [524759.444, 6723926.125], [524994.356, 6725200.354], [524224.549, 6727980.327], [523834.601, 6728777.402], [523027.419, 6729875.352], [523346.985, 6730604.96], [523784.195, 6732351.856], [523979.913, 6732841.059], [524367.738, 6735330.853], [524114.427, 6737079.244], [523569.434, 6738701.883], [523457.074, 6739355.418], [523460.569, 6739928.686], [523100.302, 6741519.039], [523012.229, 6742615.395], [523282.6, 6745336.095], [524630.075, 6742888.895]]]}}, {\\\"id\\\": \\\"178\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Akaa\\\", \\\"elakelaisten_osuus\\\": 27.3, \\\"freshwarea\\\": 21.12, \\\"gml_id\\\": 1601100035, \\\"landarea\\\": 293.26, \\\"namefin\\\": \\\"Akaa\\\", \\\"nameswe\\\": \\\"Akaa\\\", \\\"natcode\\\": \\\"020\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 314.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[325496.362, 6795681.713], [325843.842, 6794740.82], [326314.438, 6794988.173], [326294.864, 6794191.574], [327365.606, 6793328.274], [327636.528, 6792948.991], [328844.117, 6792661.711], [328128.002, 6792265.337], [328029.104, 6791170.049], [328743.14, 6790628.314], [329135.321, 6790976.884], [332526.816, 6789277.214], [333757.917, 6789759.788], [334688.198, 6789286.972], [335403.46, 6787249.865], [336519.806, 6787100.617], [336439.544, 6785860.289], [336002.039, 6785229.774], [335667.477, 6784981.32], [335740.676, 6784462.935], [336351.045, 6784452.362], [335862.776, 6783725.251], [335490.703, 6783964.018], [334814.401, 6782781.996], [335376.785, 6782440.274], [334202.592, 6781268.489], [334455.719, 6780887.976], [334991.936, 6781335.098], [335318.616, 6781242.754], [334167.366, 6780035.654], [335283.864, 6778918.678], [334782.552, 6778623.666], [335370.812, 6778073.463], [335752.229, 6778271.54], [336054.713, 6777952.0], [334136.878, 6777044.947], [333256.451, 6776441.871], [329803.666, 6775181.018], [328788.443, 6776117.178], [327649.481, 6775835.285], [326631.119, 6775112.115], [324952.559, 6773513.092], [323730.293, 6774964.704], [323025.198, 6775005.702], [323167.426, 6775455.571], [322661.929, 6775512.792], [322559.986, 6775134.373], [322197.843, 6775035.896], [321126.595, 6775671.721], [320262.66, 6775804.078], [320187.41, 6777202.829], [319814.366, 6778635.311], [318715.865, 6779431.065], [319568.327, 6780771.709], [316285.081, 6782076.181], [315431.856, 6781682.98], [315305.386, 6780879.04], [314710.661, 6781498.544], [314007.717, 6781751.974], [314199.833, 6782403.167], [312834.779, 6783493.164], [312714.164, 6784141.286], [311848.244, 6784902.605], [312604.031, 6784784.322], [312391.798, 6785087.378], [311369.043, 6786031.512], [312487.832, 6787659.023], [313585.482, 6788327.893], [314007.781, 6788828.254], [313817.653, 6790150.983], [314246.201, 6790569.479], [315667.074, 6789857.932], [317209.632, 6790296.18], [322242.168, 6791194.287], [322241.09, 6792016.457], [321290.934, 6792613.27], [321094.744, 6793033.027], [321520.356, 6793270.387], [322204.585, 6793131.204], [322290.513, 6793565.428], [322865.425, 6794163.727], [323755.88, 6794623.86], [324273.095, 6795263.289], [325014.538, 6796004.595], [325496.362, 6795681.713]]]}}, {\\\"id\\\": \\\"179\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Polvij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 39.1, \\\"freshwarea\\\": 154.16, \\\"gml_id\\\": 1601100567, \\\"landarea\\\": 804.16, \\\"namefin\\\": \\\"Polvij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Polvij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"607\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 958.32}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[621080.331, 6999007.407], [621386.684, 6998831.872], [621404.97, 6999653.481], [621912.828, 6999802.476], [624198.89, 6996947.552], [624521.075, 6996609.313], [624837.173, 6996746.659], [626044.153, 6995266.894], [626219.584, 6994935.123], [626253.851, 6994563.861], [626638.043, 6994132.235], [627921.275, 6989100.963], [629322.659, 6986801.369], [632099.484, 6984754.453], [634172.255, 6980882.975], [634502.372, 6979246.802], [635184.981, 6978446.526], [636008.236, 6977987.784], [635228.586, 6973970.859], [635493.168, 6973434.696], [638630.658, 6971477.507], [634981.925, 6966834.451], [630726.038, 6965153.04], [630638.569, 6963264.842], [631094.567, 6962141.542], [631044.539, 6961024.372], [631989.902, 6959407.688], [632074.247, 6958787.186], [632298.858, 6957416.605], [632146.536, 6957206.258], [631929.051, 6957093.322], [630728.495, 6956813.916], [630083.791, 6956951.127], [629877.651, 6956490.429], [629067.796, 6955964.978], [628190.237, 6955640.353], [626489.648, 6957082.457], [625846.497, 6957002.854], [624056.558, 6954854.105], [623274.51, 6953463.228], [622811.278, 6952316.302], [622119.558, 6952518.701], [621949.579, 6953219.442], [620193.552, 6954880.559], [620468.738, 6956328.359], [620045.575, 6956577.095], [618781.253, 6955723.239], [617807.354, 6956270.871], [615127.723, 6960961.656], [614242.961, 6961409.797], [614469.029, 6964953.624], [613322.614, 6965114.11], [613269.014, 6965321.953], [612907.976, 6965357.448], [612703.676, 6965775.848], [612337.745, 6966227.28], [611506.794, 6966767.165], [611712.795, 6967114.442], [611624.14, 6967456.107], [611242.115, 6968056.091], [610655.164, 6968000.572], [610237.248, 6968454.052], [608841.269, 6968801.17], [608524.136, 6969112.01], [608671.061, 6969436.506], [608218.729, 6969406.035], [607994.881, 6969804.939], [607602.893, 6970014.792], [607472.449, 6970416.027], [607236.635, 6970449.015], [606795.79, 6970125.15], [606486.574, 6970599.583], [606127.63, 6970652.673], [605620.118, 6971268.911], [605263.127, 6971277.462], [604572.325, 6971984.091], [604178.073, 6971666.939], [603328.504, 6972761.958], [602254.595, 6973094.307], [602052.51, 6973516.023], [602386.277, 6973823.38], [602339.378, 6974126.681], [601727.993, 6973823.995], [601118.559, 6975606.52], [600489.358, 6975959.837], [600096.102, 6976221.818], [599725.925, 6976782.691], [599939.743, 6977092.184], [599351.976, 6977236.85], [599035.585, 6977652.382], [598467.246, 6977705.912], [598006.633, 6979998.463], [598181.638, 6980303.522], [599687.828, 6978742.902], [600520.579, 6978666.383], [601327.515, 6979098.637], [600634.009, 6980300.484], [601148.464, 6980171.303], [601032.277, 6980708.389], [599592.72, 6981070.662], [600300.323, 6982130.271], [600004.69, 6982527.134], [600817.084, 6983041.679], [601134.211, 6982304.263], [601288.074, 6982379.281], [600951.146, 6983125.651], [604769.267, 6985511.617], [604624.085, 6985773.066], [605637.717, 6985726.488], [607026.019, 6985841.516], [607783.378, 6986258.266], [608711.035, 6990737.317], [611891.656, 6990932.259], [612388.808, 6992306.864], [619031.009, 6993841.465], [619052.983, 6993850.254], [621496.392, 6996036.646], [621052.54, 6997796.322], [620521.433, 6999021.558], [620565.755, 7000040.474], [621080.331, 6999007.407]]]}}, {\\\"id\\\": \\\"180\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"J\\\\u00e4ms\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 35.8, \\\"freshwarea\\\": 252.54, \\\"gml_id\\\": 1601100309, \\\"landarea\\\": 1571.37, \\\"namefin\\\": \\\"J\\\\u00e4ms\\\\u00e4\\\", \\\"nameswe\\\": \\\"J\\\\u00e4ms\\\\u00e4\\\", \\\"natcode\\\": \\\"182\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1823.91}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[395730.728, 6898415.349], [396010.882, 6897891.474], [398043.378, 6896369.994], [401979.077, 6893850.477], [404424.189, 6893635.064], [410640.455, 6892336.108], [412069.554, 6889046.478], [413774.843, 6887509.407], [411880.006, 6885159.272], [412079.128, 6884456.367], [410260.493, 6883246.743], [409056.613, 6880785.675], [413002.761, 6879965.501], [413084.312, 6878494.804], [413278.784, 6877115.65], [414710.242, 6875916.537], [412190.427, 6873946.347], [412486.324, 6872868.617], [412923.533, 6873028.821], [413286.181, 6872470.176], [413064.502, 6871883.508], [412624.076, 6871316.065], [413003.027, 6871218.571], [412690.358, 6869821.359], [413496.032, 6869295.766], [414304.909, 6870324.203], [416362.732, 6868120.58], [416447.796, 6867378.77], [417310.945, 6867505.68], [417552.668, 6867216.917], [418250.703, 6867525.678], [418420.896, 6865901.62], [426101.449, 6857100.673], [424333.889, 6851895.564], [422729.752, 6850493.619], [416178.333, 6847939.183], [415296.408, 6846800.896], [415886.186, 6846288.651], [415096.055, 6844360.878], [413979.945, 6843292.71], [413202.984, 6844044.747], [410283.619, 6844794.272], [408328.954, 6844931.096], [408521.34, 6846079.435], [408300.149, 6846351.928], [407845.748, 6846003.235], [407269.7, 6845117.57], [406764.975, 6844964.332], [405897.511, 6846140.972], [405229.428, 6845884.996], [404379.54, 6845367.213], [403839.581, 6846139.968], [403584.889, 6846272.445], [403028.676, 6846334.808], [402296.075, 6846500.266], [393433.93, 6852102.657], [392429.615, 6851381.322], [392467.486, 6850973.606], [393915.266, 6849316.118], [393349.722, 6848921.249], [394056.642, 6846687.29], [394520.626, 6845861.52], [393183.375, 6844853.733], [392603.636, 6845128.092], [392165.456, 6845608.666], [392534.026, 6846222.143], [392240.985, 6846578.649], [392620.216, 6847430.599], [392079.423, 6848643.274], [391440.088, 6848167.935], [391460.496, 6847902.346], [391745.862, 6847355.115], [391546.977, 6846627.971], [391398.563, 6846664.843], [390408.539, 6844728.99], [390276.024, 6844258.033], [389676.252, 6843251.025], [389835.419, 6843044.1], [389822.98, 6842774.463], [390115.536, 6841794.707], [390513.484, 6840821.116], [391138.196, 6840261.891], [391853.414, 6839278.17], [392203.595, 6838191.197], [392226.042, 6837809.869], [391738.438, 6837171.846], [392025.823, 6836723.259], [391446.233, 6836524.81], [391322.585, 6835905.029], [391889.348, 6834729.064], [389654.585, 6834836.836], [389221.624, 6835465.877], [388128.706, 6836701.796], [387458.779, 6836423.942], [385803.027, 6836985.17], [385414.913, 6837358.348], [385252.909, 6837100.608], [384986.645, 6837218.87], [384140.798, 6838254.77], [386462.799, 6839646.979], [383161.904, 6841673.594], [381842.331, 6840101.339], [381642.055, 6840863.234], [380243.861, 6842149.361], [381011.804, 6844948.99], [380939.607, 6846032.347], [379755.73, 6849931.582], [379980.076, 6851710.509], [380522.212, 6851511.834], [380818.367, 6851848.573], [381321.296, 6851964.929], [381511.688, 6852455.645], [381825.574, 6851968.569], [381289.288, 6851299.764], [382358.688, 6850465.759], [382559.985, 6849943.952], [383004.145, 6849310.302], [384662.458, 6848746.62], [384426.55, 6849862.895], [384917.781, 6850087.053], [385011.119, 6850500.343], [383990.209, 6852035.97], [383859.806, 6852653.279], [383528.516, 6852284.265], [383055.066, 6852946.141], [382491.742, 6853187.425], [382712.999, 6853535.899], [382603.601, 6854078.72], [380386.067, 6855472.741], [379826.847, 6856516.502], [377255.891, 6861121.622], [374551.642, 6863913.868], [372848.11, 6865017.808], [371431.611, 6866831.23], [369984.957, 6866558.109], [371052.307, 6869333.994], [370958.477, 6869788.211], [371018.369, 6870175.709], [371935.277, 6869930.722], [371971.745, 6870241.597], [371593.385, 6870608.442], [371945.79, 6870705.723], [371925.457, 6871183.601], [373248.856, 6871152.844], [374214.18, 6872285.809], [375397.616, 6875632.581], [376244.924, 6876305.022], [377140.199, 6875804.333], [377334.841, 6876223.901], [377805.496, 6876213.731], [378158.968, 6876592.019], [378854.957, 6876669.718], [381259.133, 6878840.604], [389079.739, 6882556.808], [386726.012, 6888613.35], [392183.079, 6897094.918], [394359.983, 6899320.787], [395730.728, 6898415.349]]]}}, {\\\"id\\\": \\\"181\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kauhajoki\\\", \\\"elakelaisten_osuus\\\": 32.1, \\\"freshwarea\\\": 16.56, \\\"gml_id\\\": 1601100389, \\\"landarea\\\": 1298.99, \\\"namefin\\\": \\\"Kauhajoki\\\", \\\"nameswe\\\": \\\"Kauhajoki\\\", \\\"natcode\\\": \\\"232\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1315.55}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[257874.983, 6942264.318], [258004.196, 6941327.835], [261622.516, 6939251.2], [261265.588, 6937625.421], [264563.584, 6936221.167], [267514.489, 6935613.142], [270362.463, 6934041.164], [272250.402, 6934073.154], [272533.534, 6932644.813], [273044.524, 6931083.535], [274944.779, 6927638.634], [274194.45, 6922133.353], [275076.657, 6918996.374], [275342.546, 6917080.388], [273716.601, 6915336.617], [271593.882, 6916626.569], [267970.149, 6906871.158], [267361.558, 6906568.563], [267649.982, 6906300.152], [267352.98, 6905639.789], [266365.824, 6906075.511], [263397.842, 6904604.612], [258966.185, 6898659.253], [255859.251, 6894485.423], [249539.259, 6894974.367], [248728.146, 6900520.771], [237858.422, 6912305.976], [237376.971, 6913468.796], [234319.031, 6920908.979], [235006.972, 6924928.098], [235016.563, 6924992.6], [234990.134, 6925005.508], [239715.333, 6932820.597], [239831.676, 6932789.264], [239892.18, 6932893.044], [239776.246, 6932924.438], [241583.005, 6936113.178], [242514.416, 6939057.935], [242963.583, 6941228.611], [242684.019, 6941983.918], [243305.093, 6942518.149], [243511.582, 6943420.761], [243416.103, 6943899.506], [243160.9, 6943994.731], [243465.62, 6944318.495], [243271.361, 6944767.957], [243511.328, 6944844.137], [243667.482, 6944783.995], [243600.856, 6943919.121], [245092.32, 6944296.194], [249401.104, 6942366.118], [250323.226, 6944948.534], [257874.983, 6942264.318]]]}}, {\\\"id\\\": \\\"182\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Forssa\\\", \\\"elakelaisten_osuus\\\": 35.3, \\\"freshwarea\\\": 4.62, \\\"gml_id\\\": 1601100092, \\\"landarea\\\": 248.76, \\\"namefin\\\": \\\"Forssa\\\", \\\"nameswe\\\": \\\"Forssa\\\", \\\"natcode\\\": \\\"061\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 253.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[323623.191, 6767593.425], [323464.302, 6766308.588], [325149.65, 6766777.448], [325640.862, 6766626.104], [326103.046, 6765809.67], [326640.495, 6765809.765], [328776.641, 6760201.18], [327839.403, 6759242.022], [324795.257, 6759863.202], [324225.629, 6760248.96], [321616.061, 6756342.76], [321563.738, 6756010.612], [322045.173, 6755113.438], [320961.202, 6753927.426], [319650.688, 6754252.184], [318038.833, 6753668.194], [318950.253, 6752766.631], [319188.329, 6749521.841], [319279.727, 6748354.244], [319090.155, 6747573.124], [320793.508, 6747122.596], [320586.47, 6745606.739], [320040.311, 6745877.646], [319757.257, 6745427.455], [319166.12, 6745693.749], [318978.582, 6745180.187], [317633.395, 6743422.372], [316771.415, 6742928.94], [312251.77, 6744213.355], [312732.664, 6745235.705], [312784.352, 6745682.043], [312589.48, 6747430.802], [312614.635, 6748578.157], [313269.812, 6748856.701], [312586.106, 6751459.035], [312385.039, 6753536.521], [312814.51, 6754369.968], [313174.818, 6755861.675], [313075.059, 6757449.897], [312868.972, 6759376.302], [312561.453, 6759593.617], [312226.016, 6759534.162], [312024.126, 6759720.603], [311971.848, 6760135.856], [311691.769, 6760438.98], [311571.388, 6760969.473], [311087.9, 6761201.951], [310864.292, 6761550.988], [310490.703, 6762013.978], [310430.167, 6762583.996], [310027.442, 6762827.879], [310040.429, 6763202.982], [309926.83, 6763394.981], [309143.035, 6763855.071], [308494.589, 6764536.373], [308664.845, 6765124.966], [308663.125, 6765553.47], [308118.064, 6765933.473], [308185.517, 6766112.178], [308843.904, 6766045.3], [308931.534, 6766582.699], [309571.537, 6766804.612], [310685.698, 6766815.134], [311306.574, 6767093.892], [312361.052, 6766349.073], [313118.669, 6767173.548], [313714.463, 6767605.181], [314249.7, 6767212.284], [314357.692, 6767768.106], [315466.184, 6767123.128], [315186.96, 6766538.714], [314813.135, 6766905.599], [314632.612, 6766585.963], [315314.119, 6765828.433], [315842.017, 6766446.611], [316552.947, 6766575.294], [317182.141, 6767787.183], [317641.113, 6767523.765], [317843.978, 6767913.684], [318869.276, 6767549.556], [319459.11, 6767591.492], [319687.984, 6768020.357], [320781.262, 6767652.203], [321322.677, 6767946.127], [322286.219, 6768255.124], [323623.191, 6767593.425]]]}}, {\\\"id\\\": \\\"183\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"\\\\u00c4\\\\u00e4nekoski\\\", \\\"elakelaisten_osuus\\\": 32.2, \\\"freshwarea\\\": 253.81, \\\"gml_id\\\": 1601100606, \\\"landarea\\\": 884.57, \\\"namefin\\\": \\\"\\\\u00c4\\\\u00e4nekoski\\\", \\\"nameswe\\\": \\\"\\\\u00c4\\\\u00e4nekoski\\\", \\\"natcode\\\": \\\"992\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1138.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[439107.707, 6975602.753], [442263.692, 6972930.905], [442581.466, 6972919.265], [443662.778, 6973389.073], [444851.02, 6973316.388], [446311.254, 6972608.846], [448488.097, 6971321.671], [450350.963, 6975273.333], [450775.791, 6974798.016], [451066.899, 6974603.474], [451491.412, 6973997.033], [451920.673, 6973890.174], [452626.858, 6973610.366], [457542.012, 6971661.854], [458719.053, 6970465.058], [458392.429, 6969880.409], [457013.971, 6968961.99], [456811.171, 6968809.34], [453848.006, 6967979.933], [450310.043, 6966508.131], [450806.678, 6964549.138], [451115.313, 6964142.152], [451164.781, 6963567.752], [451335.251, 6963117.425], [451737.207, 6962433.42], [452160.903, 6961894.71], [452365.219, 6961319.414], [452768.681, 6960853.181], [453321.693, 6960613.372], [454031.123, 6960701.89], [454519.175, 6960232.356], [454985.547, 6960096.641], [455815.178, 6959175.019], [456195.899, 6958039.915], [455809.048, 6953731.546], [457047.041, 6951136.807], [460762.497, 6949987.9], [456448.486, 6947529.827], [455772.408, 6944342.346], [454337.693, 6941963.477], [450476.004, 6939564.802], [445216.633, 6933094.676], [445077.706, 6933088.375], [442627.086, 6934814.064], [439670.735, 6935452.677], [439566.824, 6935255.567], [439931.88, 6934668.706], [440458.289, 6934406.695], [440598.415, 6934201.245], [440549.991, 6933710.778], [440306.457, 6933602.6], [440519.418, 6933115.059], [440218.794, 6932844.93], [440001.298, 6932913.64], [439606.707, 6932499.412], [439254.466, 6932289.51], [438445.782, 6931438.828], [438075.656, 6931958.391], [434562.321, 6930697.343], [434429.856, 6929372.413], [434144.671, 6929440.384], [433727.949, 6928362.717], [432665.479, 6928507.952], [432762.406, 6929615.249], [432443.75, 6930803.022], [432560.366, 6931044.716], [432461.229, 6932096.583], [431351.881, 6932181.757], [431291.6, 6932922.657], [432378.461, 6932704.352], [432174.329, 6934467.438], [429617.969, 6934094.872], [429393.938, 6936732.004], [425104.742, 6937066.692], [423853.693, 6935808.742], [422021.596, 6936040.476], [421844.458, 6941083.023], [424107.164, 6942473.565], [424089.135, 6942758.424], [423342.021, 6944465.825], [421856.345, 6945963.448], [421755.834, 6946316.579], [423152.835, 6951521.856], [422908.889, 6955970.967], [423542.433, 6955876.485], [423455.665, 6956692.304], [432357.33, 6959154.223], [433491.844, 6962014.069], [433017.863, 6963474.55], [431134.569, 6965481.942], [429353.062, 6969293.785], [427279.716, 6970716.39], [432182.868, 6975105.771], [434367.042, 6977417.745], [439107.707, 6975602.753]]]}}, {\\\"id\\\": \\\"184\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Geta\\\", \\\"elakelaisten_osuus\\\": 23.9, \\\"freshwarea\\\": 2.92, \\\"gml_id\\\": 1601100101, \\\"landarea\\\": 84.5500000000001, \\\"namefin\\\": \\\"Geta\\\", \\\"nameswe\\\": \\\"Geta\\\", \\\"natcode\\\": \\\"065\\\", \\\"seawarea\\\": 518.18, \\\"totalarea\\\": 605.65}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[98781.919, 6709867.93], [99298.719, 6709236.539], [98534.684, 6707996.855], [97744.937, 6708702.591], [97291.148, 6708624.175], [96771.483, 6708143.966], [95979.303, 6709749.158], [96921.617, 6709993.462], [97401.693, 6710409.03], [97468.908, 6710674.947], [97932.603, 6710585.857], [98622.442, 6710941.343], [98781.919, 6709867.93]]], [[[109256.595, 6723254.537], [113277.995, 6720056.424], [114676.301, 6718570.434], [112904.358, 6717129.398], [112946.181, 6716023.974], [112541.416, 6715516.664], [112609.121, 6715281.607], [111541.877, 6714393.608], [111529.815, 6714149.452], [111431.387, 6713312.456], [110954.183, 6712795.864], [110185.579, 6712509.434], [109065.23, 6712172.588], [108460.597, 6712346.811], [108188.771, 6711887.86], [108154.22, 6711265.533], [107935.808, 6710861.732], [108025.875, 6710533.417], [107589.64, 6709342.62], [106747.393, 6708916.679], [105874.208, 6708903.802], [105303.311, 6708398.681], [104458.618, 6708840.398], [103798.033, 6709325.939], [103471.305, 6709256.637], [101302.112, 6710596.97], [100239.99, 6711728.863], [98760.077, 6712268.169], [97541.568, 6711267.949], [97541.477, 6711267.874], [97515.21, 6712535.632], [98506.551, 6712886.023], [98890.413, 6714262.955], [99256.564, 6715115.484], [99255.609, 6715117.836], [99452.09, 6717575.173], [99451.828, 6717578.607], [99429.953, 6717865.373], [99429.869, 6717866.463], [99174.988, 6719054.675], [99045.613, 6719238.081], [98498.918, 6720318.464], [97442.838, 6721018.08], [89255.764, 6749132.339], [93385.028, 6750383.751], [94006.701, 6750562.372], [94633.252, 6750722.81], [95264.301, 6750864.955], [95899.148, 6750988.707], [96537.295, 6751093.967], [97178.241, 6751180.634], [97821.486, 6751248.708], [98444.649, 6751296.691], [107440.164, 6751862.314], [109256.595, 6723254.537]], [[102712.168, 6721478.264], [102259.084, 6721227.7], [101800.073, 6721160.664], [101328.556, 6721272.043], [101215.968, 6722676.021], [101172.986, 6723192.736], [102421.024, 6723514.835], [102712.168, 6721478.264]]]]}}, {\\\"id\\\": \\\"185\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Eura\\\", \\\"elakelaisten_osuus\\\": 31.8, \\\"freshwarea\\\": 51.4, \\\"gml_id\\\": 1601100070, \\\"landarea\\\": 578.8, \\\"namefin\\\": \\\"Eura\\\", \\\"nameswe\\\": \\\"Eura\\\", \\\"natcode\\\": \\\"050\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 630.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[228415.784, 6806848.099], [229000.519, 6806634.365], [229242.546, 6806718.259], [229400.257, 6805801.004], [229967.165, 6806350.075], [230387.858, 6806216.264], [230405.554, 6805778.096], [231264.332, 6805889.148], [232204.822, 6805676.003], [232817.34, 6805578.279], [233394.317, 6805753.473], [234311.88, 6803114.678], [235290.058, 6802798.909], [235989.293, 6802827.588], [236238.88, 6803287.985], [238966.13, 6802053.866], [240709.941, 6801260.276], [241334.386, 6800405.003], [240490.58, 6797259.324], [239160.084, 6796013.57], [239679.014, 6795623.427], [239844.503, 6795212.964], [239703.374, 6794772.793], [243026.081, 6790770.652], [243236.926, 6787345.638], [242335.755, 6786050.969], [243522.321, 6784329.754], [243379.886, 6784226.958], [241864.449, 6783096.237], [243149.982, 6768481.585], [241789.4, 6766421.928], [243395.267, 6763918.679], [242161.355, 6763667.92], [241410.974, 6763182.519], [239132.529, 6761341.812], [240679.382, 6760583.736], [240420.954, 6760189.153], [239108.513, 6760946.922], [237974.134, 6758761.085], [237353.515, 6758229.25], [235893.98, 6761936.978], [229548.463, 6762051.225], [229322.05, 6761676.042], [228946.623, 6761950.006], [228775.427, 6761697.008], [228110.673, 6762167.036], [228833.851, 6763402.797], [226279.671, 6767397.541], [226929.748, 6770748.484], [225561.264, 6770766.964], [224395.722, 6771976.606], [223636.952, 6771499.654], [222966.427, 6771709.856], [222381.743, 6773283.02], [221421.513, 6774809.228], [223175.84, 6775316.248], [225582.093, 6775158.278], [226437.18, 6775421.918], [227004.413, 6775880.873], [227520.87, 6775127.111], [228150.741, 6775320.997], [228415.246, 6775145.786], [228930.647, 6775309.803], [229097.574, 6776079.319], [229531.834, 6776633.73], [230038.471, 6776721.823], [230754.905, 6776416.962], [231174.617, 6776392.55], [233925.762, 6777536.029], [233892.529, 6777841.179], [233102.792, 6781832.366], [231957.071, 6782911.068], [229966.938, 6782661.15], [228052.399, 6784450.895], [225591.522, 6786429.559], [225049.416, 6788110.869], [223873.007, 6789854.999], [225586.3, 6791762.741], [226943.719, 6791808.203], [228320.316, 6792513.998], [228311.619, 6794665.851], [226187.815, 6798146.308], [225828.691, 6799167.506], [225238.036, 6799992.913], [226039.015, 6802920.209], [227362.612, 6804975.66], [225662.856, 6806606.062], [226487.056, 6807892.814], [228415.784, 6806848.099]]]}}, {\\\"id\\\": \\\"186\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Simo\\\", \\\"elakelaisten_osuus\\\": 39.2, \\\"freshwarea\\\": 19.98, \\\"gml_id\\\": 1601100529, \\\"landarea\\\": 1447.34, \\\"namefin\\\": \\\"Simo\\\", \\\"nameswe\\\": \\\"Simo\\\", \\\"natcode\\\": \\\"751\\\", \\\"seawarea\\\": 618.96, \\\"totalarea\\\": 2086.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[444094.817, 7330386.502], [447684.232, 7322077.929], [439885.681, 7308498.831], [443891.274, 7303881.635], [445907.067, 7303082.864], [445772.234, 7302744.646], [444676.039, 7302974.713], [451429.652, 7295129.029], [444538.768, 7291543.363], [427779.649, 7292121.84], [424782.152, 7290505.51], [422247.895, 7285846.901], [418662.272, 7284085.111], [417081.14, 7282367.373], [416709.711, 7282704.962], [416237.483, 7282185.395], [416607.922, 7281848.708], [415427.335, 7280561.571], [413803.717, 7277425.091], [412128.027, 7275809.87], [411715.851, 7275474.38], [388320.874, 7252065.826], [367320.513, 7244045.46], [367343.815, 7249044.486], [382862.563, 7261658.231], [392279.663, 7283657.013], [393569.713, 7283988.54], [396561.004, 7287772.167], [398844.171, 7290544.441], [398750.883, 7290617.015], [398865.122, 7290756.048], [398956.845, 7290681.867], [399673.008, 7291548.939], [399581.255, 7291628.236], [399978.762, 7292108.619], [400066.703, 7292035.479], [400758.967, 7292919.496], [400334.855, 7293312.843], [400439.839, 7294076.89], [401022.911, 7293415.508], [401818.058, 7294909.912], [404373.698, 7293467.402], [404271.915, 7293984.094], [404148.778, 7294174.255], [403837.465, 7294320.991], [404107.969, 7294446.44], [404332.775, 7294505.948], [404405.505, 7294777.038], [404282.674, 7295056.35], [404623.697, 7295299.383], [404899.381, 7295065.933], [405627.75, 7295280.362], [405403.46, 7295615.224], [404917.912, 7295425.042], [404493.459, 7295651.417], [405378.828, 7297259.57], [404840.651, 7297552.88], [407079.546, 7301988.165], [415850.194, 7309875.449], [416302.029, 7309513.811], [416850.386, 7310190.377], [416468.877, 7310433.802], [419297.567, 7312996.177], [418873.192, 7316128.82], [419356.794, 7316762.731], [429881.546, 7330576.368], [431380.098, 7331622.223], [432074.729, 7330901.278], [433965.291, 7332207.887], [433392.263, 7333030.11], [434263.655, 7333629.767], [444094.817, 7330386.502]]]}}, {\\\"id\\\": \\\"187\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Juva\\\", \\\"elakelaisten_osuus\\\": 39.5, \\\"freshwarea\\\": 182.51, \\\"gml_id\\\": 1601100301, \\\"landarea\\\": 1163.18, \\\"namefin\\\": \\\"Juva\\\", \\\"nameswe\\\": \\\"Juva\\\", \\\"natcode\\\": \\\"178\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1345.69}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[522127.447, 6879903.222], [524267.194, 6878149.183], [524837.623, 6878180.209], [524710.524, 6877813.879], [525775.484, 6877849.715], [525502.1, 6878229.336], [527737.45, 6878400.91], [527966.292, 6878081.162], [527115.369, 6877429.164], [527296.324, 6877172.123], [528182.318, 6877853.158], [528494.356, 6877489.236], [528833.372, 6877650.513], [528262.195, 6878443.401], [530850.955, 6878630.835], [531437.221, 6877619.727], [532776.01, 6877775.159], [533478.532, 6878271.445], [534175.036, 6877445.242], [534937.549, 6876940.414], [535043.715, 6876740.861], [536645.735, 6875330.708], [539018.986, 6874787.344], [539506.694, 6874273.455], [539658.552, 6874757.177], [540266.215, 6874603.801], [541582.97, 6873070.756], [543752.579, 6875095.752], [544568.842, 6876069.964], [545654.414, 6875206.721], [546349.138, 6874780.198], [546659.342, 6875202.249], [546895.516, 6875002.412], [546562.347, 6874609.577], [547348.142, 6873981.626], [547610.234, 6874297.6], [549283.866, 6873264.026], [549682.102, 6873653.972], [550017.371, 6873177.965], [549372.556, 6872396.482], [550187.999, 6872395.371], [551255.48, 6871832.514], [551836.204, 6871972.526], [552215.086, 6871557.022], [553256.664, 6871650.592], [554457.888, 6869925.991], [555794.246, 6869436.732], [555795.344, 6869435.942], [556902.745, 6868619.87], [557700.808, 6868365.315], [558418.668, 6868901.336], [558815.413, 6869375.124], [557896.683, 6869983.877], [557780.027, 6870460.784], [558174.015, 6870818.567], [558515.7, 6871470.773], [559344.14, 6872164.633], [560240.911, 6871897.911], [560416.643, 6872093.845], [561098.513, 6871621.745], [562009.79, 6871747.477], [562687.72, 6871059.157], [562911.855, 6870609.116], [563480.825, 6870669.564], [564394.436, 6870076.615], [563926.448, 6869190.52], [564115.078, 6867829.082], [563273.618, 6868427.093], [562706.237, 6868664.829], [562342.786, 6868356.651], [562494.728, 6868053.075], [562040.019, 6867280.985], [562387.986, 6866543.087], [562144.988, 6866146.946], [562103.712, 6865425.239], [561714.848, 6864720.916], [560752.952, 6865824.964], [559376.824, 6864280.18], [559217.998, 6863384.284], [558883.363, 6863811.232], [557890.322, 6863521.861], [558146.745, 6863303.456], [557239.91, 6861880.163], [558983.33, 6861381.357], [559306.371, 6860979.257], [559845.594, 6860703.252], [560309.702, 6860663.442], [561269.208, 6859660.771], [560656.158, 6859291.216], [560000.323, 6859268.519], [559890.398, 6858897.881], [559857.4, 6857389.78], [558035.749, 6855869.58], [557926.606, 6853751.392], [558320.907, 6853327.722], [558764.882, 6853231.858], [559250.541, 6852904.492], [562702.54, 6848352.274], [562232.834, 6847583.28], [561848.706, 6847417.505], [561892.281, 6846172.548], [562054.852, 6845748.76], [561829.523, 6845545.834], [561231.398, 6845944.544], [560817.9, 6846282.046], [560767.073, 6846806.574], [560399.755, 6847282.784], [558079.618, 6846251.081], [558558.23, 6845554.467], [559074.33, 6844394.542], [559411.896, 6843999.105], [559764.653, 6844169.439], [560325.53, 6843743.916], [560862.412, 6843935.044], [561799.234, 6843996.228], [562166.891, 6843209.649], [560549.559, 6840531.599], [560120.834, 6840431.252], [559831.243, 6840126.556], [560009.382, 6839858.582], [559561.265, 6839370.473], [559619.666, 6839018.669], [559047.178, 6838717.782], [559518.216, 6837695.486], [558834.374, 6836484.625], [560037.295, 6835622.786], [559510.672, 6833435.284], [559730.969, 6833093.369], [559415.165, 6832239.94], [558694.138, 6831920.741], [557376.775, 6834058.688], [557108.315, 6833907.871], [556832.179, 6833296.574], [556314.73, 6833158.305], [555733.04, 6833864.059], [555081.932, 6834041.308], [555374.953, 6835246.307], [555061.791, 6835415.314], [554542.689, 6836006.91], [554201.345, 6835847.249], [552778.52, 6835749.281], [551947.353, 6836243.877], [551392.101, 6836202.72], [551253.103, 6833932.268], [552525.079, 6832188.314], [552723.774, 6830648.96], [551427.064, 6830511.306], [550011.175, 6829633.64], [549812.071, 6827209.22], [550151.115, 6825615.624], [549856.115, 6824725.14], [547859.379, 6823891.352], [547531.038, 6825415.33], [546851.168, 6826789.874], [546276.197, 6827343.747], [546267.197, 6827859.838], [545961.618, 6828261.175], [546398.533, 6829607.932], [546201.507, 6830547.851], [546521.076, 6830764.365], [546411.915, 6831635.012], [546159.204, 6832206.839], [545181.588, 6833077.806], [545358.225, 6833390.561], [546447.371, 6833601.8], [546609.719, 6834192.679], [546490.862, 6834961.367], [546460.769, 6835848.308], [543924.373, 6837922.796], [543635.495, 6837939.048], [543646.078, 6838550.639], [542838.406, 6839615.065], [540791.237, 6838888.733], [540471.463, 6839192.624], [538622.804, 6839940.311], [538819.223, 6840203.506], [538475.358, 6840721.394], [537408.186, 6841046.557], [536981.785, 6841562.29], [536354.018, 6841313.246], [535327.823, 6841404.158], [534405.459, 6840748.452], [533730.407, 6841531.138], [533323.564, 6842390.295], [533294.886, 6842802.131], [533031.788, 6843100.553], [531814.526, 6843555.512], [531351.606, 6844529.416], [530899.232, 6845219.976], [530946.209, 6845785.413], [530113.662, 6846765.81], [529127.456, 6846974.777], [528540.621, 6847863.152], [529145.368, 6849010.091], [529153.462, 6849385.839], [528478.024, 6850931.81], [527692.141, 6851124.328], [525981.894, 6853627.995], [525705.827, 6853738.36], [525242.501, 6855837.707], [524738.403, 6856186.862], [524067.171, 6856866.683], [523759.889, 6857636.47], [523186.12, 6858051.998], [522802.566, 6859173.242], [522075.338, 6861948.814], [522579.014, 6863890.232], [523136.58, 6864646.831], [522597.492, 6865496.683], [524684.224, 6867326.26], [522074.665, 6869903.199], [521656.431, 6870459.271], [521409.024, 6871258.946], [520597.747, 6872217.053], [520552.042, 6874895.344], [520577.627, 6877408.432], [519814.838, 6878060.522], [520373.644, 6878434.95], [519407.856, 6880521.488], [521102.675, 6881517.856], [522127.447, 6879903.222]]]}}, {\\\"id\\\": \\\"188\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ecker\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 26.1, \\\"freshwarea\\\": 1.46, \\\"gml_id\\\": 1601100060, \\\"landarea\\\": 107.72, \\\"namefin\\\": \\\"Ecker\\\\u00f6\\\", \\\"nameswe\\\": \\\"Ecker\\\\u00f6\\\", \\\"natcode\\\": \\\"043\\\", \\\"seawarea\\\": 643.49, \\\"totalarea\\\": 752.67}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[82008.282, 6723672.551], [90259.114, 6718352.615], [93585.731, 6717887.263], [95033.121, 6715842.384], [95235.616, 6713868.975], [93788.885, 6712042.118], [93035.798, 6710891.118], [93911.437, 6709800.328], [93733.514, 6709122.724], [93355.411, 6708463.322], [93438.553, 6707832.178], [93583.134, 6707584.03], [92854.539, 6707083.669], [92508.364, 6706547.46], [92816.435, 6705790.166], [93155.706, 6704632.264], [93726.539, 6704616.734], [94266.922, 6703176.477], [94164.171, 6702356.349], [93852.158, 6701794.185], [93590.629, 6701490.806], [93505.632, 6700781.29], [93748.214, 6700234.962], [94279.228, 6699973.874], [94993.499, 6699371.516], [94664.572, 6698877.268], [94745.045, 6697469.378], [94876.082, 6697024.16], [94858.211, 6695850.928], [94470.465, 6695430.531], [94284.098, 6694924.571], [94527.585, 6694459.538], [94150.571, 6694283.447], [93885.433, 6693325.265], [93416.893, 6692182.381], [93412.789, 6690836.509], [92644.554, 6690008.785], [89134.548, 6689568.716], [89039.646, 6687535.706], [72884.215, 6679017.315], [69127.278, 6685754.306], [75712.828, 6689167.087], [83521.387, 6693605.895], [83166.492, 6697972.381], [80181.728, 6699153.428], [83390.452, 6704564.518], [76918.718, 6710048.243], [68416.736, 6718890.031], [74774.854, 6744728.818], [82008.282, 6723672.551]], [[85515.452, 6711413.438], [80644.32, 6710966.426], [79484.308, 6712455.886], [80994.169, 6715620.987], [85515.452, 6711413.438]]]}}, {\\\"id\\\": \\\"189\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rusko\\\", \\\"elakelaisten_osuus\\\": 22.0, \\\"freshwarea\\\": 0.75, \\\"gml_id\\\": 1601100450, \\\"landarea\\\": 127.15, \\\"namefin\\\": \\\"Rusko\\\", \\\"nameswe\\\": \\\"Rusko\\\", \\\"natcode\\\": \\\"704\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 127.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[248104.726, 6731563.523], [247772.946, 6731373.64], [248030.263, 6731020.237], [247806.495, 6730482.339], [246938.099, 6729125.065], [246270.765, 6728419.956], [244013.124, 6726471.69], [242636.725, 6724182.534], [242019.815, 6721658.12], [241582.428, 6720831.328], [241438.801, 6720231.044], [240966.093, 6719689.578], [240176.902, 6718406.035], [239865.075, 6718991.8], [239720.651, 6718819.753], [239844.47, 6718435.527], [239613.159, 6718301.412], [239225.506, 6718845.252], [238266.697, 6719326.242], [237832.263, 6719201.024], [238887.308, 6718239.33], [238408.189, 6717771.664], [238650.348, 6717524.717], [239031.602, 6717088.129], [236626.841, 6717432.035], [236275.907, 6717589.017], [236249.119, 6717856.375], [236436.744, 6718228.914], [235644.148, 6718838.122], [235463.543, 6719123.509], [233641.175, 6720243.662], [233684.64, 6720534.296], [234218.548, 6721263.963], [234532.975, 6721474.227], [235824.324, 6723135.847], [235695.126, 6723266.63], [236088.898, 6724075.872], [236527.634, 6723919.15], [236874.82, 6724725.158], [237288.056, 6724956.928], [237754.212, 6725583.851], [237793.53, 6726147.712], [238006.628, 6726547.95], [238151.842, 6727052.079], [237783.639, 6727106.648], [237803.37, 6727309.803], [238008.588, 6727654.564], [238460.544, 6727496.997], [238774.137, 6727937.422], [240069.201, 6727591.834], [240321.02, 6728553.248], [240523.909, 6729091.549], [240025.605, 6729592.455], [240272.815, 6730177.28], [240196.172, 6730674.522], [240351.618, 6730843.366], [240831.138, 6730949.16], [240143.44, 6731614.483], [240716.944, 6732538.198], [241278.359, 6732400.636], [241381.368, 6733164.504], [241986.525, 6733234.96], [242453.511, 6734160.255], [243709.331, 6735398.724], [244908.882, 6736272.14], [247230.068, 6738232.614], [250110.717, 6742255.941], [248104.726, 6731563.523]]]}}, {\\\"id\\\": \\\"190\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Toivakka\\\", \\\"elakelaisten_osuus\\\": 31.0, \\\"freshwarea\\\": 52.49, \\\"gml_id\\\": 1601100652, \\\"landarea\\\": 361.45, \\\"namefin\\\": \\\"Toivakka\\\", \\\"nameswe\\\": \\\"Toivakka\\\", \\\"natcode\\\": \\\"850\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 413.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[458109.985, 6899226.834], [461462.321, 6900285.834], [461463.623, 6899858.708], [460722.967, 6899367.678], [465203.294, 6898115.267], [464407.337, 6896701.058], [459342.968, 6887632.55], [465037.534, 6878458.625], [462967.907, 6879196.918], [460674.823, 6878620.133], [456232.756, 6878749.175], [453699.465, 6874116.315], [453501.9, 6874216.22], [452843.608, 6875721.35], [452408.784, 6875726.344], [451529.13, 6877465.633], [451574.109, 6877950.437], [450526.404, 6878262.592], [449942.616, 6878251.479], [449138.233, 6878556.988], [446454.094, 6878593.808], [446359.11, 6877377.815], [445334.515, 6874667.032], [445076.777, 6874341.848], [439124.156, 6879679.644], [435701.534, 6880259.189], [435607.855, 6881871.84], [437070.844, 6883996.996], [437094.213, 6885285.371], [437141.033, 6887403.681], [437618.514, 6889037.83], [438461.234, 6888941.842], [440149.758, 6889748.782], [440662.531, 6889559.686], [443223.249, 6884676.96], [445709.658, 6882931.776], [445059.694, 6886424.957], [444774.182, 6889891.05], [446758.548, 6893501.598], [450544.412, 6893508.118], [450487.338, 6894267.401], [449874.075, 6894584.578], [449346.385, 6895100.965], [449044.179, 6894698.866], [448585.193, 6895178.429], [448065.604, 6896087.884], [448596.979, 6896321.666], [448633.745, 6897156.442], [448877.044, 6897252.067], [449829.788, 6895223.019], [450467.029, 6894738.746], [452088.646, 6895557.833], [452117.548, 6895993.699], [454310.031, 6900162.943], [455003.944, 6900756.906], [458109.985, 6899226.834]]]}}, {\\\"id\\\": \\\"191\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Alavieska\\\", \\\"elakelaisten_osuus\\\": 28.7, \\\"freshwarea\\\": 1.55, \\\"gml_id\\\": 1601100041, \\\"landarea\\\": 251.47, \\\"namefin\\\": \\\"Alavieska\\\", \\\"nameswe\\\": \\\"Alavieska\\\", \\\"natcode\\\": \\\"009\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 253.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[371482.912, 7129662.964], [374214.283, 7127202.616], [378469.196, 7123750.398], [380556.177, 7121005.928], [382543.364, 7120022.976], [382899.505, 7119849.311], [379204.01, 7118108.854], [378800.67, 7118626.555], [378541.964, 7118471.702], [378778.654, 7117935.556], [376606.347, 7116905.318], [376724.254, 7116637.759], [375900.905, 7116053.18], [375687.348, 7116478.362], [374389.812, 7115874.108], [373991.129, 7116323.377], [373358.234, 7116446.164], [373119.497, 7115874.429], [372645.944, 7116054.774], [373204.44, 7115164.496], [372600.049, 7115148.911], [372546.393, 7111640.368], [371823.694, 7109246.416], [371446.804, 7109699.265], [371568.503, 7110509.77], [370658.604, 7110159.351], [371535.809, 7108197.54], [370424.741, 7104339.038], [370146.694, 7104619.325], [370048.178, 7105121.392], [369723.801, 7105170.862], [369702.708, 7105733.485], [369186.203, 7106356.035], [368581.321, 7106926.206], [368037.086, 7107424.825], [367961.824, 7108109.644], [367637.785, 7108316.084], [363058.018, 7115212.537], [363503.578, 7115551.147], [363214.512, 7116568.205], [362722.282, 7116441.369], [362528.098, 7116699.669], [362382.931, 7118796.172], [361856.494, 7119594.791], [361427.113, 7119664.574], [360962.992, 7121469.11], [361579.68, 7121568.82], [361127.642, 7122071.108], [361476.246, 7122259.226], [362444.482, 7122120.974], [362512.765, 7121930.389], [363080.798, 7121657.804], [363260.967, 7121832.587], [363521.47, 7121536.658], [363370.559, 7121298.809], [363770.412, 7120720.287], [367243.758, 7123247.233], [366866.709, 7123702.442], [365794.5, 7125301.078], [364294.474, 7127811.214], [365869.267, 7129393.919], [366381.56, 7128880.929], [366912.449, 7129240.785], [366449.594, 7129749.098], [366469.269, 7130195.844], [366016.144, 7130932.301], [367172.046, 7131298.761], [367540.977, 7132232.659], [368269.766, 7132592.902], [368791.01, 7133254.305], [371482.912, 7129662.964]]]}}, {\\\"id\\\": \\\"192\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sysm\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 46.6, \\\"freshwarea\\\": 269.88, \\\"gml_id\\\": 1601100565, \\\"landarea\\\": 666.3, \\\"namefin\\\": \\\"Sysm\\\\u00e4\\\", \\\"nameswe\\\": \\\"Sysm\\\\u00e4\\\", \\\"natcode\\\": \\\"781\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 936.18}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[453215.5, 6812136.771], [453336.713, 6811921.271], [453247.991, 6811429.358], [452184.327, 6811061.996], [452038.484, 6811573.688], [452164.429, 6812141.659], [452685.814, 6812510.614], [453215.5, 6812136.771]]], [[[430753.738, 6843031.205], [431375.998, 6842754.337], [432632.375, 6842637.08], [433841.088, 6841932.175], [434293.824, 6841348.939], [433814.903, 6841253.649], [433490.141, 6840569.122], [434977.032, 6839710.96], [435522.034, 6837703.694], [435743.157, 6835908.319], [438443.456, 6836047.588], [439693.949, 6835579.388], [440433.852, 6834975.937], [440818.199, 6834525.122], [440701.752, 6833813.908], [440342.606, 6832673.963], [438886.896, 6833195.54], [439342.653, 6827387.981], [440545.658, 6828110.702], [441526.362, 6827510.752], [443435.579, 6828265.266], [441360.24, 6826192.481], [444814.719, 6823663.43], [442688.067, 6821140.667], [440309.974, 6817889.24], [440553.329, 6817306.241], [441016.74, 6817057.748], [439992.459, 6816466.674], [439809.134, 6816606.016], [439418.594, 6816055.234], [440282.642, 6815549.749], [440534.485, 6814949.433], [441037.395, 6814180.192], [441292.909, 6813471.315], [441932.336, 6812894.956], [442709.864, 6811811.99], [445364.086, 6811204.568], [445870.579, 6811751.152], [447553.486, 6812614.62], [447722.128, 6813175.196], [449373.925, 6816396.362], [451199.614, 6813590.562], [451628.745, 6812567.081], [451539.09, 6811077.384], [452231.153, 6810837.122], [452504.201, 6810406.365], [452840.863, 6810469.943], [453530.279, 6811017.528], [454574.653, 6811018.937], [454687.908, 6810777.936], [456292.159, 6809970.679], [456543.46, 6809233.18], [454793.575, 6809043.14], [454767.088, 6808685.685], [455356.158, 6807001.873], [455822.769, 6806830.846], [454641.357, 6805644.715], [453444.335, 6807236.559], [451958.739, 6805403.185], [451370.175, 6805999.038], [450701.546, 6805783.018], [449593.152, 6806556.877], [449120.208, 6806189.002], [449309.307, 6805871.368], [448946.954, 6805652.153], [448705.652, 6805198.934], [447837.402, 6805407.24], [447291.223, 6805063.374], [446306.622, 6805064.562], [445620.202, 6804628.63], [444145.947, 6804342.042], [443543.431, 6803688.501], [443149.021, 6803704.083], [442750.974, 6803418.385], [441927.604, 6804927.765], [441390.323, 6804938.654], [440282.076, 6804082.887], [439761.556, 6803971.742], [440004.369, 6802828.168], [440531.42, 6802941.433], [440625.742, 6802506.729], [440096.457, 6802393.268], [440202.833, 6801885.257], [439941.517, 6801440.442], [439511.327, 6801265.95], [439043.241, 6801358.12], [439014.628, 6800613.223], [438179.885, 6800517.488], [436529.922, 6797962.118], [436139.68, 6798279.085], [432732.949, 6804050.61], [430753.562, 6801508.514], [426813.13, 6801279.627], [425663.734, 6801443.68], [425173.633, 6801803.328], [422133.777, 6800320.791], [418372.933, 6808815.704], [419495.344, 6812537.654], [416789.253, 6818020.26], [420849.832, 6834306.836], [420678.769, 6839096.004], [422249.43, 6839061.331], [422444.099, 6839447.602], [424147.16, 6838653.711], [426355.357, 6839397.129], [428010.871, 6840947.919], [428583.628, 6842248.001], [429396.29, 6843255.003], [429623.196, 6843331.274], [429953.864, 6843044.693], [430659.473, 6843507.212], [430753.738, 6843031.205]]]]}}, {\\\"id\\\": \\\"193\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Multia\\\", \\\"elakelaisten_osuus\\\": 40.9, \\\"freshwarea\\\": 32.39, \\\"gml_id\\\": 1601100098, \\\"landarea\\\": 733.24, \\\"namefin\\\": \\\"Multia\\\", \\\"nameswe\\\": \\\"Multia\\\", \\\"natcode\\\": \\\"495\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 765.63}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[382380.012, 6935477.19], [385026.966, 6936527.138], [386836.662, 6937444.16], [388901.949, 6940390.638], [392185.816, 6943010.068], [394930.61, 6939592.02], [405926.288, 6940502.283], [406701.07, 6940362.62], [410065.516, 6935294.782], [408283.49, 6936280.872], [407127.784, 6935037.751], [406654.3, 6932950.693], [406217.602, 6927436.297], [404066.781, 6925146.58], [403170.836, 6923157.032], [400597.923, 6922646.117], [398074.782, 6916640.714], [397897.448, 6916008.131], [398295.193, 6915975.972], [398736.49, 6914899.984], [398631.302, 6914393.686], [399280.347, 6914365.234], [399848.036, 6913137.211], [399970.949, 6912665.932], [396388.29, 6911952.989], [394266.286, 6911524.329], [392455.231, 6911148.069], [391277.737, 6911128.563], [391015.217, 6911836.824], [389233.613, 6912769.978], [390459.528, 6914156.477], [389767.938, 6914972.405], [387535.785, 6914642.56], [387693.37, 6913735.74], [386951.494, 6913487.278], [386320.597, 6914063.098], [383004.765, 6912698.609], [384711.358, 6916118.082], [383898.706, 6916221.578], [383710.43, 6915910.756], [382968.969, 6916261.585], [382557.748, 6915943.054], [381693.279, 6915890.013], [381539.893, 6917589.746], [381285.029, 6917543.368], [381142.491, 6918563.86], [379439.117, 6918203.743], [379227.436, 6918557.194], [378749.151, 6918557.132], [378765.531, 6919147.369], [378365.027, 6919483.563], [378443.07, 6919792.938], [378155.388, 6920210.903], [378050.218, 6920623.404], [378143.806, 6921006.114], [377923.958, 6921251.864], [377552.867, 6921705.915], [379449.46, 6922939.945], [379224.73, 6923161.678], [377355.533, 6921947.367], [376482.758, 6923015.269], [380143.067, 6925507.298], [380875.85, 6925268.462], [380402.15, 6926078.927], [376198.3, 6923361.368], [375515.091, 6924192.629], [379454.742, 6926122.718], [378499.362, 6926862.409], [377210.478, 6926689.508], [377248.605, 6926402.991], [376826.6, 6926347.979], [376687.732, 6926554.051], [374668.373, 6925225.006], [373217.855, 6927114.746], [375469.069, 6927104.392], [374847.499, 6931101.398], [372926.096, 6935477.746], [372350.716, 6936799.291], [372735.27, 6936971.627], [373030.433, 6936296.178], [373352.832, 6936379.243], [372763.801, 6938861.006], [373831.896, 6939120.711], [373385.501, 6940934.129], [375019.394, 6941243.75], [374447.476, 6944292.001], [376037.789, 6944649.72], [375790.919, 6945737.599], [373837.705, 6945237.765], [371940.958, 6945869.658], [372408.821, 6947361.48], [376149.768, 6950563.473], [382380.012, 6935477.19]]]}}, {\\\"id\\\": \\\"194\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nousiainen\\\", \\\"elakelaisten_osuus\\\": 23.3, \\\"freshwarea\\\": 0.57, \\\"gml_id\\\": 1601100173, \\\"landarea\\\": 198.99, \\\"namefin\\\": \\\"Nousiainen\\\", \\\"nameswe\\\": \\\"Nousis\\\", \\\"natcode\\\": \\\"538\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 199.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[250110.717, 6742255.941], [248820.721, 6741084.805], [244902.339, 6737470.818], [245022.848, 6737335.197], [245380.87, 6737457.472], [245539.754, 6737254.385], [245139.829, 6737034.406], [244474.933, 6737078.488], [243397.56, 6736082.221], [243709.331, 6735398.724], [242453.511, 6734160.255], [241986.525, 6733234.96], [241381.368, 6733164.504], [241278.359, 6732400.636], [241213.81, 6732550.218], [240846.328, 6732915.201], [240730.172, 6733240.591], [240325.913, 6733245.318], [239677.811, 6732531.799], [239371.667, 6731678.987], [239688.003, 6731394.397], [240143.44, 6731614.483], [240831.138, 6730949.16], [240351.618, 6730843.366], [240196.172, 6730674.522], [240272.815, 6730177.28], [240025.605, 6729592.455], [240523.909, 6729091.549], [240321.02, 6728553.248], [240069.201, 6727591.834], [238774.137, 6727937.422], [238460.544, 6727496.997], [238008.588, 6727654.564], [237803.37, 6727309.803], [237807.737, 6727878.114], [238020.747, 6728172.343], [237983.956, 6728778.245], [237627.055, 6728742.048], [237426.886, 6728888.411], [237680.78, 6729237.52], [238050.58, 6729129.155], [238138.388, 6729791.972], [237739.155, 6729922.582], [237966.451, 6730200.965], [238132.365, 6730077.84], [238261.155, 6730253.268], [237906.849, 6730554.857], [237307.454, 6729862.806], [237537.962, 6729528.443], [236788.603, 6729126.526], [236306.435, 6728774.167], [236020.921, 6728527.591], [235415.837, 6728119.909], [235462.007, 6727855.397], [234918.401, 6727794.668], [234802.524, 6727058.424], [234371.997, 6727352.742], [233668.459, 6727198.936], [233005.104, 6726976.1], [231341.847, 6725943.021], [231283.038, 6726705.46], [231060.675, 6726739.522], [230795.019, 6726292.264], [230345.644, 6726284.734], [230076.229, 6726097.314], [229931.659, 6725391.984], [229667.022, 6725541.493], [228450.596, 6725074.604], [228462.299, 6724789.424], [228956.852, 6724952.333], [229025.249, 6724682.14], [228271.614, 6724502.485], [227886.956, 6725412.79], [228409.355, 6725828.025], [228363.554, 6725983.442], [227606.72, 6725868.164], [227588.497, 6726198.708], [227171.619, 6726251.093], [226459.284, 6725878.959], [226500.884, 6726669.14], [226431.747, 6728845.683], [226198.756, 6728803.795], [225590.913, 6729543.134], [225364.27, 6730101.313], [225039.142, 6729798.131], [224809.007, 6730032.395], [224480.304, 6729790.118], [223755.39, 6729401.034], [223736.899, 6729652.412], [224103.94, 6729981.013], [223861.228, 6730154.694], [223261.984, 6730002.466], [222406.589, 6729193.856], [222239.72, 6729485.544], [222422.247, 6729859.558], [222735.96, 6730009.524], [223878.064, 6730815.329], [224225.733, 6731180.778], [224623.126, 6731555.67], [224989.034, 6731132.692], [225325.999, 6731505.884], [225537.864, 6731983.545], [225525.804, 6732260.921], [225408.917, 6732872.713], [225832.68, 6733078.948], [225788.011, 6733485.343], [226050.54, 6733718.055], [226233.872, 6733580.708], [226260.677, 6733167.953], [226866.94, 6733274.029], [227283.908, 6733606.723], [228234.449, 6734016.495], [232273.868, 6737930.348], [247977.626, 6743542.751], [250110.717, 6742255.941]], [[247002.795, 6742308.512], [247491.614, 6741082.34], [247439.622, 6740754.706], [247189.82, 6740193.301], [246904.169, 6741014.688], [246413.692, 6740822.634], [245416.085, 6741988.415], [246797.013, 6742473.879], [247002.795, 6742308.512]]]}}, {\\\"id\\\": \\\"195\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rautavaara\\\", \\\"elakelaisten_osuus\\\": 48.5, \\\"freshwarea\\\": 84.59, \\\"gml_id\\\": 1601100423, \\\"landarea\\\": 1150.66, \\\"namefin\\\": \\\"Rautavaara\\\", \\\"nameswe\\\": \\\"Rautavaara\\\", \\\"natcode\\\": \\\"687\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1235.25}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[570334.147, 7067322.876], [572235.875, 7064255.755], [573713.244, 7063692.544], [573843.915, 7064171.859], [575444.383, 7064165.976], [576662.759, 7064585.051], [577554.408, 7063765.283], [578370.94, 7063256.524], [579481.623, 7061760.204], [578864.851, 7061204.653], [578504.794, 7060002.02], [579018.032, 7057477.778], [579022.1, 7056949.859], [579773.495, 7050707.633], [580076.279, 7050960.278], [580329.444, 7050801.619], [580442.059, 7050445.866], [580120.659, 7050133.223], [580375.487, 7049811.189], [581395.402, 7049372.276], [582462.604, 7048841.993], [582880.682, 7049200.219], [583722.089, 7048270.529], [582046.756, 7046851.673], [581341.857, 7047703.639], [580212.882, 7046752.076], [579805.114, 7046006.627], [579904.539, 7045681.826], [579744.138, 7045357.909], [580115.676, 7044734.969], [580153.932, 7044253.618], [580510.396, 7043741.283], [581762.132, 7039713.863], [582201.515, 7039259.585], [583161.766, 7033823.162], [584677.658, 7032408.971], [585139.581, 7032552.874], [587470.278, 7029920.295], [587931.855, 7030006.2], [587025.332, 7021459.087], [585561.801, 7019944.738], [586099.061, 7019518.125], [584438.457, 7018343.722], [585411.27, 7018396.286], [585657.226, 7017054.751], [584296.455, 7016267.309], [584174.574, 7015248.937], [582750.379, 7014521.657], [582677.4, 7014330.671], [583454.881, 7013595.515], [581015.594, 7009316.911], [580291.392, 7009651.636], [580042.272, 7010005.696], [578175.492, 7011431.242], [577843.975, 7012082.208], [577484.392, 7012157.911], [577187.285, 7012453.358], [575299.962, 7012626.076], [573697.951, 7013932.525], [573310.064, 7014783.988], [572668.302, 7016790.715], [573142.962, 7017085.35], [572906.368, 7017753.735], [572876.663, 7018429.37], [572648.601, 7018981.317], [572583.656, 7019413.527], [572194.621, 7019450.959], [572398.472, 7020075.732], [572249.299, 7020448.631], [571971.279, 7020823.239], [572008.933, 7021735.308], [572188.501, 7021996.914], [572127.857, 7022240.514], [572434.869, 7022440.759], [572233.703, 7023025.54], [572366.502, 7023366.358], [572690.568, 7023195.086], [572729.086, 7023728.581], [572118.548, 7024186.356], [571907.272, 7024836.576], [572020.88, 7025258.279], [572001.571, 7025540.166], [571690.381, 7025777.516], [571583.799, 7026519.878], [571229.711, 7026652.466], [571243.153, 7027121.488], [570564.925, 7027610.211], [570397.483, 7028151.367], [569630.416, 7027691.876], [568844.893, 7027583.935], [568112.538, 7028133.289], [567946.912, 7028009.536], [567136.426, 7022506.299], [564001.617, 7022781.387], [563553.24, 7022845.424], [562945.666, 7029138.716], [560983.814, 7027885.288], [560588.414, 7028000.62], [560463.451, 7027478.207], [559892.367, 7027487.27], [559737.297, 7027970.456], [559271.98, 7028014.202], [558908.552, 7028425.443], [558670.203, 7027981.751], [558212.327, 7027554.337], [558011.004, 7028036.077], [557532.203, 7028425.583], [557441.784, 7028753.936], [557094.414, 7029244.035], [554366.998, 7030987.967], [553989.85, 7031372.909], [552733.641, 7035107.593], [553193.335, 7034939.455], [553302.402, 7034279.322], [553523.964, 7034038.062], [553685.556, 7033614.937], [554151.873, 7033443.485], [554582.949, 7033473.699], [555171.926, 7033259.372], [555389.962, 7033556.762], [555673.687, 7034337.391], [555193.336, 7034806.429], [554966.034, 7035348.277], [554995.95, 7036059.617], [555100.036, 7036623.913], [555325.646, 7037092.424], [555692.15, 7037093.308], [555804.047, 7037567.545], [556328.154, 7039065.12], [556114.933, 7040487.644], [555561.031, 7041028.92], [555426.008, 7041356.189], [555343.134, 7042499.327], [555005.569, 7042945.244], [554296.356, 7043119.869], [554384.513, 7043916.348], [553705.655, 7044891.468], [553370.232, 7045827.301], [552953.146, 7046138.711], [552769.258, 7046615.754], [552175.436, 7046652.551], [551986.42, 7047162.035], [551773.224, 7047305.505], [551564.441, 7047673.126], [551998.128, 7047850.761], [551885.234, 7048092.538], [551995.297, 7048471.678], [552339.893, 7048164.261], [552594.324, 7048188.254], [552753.469, 7048527.051], [552613.419, 7048993.698], [552250.041, 7049429.666], [552458.828, 7049888.612], [552070.123, 7050370.574], [552338.657, 7051033.69], [552583.93, 7051070.639], [552948.132, 7050791.93], [552958.02, 7051473.896], [553346.662, 7051995.314], [553392.449, 7052334.833], [553151.005, 7052789.109], [553487.27, 7052866.764], [553451.413, 7053235.76], [552646.59, 7053837.849], [552275.511, 7054329.314], [551907.318, 7054590.752], [551747.103, 7055001.686], [551964.323, 7055300.106], [552849.183, 7055449.82], [554032.136, 7057571.29], [556305.075, 7062684.654], [556935.134, 7062945.009], [557140.349, 7063129.284], [556835.539, 7063486.793], [557454.56, 7064441.67], [557283.635, 7065020.838], [557710.527, 7065881.285], [559290.42, 7065338.115], [560035.192, 7064500.252], [562153.475, 7061355.213], [563043.244, 7060737.936], [567078.911, 7070399.907], [570334.147, 7067322.876]]]}}, {\\\"id\\\": \\\"196\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tuusula\\\", \\\"elakelaisten_osuus\\\": 20.8, \\\"freshwarea\\\": 5.96, \\\"gml_id\\\": 1601100666, \\\"landarea\\\": 219.5, \\\"namefin\\\": \\\"Tuusula\\\", \\\"nameswe\\\": \\\"Tusby\\\", \\\"natcode\\\": \\\"858\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 225.46}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[392888.155, 6717249.589], [398475.842, 6710386.973], [397947.388, 6709203.435], [396648.029, 6709421.917], [396215.745, 6709084.51], [396040.624, 6708549.29], [395662.383, 6708853.887], [395536.093, 6709458.64], [395737.502, 6709879.18], [394119.612, 6710156.906], [394059.184, 6709762.275], [392299.561, 6710040.347], [393217.887, 6707520.591], [392713.103, 6707077.764], [392829.824, 6706758.376], [392338.19, 6706726.984], [392296.152, 6706000.394], [393296.122, 6704419.685], [392394.005, 6703964.248], [392604.146, 6703628.252], [392747.796, 6702964.899], [394387.911, 6702448.794], [395335.217, 6702375.806], [396736.427, 6702713.613], [396619.558, 6703175.581], [397346.868, 6703347.497], [397260.462, 6703680.032], [396597.639, 6703594.254], [396537.318, 6703928.307], [398206.29, 6704310.03], [398164.736, 6702901.474], [398347.951, 6702173.09], [394500.261, 6700394.312], [394296.721, 6699370.115], [393928.533, 6699598.525], [393842.583, 6699049.737], [394283.413, 6698915.685], [394248.026, 6696673.552], [394493.643, 6695308.597], [393961.205, 6695261.492], [393738.29, 6694727.48], [393916.943, 6694490.093], [393721.294, 6694301.427], [393597.39, 6694256.56], [393443.603, 6694275.064], [393357.568, 6694188.686], [393253.837, 6694140.46], [392713.045, 6694617.159], [392674.797, 6694579.377], [392631.168, 6694588.155], [392585.024, 6694525.007], [392570.997, 6694522.291], [392511.0, 6694452.41], [392476.08, 6694313.323], [392067.121, 6693991.362], [391818.765, 6694318.46], [391615.906, 6694184.811], [391435.163, 6694416.411], [390864.644, 6694019.402], [391270.033, 6693438.579], [392348.256, 6691854.422], [392281.636, 6691810.226], [392345.124, 6691701.998], [391687.909, 6691145.787], [389794.713, 6690193.444], [389583.713, 6690171.531], [388086.16, 6690204.789], [387070.673, 6690187.983], [386415.123, 6690916.784], [385803.386, 6691773.387], [384530.145, 6693873.715], [382884.152, 6696008.878], [382960.116, 6696144.578], [382996.28, 6696325.706], [382996.953, 6696538.523], [382987.851, 6696674.777], [382889.974, 6696840.412], [382770.967, 6696943.284], [382715.368, 6697048.678], [382586.033, 6697177.885], [382494.664, 6697291.458], [382506.957, 6697552.438], [382438.25, 6697647.282], [382443.229, 6697726.269], [382575.481, 6697867.459], [382590.573, 6697998.256], [382611.313, 6698010.177], [384059.646, 6700055.278], [384504.574, 6701791.092], [386239.927, 6703320.322], [386235.411, 6703324.431], [386495.569, 6704552.238], [388164.25, 6707998.643], [388284.885, 6708534.575], [388141.223, 6708924.305], [388809.063, 6711136.016], [388804.391, 6711625.308], [387967.182, 6711132.45], [387819.025, 6711519.725], [387382.642, 6711222.187], [387558.264, 6710891.859], [387039.324, 6710585.779], [386563.676, 6710972.248], [386913.195, 6711268.468], [386402.016, 6711870.378], [386278.152, 6712928.695], [385457.443, 6713782.74], [385516.648, 6715109.21], [388455.138, 6716686.756], [389091.205, 6716493.83], [389797.168, 6716075.338], [391724.482, 6716415.835], [391816.219, 6717405.93], [392539.411, 6717680.693], [392888.155, 6717249.589]]]}}, {\\\"id\\\": \\\"197\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hankasalmi\\\", \\\"elakelaisten_osuus\\\": 36.9, \\\"freshwarea\\\": 116.06, \\\"gml_id\\\": 1601100257, \\\"landarea\\\": 571.69, \\\"namefin\\\": \\\"Hankasalmi\\\", \\\"nameswe\\\": \\\"Hankasalmi\\\", \\\"natcode\\\": \\\"077\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 687.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[460335.072, 6937816.264], [460854.862, 6937801.274], [461000.857, 6937477.269], [462169.336, 6936846.668], [462139.353, 6936171.941], [462639.254, 6935706.632], [468796.986, 6931941.094], [469100.672, 6930714.591], [472155.808, 6933684.213], [472415.998, 6934175.017], [472811.89, 6933709.596], [473405.906, 6933594.764], [473436.727, 6933257.536], [472749.38, 6932102.256], [473136.857, 6931857.8], [473282.969, 6931370.355], [473665.617, 6931040.391], [473832.964, 6931234.643], [474546.662, 6930609.871], [474655.318, 6930607.672], [478236.926, 6927565.728], [481068.066, 6924451.701], [483744.218, 6925844.391], [484429.694, 6925353.86], [484991.471, 6924674.438], [484650.613, 6924302.686], [484414.15, 6923815.706], [484568.855, 6923180.87], [484417.808, 6922752.799], [484791.128, 6921787.04], [484621.423, 6921559.096], [484466.114, 6921010.214], [483488.424, 6919483.323], [483489.126, 6919208.534], [484157.798, 6918635.073], [484184.19, 6918204.444], [486261.823, 6916443.569], [488076.504, 6914268.859], [488410.363, 6913649.456], [482860.032, 6912308.661], [482774.296, 6911902.185], [482894.349, 6911327.397], [483110.099, 6910961.93], [482486.503, 6910651.182], [483572.48, 6908502.157], [482738.021, 6908227.762], [482872.469, 6907954.373], [481998.203, 6907565.087], [481661.162, 6907707.464], [479811.124, 6907102.546], [480478.005, 6906153.301], [480932.374, 6905804.228], [480867.106, 6905102.211], [480534.086, 6904681.291], [480504.003, 6904149.524], [480723.175, 6903824.026], [481322.848, 6901828.635], [481220.243, 6900851.178], [481739.784, 6900327.915], [482292.713, 6900101.976], [481947.444, 6899302.997], [481935.342, 6898394.919], [480593.077, 6897782.865], [480412.648, 6898158.212], [479931.242, 6898421.003], [479817.039, 6898736.646], [479952.824, 6899406.005], [479577.27, 6900192.984], [479045.505, 6899636.195], [478706.826, 6899967.87], [477377.429, 6902563.604], [476904.007, 6902790.86], [476326.06, 6903855.184], [475190.031, 6902691.547], [474657.446, 6902943.142], [474934.941, 6902012.12], [472899.369, 6901802.592], [473222.543, 6901176.747], [473816.014, 6899782.214], [473089.712, 6899369.077], [473170.106, 6899126.762], [472359.218, 6898543.209], [472044.15, 6898931.641], [471379.837, 6898497.83], [471371.673, 6897991.595], [470989.812, 6897645.397], [470756.457, 6898299.12], [470773.756, 6898960.248], [470628.009, 6899529.397], [469917.028, 6899322.174], [469557.945, 6898702.825], [469693.792, 6897891.654], [469558.748, 6897473.622], [468534.462, 6897671.736], [466973.395, 6897413.031], [467101.577, 6897062.853], [465137.752, 6895843.056], [464790.628, 6896725.794], [464407.337, 6896701.058], [465203.294, 6898115.267], [464582.659, 6898953.992], [463454.391, 6903480.855], [464910.795, 6904025.144], [464640.376, 6904232.779], [463953.07, 6905783.027], [463422.468, 6907808.206], [458473.226, 6914024.762], [460274.082, 6914401.089], [461340.86, 6914157.926], [461685.336, 6913619.441], [462645.142, 6912836.269], [462742.007, 6916077.386], [464391.666, 6919315.179], [461653.486, 6919843.63], [459736.887, 6929131.066], [459363.423, 6930946.031], [459012.159, 6931798.585], [458611.006, 6933761.49], [459432.568, 6934243.301], [459856.001, 6933657.84], [460691.129, 6934282.429], [460492.155, 6935164.469], [460217.138, 6935182.69], [459285.495, 6938206.1], [459600.362, 6938835.848], [460335.072, 6937816.264]]]}}, {\\\"id\\\": \\\"198\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Loviisa\\\", \\\"elakelaisten_osuus\\\": 33.1, \\\"freshwarea\\\": 25.84, \\\"gml_id\\\": 1601100005, \\\"landarea\\\": 819.74, \\\"namefin\\\": \\\"Loviisa\\\", \\\"nameswe\\\": \\\"Lovisa\\\", \\\"natcode\\\": \\\"434\\\", \\\"seawarea\\\": 905.94, \\\"totalarea\\\": 1751.52}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[467343.597, 6724342.132], [468908.569, 6723888.276], [470378.484, 6722709.768], [471636.296, 6719934.103], [471708.858, 6717995.3], [473286.842, 6718220.613], [474731.373, 6717785.985], [474758.328, 6717759.786], [474886.715, 6715538.614], [475070.653, 6713753.838], [475008.681, 6713299.022], [473503.892, 6712833.593], [473394.934, 6713113.479], [473067.665, 6713232.927], [472965.51, 6712626.871], [472605.358, 6712262.216], [471924.734, 6712054.793], [472072.278, 6711585.185], [472652.804, 6711499.786], [473158.546, 6710610.79], [473171.244, 6710238.94], [472901.455, 6709897.975], [472478.425, 6709944.152], [472074.592, 6709365.082], [472210.74, 6708947.853], [471969.839, 6708710.146], [470940.938, 6708822.921], [470656.458, 6708466.269], [470786.323, 6707787.507], [470389.587, 6707191.344], [470539.481, 6706830.354], [469860.805, 6706690.84], [469660.843, 6706380.052], [469890.898, 6706150.359], [471700.599, 6701373.312], [472040.077, 6699096.736], [472052.984, 6697416.916], [471050.994, 6696805.354], [472528.212, 6694514.693], [475673.652, 6692068.282], [476270.228, 6690201.573], [476843.435, 6682646.971], [480933.752, 6670541.394], [478409.372, 6669488.64], [475363.929, 6669086.999], [471793.797, 6668616.344], [460715.864, 6656800.825], [459410.026, 6656612.165], [447733.414, 6680764.178], [443700.526, 6679352.018], [443818.541, 6678652.876], [442751.498, 6678392.262], [441244.53, 6678687.873], [440770.826, 6678581.0], [440653.091, 6679024.416], [440618.595, 6679041.443], [440424.946, 6679137.026], [440360.598, 6679483.631], [440492.119, 6679423.986], [441291.42, 6679509.325], [441429.493, 6679562.513], [441572.478, 6679538.348], [442518.68, 6680108.353], [442432.056, 6680416.591], [441817.277, 6680604.124], [441521.511, 6681243.678], [440949.28, 6681567.622], [440842.256, 6682561.233], [440658.466, 6683325.345], [440226.512, 6684222.574], [440238.037, 6686802.754], [440362.369, 6687478.534], [440534.558, 6689133.388], [440543.013, 6690608.187], [440777.546, 6691475.931], [442126.961, 6695025.907], [441981.101, 6697323.176], [440678.905, 6699988.086], [439819.249, 6700574.842], [437792.767, 6701253.251], [437034.762, 6702573.302], [434968.786, 6704726.724], [434110.318, 6706238.575], [435528.188, 6711744.437], [435590.55, 6713100.484], [435775.766, 6714002.618], [437176.779, 6715782.408], [440616.382, 6715428.295], [441795.1, 6715650.319], [443531.073, 6717831.949], [442791.169, 6718908.022], [442871.701, 6719425.925], [442309.739, 6720400.252], [443186.422, 6720337.258], [443609.975, 6720715.268], [444545.23, 6720857.284], [445195.098, 6720712.928], [445480.975, 6720421.356], [445900.712, 6720871.37], [446071.622, 6721496.355], [445688.448, 6722342.716], [445343.495, 6723529.062], [449391.837, 6723569.39], [450277.394, 6721881.086], [450470.228, 6720524.54], [450143.084, 6717622.116], [452025.658, 6715458.079], [453524.092, 6715321.262], [454696.644, 6717911.046], [456658.87, 6715432.769], [457025.128, 6714570.621], [457154.888, 6712990.061], [457279.551, 6711470.576], [458535.76, 6709483.491], [459031.554, 6710166.421], [459482.571, 6710095.309], [460268.123, 6709227.323], [460513.591, 6708501.319], [460382.946, 6708000.297], [460761.028, 6707666.214], [460791.156, 6707265.49], [463715.775, 6708444.266], [465962.776, 6708202.682], [465014.428, 6711141.991], [465270.518, 6712092.409], [464851.763, 6715615.68], [464374.531, 6719150.045], [464312.711, 6725246.074], [467343.597, 6724342.132]]]}}, {\\\"id\\\": \\\"199\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ranua\\\", \\\"elakelaisten_osuus\\\": 34.3, \\\"freshwarea\\\": 241.18, \\\"gml_id\\\": 1601100417, \\\"landarea\\\": 3453.61, \\\"namefin\\\": \\\"Ranua\\\", \\\"nameswe\\\": \\\"Ranua\\\", \\\"natcode\\\": \\\"683\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3694.79}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[495660.353, 7352513.153], [496010.891, 7352584.256], [496356.87, 7350722.555], [496994.607, 7349819.234], [496965.94, 7349047.847], [496789.839, 7348850.95], [497279.453, 7348387.664], [496895.851, 7347606.631], [497325.941, 7346967.578], [497943.636, 7346989.851], [498319.328, 7347369.19], [497812.346, 7347872.385], [497960.504, 7348192.827], [498452.953, 7348054.485], [498700.36, 7346912.29], [500109.423, 7347538.638], [500965.991, 7346672.452], [501759.162, 7346048.991], [501726.364, 7345777.128], [501306.643, 7345096.074], [501308.819, 7344908.359], [502364.393, 7344673.949], [502914.426, 7344478.911], [502994.744, 7343533.351], [503296.932, 7343013.207], [503880.735, 7342906.34], [504368.778, 7342356.769], [508434.047, 7341934.666], [508896.663, 7342246.265], [510549.41, 7342321.741], [511398.289, 7342580.689], [511430.613, 7342223.719], [511710.473, 7342032.767], [511583.982, 7341846.137], [512311.532, 7335857.737], [521208.571, 7331556.466], [521120.404, 7328251.817], [521511.456, 7328498.387], [522382.534, 7328227.435], [522150.728, 7327978.892], [521688.753, 7328153.164], [521109.68, 7327849.841], [520795.847, 7316637.623], [518748.091, 7313463.748], [519132.056, 7313143.161], [519226.394, 7312959.252], [519122.505, 7312708.644], [518845.212, 7312611.05], [518504.474, 7313091.031], [515327.33, 7308163.016], [515802.239, 7308088.796], [515799.148, 7307772.498], [515125.083, 7307843.199], [511529.369, 7302247.424], [511279.346, 7302467.646], [510762.418, 7302235.932], [510845.385, 7301771.808], [511182.114, 7301706.19], [510643.715, 7300863.891], [510343.04, 7301054.458], [510198.168, 7300524.436], [510346.426, 7300404.934], [507436.658, 7295872.402], [508212.012, 7295299.661], [507479.963, 7294891.142], [507166.61, 7295450.605], [505056.583, 7292164.352], [504039.851, 7291733.689], [504634.667, 7291145.659], [503301.393, 7289791.985], [502260.953, 7290134.425], [501636.379, 7290752.891], [500253.45, 7290165.373], [500310.68, 7288928.564], [500988.292, 7288966.558], [501042.17, 7288021.036], [499235.538, 7287920.681], [499142.254, 7289689.139], [491950.939, 7286610.701], [485123.272, 7287582.702], [484995.636, 7286582.189], [484387.523, 7287656.105], [471025.547, 7288118.193], [461385.917, 7289578.81], [461616.22, 7300363.885], [451429.652, 7295129.029], [444676.039, 7302974.713], [445772.234, 7302744.646], [445907.067, 7303082.864], [443891.274, 7303881.635], [439885.681, 7308498.831], [447684.232, 7322077.929], [444094.817, 7330386.502], [457544.313, 7336146.669], [457368.442, 7336792.211], [457934.233, 7337960.185], [458819.568, 7337531.496], [458736.026, 7338025.663], [459130.488, 7338626.096], [459128.2, 7339206.662], [459563.534, 7339208.503], [459895.239, 7338530.412], [460567.28, 7338419.233], [460770.999, 7337969.309], [462068.881, 7339659.063], [463120.705, 7340412.976], [464056.317, 7340212.43], [466397.029, 7341971.238], [468023.708, 7341915.491], [468071.99, 7342265.828], [469798.11, 7343959.856], [471672.949, 7344557.206], [471563.333, 7344903.843], [473764.902, 7344865.517], [473756.75, 7344098.048], [474858.468, 7344085.991], [474851.537, 7343345.403], [475504.657, 7341334.976], [476092.148, 7340941.284], [482855.508, 7344139.762], [483530.02, 7345025.514], [481615.069, 7346546.214], [481337.577, 7347363.929], [480752.784, 7347663.452], [481263.053, 7349108.674], [482256.027, 7349268.003], [482188.486, 7349668.8], [481085.208, 7349732.969], [481133.189, 7351742.13], [487771.299, 7353224.598], [492699.581, 7353429.766], [494060.948, 7353498.588], [494078.607, 7353488.915], [494099.53, 7353063.713], [494419.968, 7352799.452], [494893.713, 7352923.449], [495412.555, 7353560.131], [495535.822, 7353564.179], [495660.353, 7352513.153]]]}}, {\\\"id\\\": \\\"200\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Saarij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 37.0, \\\"freshwarea\\\": 171.02, \\\"gml_id\\\": 1601100491, \\\"landarea\\\": 1251.7, \\\"namefin\\\": \\\"Saarij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Saarij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"729\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1422.72}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[427279.716, 6970716.39], [429353.062, 6969293.785], [431134.569, 6965481.942], [433017.863, 6963474.55], [433491.844, 6962014.069], [432357.33, 6959154.223], [423455.665, 6956692.304], [423542.433, 6955876.485], [422908.889, 6955970.967], [423152.835, 6951521.856], [421755.834, 6946316.579], [421856.345, 6945963.448], [423342.021, 6944465.825], [424089.135, 6942758.424], [424107.164, 6942473.565], [421844.458, 6941083.023], [422021.596, 6936040.476], [421591.256, 6936094.008], [421265.698, 6935286.428], [419885.828, 6935172.275], [420201.715, 6933989.57], [417949.047, 6933215.534], [415739.273, 6934277.43], [415570.142, 6934913.023], [413366.837, 6935258.52], [410065.516, 6935294.782], [406701.07, 6940362.62], [405926.288, 6940502.283], [394930.61, 6939592.02], [392185.816, 6943010.068], [388901.949, 6940390.638], [386836.662, 6937444.16], [385026.966, 6936527.138], [382380.012, 6935477.19], [376149.768, 6950563.473], [373036.311, 6953044.961], [372356.168, 6955798.067], [374473.468, 6956451.377], [374207.491, 6957389.042], [375379.589, 6957482.924], [376702.724, 6960169.175], [379344.012, 6958432.097], [380224.213, 6959740.96], [383041.896, 6959580.079], [384373.053, 6961522.212], [384170.332, 6961656.664], [385305.346, 6963448.709], [386160.078, 6962680.333], [385971.904, 6962477.151], [386125.19, 6962072.993], [386491.09, 6962328.391], [386958.623, 6961909.718], [386909.075, 6963092.513], [387043.452, 6963242.999], [387721.245, 6962949.586], [387950.744, 6963038.152], [388107.994, 6963612.81], [388929.975, 6964100.211], [389285.192, 6964843.749], [389676.242, 6963845.389], [390219.018, 6963748.402], [390478.029, 6962641.765], [390448.728, 6961962.114], [390604.739, 6961331.646], [390555.24, 6960635.358], [390624.68, 6960285.968], [390881.407, 6960057.207], [391125.421, 6959364.477], [391568.968, 6959398.309], [394174.544, 6958027.296], [395020.243, 6959530.37], [393794.442, 6959953.479], [393383.68, 6960289.673], [393574.348, 6960388.876], [394193.567, 6960067.267], [395570.461, 6962611.101], [395098.265, 6962872.589], [395308.741, 6963387.582], [394898.159, 6963966.964], [394646.093, 6964006.633], [394404.258, 6963281.52], [393740.409, 6963317.455], [393315.369, 6962786.825], [392414.49, 6963359.535], [391551.333, 6965752.723], [400093.761, 6971771.032], [400683.538, 6971397.951], [401464.645, 6970746.982], [401659.166, 6970900.67], [402085.948, 6970570.56], [402354.786, 6970321.027], [402486.194, 6970102.848], [402519.209, 6969863.259], [402749.504, 6969170.585], [403099.317, 6968502.28], [403470.24, 6967892.058], [404070.015, 6967705.737], [404581.339, 6967318.02], [405708.232, 6966540.728], [406358.817, 6965863.256], [406827.238, 6964481.634], [413355.656, 6965786.865], [413384.497, 6966506.166], [422124.876, 6976321.002], [426671.993, 6976335.019], [427279.716, 6970716.39]]]}}, {\\\"id\\\": \\\"201\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Outokumpu\\\", \\\"elakelaisten_osuus\\\": 37.1, \\\"freshwarea\\\": 138.23, \\\"gml_id\\\": 1601100319, \\\"landarea\\\": 445.83, \\\"namefin\\\": \\\"Outokumpu\\\", \\\"nameswe\\\": \\\"Outokumpu\\\", \\\"natcode\\\": \\\"309\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 584.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[607472.449, 6970416.027], [607602.893, 6970014.792], [607994.881, 6969804.939], [608218.729, 6969406.035], [608671.061, 6969436.506], [608524.136, 6969112.01], [608841.269, 6968801.17], [610237.248, 6968454.052], [610655.164, 6968000.572], [611242.115, 6968056.091], [611624.14, 6967456.107], [611712.795, 6967114.442], [611506.794, 6966767.165], [612337.745, 6966227.28], [612703.676, 6965775.848], [612907.976, 6965357.448], [613269.014, 6965321.953], [613322.614, 6965114.11], [614469.029, 6964953.624], [614242.961, 6961409.797], [615127.723, 6960961.656], [617807.354, 6956270.871], [617121.13, 6952663.72], [616554.232, 6952200.822], [613061.524, 6952776.731], [612490.011, 6953213.914], [610552.663, 6954087.821], [610317.686, 6954319.058], [609488.34, 6953907.567], [606643.219, 6951331.979], [607082.934, 6950809.335], [604035.554, 6948693.454], [601449.984, 6947163.254], [601861.35, 6945771.208], [603856.715, 6945308.146], [604355.647, 6943606.017], [604896.158, 6942945.931], [603586.277, 6941691.054], [602800.538, 6940730.343], [602619.812, 6940145.648], [601758.534, 6939262.506], [600926.757, 6939420.77], [599881.115, 6939946.668], [598795.529, 6940509.266], [595646.042, 6942395.353], [591806.631, 6946786.153], [585838.41, 6947597.643], [584812.796, 6948464.778], [584774.075, 6949717.383], [587148.6, 6952676.304], [584040.305, 6956378.601], [583417.623, 6958121.116], [583873.471, 6960006.168], [585768.374, 6961786.608], [586372.708, 6961774.851], [586781.731, 6961402.507], [587318.356, 6961708.872], [587637.091, 6961501.947], [589124.816, 6964415.962], [588917.517, 6965889.245], [590410.127, 6967702.932], [590971.118, 6968032.506], [591179.258, 6968338.911], [592178.462, 6967957.981], [592898.437, 6967288.324], [593407.877, 6967411.829], [593557.874, 6967246.858], [593303.536, 6966822.173], [594217.13, 6965599.842], [594804.275, 6965422.38], [596178.319, 6964546.156], [596944.851, 6964221.214], [596852.811, 6963585.258], [598528.382, 6961955.347], [599157.333, 6962004.419], [600253.626, 6965170.24], [606795.79, 6970125.15], [607236.635, 6970449.015], [607472.449, 6970416.027]]]}}, {\\\"id\\\": \\\"202\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kitee\\\", \\\"elakelaisten_osuus\\\": 40.8, \\\"freshwarea\\\": 470.71, \\\"gml_id\\\": 1601100137, \\\"landarea\\\": 1253.67, \\\"namefin\\\": \\\"Kitee\\\", \\\"nameswe\\\": \\\"Kitee\\\", \\\"natcode\\\": \\\"260\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1724.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[659920.089, 6904559.571], [661289.921, 6903598.386], [661477.032, 6904722.421], [661739.375, 6904606.944], [661966.889, 6904248.602], [663163.728, 6904237.255], [663329.854, 6904467.86], [663696.443, 6904809.919], [664250.562, 6904757.297], [664967.04, 6904895.231], [665643.888, 6904515.249], [665960.397, 6904144.477], [666245.194, 6902894.297], [667345.65, 6900413.122], [667287.038, 6899960.565], [667460.734, 6899229.415], [666844.751, 6898791.583], [667228.898, 6898233.546], [667596.608, 6898149.715], [667630.165, 6897723.873], [667815.657, 6897516.522], [667822.751, 6897100.395], [667979.02, 6896783.922], [667855.516, 6896373.51], [667795.119, 6895848.18], [668047.728, 6895198.494], [668065.41, 6894421.046], [668175.748, 6893990.531], [667971.875, 6893802.995], [667974.554, 6893435.125], [668119.202, 6893188.979], [668116.833, 6893101.56], [668628.611, 6893295.98], [669738.307, 6894147.409], [670672.782, 6893569.474], [671821.103, 6893908.314], [671755.824, 6891974.066], [672804.279, 6891604.813], [673758.324, 6892051.532], [675174.573, 6890937.354], [675991.082, 6890721.844], [677361.491, 6889258.658], [676881.263, 6888282.445], [677853.243, 6886706.563], [678449.811, 6886677.312], [679015.596, 6886489.424], [679444.199, 6886159.145], [679578.481, 6885719.439], [680181.794, 6885896.163], [681089.318, 6885822.899], [681153.054, 6886025.907], [681573.05, 6886242.264], [681990.185, 6886181.692], [680094.2, 6883051.9], [680283.9, 6882839.6], [680121.5, 6882589.5], [679863.9, 6882673.7], [679118.4, 6881445.6], [678356.3, 6880661.4], [676824.8, 6878731.4], [675609.878, 6876489.027], [674911.2, 6875699.2], [674403.2, 6875659.9], [674333.0, 6875554.2], [674286.4, 6875522.7], [674246.9, 6875469.2], [674231.8, 6875371.3], [674045.6, 6875254.4], [673900.3, 6875197.5], [673855.5, 6875138.6], [673791.1, 6875097.8], [673721.0, 6875023.0], [673685.8, 6874961.5], [673621.4, 6874924.8], [673527.4, 6874926.6], [673302.4, 6874635.5], [673231.1, 6874427.5], [673334.5, 6874296.1], [673346.0, 6874198.6], [673773.7, 6872486.2], [673678.12, 6872143.692], [673198.796, 6871339.993], [671812.7, 6871121.6], [670255.1, 6868598.7], [668746.0, 6866400.7], [667845.4, 6866197.8], [668004.8, 6865193.1], [666006.7, 6862393.0], [665588.119, 6861917.961], [665420.369, 6861728.461], [664812.979, 6863038.915], [664812.171, 6863040.658], [663817.638, 6862548.566], [663817.628, 6862548.561], [663398.964, 6862341.408], [663398.838, 6862341.339], [662181.473, 6861675.648], [657039.853, 6858531.507], [656504.524, 6857800.869], [656016.403, 6857881.629], [635242.406, 6845880.073], [635785.532, 6847461.808], [638020.68, 6849771.589], [639246.316, 6850340.19], [641081.744, 6853884.046], [641672.678, 6857092.908], [641733.531, 6858267.698], [641527.646, 6859027.668], [640241.788, 6860913.261], [641850.718, 6862018.777], [638232.128, 6866159.579], [638146.805, 6866699.62], [637321.821, 6867290.204], [637292.456, 6869786.78], [639420.601, 6874464.818], [636908.78, 6876762.035], [635835.704, 6878362.882], [634288.533, 6879602.465], [634579.396, 6880205.069], [633881.244, 6880519.399], [633105.098, 6880639.799], [631481.922, 6881156.918], [631243.588, 6880984.983], [630409.129, 6882220.079], [630085.335, 6882507.293], [629753.474, 6882978.749], [628963.409, 6885115.301], [628458.24, 6885658.01], [628425.304, 6886302.137], [626445.571, 6894193.259], [625230.644, 6898987.177], [626271.814, 6902900.183], [626294.615, 6902892.602], [628924.498, 6902826.779], [632280.933, 6899522.708], [636046.726, 6896449.609], [637319.84, 6897732.125], [638428.456, 6897783.52], [640956.131, 6896389.371], [642748.673, 6897233.142], [642927.996, 6898055.964], [643931.338, 6898249.346], [644860.205, 6899063.538], [646053.142, 6898160.516], [648213.163, 6897712.312], [649011.898, 6897261.278], [649416.568, 6897192.281], [650532.371, 6896175.357], [653806.551, 6893961.432], [653509.595, 6895470.246], [651894.537, 6897128.411], [651729.433, 6897559.285], [652612.31, 6898980.901], [652140.418, 6899458.995], [651693.86, 6899988.2], [651360.279, 6900463.114], [650819.806, 6900574.6], [649645.306, 6901104.978], [649534.599, 6901448.336], [650343.485, 6902444.124], [651204.388, 6903427.261], [653070.164, 6902724.598], [653104.174, 6903585.576], [654508.85, 6903828.121], [654189.985, 6904941.76], [654528.396, 6904915.316], [654587.375, 6904628.808], [654965.557, 6904499.19], [656095.95, 6905020.107], [657502.158, 6905666.325], [658047.529, 6906187.791], [658423.263, 6905964.833], [658686.766, 6906111.18], [658710.472, 6906336.614], [659552.851, 6906604.779], [659920.089, 6904559.571]]]}}, {\\\"id\\\": \\\"203\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nurmes\\\", \\\"elakelaisten_osuus\\\": 41.2, \\\"freshwarea\\\": 291.49, \\\"gml_id\\\": 1601100179, \\\"landarea\\\": 2401.37, \\\"namefin\\\": \\\"Nurmes\\\", \\\"nameswe\\\": \\\"Nurmes\\\", \\\"natcode\\\": \\\"541\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2692.86}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[631746.055, 7086294.3], [634339.733, 7071800.544], [637169.834, 7066938.585], [636832.998, 7066537.636], [632676.191, 7063354.154], [631243.26, 7064196.845], [626047.929, 7056606.744], [625888.975, 7049248.64], [624496.361, 7049565.314], [623984.106, 7049030.143], [624477.634, 7048279.794], [625842.012, 7047529.469], [625647.491, 7042105.612], [626240.458, 7042053.684], [626875.662, 7041488.183], [627354.944, 7040616.454], [627904.302, 7039900.34], [628025.223, 7036424.158], [626671.203, 7033471.161], [626129.839, 7029195.019], [624946.735, 7028764.029], [623462.217, 7026722.969], [616616.715, 7027941.906], [608878.941, 7036930.996], [607203.808, 7035838.978], [605056.385, 7037424.897], [604674.405, 7036781.942], [603966.562, 7036900.901], [603035.039, 7036178.674], [601657.924, 7036020.715], [601542.016, 7036292.468], [601142.507, 7036209.574], [600660.753, 7035915.099], [599787.868, 7035655.225], [592550.749, 7031533.413], [592246.675, 7031328.909], [592027.164, 7031420.551], [591882.182, 7031103.66], [591443.203, 7031095.4], [591312.523, 7030896.559], [590993.045, 7030833.026], [590965.119, 7030443.762], [591304.074, 7029793.323], [591244.954, 7029452.872], [591545.756, 7028696.357], [591297.381, 7028188.283], [591507.088, 7027835.862], [591384.535, 7027621.226], [591160.801, 7027636.055], [590874.74, 7027953.455], [590581.589, 7027998.9], [590482.194, 7028462.179], [590340.31, 7028592.224], [590123.55, 7028231.251], [589698.181, 7028369.816], [589044.799, 7028803.646], [588818.186, 7029095.243], [588734.709, 7029432.639], [588459.93, 7029633.559], [588244.954, 7030009.643], [587931.855, 7030006.2], [587470.278, 7029920.295], [585139.581, 7032552.874], [584677.658, 7032408.971], [583161.766, 7033823.162], [582201.515, 7039259.585], [581762.132, 7039713.863], [580510.396, 7043741.283], [580153.932, 7044253.618], [580115.676, 7044734.969], [579744.138, 7045357.909], [579904.539, 7045681.826], [579805.114, 7046006.627], [580212.882, 7046752.076], [581341.857, 7047703.639], [582046.756, 7046851.673], [583722.089, 7048270.529], [582880.682, 7049200.219], [582462.604, 7048841.993], [581395.402, 7049372.276], [580375.487, 7049811.189], [580120.659, 7050133.223], [580442.059, 7050445.866], [580329.444, 7050801.619], [580076.279, 7050960.278], [579773.495, 7050707.633], [579022.1, 7056949.859], [579018.032, 7057477.778], [578504.794, 7060002.02], [578864.851, 7061204.653], [579481.623, 7061760.204], [578370.94, 7063256.524], [577554.408, 7063765.283], [576662.759, 7064585.051], [575444.383, 7064165.976], [573843.915, 7064171.859], [573713.244, 7063692.544], [572235.875, 7064255.755], [570334.147, 7067322.876], [567078.911, 7070399.907], [572443.86, 7082072.139], [571733.856, 7083473.122], [573485.878, 7084307.211], [573709.114, 7084778.258], [575411.88, 7084178.079], [577260.491, 7083740.433], [584358.113, 7082197.697], [592736.498, 7080090.685], [597232.124, 7080895.685], [603849.594, 7081611.248], [606127.874, 7081796.115], [609999.639, 7082122.697], [613632.135, 7082669.316], [624975.482, 7085186.935], [631746.055, 7086294.3]]]}}, {\\\"id\\\": \\\"204\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Viitasaari\\\", \\\"elakelaisten_osuus\\\": 40.9, \\\"freshwarea\\\": 340.57, \\\"gml_id\\\": 1601100220, \\\"landarea\\\": 1248.55, \\\"namefin\\\": \\\"Viitasaari\\\", \\\"nameswe\\\": \\\"Viitasaari\\\", \\\"natcode\\\": \\\"931\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1589.12}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[419376.739, 7017035.262], [422990.921, 7017457.411], [423066.115, 7017725.639], [423524.052, 7017539.03], [424728.289, 7016140.803], [425367.382, 7015587.907], [425512.535, 7015147.963], [425796.66, 7015010.01], [428799.676, 7014440.513], [429126.482, 7015846.426], [431048.571, 7015469.688], [430740.605, 7014213.157], [432061.845, 7013673.334], [431808.117, 7015024.66], [434653.536, 7017587.748], [437002.822, 7018165.712], [443270.066, 7016668.71], [451030.645, 7018254.742], [456944.478, 7016484.555], [458397.887, 7013210.974], [458378.495, 7012885.682], [458600.908, 7012749.306], [459013.652, 7009603.22], [457141.634, 7009276.441], [457843.939, 7002246.838], [459242.826, 7000494.399], [458977.646, 6999987.567], [459074.029, 6999229.576], [459286.173, 6999085.392], [459768.844, 6998480.163], [460021.93, 6998166.958], [460024.958, 6997314.793], [460268.331, 6997007.19], [460267.908, 6996562.365], [460458.111, 6996447.503], [460641.066, 6996155.147], [460559.19, 6995814.834], [460684.115, 6995532.969], [461831.317, 6994161.022], [461785.333, 6993699.555], [462095.686, 6993306.522], [463873.038, 6992141.201], [464760.626, 6991231.596], [466088.266, 6990545.334], [466320.21, 6989673.188], [461507.934, 6990710.121], [460656.913, 6988709.902], [464005.057, 6983814.039], [466173.475, 6983934.095], [465210.011, 6981169.848], [463064.891, 6977448.452], [462759.45, 6978506.395], [460537.808, 6980747.209], [455573.873, 6980648.896], [453799.153, 6979248.592], [451260.41, 6978834.552], [452626.858, 6973610.366], [451920.673, 6973890.174], [451491.412, 6973997.033], [451066.899, 6974603.474], [450775.791, 6974798.016], [450350.963, 6975273.333], [448488.097, 6971321.671], [446311.254, 6972608.846], [444851.02, 6973316.388], [443662.778, 6973389.073], [442581.466, 6972919.265], [442263.692, 6972930.905], [439107.707, 6975602.753], [434367.042, 6977417.745], [433193.53, 6981213.581], [430003.652, 6979610.802], [429551.944, 6979689.338], [428799.54, 6981017.866], [427263.294, 6982989.998], [425285.408, 6984783.095], [424874.766, 6984900.748], [424278.331, 6985005.111], [424295.151, 6985286.854], [425075.588, 6989135.051], [425653.566, 6990167.015], [417896.595, 6997336.918], [417980.501, 6997686.862], [416243.432, 7004263.989], [415409.531, 7013715.616], [418598.16, 7013933.236], [417944.63, 7015240.824], [415187.249, 7017754.47], [416417.539, 7018339.659], [419376.739, 7017035.262]]]}}, {\\\"id\\\": \\\"205\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siilinj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 24.4, \\\"freshwarea\\\": 106.85, \\\"gml_id\\\": 1601100525, \\\"landarea\\\": 400.96, \\\"namefin\\\": \\\"Siilinj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Siilinj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"749\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 507.81}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[535150.42, 7013637.242], [535190.0, 7013199.33], [535048.603, 7012816.942], [535237.395, 7012045.385], [535612.375, 7011977.51], [536294.851, 7011597.347], [536653.742, 7011283.387], [536809.464, 7010870.27], [537645.362, 7011020.467], [538682.708, 7010744.508], [539024.865, 7010497.635], [539223.105, 7010187.66], [539843.987, 7009520.701], [541090.832, 7008879.002], [541606.329, 7007652.401], [541625.799, 7006941.27], [541779.586, 7006637.739], [541610.628, 7006237.426], [541698.186, 7005931.794], [541675.988, 7005527.791], [541258.547, 7005678.432], [541080.66, 7005524.636], [541223.168, 7005190.733], [540788.975, 7003825.562], [540784.461, 7003132.024], [540561.657, 7002960.455], [540533.56, 7002518.129], [541412.243, 7001410.42], [541675.76, 7000906.595], [542102.767, 7000444.215], [542378.759, 6999622.249], [542751.777, 6999474.039], [543531.395, 6998702.528], [543486.917, 6997834.98], [543282.303, 6997016.411], [543243.623, 6996131.569], [543467.933, 6995815.699], [544756.313, 6995055.214], [544399.16, 6994605.195], [543695.444, 6994995.233], [543192.949, 6995002.627], [542586.596, 6994673.058], [542268.828, 6994053.007], [541909.779, 6992972.244], [541679.379, 6991428.869], [540239.067, 6990912.271], [540850.024, 6989753.244], [544175.791, 6986996.578], [545059.634, 6986886.627], [547361.444, 6987150.149], [547766.041, 6986670.028], [548071.021, 6986305.977], [546110.237, 6983863.155], [543074.047, 6985912.711], [541746.391, 6985127.123], [542155.844, 6983075.755], [542009.711, 6982189.313], [542207.846, 6980499.897], [541206.253, 6980549.347], [540168.566, 6981130.432], [540378.977, 6981536.769], [540290.362, 6982634.23], [539897.456, 6983247.374], [538844.096, 6983009.989], [536095.082, 6981665.648], [536091.66, 6981683.032], [535008.351, 6982854.115], [535002.928, 6983119.579], [534272.784, 6983488.492], [533960.687, 6982857.662], [533274.998, 6982299.664], [532196.473, 6982672.459], [531627.405, 6982310.6], [530651.999, 6982403.255], [530457.184, 6981417.949], [529411.405, 6981749.608], [529257.782, 6982285.537], [528319.418, 6982350.167], [528291.748, 6983187.522], [527875.613, 6983352.499], [527502.22, 6983376.782], [526655.207, 6983700.504], [526393.733, 6983266.158], [527381.025, 6981892.336], [526824.75, 6981938.713], [524557.362, 6983927.637], [523891.528, 6983111.42], [521289.973, 6984943.456], [520970.6, 6985371.48], [520839.151, 6985919.356], [520618.239, 6986174.251], [520609.541, 6986515.113], [519951.706, 6986864.266], [519649.221, 6988454.518], [519362.534, 6989100.053], [519385.82, 6990203.806], [517823.148, 6991099.33], [517559.596, 6991252.663], [517155.213, 6991689.787], [517080.964, 6992028.14], [517869.497, 6992146.583], [517919.403, 6992008.663], [518542.454, 6991674.502], [518928.598, 6991801.854], [518988.876, 6991655.394], [519065.499, 6991574.415], [519054.048, 6991485.183], [519665.86, 6991131.212], [519820.539, 6991252.294], [520312.949, 6991604.109], [520927.588, 6991969.302], [522602.306, 6992941.521], [523425.774, 6992726.514], [523548.424, 6992693.929], [523755.623, 6992728.181], [523785.629, 6992788.916], [524105.426, 6994026.519], [524836.297, 6994019.001], [525947.632, 6995361.353], [526153.65, 6997018.395], [526102.904, 6997298.52], [526027.669, 6997368.856], [525908.097, 6997408.5], [525825.557, 6997532.808], [525674.64, 6997578.868], [525582.508, 6997684.231], [525324.881, 6997834.258], [525321.082, 6997907.328], [525139.385, 6998351.62], [524921.034, 6998331.979], [524839.61, 6998194.312], [524733.685, 6998156.426], [524507.501, 6998199.359], [524312.433, 6998154.91], [524167.462, 6998205.325], [524089.914, 6998329.862], [523968.793, 6998420.566], [523805.61, 6998544.927], [523652.811, 6998644.418], [523525.425, 6998716.585], [523426.099, 6998872.034], [523318.747, 6998930.079], [523293.915, 6999040.822], [523315.993, 6999117.683], [523427.382, 6999238.159], [523454.324, 6999311.439], [523543.843, 6999320.744], [523824.474, 6999450.994], [523801.981, 6999819.245], [524031.685, 7000273.963], [524155.726, 7001649.208], [523785.462, 7003599.317], [524285.961, 7003526.25], [524649.618, 7003027.454], [526526.957, 7003766.368], [526928.499, 7003222.591], [527482.678, 7002837.85], [527647.658, 7003527.02], [527038.558, 7003924.132], [527069.246, 7004294.707], [527389.36, 7004865.566], [527729.465, 7005512.806], [527932.169, 7006403.986], [528637.186, 7006930.603], [528820.514, 7006548.959], [529034.885, 7006882.582], [529355.597, 7006759.178], [529595.103, 7006499.384], [530214.548, 7007194.008], [530646.475, 7007049.369], [531284.322, 7006491.799], [531422.968, 7006229.106], [531819.31, 7006011.197], [532034.33, 7006435.477], [532093.402, 7007122.767], [531898.261, 7008708.808], [531977.827, 7009044.673], [532295.697, 7009359.748], [531620.666, 7009892.228], [530901.753, 7010756.2], [531142.259, 7010856.55], [531650.385, 7010544.028], [531761.604, 7010950.573], [532581.937, 7010842.168], [532825.962, 7011211.216], [532955.897, 7012001.357], [532650.937, 7012189.084], [532698.799, 7012452.974], [533033.66, 7012414.817], [533523.387, 7011971.303], [533714.128, 7011619.946], [534084.91, 7011311.26], [534204.846, 7011866.564], [534552.871, 7012283.784], [534174.325, 7012740.561], [534097.602, 7013232.476], [534401.18, 7013354.207], [534884.726, 7013837.559], [535150.42, 7013637.242]]]}}, {\\\"id\\\": \\\"206\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Aura\\\", \\\"elakelaisten_osuus\\\": 22.3, \\\"freshwarea\\\": 0.57, \\\"gml_id\\\": 1601100033, \\\"landarea\\\": 95.01, \\\"namefin\\\": \\\"Aura\\\", \\\"nameswe\\\": \\\"Aura\\\", \\\"natcode\\\": \\\"019\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 95.58}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[251601.995, 6739883.737], [251977.238, 6740429.484], [252272.446, 6740068.501], [251939.598, 6739849.088], [252634.236, 6739332.002], [252148.291, 6739017.061], [252919.298, 6738108.011], [253411.517, 6737014.039], [254029.689, 6736068.225], [256459.071, 6732989.546], [258273.467, 6733541.136], [259311.934, 6733627.545], [260870.156, 6733179.454], [264328.788, 6731767.923], [263938.323, 6730398.827], [263852.335, 6730164.759], [261413.308, 6727949.858], [260508.056, 6726673.942], [259996.733, 6726843.282], [259577.461, 6726535.517], [258208.095, 6726260.956], [258122.139, 6726518.819], [259334.794, 6726915.67], [259649.823, 6727350.35], [257911.659, 6727362.361], [257601.229, 6727013.076], [257178.4, 6726491.597], [256331.775, 6725335.334], [256851.029, 6723578.801], [257832.681, 6724254.093], [257985.242, 6724055.984], [258076.793, 6723670.818], [257947.81, 6722922.643], [257754.092, 6722813.639], [257607.98, 6723117.889], [257226.507, 6722616.045], [257019.551, 6722629.399], [254927.938, 6724758.02], [252771.279, 6723487.742], [252348.788, 6726734.48], [252908.705, 6728601.717], [253283.526, 6729659.13], [253718.466, 6730114.704], [254023.134, 6729937.081], [254539.286, 6730559.132], [251038.068, 6731421.609], [251589.987, 6732957.986], [251652.34, 6734393.748], [251757.892, 6734926.868], [251719.145, 6736864.75], [250110.717, 6742255.941], [251601.995, 6739883.737]]]}}, {\\\"id\\\": \\\"207\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Taipalsaari\\\", \\\"elakelaisten_osuus\\\": 28.5, \\\"freshwarea\\\": 417.25, \\\"gml_id\\\": 1601100583, \\\"landarea\\\": 344.7, \\\"namefin\\\": \\\"Taipalsaari\\\", \\\"nameswe\\\": \\\"Taipalsaari\\\", \\\"natcode\\\": \\\"831\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 761.95}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[568422.799, 6804020.559], [570104.336, 6801060.389], [572035.026, 6799994.33], [574927.383, 6795299.456], [570249.837, 6791052.193], [569894.086, 6790281.106], [570690.236, 6786721.539], [575790.737, 6783230.944], [572521.183, 6779486.042], [571700.048, 6777931.408], [570421.647, 6777173.267], [569923.748, 6778261.135], [569486.019, 6778354.076], [569046.199, 6778126.764], [567890.07, 6777823.477], [567347.593, 6777346.966], [567031.823, 6776880.753], [566579.409, 6776507.8], [566552.625, 6775689.434], [565049.136, 6775328.868], [564436.789, 6774667.933], [563852.219, 6775737.792], [563753.256, 6776354.74], [563101.514, 6777467.781], [562288.54, 6778108.314], [561143.706, 6777767.144], [561129.114, 6777346.316], [561567.841, 6776504.962], [562275.158, 6775989.577], [562488.573, 6775632.125], [562421.704, 6774862.938], [562685.247, 6773929.59], [562555.292, 6773814.629], [561805.547, 6774569.365], [561155.768, 6774924.239], [560825.456, 6774033.364], [559925.824, 6773548.555], [559560.27, 6773989.972], [559645.333, 6774347.127], [558762.647, 6775398.698], [557613.949, 6775794.622], [557483.223, 6774597.469], [556619.01, 6773853.973], [556774.608, 6772521.051], [555678.558, 6771490.063], [554706.901, 6770748.126], [554401.979, 6770840.018], [554432.764, 6771305.928], [553883.188, 6771063.123], [553499.951, 6770045.635], [553065.622, 6770711.66], [552854.389, 6774023.808], [552465.743, 6774629.658], [551137.075, 6775480.9], [551016.014, 6776843.243], [550332.885, 6777705.286], [549379.076, 6776916.9], [548576.388, 6778859.3], [547773.719, 6777964.659], [547492.639, 6777028.839], [547172.666, 6777362.001], [547175.263, 6777728.651], [546419.463, 6778565.703], [547166.952, 6779894.866], [546739.122, 6780235.724], [545659.961, 6779988.616], [545390.268, 6780291.39], [545732.28, 6781988.686], [545359.069, 6781943.915], [544696.754, 6781709.045], [543682.853, 6781237.79], [542841.099, 6780395.127], [542196.954, 6781271.564], [542709.038, 6782540.35], [543348.775, 6783081.935], [543742.316, 6783084.537], [543668.044, 6783449.487], [544140.248, 6784059.842], [544099.56, 6784799.539], [543363.916, 6783977.813], [543097.069, 6784286.141], [543255.095, 6785796.725], [543681.721, 6785968.159], [543442.312, 6786865.99], [543730.691, 6787513.728], [544209.293, 6788087.498], [543685.0, 6788870.674], [542747.982, 6788432.545], [542291.263, 6789059.585], [542833.739, 6789684.834], [542742.173, 6790169.336], [541923.107, 6789737.806], [541738.181, 6789957.914], [540889.122, 6790227.297], [540481.312, 6789830.259], [540220.093, 6790220.495], [540397.118, 6790453.168], [540173.208, 6790785.364], [540102.632, 6791516.365], [540436.79, 6792450.386], [541003.062, 6792378.02], [542060.933, 6792483.685], [542562.732, 6792227.793], [543020.547, 6792198.809], [544499.957, 6790811.388], [545251.053, 6790795.5], [545284.136, 6791365.067], [544437.072, 6792539.38], [545735.247, 6792457.623], [546583.798, 6793400.043], [546173.261, 6794013.088], [545183.658, 6794557.858], [545199.649, 6794968.689], [544863.782, 6795470.481], [545131.668, 6796410.098], [544770.409, 6797203.27], [545419.242, 6797799.311], [546420.831, 6798943.569], [546639.137, 6799912.273], [547529.874, 6800333.507], [549805.424, 6802171.894], [551228.665, 6802525.636], [556679.658, 6802850.843], [557485.23, 6803184.013], [558844.777, 6803669.924], [560597.067, 6803902.241], [566913.4, 6805721.647], [568422.799, 6804020.559]]]}}, {\\\"id\\\": \\\"208\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lieksa\\\", \\\"elakelaisten_osuus\\\": 43.7, \\\"freshwarea\\\": 649.82, \\\"gml_id\\\": 1601100658, \\\"landarea\\\": 3417.89, \\\"namefin\\\": \\\"Lieksa\\\", \\\"nameswe\\\": \\\"Lieksa\\\", \\\"natcode\\\": \\\"422\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 4067.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[651426.6, 7068103.3], [651346.4, 7067880.8], [651371.1, 7067772.0], [651316.4, 7067765.2], [651234.7, 7067629.3], [651601.7, 7067384.8], [651730.1, 7067064.1], [651932.0, 7066847.2], [651898.8, 7066651.7], [652060.2, 7066569.4], [652428.7, 7066196.1], [652637.1, 7066083.2], [652751.7, 7065917.9], [653364.3, 7065416.6], [653489.0, 7065232.9], [653637.4, 7065187.5], [653787.9, 7065059.0], [653981.1, 7064722.8], [654221.6, 7064490.1], [654397.7, 7064090.4], [654540.2, 7063926.5], [654553.2, 7063796.3], [657730.1, 7060581.2], [660849.677, 7057333.246], [661503.6, 7055074.8], [661679.0, 7054772.2], [661868.9, 7054682.0], [662158.8, 7054415.7], [662423.7, 7054319.8], [662463.2, 7054228.9], [662607.2, 7054264.2], [668169.6, 7050819.3], [672202.7, 7044328.2], [673586.4, 7042313.5], [674767.2, 7041737.2], [683064.3, 7038401.5], [689109.1, 7036337.4], [692030.0, 7033341.3], [692034.6, 7033182.8], [692086.4, 7033044.7], [692186.8, 7032989.4], [692112.5, 7032932.2], [692194.2, 7032922.7], [692272.3, 7032841.3], [692206.2, 7032655.3], [692239.5, 7032612.3], [692314.7, 7032634.0], [692361.9, 7032528.7], [692405.4, 7032540.0], [692429.8, 7032484.5], [692492.6, 7032471.4], [692471.2, 7032425.8], [692646.7, 7032393.7], [692647.9, 7032358.6], [692722.7, 7032338.1], [692834.7, 7032268.5], [692861.8, 7032325.2], [692921.8, 7032336.8], [693029.5, 7032214.0], [693236.3, 7032132.2], [693301.1, 7032035.3], [693555.0, 7032135.5], [693612.2, 7032104.6], [693655.8, 7032000.8], [693761.1, 7031974.9], [693843.4, 7031921.4], [693870.8, 7031831.0], [693991.6, 7031856.3], [694146.5, 7031792.9], [694176.5, 7031865.5], [694462.6, 7031763.5], [694657.9, 7031787.4], [694680.4, 7031738.5], [694715.6, 7031781.3], [694767.2, 7031752.2], [694803.0, 7031775.8], [694843.4, 7031717.1], [694992.9, 7031694.0], [695027.8, 7031653.9], [695077.5, 7031699.1], [695182.7, 7031678.7], [695220.9, 7031617.1], [695304.6, 7031642.8], [695355.8, 7031569.3], [695465.1, 7031570.9], [695485.8, 7031522.2], [695606.9, 7031530.6], [695643.2, 7031576.4], [695719.4, 7031552.8], [695743.5, 7031491.3], [695796.0, 7031494.8], [695809.3, 7031446.1], [695882.4, 7031453.8], [695913.6, 7031390.1], [695989.0, 7031383.6], [695967.5, 7031331.5], [696017.4, 7031293.1], [696149.3, 7031320.4], [696194.4, 7031266.3], [696242.1, 7031286.0], [696254.5, 7031309.0], [696230.4, 7031337.7], [696401.3, 7031372.9], [696534.6, 7031344.4], [696644.3, 7031312.6], [696701.4, 7031267.7], [696768.7, 7031240.5], [697377.2, 7029176.4], [699334.4, 7026068.8], [699504.7, 7026008.1], [699565.7, 7025935.4], [699685.9, 7025936.9], [699686.3, 7026018.7], [699744.3, 7026036.8], [700052.0, 7025669.3], [700211.1, 7025733.6], [701443.5, 7025693.3], [704852.9, 7023460.6], [704982.2, 7023229.6], [704979.7, 7023162.3], [705089.4, 7023063.5], [705112.9, 7022957.7], [705212.2, 7022874.0], [705252.9, 7022798.1], [705367.0, 7022745.1], [705498.7, 7022537.7], [705650.7, 7022484.8], [705736.5, 7022358.2], [706447.0, 7022379.3], [706707.7, 7022308.1], [706839.0, 7022183.9], [706978.3, 7022201.1], [707069.3, 7022106.3], [707106.9, 7022009.9], [707197.4, 7021886.3], [707083.3, 7021862.2], [707076.5, 7021788.3], [707331.8, 7021537.0], [707436.4, 7021564.6], [707478.9, 7021651.9], [707464.2, 7021749.6], [707564.2, 7021834.3], [707714.1, 7021661.7], [707835.5, 7021583.1], [707942.4, 7021478.4], [708041.5, 7021485.2], [708160.8, 7021274.9], [708310.6, 7021117.0], [708486.0, 7020831.2], [708444.6, 7020678.4], [708465.5, 7020602.2], [708790.3, 7020189.1], [708797.9, 7020048.9], [708877.9, 7019948.1], [708910.5, 7019806.3], [709075.8, 7019574.7], [709216.2, 7019518.6], [709428.4, 7019307.2], [709755.4, 7019165.8], [709779.6, 7019066.7], [709871.7, 7019002.5], [709867.1, 7018921.1], [710035.7, 7018879.5], [710118.1, 7018687.6], [710306.0, 7018581.1], [710611.8, 7018521.0], [710688.6, 7018399.3], [711082.0, 7018289.4], [711171.8, 7018233.2], [711191.5, 7018164.3], [711305.9, 7018109.8], [711356.8, 7018131.7], [711534.3, 7018083.8], [711622.6, 7018005.4], [711645.2, 7017884.7], [712057.9, 7017496.5], [712143.2, 7017496.7], [712342.1, 7017329.1], [712549.8, 7017279.8], [713033.4, 7017017.1], [713109.6, 7016864.7], [713144.2, 7016634.5], [713122.5, 7016441.5], [713128.3, 7014370.9], [711187.863, 7013914.665], [704344.182, 7012305.786], [699577.354, 7010395.895], [696975.582, 7006332.632], [690518.996, 7003282.04], [685562.644, 7000929.202], [683382.17, 7001025.496], [681228.347, 6999487.618], [676302.556, 6993001.424], [670780.237, 6990223.072], [670214.749, 6989861.773], [668345.445, 6991808.972], [666239.208, 6992704.325], [665157.012, 6994171.849], [663795.508, 6994446.548], [661128.937, 6994473.887], [661031.492, 6994527.678], [660913.339, 6994518.394], [658838.979, 6993077.417], [657750.642, 6993534.47], [653761.679, 6994511.778], [653020.72, 6994390.293], [652974.341, 6993673.986], [652759.555, 6993054.833], [651894.592, 6993063.455], [650852.469, 6994189.95], [649612.358, 6992908.431], [649790.562, 6991216.563], [649304.273, 6991016.339], [647535.605, 6992907.43], [646526.859, 6994217.78], [645363.68, 6995341.188], [644746.744, 6996142.216], [642531.216, 6993889.09], [640895.471, 6994382.714], [639223.732, 6994881.967], [637421.146, 6997650.048], [636953.541, 7000315.042], [636556.22, 7000515.004], [635960.577, 7001463.064], [636217.391, 7002324.037], [634361.283, 7004428.254], [633040.769, 7005612.376], [633655.431, 7006963.104], [633998.737, 7009064.463], [633314.494, 7010501.591], [631749.417, 7010888.626], [630851.828, 7011798.933], [631282.867, 7011969.612], [631506.267, 7013636.945], [632038.821, 7015479.339], [630580.279, 7015869.613], [630257.126, 7016193.777], [628915.036, 7016435.713], [629184.829, 7018055.984], [628009.43, 7020614.967], [627902.029, 7021183.734], [627506.724, 7021254.069], [627263.873, 7022123.559], [628967.858, 7024136.43], [628947.939, 7024433.713], [626723.105, 7025822.026], [624983.267, 7025463.832], [623462.217, 7026722.969], [624946.735, 7028764.029], [626129.839, 7029195.019], [626671.203, 7033471.161], [628025.223, 7036424.158], [627904.302, 7039900.34], [627354.944, 7040616.454], [626875.662, 7041488.183], [626240.458, 7042053.684], [625647.491, 7042105.612], [625842.012, 7047529.469], [624477.634, 7048279.794], [623984.106, 7049030.143], [624496.361, 7049565.314], [625888.975, 7049248.64], [626047.929, 7056606.744], [631243.26, 7064196.845], [632676.191, 7063354.154], [636832.998, 7066537.636], [637169.834, 7066938.585], [641828.736, 7072259.878], [645174.593, 7072924.116], [645175.2, 7072924.236], [645179.136, 7072925.018], [645181.824, 7072925.551], [646409.504, 7073169.277], [646581.916, 7073365.668], [651426.6, 7068103.3]]]}}, {\\\"id\\\": \\\"209\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Laitila\\\", \\\"elakelaisten_osuus\\\": 28.5, \\\"freshwarea\\\": 13.47, \\\"gml_id\\\": 1601100616, \\\"landarea\\\": 531.85, \\\"namefin\\\": \\\"Laitila\\\", \\\"nameswe\\\": \\\"Laitila\\\", \\\"natcode\\\": \\\"400\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 545.32}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[220619.778, 6777643.236], [219404.71, 6776165.007], [221421.513, 6774809.228], [222381.743, 6773283.02], [222966.427, 6771709.856], [223636.952, 6771499.654], [224395.722, 6771976.606], [225561.264, 6770766.964], [226929.748, 6770748.484], [226279.671, 6767397.541], [228833.851, 6763402.797], [228110.673, 6762167.036], [228775.427, 6761697.008], [228946.623, 6761950.006], [229322.05, 6761676.042], [229548.463, 6762051.225], [235893.98, 6761936.978], [231976.774, 6759876.199], [232568.306, 6757830.857], [230380.491, 6758842.746], [227866.024, 6755671.553], [225517.022, 6753464.127], [224330.069, 6751881.107], [221542.303, 6750160.126], [221808.962, 6749399.166], [221705.817, 6749337.675], [221256.67, 6749980.281], [220079.665, 6749217.69], [218583.733, 6746517.55], [216986.432, 6745157.51], [216583.581, 6744890.601], [216422.303, 6745002.674], [216176.659, 6745072.928], [215803.376, 6745241.134], [215130.754, 6745747.192], [213924.026, 6746317.088], [213729.152, 6746551.826], [213650.921, 6746743.286], [213515.125, 6746920.359], [213501.362, 6747120.968], [213657.514, 6747210.948], [213575.473, 6747419.725], [213134.531, 6747495.92], [213317.294, 6748691.146], [214224.941, 6748708.114], [212441.0, 6750580.383], [212330.693, 6750941.067], [212523.474, 6752544.608], [212999.714, 6752576.085], [212099.839, 6754039.705], [210684.683, 6755462.5], [209510.838, 6756193.78], [209473.921, 6756463.109], [209298.123, 6756556.339], [209058.01, 6756478.994], [208134.451, 6757058.005], [208264.087, 6757305.656], [207570.197, 6757761.354], [207209.022, 6757648.451], [206354.632, 6758196.21], [204610.461, 6757284.498], [203997.226, 6757986.793], [203467.033, 6757932.852], [203613.984, 6758875.562], [202713.595, 6759160.505], [203098.809, 6761868.535], [202311.607, 6762338.842], [201981.428, 6762310.155], [201798.599, 6762861.552], [202002.115, 6763592.887], [201312.686, 6763733.792], [203158.009, 6764900.614], [202330.463, 6765536.114], [203189.415, 6765815.775], [203122.57, 6767786.499], [203164.127, 6769479.752], [202875.589, 6770441.269], [202699.819, 6770651.285], [203122.906, 6771259.358], [201949.404, 6772680.152], [201571.367, 6773362.64], [202331.728, 6774071.747], [204816.094, 6773668.626], [205231.006, 6773498.06], [205142.545, 6772866.876], [204616.913, 6772774.492], [204411.807, 6772580.121], [204206.978, 6771898.137], [204664.724, 6771521.696], [205063.931, 6771588.796], [205320.239, 6770871.425], [206008.913, 6769665.909], [206814.661, 6769388.597], [207266.757, 6769371.405], [207979.512, 6769735.557], [207679.226, 6770119.047], [207393.043, 6770872.102], [208035.459, 6770839.404], [211038.651, 6773769.144], [211671.977, 6774130.133], [213147.8, 6774583.185], [213233.294, 6774810.807], [213856.409, 6774652.47], [214289.173, 6774219.621], [215425.511, 6774335.59], [217247.151, 6775621.35], [216672.581, 6777106.399], [217953.144, 6777848.471], [220619.778, 6777643.236]]]}}, {\\\"id\\\": \\\"210\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ristij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 43.4, \\\"freshwarea\\\": 62.17, \\\"gml_id\\\": 1601100439, \\\"landarea\\\": 835.77, \\\"namefin\\\": \\\"Ristij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Ristij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"697\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 897.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[554081.921, 7169838.25], [554667.678, 7168474.81], [559551.799, 7168560.612], [562697.46, 7164847.566], [562728.279, 7163782.681], [563256.154, 7163384.285], [563722.908, 7164007.08], [567428.172, 7163559.172], [568477.134, 7164321.929], [568497.679, 7164284.406], [575534.163, 7160589.245], [575896.398, 7159735.104], [576415.271, 7160125.951], [577988.93, 7159300.402], [577563.957, 7158537.095], [578764.704, 7157896.2], [579170.472, 7158680.066], [583466.705, 7156416.103], [583723.976, 7155935.411], [584008.52, 7156129.628], [589351.221, 7153309.61], [587275.958, 7152515.004], [589308.963, 7143251.048], [587606.177, 7136319.633], [585167.672, 7132823.816], [584731.874, 7132752.879], [582013.795, 7132356.815], [577288.726, 7134613.587], [577543.14, 7134923.126], [577379.863, 7135706.702], [576649.893, 7135416.65], [575266.504, 7136253.712], [574890.416, 7135771.211], [573863.228, 7136271.869], [570594.488, 7139642.95], [564731.951, 7142002.513], [564711.141, 7142013.353], [564601.905, 7142418.953], [564034.838, 7142726.066], [563710.47, 7142608.613], [560499.92, 7145704.433], [559167.627, 7146114.198], [559031.883, 7145678.855], [557726.591, 7146064.733], [557260.463, 7146967.396], [556327.933, 7147748.572], [556036.393, 7147192.63], [554253.856, 7148304.563], [554571.818, 7149314.021], [553102.218, 7149590.896], [553169.909, 7149001.628], [551889.277, 7149806.046], [550396.056, 7152018.754], [550597.419, 7155357.625], [550842.977, 7155574.74], [546733.934, 7160082.681], [547091.711, 7160431.181], [546714.292, 7160706.931], [546766.725, 7160903.558], [546511.873, 7161168.834], [546482.096, 7161460.973], [546051.693, 7161602.98], [545674.519, 7161241.341], [544834.359, 7162161.172], [541695.419, 7161633.333], [543017.706, 7164416.606], [551354.01, 7167975.529], [552882.358, 7168439.627], [552830.261, 7168806.817], [552324.291, 7168896.18], [552219.359, 7169439.837], [553159.615, 7170589.47], [554081.921, 7169838.25]]]}}, {\\\"id\\\": \\\"211\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Luhanka\\\", \\\"elakelaisten_osuus\\\": 47.9, \\\"freshwarea\\\": 98.75, \\\"gml_id\\\": 1601100007, \\\"landarea\\\": 214.5, \\\"namefin\\\": \\\"Luhanka\\\", \\\"nameswe\\\": \\\"Luhanka\\\", \\\"natcode\\\": \\\"435\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 313.25}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[439556.55, 6862532.984], [441897.02, 6860678.158], [443239.255, 6858883.81], [441726.525, 6855936.816], [440384.546, 6854858.15], [440851.392, 6854297.953], [440966.771, 6853936.613], [440143.411, 6853655.998], [439855.456, 6853233.65], [439158.303, 6853155.316], [439110.805, 6852598.036], [439225.877, 6852311.217], [439347.228, 6851478.12], [439640.485, 6850872.99], [439659.334, 6850290.241], [439067.911, 6849675.954], [438773.207, 6849383.136], [438618.702, 6849354.452], [438323.792, 6848889.962], [434977.032, 6839710.96], [433490.141, 6840569.122], [433814.903, 6841253.649], [434293.824, 6841348.939], [433841.088, 6841932.175], [432632.375, 6842637.08], [431375.998, 6842754.337], [430753.738, 6843031.205], [430659.473, 6843507.212], [429953.864, 6843044.693], [429623.196, 6843331.274], [429396.29, 6843255.003], [428583.628, 6842248.001], [428010.871, 6840947.919], [426355.357, 6839397.129], [424147.16, 6838653.711], [422444.099, 6839447.602], [422249.43, 6839061.331], [420678.769, 6839096.004], [420643.476, 6840114.592], [420522.909, 6842187.355], [420875.219, 6848689.333], [422729.752, 6850493.619], [424333.889, 6851895.564], [426101.449, 6857100.673], [426658.191, 6858729.218], [427502.344, 6859263.009], [429523.223, 6859202.449], [434295.044, 6858049.571], [436611.82, 6862773.351], [439556.55, 6862532.984]]]}}, {\\\"id\\\": \\\"212\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Helsinki\\\", \\\"elakelaisten_osuus\\\": 19.6, \\\"freshwarea\\\": 0.91, \\\"gml_id\\\": 1601100141, \\\"landarea\\\": 214.25, \\\"namefin\\\": \\\"Helsinki\\\", \\\"nameswe\\\": \\\"Helsingfors\\\", \\\"natcode\\\": \\\"091\\\", \\\"seawarea\\\": 500.32, \\\"totalarea\\\": 715.48}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[402614.625, 6685603.09], [403434.138, 6685818.265], [403516.149, 6685567.289], [403017.003, 6685389.467], [403466.148, 6684945.228], [402897.947, 6684431.254], [402893.083, 6683702.407], [403336.846, 6683401.992], [403253.471, 6683155.565], [402826.728, 6682979.462], [402360.86, 6683005.931], [402182.555, 6682483.79], [402206.313, 6681961.24], [401913.233, 6681807.992], [402458.273, 6681254.676], [402627.876, 6680612.858], [402620.314, 6680141.562], [401850.326, 6680029.843], [401623.898, 6679780.387], [401808.886, 6679388.548], [400548.902, 6678367.399], [400349.205, 6677070.273], [401345.24, 6674985.491], [399732.084, 6669114.856], [398600.997, 6663222.358], [397119.274, 6646433.498], [384970.135, 6644566.77], [376718.723, 6664611.807], [379768.621, 6667904.746], [380050.19, 6670115.488], [380148.339, 6670198.605], [380148.339, 6670615.249], [380148.339, 6670916.41], [380381.881, 6671804.412], [380394.723, 6672659.046], [380402.06, 6675166.845], [380656.966, 6676048.243], [380640.369, 6677115.115], [380776.843, 6677700.102], [380445.725, 6678000.761], [380227.204, 6679742.437], [379983.85, 6681677.614], [380402.966, 6682225.844], [381443.67, 6681580.076], [382253.446, 6681613.497], [382543.152, 6682291.394], [383433.773, 6683179.204], [384438.804, 6683466.8], [385212.185, 6683822.904], [385798.687, 6683898.268], [386389.758, 6684186.137], [386969.299, 6683938.502], [386932.169, 6683597.195], [387142.976, 6683182.986], [387466.386, 6682804.814], [388001.153, 6682639.793], [388143.404, 6682978.819], [388012.611, 6683190.741], [388417.243, 6684180.691], [389163.963, 6684434.41], [389429.588, 6684974.633], [390587.083, 6685274.051], [391152.104, 6684820.34], [391521.014, 6685096.633], [391741.718, 6684369.445], [392195.008, 6684000.574], [392338.906, 6683739.547], [393623.266, 6683650.066], [394237.387, 6683152.603], [394172.454, 6681823.842], [393859.815, 6680762.439], [394340.078, 6680245.367], [396776.252, 6679289.143], [397205.078, 6680111.587], [397591.948, 6680179.274], [398143.117, 6680542.14], [397991.167, 6681181.115], [397651.602, 6681601.262], [397331.415, 6681726.289], [397248.729, 6682902.962], [399775.22, 6683958.338], [399936.362, 6684600.244], [400258.311, 6684176.97], [400745.666, 6684657.097], [400567.687, 6684841.722], [401634.138, 6685194.721], [402143.657, 6685895.131], [402614.625, 6685603.09]]]}}, {\\\"id\\\": \\\"213\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pomarkku\\\", \\\"elakelaisten_osuus\\\": 36.6, \\\"freshwarea\\\": 30.87, \\\"gml_id\\\": 1601100569, \\\"landarea\\\": 301.18, \\\"namefin\\\": \\\"Pomarkku\\\", \\\"nameswe\\\": \\\"P\\\\u00e5mark\\\", \\\"natcode\\\": \\\"608\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 332.05}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[244964.714, 6858301.623], [245263.592, 6855281.8], [246288.787, 6854927.817], [246458.089, 6854411.019], [246197.29, 6852384.001], [245560.222, 6852568.114], [245469.822, 6852228.379], [245898.92, 6851917.036], [245366.531, 6851012.342], [245693.609, 6850597.76], [246393.212, 6850490.749], [246590.079, 6849132.773], [246958.338, 6852895.655], [247238.286, 6853401.354], [247580.444, 6853400.981], [247579.895, 6853831.824], [247212.54, 6854020.711], [247410.232, 6854650.534], [247708.273, 6854900.415], [248155.482, 6855218.014], [248231.58, 6856285.66], [248960.33, 6856172.372], [252896.767, 6855121.348], [256002.203, 6850467.681], [254730.855, 6851183.489], [254323.7, 6851344.839], [253738.166, 6851470.098], [253410.213, 6851483.381], [253401.245, 6851070.005], [253738.87, 6850546.523], [253389.279, 6850129.248], [248193.87, 6849542.349], [247977.686, 6849382.724], [247567.385, 6845977.933], [244808.115, 6843391.425], [244603.476, 6843636.468], [244192.479, 6843463.146], [243933.05, 6843084.753], [243340.289, 6843198.915], [242340.69, 6843046.876], [241943.967, 6843649.823], [241501.592, 6841725.197], [240882.562, 6841770.472], [240089.9, 6841913.021], [239311.797, 6841947.339], [238094.685, 6841737.083], [238037.43, 6841477.731], [237551.207, 6841525.632], [236817.074, 6841335.77], [234214.694, 6843144.308], [227728.139, 6849487.788], [227240.796, 6850509.842], [226698.672, 6850495.926], [225918.266, 6851590.76], [221808.002, 6857384.242], [226884.686, 6857279.844], [231655.348, 6858683.093], [235043.787, 6858477.361], [238230.858, 6855951.77], [239455.984, 6858478.339], [240044.205, 6858523.641], [240817.593, 6858942.275], [241042.32, 6859759.356], [244964.714, 6858301.623]]]}}, {\\\"id\\\": \\\"214\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pet\\\\u00e4j\\\\u00e4vesi\\\", \\\"elakelaisten_osuus\\\": 28.7, \\\"freshwarea\\\": 39.01, \\\"gml_id\\\": 1601100269, \\\"landarea\\\": 456.4, \\\"namefin\\\": \\\"Pet\\\\u00e4j\\\\u00e4vesi\\\", \\\"nameswe\\\": \\\"Pet\\\\u00e4j\\\\u00e4vesi\\\", \\\"natcode\\\": \\\"592\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 495.41}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[407426.252, 6922247.712], [410649.709, 6921053.84], [411349.66, 6918711.998], [412161.221, 6916039.044], [414076.5, 6916726.796], [415666.672, 6917312.341], [416208.333, 6916669.568], [419364.571, 6914933.275], [419445.931, 6913605.884], [421768.443, 6913763.393], [420058.91, 6909578.23], [417623.195, 6904866.724], [418088.644, 6902448.101], [416087.126, 6902369.482], [413464.114, 6901262.435], [414035.756, 6897273.568], [413180.13, 6895525.97], [412436.266, 6894758.376], [410640.455, 6892336.108], [404424.189, 6893635.064], [401979.077, 6893850.477], [398043.378, 6896369.994], [396010.882, 6897891.474], [395730.728, 6898415.349], [394359.983, 6899320.787], [397921.212, 6898837.623], [399808.415, 6902188.866], [397892.171, 6903484.783], [398730.031, 6908729.441], [399970.949, 6912665.932], [399848.036, 6913137.211], [399280.347, 6914365.234], [398631.302, 6914393.686], [398736.49, 6914899.984], [398295.193, 6915975.972], [397897.448, 6916008.131], [398074.782, 6916640.714], [400597.923, 6922646.117], [403170.836, 6923157.032], [407426.252, 6922247.712]]]}}, {\\\"id\\\": \\\"215\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siikajoki\\\", \\\"elakelaisten_osuus\\\": 27.7, \\\"freshwarea\\\": 8.74, \\\"gml_id\\\": 1601100592, \\\"landarea\\\": 1054.05, \\\"namefin\\\": \\\"Siikajoki\\\", \\\"nameswe\\\": \\\"Siikajoki\\\", \\\"natcode\\\": \\\"748\\\", \\\"seawarea\\\": 591.1, \\\"totalarea\\\": 1653.89}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[432954.414, 7134581.96], [432676.612, 7134073.532], [432477.43, 7134090.691], [432210.283, 7134369.094], [429827.325, 7134284.858], [429213.636, 7135049.584], [429560.262, 7135226.047], [432780.693, 7136873.376], [432954.414, 7134581.96]]], [[[393701.714, 7199025.715], [396054.571, 7199665.012], [405158.02, 7206221.723], [405590.859, 7200711.263], [405072.695, 7196857.605], [405179.934, 7196188.49], [405544.479, 7196139.391], [405688.488, 7195850.74], [404879.342, 7195451.674], [404483.163, 7192503.685], [402826.439, 7189072.135], [405630.273, 7185147.935], [412772.128, 7180091.469], [413260.624, 7179728.339], [416674.091, 7176231.788], [416929.572, 7176750.551], [416967.364, 7175958.76], [417372.041, 7175591.868], [417593.225, 7176247.576], [417471.512, 7176530.737], [417716.272, 7176605.045], [418030.937, 7176323.531], [417960.861, 7175970.273], [417599.491, 7175103.672], [417846.452, 7174999.858], [418294.864, 7175778.667], [418872.652, 7175376.409], [418391.302, 7174868.258], [419973.536, 7174052.416], [419752.112, 7173788.375], [419021.416, 7174277.218], [418789.999, 7174092.083], [419805.875, 7173300.101], [420381.774, 7172517.5], [429259.375, 7167927.441], [428584.262, 7167123.789], [429661.013, 7166694.445], [429596.34, 7166396.644], [428849.473, 7166699.455], [428800.532, 7166443.147], [428061.006, 7166923.743], [427679.7, 7166662.366], [426944.892, 7166978.974], [426218.196, 7166771.24], [424831.673, 7165377.56], [423859.318, 7163097.329], [423342.525, 7161445.116], [422665.706, 7161435.817], [422720.883, 7160770.84], [422341.065, 7160578.229], [422400.774, 7158974.026], [422896.306, 7159689.869], [423294.952, 7160200.304], [423482.213, 7160150.122], [424197.9, 7159228.452], [424053.736, 7159105.255], [423319.264, 7159790.44], [422982.656, 7159270.168], [423836.322, 7158539.117], [424207.261, 7158034.098], [424108.53, 7157905.741], [423292.165, 7158485.748], [423021.736, 7158269.689], [423316.393, 7157979.511], [423405.584, 7157656.368], [423250.69, 7157553.355], [422627.591, 7158172.804], [422415.744, 7158582.465], [422307.573, 7157278.686], [424639.323, 7155741.35], [426842.86, 7153699.23], [425501.729, 7151201.154], [424786.524, 7151221.479], [425181.474, 7150073.845], [425958.69, 7150097.319], [426241.064, 7149967.178], [426214.36, 7149727.698], [425231.432, 7149864.946], [424955.048, 7149514.695], [425154.263, 7149346.872], [426937.16, 7145583.317], [425603.259, 7144706.83], [425369.047, 7144992.904], [424936.215, 7144919.165], [424905.645, 7144262.72], [424720.519, 7144142.786], [424470.4, 7144319.003], [424122.588, 7144634.584], [423888.317, 7144446.071], [423743.472, 7144896.278], [416808.96, 7149206.607], [417202.672, 7149655.746], [417107.603, 7149914.032], [416742.271, 7150131.639], [416149.933, 7149631.461], [415817.208, 7149837.336], [415918.611, 7150188.174], [415463.09, 7150056.432], [415252.818, 7150181.06], [411800.775, 7151100.125], [411413.917, 7151340.041], [410889.439, 7152064.504], [411291.109, 7152531.0], [410703.73, 7152332.094], [407944.738, 7156167.948], [403595.649, 7159409.427], [400714.759, 7160678.18], [398336.735, 7160934.169], [396418.168, 7161922.903], [391626.297, 7164350.758], [394417.617, 7171373.578], [395393.432, 7172654.781], [395022.106, 7172922.986], [394843.521, 7172689.518], [394590.353, 7172853.289], [395007.282, 7173390.811], [394417.346, 7173756.007], [393896.044, 7173675.406], [393318.202, 7173664.498], [393205.314, 7174103.317], [393417.96, 7174222.454], [392055.432, 7178013.385], [391853.25, 7178473.526], [390853.335, 7180262.423], [391400.128, 7180444.756], [389572.125, 7183178.061], [389353.656, 7182846.225], [389027.914, 7183762.075], [389184.314, 7184030.8], [388851.793, 7184271.679], [388726.942, 7184041.171], [388142.829, 7185078.539], [388322.195, 7185319.106], [388639.567, 7184823.207], [388890.819, 7184942.223], [388441.546, 7185741.264], [388180.414, 7185927.426], [387544.828, 7186138.757], [387906.439, 7186308.874], [387801.466, 7186547.979], [387378.528, 7186635.993], [386899.716, 7186656.658], [386163.973, 7186239.966], [386047.625, 7185881.966], [385300.806, 7185653.948], [384247.443, 7186595.85], [355123.285, 7195769.413], [360431.691, 7212610.604], [393701.714, 7199025.715]]]]}}, {\\\"id\\\": \\\"216\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kontiolahti\\\", \\\"elakelaisten_osuus\\\": 20.5, \\\"freshwarea\\\": 230.63, \\\"gml_id\\\": 1601100195, \\\"landarea\\\": 799.2, \\\"namefin\\\": \\\"Kontiolahti\\\", \\\"nameswe\\\": \\\"Kontiolahti\\\", \\\"natcode\\\": \\\"276\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1029.83}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[645363.68, 6995341.188], [646526.859, 6994217.78], [647535.605, 6992907.43], [649304.273, 6991016.339], [649790.562, 6991216.563], [649956.9, 6989665.751], [649831.263, 6989551.261], [649984.951, 6989407.898], [650443.95, 6984106.048], [650560.484, 6983688.777], [650516.082, 6982831.658], [650492.848, 6982361.755], [650175.143, 6976302.143], [649880.827, 6976093.871], [652958.837, 6970896.529], [653087.79, 6970195.598], [654076.735, 6968566.472], [655004.356, 6964709.983], [657806.219, 6961440.344], [659200.405, 6960763.64], [660607.165, 6959872.447], [661381.754, 6959622.604], [662683.073, 6958983.897], [663198.362, 6959111.927], [663682.525, 6957972.933], [664240.344, 6956227.449], [668229.975, 6951886.784], [668125.664, 6949869.748], [668582.209, 6948948.489], [668216.934, 6948570.097], [667210.78, 6949417.305], [666953.264, 6949785.673], [665823.552, 6947993.708], [664665.386, 6947504.088], [664295.988, 6947026.551], [664125.304, 6946552.682], [664764.288, 6945883.77], [664344.508, 6944403.979], [663614.683, 6944484.436], [661118.679, 6945537.437], [659635.411, 6945837.657], [654057.377, 6942458.344], [654334.696, 6942034.647], [654044.872, 6941859.173], [653909.619, 6942028.69], [652151.751, 6940937.294], [651945.803, 6941129.881], [651244.409, 6940711.585], [651052.422, 6941322.604], [651107.273, 6941734.153], [650575.746, 6941905.528], [649422.37, 6941453.341], [649117.501, 6942296.755], [650206.575, 6943639.692], [649996.412, 6944466.19], [650282.676, 6944557.164], [648754.384, 6947504.294], [640937.244, 6947585.669], [638808.2, 6948032.908], [636669.252, 6948479.895], [635799.486, 6949153.943], [635429.925, 6949992.142], [635129.845, 6949861.893], [633083.493, 6952264.975], [633263.961, 6952570.042], [633921.392, 6952275.187], [633768.984, 6953762.831], [633882.823, 6954437.921], [633328.553, 6955137.468], [633004.715, 6956179.635], [632526.216, 6956208.318], [632146.536, 6957206.258], [632298.858, 6957416.605], [632074.247, 6958787.186], [631989.902, 6959407.688], [631044.539, 6961024.372], [631094.567, 6962141.542], [630638.569, 6963264.842], [630726.038, 6965153.04], [634981.925, 6966834.451], [638630.658, 6971477.507], [635493.168, 6973434.696], [635228.586, 6973970.859], [636008.236, 6977987.784], [635184.981, 6978446.526], [634502.372, 6979246.802], [634172.255, 6980882.975], [632099.484, 6984754.453], [632628.968, 6986213.588], [638619.896, 6989157.324], [641271.62, 6993678.702], [640895.471, 6994382.714], [642531.216, 6993889.09], [644746.744, 6996142.216], [645363.68, 6995341.188]]]}}, {\\\"id\\\": \\\"217\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sauvo\\\", \\\"elakelaisten_osuus\\\": 30.0, \\\"freshwarea\\\": 1.27, \\\"gml_id\\\": 1601100507, \\\"landarea\\\": 252.6, \\\"namefin\\\": \\\"Sauvo\\\", \\\"nameswe\\\": \\\"Sagu\\\", \\\"natcode\\\": \\\"738\\\", \\\"seawarea\\\": 45.61, \\\"totalarea\\\": 299.48}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[266119.185, 6702630.874], [265709.428, 6701977.364], [266240.792, 6701135.719], [267669.917, 6699970.234], [269253.277, 6700115.454], [269524.021, 6700258.507], [270633.654, 6698647.29], [270213.779, 6698348.883], [270774.268, 6697008.736], [270536.716, 6696216.522], [272432.554, 6692499.31], [272383.994, 6691454.85], [271644.101, 6690445.668], [271283.935, 6688122.92], [270710.961, 6687732.813], [270264.563, 6687416.932], [268872.237, 6688221.782], [268391.028, 6688022.198], [268151.311, 6687902.961], [267328.89, 6686915.129], [266724.673, 6686827.786], [266759.825, 6686198.811], [265272.484, 6686817.086], [264678.983, 6686710.132], [264086.197, 6686018.318], [263457.313, 6685897.352], [263224.228, 6686031.715], [261402.43, 6686341.007], [261081.016, 6686308.483], [260683.278, 6685790.71], [257966.843, 6685396.7], [256534.255, 6684960.135], [255680.485, 6684370.06], [255652.778, 6684103.196], [254479.51, 6683527.573], [253207.295, 6683133.248], [251273.079, 6683581.538], [251787.372, 6685533.016], [251271.326, 6686156.182], [250745.984, 6686248.777], [250470.32, 6686572.08], [250181.949, 6686937.043], [248026.628, 6687616.531], [248133.062, 6687854.019], [247858.876, 6688717.737], [247830.049, 6689853.336], [248666.092, 6690616.817], [250109.776, 6692762.145], [251434.053, 6693941.828], [252371.595, 6695868.763], [253194.461, 6696273.711], [254131.465, 6698342.865], [254777.4, 6699406.538], [256120.94, 6699836.912], [256302.593, 6700619.42], [257285.343, 6701095.376], [257642.924, 6701722.189], [257945.707, 6702009.431], [259397.756, 6699956.979], [260263.534, 6700510.278], [260836.931, 6700459.117], [261351.242, 6700714.04], [261769.99, 6700478.278], [262248.458, 6700730.418], [262574.171, 6700460.255], [263051.922, 6700760.188], [264929.537, 6702268.812], [265543.724, 6702394.511], [265937.215, 6702739.428], [266119.185, 6702630.874]]]}}, {\\\"id\\\": \\\"218\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Parainen\\\", \\\"elakelaisten_osuus\\\": 31.2, \\\"freshwarea\\\": 10.1, \\\"gml_id\\\": 1601100025, \\\"landarea\\\": 883.12, \\\"namefin\\\": \\\"Parainen\\\", \\\"nameswe\\\": \\\"Pargas\\\", \\\"natcode\\\": \\\"445\\\", \\\"seawarea\\\": 4654.92, \\\"totalarea\\\": 5548.14}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[211887.792, 6701645.598], [212419.222, 6701693.127], [211742.24, 6699582.572], [210864.557, 6699002.17], [210622.052, 6700109.849], [211063.349, 6701755.139], [211887.792, 6701645.598]]], [[[186604.751, 6716432.425], [191038.458, 6717531.282], [191993.822, 6717458.499], [192649.548, 6717398.234], [194846.442, 6716583.817], [195403.674, 6715519.498], [195748.052, 6714718.828], [197335.339, 6713122.634], [198381.306, 6711944.119], [197649.599, 6710433.514], [198928.357, 6708887.955], [198507.546, 6708470.296], [197854.925, 6706736.992], [198336.176, 6705803.473], [200422.541, 6707091.431], [202416.079, 6705973.116], [201459.584, 6704052.32], [202087.844, 6702233.877], [203926.596, 6700343.523], [204505.562, 6697220.412], [206493.673, 6697411.293], [207027.919, 6694865.842], [208849.996, 6693802.315], [210129.898, 6695288.121], [211352.099, 6694951.753], [211668.861, 6695727.741], [211728.219, 6695806.303], [212496.388, 6696219.182], [212936.633, 6696405.094], [213460.961, 6696600.861], [214246.981, 6696330.288], [215055.74, 6695765.069], [214832.461, 6695340.857], [214314.243, 6694924.87], [214576.964, 6694548.751], [214557.038, 6694143.533], [215538.797, 6693707.137], [217665.069, 6691300.089], [220965.074, 6691634.205], [222873.11, 6692976.464], [224521.111, 6693052.248], [226297.424, 6694335.234], [226916.101, 6696420.888], [227792.948, 6698615.937], [228193.083, 6699615.667], [228597.413, 6699757.856], [230061.904, 6699111.899], [231163.917, 6699468.75], [231638.026, 6699229.97], [232909.428, 6698932.925], [233449.271, 6699015.245], [234204.039, 6698501.413], [234899.196, 6698220.645], [235792.214, 6698209.134], [236347.31, 6698852.852], [236900.355, 6698434.226], [237284.214, 6698507.348], [237727.773, 6698846.377], [238235.56, 6699101.525], [239241.198, 6698998.88], [240008.098, 6699378.475], [240956.864, 6699162.204], [241259.876, 6699404.627], [241681.605, 6700245.15], [241481.885, 6700941.815], [242173.459, 6701448.133], [242586.616, 6701498.548], [242848.909, 6701215.192], [243467.383, 6700981.615], [244648.514, 6701346.796], [245519.042, 6701493.617], [245811.129, 6701838.426], [246646.968, 6701900.693], [246953.274, 6702063.973], [247795.906, 6702155.608], [248599.454, 6701857.878], [248501.265, 6700688.666], [247899.547, 6700196.869], [247739.825, 6699922.772], [248345.07, 6699473.846], [248806.785, 6699282.254], [249333.861, 6699004.649], [249709.224, 6698463.159], [250213.026, 6698813.27], [250716.896, 6698999.901], [251166.445, 6698872.105], [251618.891, 6698953.09], [252481.244, 6699956.133], [253263.73, 6699454.95], [254131.465, 6698342.865], [253194.461, 6696273.711], [252371.595, 6695868.763], [251434.053, 6693941.828], [250109.776, 6692762.145], [248666.092, 6690616.817], [247830.049, 6689853.336], [247858.876, 6688717.737], [248133.062, 6687854.019], [248026.628, 6687616.531], [246363.616, 6683902.563], [246090.461, 6682388.012], [244943.823, 6680916.326], [244437.512, 6679408.462], [243113.871, 6678863.134], [243189.269, 6678153.934], [242741.873, 6676521.598], [241638.869, 6675501.43], [241688.079, 6674899.28], [241054.522, 6673534.838], [237975.096, 6673931.345], [236881.861, 6673222.258], [234265.395, 6669060.096], [231197.711, 6665258.007], [231475.95, 6661873.493], [231242.31, 6660798.276], [230697.586, 6660053.427], [230575.092, 6657728.263], [226266.431, 6655202.401], [219889.209, 6650329.806], [219716.28, 6649389.456], [220157.32, 6647572.778], [220861.647, 6647117.697], [221041.479, 6646423.43], [221108.392, 6642057.967], [221600.647, 6637114.44], [221615.162, 6636968.678], [222476.706, 6628316.514], [222640.662, 6606081.581], [190518.415, 6605839.312], [189819.737, 6605844.875], [189121.619, 6605872.361], [188424.701, 6605921.837], [187729.582, 6605993.105], [187037.162, 6606086.264], [186347.941, 6606201.015], [185662.719, 6606337.457], [184937.743, 6606506.505], [170739.665, 6610069.233], [177959.57, 6638840.211], [181097.209, 6646222.985], [183780.112, 6652180.833], [177862.179, 6658560.503], [174684.898, 6660201.744], [173499.649, 6664445.477], [173445.193, 6670509.506], [173415.386, 6671793.648], [172798.744, 6674623.732], [170185.666, 6677823.73], [168214.52, 6680237.598], [170464.773, 6688053.02], [172356.227, 6688592.108], [173474.272, 6694160.65], [173346.017, 6695594.488], [175225.004, 6702610.378], [175811.453, 6706801.338], [175697.142, 6708678.879], [177347.626, 6716920.445], [178778.019, 6720746.968], [178985.102, 6721226.62], [186604.751, 6716432.425]]]]}}, {\\\"id\\\": \\\"219\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"H\\\\u00e4meenlinna\\\", \\\"elakelaisten_osuus\\\": 29.4, \\\"freshwarea\\\": 246.32, \\\"gml_id\\\": 1601100177, \\\"landarea\\\": 1785.22, \\\"namefin\\\": \\\"H\\\\u00e4meenlinna\\\", \\\"nameswe\\\": \\\"Tavastehus\\\", \\\"natcode\\\": \\\"109\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2031.54}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[388683.629, 6799573.069], [388570.139, 6796523.811], [388622.0, 6796521.85], [388691.172, 6796519.235], [388824.632, 6796503.804], [388817.18, 6796701.256], [388792.46, 6796903.018], [388848.978, 6796949.211], [388887.103, 6797020.849], [388923.763, 6797089.734], [389006.368, 6797123.558], [389081.893, 6797154.483], [389131.114, 6797126.487], [389276.722, 6797043.667], [389375.089, 6797182.54], [389351.005, 6797324.848], [389449.216, 6797400.279], [389601.331, 6797445.971], [389698.46, 6797325.946], [389806.054, 6797139.516], [389905.976, 6797054.745], [390028.371, 6797038.283], [390103.81, 6797028.136], [390125.816, 6796837.836], [390275.523, 6796722.908], [390337.948, 6796669.394], [390502.112, 6796420.791], [390603.723, 6796294.21], [390740.405, 6796049.239], [390936.109, 6795894.74], [391064.297, 6795793.542], [391036.153, 6795730.213], [390980.983, 6795606.071], [391282.943, 6795343.309], [391405.227, 6795366.008], [391497.794, 6795496.653], [391526.551, 6795657.323], [391641.298, 6795661.212], [391804.107, 6795673.826], [391946.114, 6795514.402], [392181.837, 6795560.371], [392474.198, 6795559.451], [393517.903, 6796828.215], [393465.775, 6795936.92], [394254.442, 6791800.016], [397906.052, 6792789.629], [399751.312, 6792181.474], [402689.517, 6790866.083], [403543.819, 6790950.967], [403321.352, 6788860.331], [404168.445, 6788189.007], [404565.365, 6787725.623], [405049.224, 6787035.15], [405126.069, 6786312.915], [405819.153, 6785808.028], [406241.342, 6785766.563], [406063.954, 6785184.927], [406441.67, 6784737.811], [406389.66, 6784299.182], [405873.607, 6783690.232], [406234.849, 6783164.31], [406080.567, 6782628.908], [406876.241, 6781524.029], [406265.646, 6781833.301], [405999.854, 6780622.507], [405370.66, 6780349.245], [405044.307, 6779651.612], [405543.606, 6778672.92], [406219.526, 6778344.36], [406006.036, 6778040.352], [405567.344, 6777880.867], [405156.381, 6776822.41], [404375.957, 6776455.044], [403654.905, 6775615.02], [402784.055, 6772618.129], [401269.783, 6772409.141], [400270.848, 6771210.613], [395087.371, 6769919.838], [394097.294, 6768194.948], [393495.338, 6767837.503], [394143.31, 6766455.961], [394351.313, 6766216.83], [394248.842, 6765521.12], [393768.382, 6765456.134], [393266.806, 6764872.406], [393299.352, 6763686.468], [394702.833, 6764301.44], [394975.511, 6764131.419], [394430.135, 6763576.96], [394481.919, 6763232.042], [395004.212, 6762771.98], [393908.791, 6760764.362], [393110.616, 6760136.654], [392675.227, 6758222.546], [392003.342, 6756401.455], [393094.362, 6756355.691], [393186.881, 6756222.594], [393344.879, 6756010.145], [393182.282, 6755878.24], [393045.361, 6755806.097], [393088.122, 6755596.428], [393142.062, 6755500.189], [393148.26, 6755433.733], [393241.116, 6755301.219], [393336.445, 6755319.091], [393432.192, 6755201.166], [393499.674, 6755137.672], [392804.956, 6754916.935], [392784.356, 6754868.477], [392837.513, 6754808.972], [392911.994, 6754746.501], [392898.579, 6754723.321], [392909.335, 6754619.871], [392894.326, 6754544.207], [392626.171, 6754572.658], [392633.876, 6754644.76], [392298.898, 6754676.908], [392285.957, 6754555.794], [392068.652, 6754424.497], [391862.438, 6754304.598], [391393.184, 6754024.755], [391085.898, 6754545.974], [390773.765, 6754363.655], [390652.398, 6754291.249], [390462.576, 6754177.542], [389954.66, 6756589.599], [389932.835, 6759052.383], [389528.803, 6759402.566], [389469.76, 6759686.921], [388632.617, 6760052.054], [388622.544, 6760383.1], [387933.121, 6760633.36], [386869.298, 6760676.567], [386217.457, 6761482.469], [385835.098, 6761640.592], [385262.287, 6762564.381], [385098.962, 6763075.223], [385322.603, 6763429.44], [384072.316, 6765670.331], [381333.484, 6766861.317], [377464.363, 6767842.058], [376573.449, 6768481.881], [375364.277, 6768582.543], [372120.0, 6768283.183], [373622.287, 6765751.396], [370433.754, 6764534.306], [370423.499, 6763225.652], [370572.779, 6762868.62], [369539.986, 6762282.506], [370007.539, 6761492.703], [369564.239, 6761329.956], [369181.014, 6760658.764], [368679.045, 6760715.411], [368475.955, 6760081.983], [367687.857, 6760173.017], [367116.203, 6760512.116], [366736.616, 6759666.435], [366799.717, 6759307.69], [367503.535, 6759109.233], [367652.078, 6758512.357], [366329.932, 6758429.461], [365508.559, 6758301.136], [363979.842, 6757592.976], [358902.402, 6754764.647], [360872.685, 6752808.407], [360487.681, 6750983.497], [360222.186, 6750194.851], [360770.336, 6750587.964], [362146.552, 6749147.148], [362474.019, 6745986.047], [362909.454, 6744283.876], [361874.164, 6743090.354], [360157.093, 6741472.991], [359641.922, 6740059.325], [359047.913, 6738429.29], [358220.688, 6738194.418], [354953.791, 6742856.402], [353683.062, 6742872.428], [352835.902, 6743348.879], [351949.171, 6743162.278], [350475.333, 6742078.943], [348623.656, 6745110.032], [346415.819, 6746091.162], [343866.012, 6746061.067], [342138.491, 6743581.987], [341714.084, 6742382.547], [340562.372, 6743206.237], [340169.431, 6743358.368], [340080.868, 6743832.051], [338914.956, 6746324.414], [338496.084, 6746758.275], [339456.492, 6747028.044], [340193.714, 6747966.028], [336558.559, 6753133.98], [338597.429, 6758480.188], [337225.84, 6759347.877], [336675.024, 6759528.164], [335533.583, 6760426.929], [334998.396, 6760666.527], [335966.391, 6761762.66], [334481.015, 6762146.618], [331188.676, 6763909.853], [329878.266, 6763698.908], [329707.948, 6764708.23], [327809.259, 6767047.899], [328848.861, 6767215.166], [328892.023, 6768060.356], [329209.783, 6767689.513], [329509.862, 6767899.431], [329999.047, 6768325.406], [330425.841, 6768578.206], [331123.466, 6768906.122], [331332.852, 6769259.209], [330824.33, 6770250.531], [330716.749, 6770991.298], [328684.169, 6770304.607], [326711.239, 6769836.393], [327423.08, 6771011.58], [326977.811, 6771908.483], [327451.427, 6772682.17], [324952.559, 6773513.092], [326631.119, 6775112.115], [327649.481, 6775835.285], [328788.443, 6776117.178], [329803.666, 6775181.018], [333256.451, 6776441.871], [334136.878, 6777044.947], [336054.713, 6777952.0], [339807.335, 6779745.554], [339722.983, 6780009.856], [340421.126, 6780308.139], [340916.594, 6780243.915], [341227.645, 6779799.543], [341703.17, 6779586.654], [341840.976, 6780026.581], [344416.945, 6780513.189], [346053.799, 6779868.307], [346211.674, 6780137.222], [345843.492, 6780850.757], [345714.036, 6781569.922], [345989.535, 6782107.874], [348333.479, 6782214.452], [351222.859, 6782799.339], [351234.258, 6776888.192], [351711.493, 6776036.135], [352140.83, 6775493.546], [351455.406, 6774851.254], [351667.912, 6774016.752], [350284.571, 6773154.874], [349470.133, 6772439.127], [348551.165, 6770772.519], [346582.714, 6768720.031], [342342.615, 6763156.647], [338903.844, 6758348.256], [338136.876, 6756212.603], [338802.836, 6754986.797], [337483.452, 6752882.446], [338962.004, 6752655.968], [339606.821, 6753327.676], [340815.404, 6752567.78], [340605.235, 6752273.95], [341191.071, 6751632.691], [340829.817, 6751102.924], [341735.675, 6750423.562], [342279.866, 6751403.024], [342769.806, 6751107.825], [343492.958, 6752374.263], [344075.426, 6752196.943], [344278.748, 6752445.807], [344768.662, 6752225.652], [347456.32, 6757534.462], [349611.879, 6759430.875], [353289.231, 6762452.82], [355700.304, 6765028.076], [355777.443, 6764548.185], [356498.13, 6764971.174], [355961.526, 6765318.655], [358074.668, 6767622.313], [357880.956, 6768193.086], [358369.811, 6768777.962], [358769.802, 6768562.392], [359102.23, 6768841.637], [360696.419, 6769443.005], [361735.139, 6769613.619], [362477.607, 6769892.178], [363464.519, 6770127.675], [363812.284, 6769285.617], [365906.257, 6770073.084], [365951.083, 6769963.636], [366587.418, 6770249.433], [366554.459, 6770325.285], [366722.17, 6770393.682], [366759.006, 6770310.35], [367588.565, 6770679.341], [371407.353, 6771495.294], [371780.278, 6771929.979], [367244.66, 6774245.637], [367518.543, 6774986.519], [365287.203, 6776733.779], [364406.907, 6778726.385], [363170.404, 6780318.919], [362812.324, 6781131.992], [362124.024, 6781778.869], [360348.144, 6784328.793], [356536.436, 6788803.281], [356798.372, 6789561.845], [356190.501, 6790197.707], [356403.127, 6790220.911], [356114.566, 6790467.78], [355992.688, 6790406.172], [354812.746, 6791648.662], [355196.889, 6791753.407], [358381.447, 6792690.502], [359778.217, 6793401.43], [360463.855, 6793064.363], [360691.173, 6793790.577], [361210.46, 6794154.761], [361934.73, 6794151.115], [362193.528, 6794836.738], [363150.582, 6795503.691], [363620.37, 6795241.797], [364609.01, 6795991.131], [365648.235, 6796764.528], [367129.662, 6797700.019], [370046.948, 6799056.205], [370539.554, 6798309.679], [370837.117, 6797290.822], [371128.194, 6797603.855], [374904.465, 6795841.098], [375132.766, 6796062.161], [376058.471, 6796167.403], [376825.565, 6795291.737], [377133.035, 6795284.15], [377624.284, 6796051.948], [377707.129, 6796528.417], [377857.217, 6798183.037], [378562.461, 6800257.078], [379962.18, 6796077.706], [380451.314, 6794645.894], [382468.829, 6795140.558], [383440.364, 6795461.565], [384242.724, 6795249.091], [384455.903, 6795604.587], [386995.347, 6796629.09], [386365.641, 6797799.791], [388341.3, 6800758.633], [388683.629, 6799573.069]]]}}, {\\\"id\\\": \\\"220\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vehmaa\\\", \\\"elakelaisten_osuus\\\": 32.6, \\\"freshwarea\\\": 3.17, \\\"gml_id\\\": 1601100083, \\\"landarea\\\": 188.91, \\\"namefin\\\": \\\"Vehmaa\\\", \\\"nameswe\\\": \\\"Vehmaa\\\", \\\"natcode\\\": \\\"918\\\", \\\"seawarea\\\": 10.0, \\\"totalarea\\\": 202.08}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[213575.473, 6747419.725], [213657.514, 6747210.948], [213501.362, 6747120.968], [213515.125, 6746920.359], [213650.921, 6746743.286], [213729.152, 6746551.826], [213924.026, 6746317.088], [215130.754, 6745747.192], [215803.376, 6745241.134], [216176.659, 6745072.928], [216422.303, 6745002.674], [216583.581, 6744890.601], [216402.162, 6744543.511], [215894.062, 6741003.229], [216859.702, 6738332.962], [216814.916, 6737991.75], [216496.165, 6737664.367], [216853.485, 6736847.54], [216765.475, 6736758.745], [216351.445, 6737105.625], [216410.642, 6736154.744], [216332.378, 6735969.405], [215742.297, 6735258.537], [215775.222, 6734872.012], [216008.341, 6734373.009], [215809.634, 6733823.628], [215472.418, 6733801.782], [215391.116, 6733377.895], [215029.506, 6733170.96], [215236.813, 6732893.191], [215008.996, 6732401.98], [214397.682, 6732266.342], [214052.214, 6732507.26], [214102.614, 6731574.56], [214670.494, 6730954.385], [215307.883, 6728448.182], [214247.914, 6726375.842], [213145.727, 6727613.489], [212737.8, 6727749.691], [212305.854, 6728224.432], [212009.516, 6727740.584], [211684.089, 6727794.583], [211452.292, 6728395.149], [210756.33, 6729854.584], [210466.239, 6730688.182], [209938.592, 6731518.089], [208770.171, 6733002.452], [208420.917, 6732993.837], [208058.535, 6732702.467], [207573.149, 6731969.23], [207341.981, 6731695.551], [206333.833, 6731254.387], [205942.622, 6731267.194], [205359.178, 6731151.498], [204493.692, 6732162.114], [204078.315, 6732798.927], [204556.514, 6733083.118], [204495.941, 6733471.807], [203653.232, 6734623.52], [203578.276, 6735292.907], [203018.037, 6735285.936], [202684.719, 6736050.606], [201741.225, 6737571.959], [200822.084, 6737415.19], [199938.138, 6737671.952], [200965.809, 6738211.945], [201051.88, 6738427.542], [200340.777, 6739255.801], [201233.865, 6739029.961], [201870.467, 6739058.052], [201868.138, 6739063.936], [202358.026, 6739734.175], [202141.21, 6740108.554], [201592.465, 6740609.898], [201887.743, 6741113.826], [202936.527, 6741696.549], [203838.573, 6741823.349], [204088.896, 6743176.643], [203822.414, 6743605.416], [203587.887, 6743872.998], [202584.1, 6743724.792], [202429.691, 6744059.442], [202834.336, 6744620.644], [203656.075, 6745279.164], [203530.938, 6746118.53], [204342.435, 6746212.549], [205377.236, 6745914.507], [207717.072, 6745986.686], [208709.985, 6745669.383], [209566.051, 6745798.403], [210008.572, 6745307.388], [211382.33, 6745241.653], [212946.885, 6746527.537], [213134.531, 6747495.92], [213575.473, 6747419.725]]]}}, {\\\"id\\\": \\\"221\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kannus\\\", \\\"elakelaisten_osuus\\\": 27.7, \\\"freshwarea\\\": 2.32, \\\"gml_id\\\": 1601100373, \\\"landarea\\\": 468.33, \\\"namefin\\\": \\\"Kannus\\\", \\\"nameswe\\\": \\\"Kannus\\\", \\\"natcode\\\": \\\"217\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 470.65}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[357922.837, 7108191.109], [358152.182, 7101509.765], [358615.832, 7101379.648], [358757.66, 7100877.82], [358172.708, 7100943.512], [359428.975, 7098263.923], [361789.55, 7093196.538], [363590.022, 7092515.935], [363923.635, 7090761.419], [363657.325, 7090492.21], [364064.173, 7090031.491], [364807.017, 7086218.885], [364299.362, 7085819.176], [364193.249, 7086431.63], [362467.851, 7086740.214], [361931.506, 7087351.616], [361639.221, 7087219.811], [361427.181, 7086614.167], [361516.454, 7086328.559], [361578.607, 7085863.272], [361906.771, 7086111.432], [361911.194, 7085791.207], [360517.07, 7084883.562], [359757.705, 7085237.115], [358071.505, 7085882.339], [357570.565, 7085428.766], [353712.687, 7081317.911], [353566.919, 7081440.778], [353629.222, 7082033.34], [353235.56, 7081697.494], [352777.808, 7080986.915], [352756.71, 7080302.535], [351792.818, 7079300.908], [352255.918, 7078854.465], [351994.219, 7078215.353], [350991.082, 7077125.887], [352851.228, 7074739.614], [351298.905, 7073363.513], [348460.668, 7076663.102], [348151.837, 7076368.617], [347899.622, 7076631.985], [347491.633, 7076241.797], [347186.357, 7076561.748], [347593.95, 7076951.289], [347092.372, 7077477.563], [347453.496, 7077830.35], [345722.833, 7079136.526], [343890.377, 7083997.745], [343513.103, 7084068.043], [343287.438, 7083647.927], [342889.818, 7083232.395], [342630.684, 7083477.715], [343063.132, 7083912.23], [342728.908, 7084276.4], [340852.183, 7084735.25], [340875.272, 7085274.806], [340619.855, 7085291.715], [340332.938, 7084862.48], [338680.093, 7085265.266], [339129.948, 7085954.726], [339599.596, 7085347.763], [340146.743, 7086198.627], [340724.166, 7086625.602], [340967.292, 7086931.48], [340789.113, 7087241.848], [341035.531, 7087645.473], [341504.196, 7086839.53], [342213.142, 7086322.589], [341953.596, 7085999.462], [342487.806, 7085411.567], [343186.243, 7085914.396], [341834.648, 7088057.19], [341200.553, 7088270.046], [341279.515, 7088523.921], [340829.375, 7088871.932], [341429.26, 7089332.458], [340654.694, 7090099.457], [341289.323, 7090409.835], [341086.711, 7090745.133], [340880.961, 7090723.55], [340249.967, 7091530.636], [338959.641, 7090583.641], [339751.391, 7089178.49], [339449.961, 7088875.853], [339678.371, 7088317.923], [339318.322, 7088071.653], [339785.777, 7087628.6], [340330.033, 7087694.684], [340550.515, 7087411.457], [339803.384, 7087014.822], [339341.91, 7087500.534], [338699.614, 7087844.275], [339146.659, 7088293.018], [336524.154, 7091245.615], [337025.392, 7091877.223], [336700.556, 7092163.051], [336189.334, 7091923.442], [336259.608, 7092247.084], [337320.782, 7092973.289], [336776.151, 7093553.162], [336435.249, 7093521.597], [336265.842, 7093904.584], [336457.668, 7094098.858], [336970.342, 7093984.856], [337981.286, 7093198.735], [338300.288, 7092415.653], [338591.821, 7091928.309], [339185.469, 7091751.412], [340109.731, 7092592.844], [340168.184, 7092993.865], [340092.691, 7093574.718], [341095.197, 7094632.929], [341668.474, 7094609.544], [342492.297, 7095255.626], [340983.369, 7096912.228], [341379.792, 7097210.048], [340750.179, 7098151.94], [341216.124, 7098565.692], [340667.565, 7099231.498], [341059.993, 7099772.083], [340968.614, 7100252.631], [341244.656, 7100455.986], [341514.442, 7100046.079], [342455.49, 7100658.219], [343303.491, 7099402.644], [345493.163, 7097481.226], [345837.652, 7097742.54], [346100.967, 7097542.895], [347246.022, 7097840.208], [347329.118, 7097493.981], [347926.02, 7097101.808], [348401.203, 7097497.545], [348747.167, 7096776.962], [349596.708, 7097540.229], [350088.246, 7096884.497], [350445.907, 7097384.951], [349679.834, 7098155.892], [347489.105, 7102131.132], [347639.783, 7103011.512], [347814.096, 7103358.751], [348950.487, 7104019.02], [349161.24, 7103786.273], [349469.496, 7104250.621], [349675.818, 7104142.705], [349988.907, 7104616.133], [349471.835, 7105492.231], [349857.615, 7105766.341], [349725.008, 7105962.276], [349377.055, 7106023.879], [349324.437, 7107651.592], [350244.854, 7107263.18], [350327.223, 7107487.772], [349513.421, 7108116.752], [351822.165, 7109127.617], [352245.381, 7108887.683], [351894.437, 7107882.928], [352930.657, 7106827.52], [354268.007, 7109974.503], [354053.497, 7110689.86], [357922.837, 7108191.109]]]}}, {\\\"id\\\": \\\"222\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Laukaa\\\", \\\"elakelaisten_osuus\\\": 23.6, \\\"freshwarea\\\": 177.1, \\\"gml_id\\\": 1601100636, \\\"landarea\\\": 648.49, \\\"namefin\\\": \\\"Laukaa\\\", \\\"nameswe\\\": \\\"Laukaa\\\", \\\"natcode\\\": \\\"410\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 825.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[453070.658, 6933332.825], [455688.132, 6929005.09], [457583.072, 6927759.006], [459019.239, 6929150.248], [459736.887, 6929131.066], [461653.486, 6919843.63], [464391.666, 6919315.179], [462742.007, 6916077.386], [462645.142, 6912836.269], [461685.336, 6913619.441], [461340.86, 6914157.926], [460274.082, 6914401.089], [458473.226, 6914024.762], [463422.468, 6907808.206], [463953.07, 6905783.027], [464640.376, 6904232.779], [464910.795, 6904025.144], [463454.391, 6903480.855], [464582.659, 6898953.992], [465203.294, 6898115.267], [460722.967, 6899367.678], [461463.623, 6899858.708], [461462.321, 6900285.834], [458109.985, 6899226.834], [455003.944, 6900756.906], [454310.031, 6900162.943], [452117.548, 6895993.699], [452088.646, 6895557.833], [450467.029, 6894738.746], [449351.158, 6898238.893], [448968.172, 6899516.403], [449395.823, 6900374.128], [449843.14, 6900533.866], [450047.667, 6899427.557], [450226.087, 6899445.211], [450373.81, 6900752.455], [450699.889, 6900952.102], [450432.575, 6903630.717], [450731.448, 6904351.727], [447919.278, 6905724.057], [446169.47, 6907882.274], [444812.645, 6904869.585], [444246.875, 6904857.786], [444043.25, 6905817.797], [442590.902, 6905971.398], [441801.298, 6905061.403], [441960.183, 6907272.597], [441288.456, 6907181.23], [441000.779, 6906462.119], [440337.346, 6906732.706], [440648.112, 6907668.529], [438646.355, 6908785.546], [439337.765, 6911941.885], [440256.222, 6913634.115], [440099.168, 6915765.852], [438907.64, 6917192.168], [437240.565, 6918211.574], [435041.509, 6917101.281], [432587.987, 6919141.54], [432579.088, 6919546.976], [431565.59, 6920578.912], [430683.046, 6920845.638], [430079.284, 6921745.17], [429245.725, 6921917.289], [428581.185, 6922470.267], [426631.071, 6922750.799], [427911.435, 6925113.094], [429033.855, 6928087.498], [432631.692, 6929571.297], [432762.406, 6929615.249], [432665.479, 6928507.952], [433727.949, 6928362.717], [434144.671, 6929440.384], [434429.856, 6929372.413], [434562.321, 6930697.343], [438075.656, 6931958.391], [438445.782, 6931438.828], [439254.466, 6932289.51], [439606.707, 6932499.412], [440001.298, 6932913.64], [440218.794, 6932844.93], [440519.418, 6933115.059], [440306.457, 6933602.6], [440549.991, 6933710.778], [440598.415, 6934201.245], [440458.289, 6934406.695], [439931.88, 6934668.706], [439566.824, 6935255.567], [439670.735, 6935452.677], [442627.086, 6934814.064], [445077.706, 6933088.375], [445216.633, 6933094.676], [450476.004, 6939564.802], [453070.658, 6933332.825]]]}}, {\\\"id\\\": \\\"223\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Marttila\\\", \\\"elakelaisten_osuus\\\": 31.1, \\\"freshwarea\\\": 0.68, \\\"gml_id\\\": 1601100068, \\\"landarea\\\": 195.31, \\\"namefin\\\": \\\"Marttila\\\", \\\"nameswe\\\": \\\"Marttila\\\", \\\"natcode\\\": \\\"480\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 195.99}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[279891.021, 6737345.31], [279489.249, 6736716.908], [280095.469, 6735479.969], [280385.401, 6735343.259], [280528.084, 6735358.863], [280648.51, 6735218.298], [281743.874, 6733114.505], [282765.988, 6729331.794], [282834.698, 6728660.353], [282639.16, 6728569.001], [282470.624, 6728606.199], [282244.268, 6728544.737], [286367.884, 6721621.783], [284162.61, 6720130.499], [280775.528, 6719172.294], [280409.221, 6719052.252], [279242.214, 6718641.666], [278553.805, 6718485.836], [276912.768, 6718138.055], [275088.049, 6716860.691], [271984.469, 6715508.801], [271837.919, 6716510.001], [271142.545, 6717066.775], [269930.789, 6720671.631], [270007.356, 6724879.305], [270542.795, 6725157.323], [272164.76, 6726627.935], [272613.078, 6727609.378], [273291.59, 6728645.782], [273748.627, 6729710.521], [274215.896, 6731485.548], [275869.555, 6734847.528], [276052.037, 6735063.558], [276374.982, 6734617.458], [276698.181, 6734867.824], [276873.37, 6734578.648], [277853.579, 6735181.253], [278362.539, 6735526.23], [278545.328, 6735900.194], [279207.08, 6735868.581], [279467.508, 6736181.963], [279427.834, 6736548.923], [278874.926, 6736826.659], [277804.586, 6737161.342], [278463.501, 6737971.342], [279891.021, 6737345.31]]]}}, {\\\"id\\\": \\\"224\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lepp\\\\u00e4virta\\\", \\\"elakelaisten_osuus\\\": 36.1, \\\"freshwarea\\\": 383.65, \\\"gml_id\\\": 1601100654, \\\"landarea\\\": 1135.99, \\\"namefin\\\": \\\"Lepp\\\\u00e4virta\\\", \\\"nameswe\\\": \\\"Lepp\\\\u00e4virta\\\", \\\"natcode\\\": \\\"420\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1519.64}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[526541.828, 6951640.78], [527522.074, 6951584.262], [527976.615, 6952093.997], [529258.971, 6951490.784], [529784.299, 6951077.945], [530341.128, 6951204.118], [530558.604, 6951145.425], [534177.795, 6949838.285], [536160.9, 6949563.607], [536519.736, 6951176.19], [537886.938, 6950908.428], [539634.005, 6949222.664], [540025.445, 6949445.277], [540542.74, 6949125.708], [542135.585, 6949593.049], [542082.28, 6949943.487], [542245.428, 6950214.043], [542562.618, 6950078.638], [542661.584, 6949490.974], [543247.745, 6948906.933], [543431.353, 6949337.644], [543431.869, 6949912.11], [543667.842, 6950577.699], [544157.069, 6950405.606], [545046.494, 6949721.152], [548057.379, 6951814.67], [548670.243, 6951503.907], [548618.07, 6950665.846], [547969.928, 6950055.071], [547890.798, 6949450.723], [548027.018, 6949316.687], [548411.27, 6949641.746], [549042.107, 6949370.574], [549338.19, 6948945.149], [550561.651, 6948803.844], [550972.326, 6949414.074], [551430.062, 6949448.501], [551884.943, 6950042.347], [553010.086, 6949473.017], [553947.521, 6949459.983], [554547.38, 6949263.368], [554550.377, 6949552.751], [554996.87, 6949791.745], [555685.117, 6949654.02], [556389.934, 6949213.005], [559217.304, 6947530.609], [559728.694, 6948049.003], [561782.772, 6946876.794], [561828.165, 6945133.301], [562640.145, 6944053.744], [562588.58, 6942035.661], [563118.27, 6941441.406], [564615.658, 6942497.19], [566645.738, 6942582.472], [567848.657, 6941771.11], [568342.559, 6941609.079], [568973.509, 6940948.752], [569544.574, 6941512.128], [568817.062, 6942434.948], [568466.701, 6942787.703], [568505.783, 6943046.298], [568195.605, 6943594.374], [568655.317, 6943945.236], [569312.856, 6943248.523], [569835.846, 6943143.769], [570604.837, 6942913.569], [571429.803, 6943017.233], [571911.809, 6942867.597], [572286.96, 6942568.721], [573446.394, 6942245.162], [574673.507, 6940980.084], [575019.273, 6940139.827], [575358.681, 6940004.235], [576800.107, 6939426.604], [577185.189, 6939342.238], [577361.71, 6939329.881], [577549.886, 6939485.154], [577837.931, 6939293.517], [577878.327, 6939115.356], [578046.59, 6939076.341], [578342.396, 6938895.327], [578449.882, 6938903.444], [578916.722, 6938635.023], [579070.885, 6938659.453], [579429.532, 6938451.895], [578213.164, 6936202.403], [577981.997, 6936382.85], [577771.506, 6936644.535], [577503.907, 6936817.082], [577038.081, 6937298.294], [575941.414, 6938077.769], [575840.354, 6938208.815], [575379.092, 6937875.76], [575137.0, 6938055.423], [575078.427, 6938136.144], [574917.096, 6938201.413], [574754.328, 6938361.377], [574605.744, 6938456.268], [574240.591, 6938653.942], [573763.69, 6938370.244], [573677.769, 6938374.28], [573455.703, 6938524.714], [573142.752, 6938669.861], [572944.182, 6938888.491], [572767.548, 6938918.698], [572635.141, 6938960.494], [572527.751, 6938984.422], [572425.494, 6938908.405], [572356.447, 6938836.808], [572177.727, 6938967.96], [572066.842, 6939019.324], [571993.4, 6939024.957], [572001.767, 6938925.877], [572081.217, 6938802.04], [572162.442, 6938702.755], [572148.732, 6938609.699], [572273.248, 6938574.725], [572345.773, 6938436.081], [572425.188, 6938350.299], [572548.312, 6938304.954], [572667.089, 6938286.798], [572682.038, 6938203.199], [572624.804, 6938131.913], [572596.173, 6938012.153], [572546.353, 6937839.122], [572435.733, 6937810.866], [572417.683, 6937688.25], [572308.388, 6937695.511], [572237.13, 6937445.807], [571923.466, 6937236.227], [571945.135, 6937032.161], [571858.971, 6936881.921], [571852.276, 6936607.932], [572158.755, 6936117.034], [572091.485, 6935712.397], [571951.343, 6935520.274], [571921.057, 6935245.884], [572169.659, 6934884.532], [572311.148, 6934825.851], [572402.845, 6934680.152], [572458.369, 6934562.566], [572478.558, 6934474.964], [572402.52, 6934364.194], [572335.926, 6934292.977], [572346.537, 6934225.37], [572209.383, 6934224.023], [572075.126, 6934248.44], [572030.202, 6934219.24], [572097.209, 6934060.51], [572194.984, 6933883.494], [572122.683, 6933666.324], [571642.639, 6932514.148], [571670.567, 6932299.692], [571545.755, 6931923.154], [571462.751, 6931625.822], [571100.506, 6931646.532], [570979.455, 6931740.293], [570818.92, 6931781.176], [570629.097, 6931616.141], [570565.224, 6931483.994], [570591.814, 6931271.48], [570492.455, 6931148.229], [570451.739, 6930995.747], [570464.679, 6930882.45], [570595.853, 6930761.386], [570514.046, 6930645.851], [570710.498, 6930222.562], [571648.9, 6929467.7], [571519.08, 6929339.031], [571585.772, 6929288.23], [571636.953, 6929191.671], [571782.635, 6929041.878], [571816.148, 6928974.0], [571573.33, 6928089.771], [571430.088, 6927834.249], [571534.984, 6926948.731], [571276.911, 6926370.758], [571124.771, 6926378.47], [571015.538, 6926388.726], [570926.364, 6926381.693], [570832.118, 6926447.628], [570611.353, 6926492.36], [570269.052, 6926394.683], [570178.253, 6926327.882], [570039.335, 6926340.323], [569867.278, 6926302.758], [569451.296, 6926686.123], [569389.921, 6926816.37], [569216.091, 6926875.844], [569151.923, 6926995.144], [569067.623, 6927055.929], [568805.746, 6927203.383], [568598.244, 6927287.283], [568480.895, 6927382.181], [568387.576, 6927437.562], [568321.352, 6927502.208], [568215.092, 6927526.456], [567891.526, 6927324.554], [567590.848, 6927221.494], [567417.319, 6927192.105], [567206.457, 6927270.567], [567085.604, 6927291.184], [566936.213, 6927383.924], [566730.496, 6927527.464], [566706.605, 6927733.281], [566515.382, 6927810.249], [566253.688, 6927747.872], [566328.602, 6927551.317], [565834.031, 6926519.285], [565855.256, 6926346.535], [566057.174, 6926344.037], [566640.339, 6926008.377], [566668.428, 6925830.849], [566792.978, 6925766.875], [567100.693, 6925040.734], [566963.217, 6924081.759], [566396.946, 6924200.407], [565178.653, 6923319.371], [564581.189, 6922873.833], [564286.912, 6922039.77], [564482.334, 6921924.618], [564516.121, 6921775.878], [565246.927, 6921287.481], [565260.42, 6921526.684], [566102.532, 6920949.194], [566390.959, 6920779.097], [566573.9, 6918862.772], [566383.878, 6918822.188], [566392.975, 6918650.857], [566883.178, 6918221.934], [567386.648, 6917904.198], [567719.478, 6917741.784], [568448.011, 6917508.605], [568445.97, 6917327.957], [568582.394, 6917199.871], [568633.119, 6917069.12], [568741.379, 6917005.678], [568786.508, 6916896.133], [568755.548, 6916816.281], [568769.87, 6916720.292], [568653.264, 6916564.774], [568628.705, 6916407.014], [568335.101, 6916047.721], [568237.14, 6915873.895], [568288.721, 6915547.827], [568204.356, 6915326.516], [568261.305, 6914972.073], [568348.729, 6914936.706], [568456.174, 6914849.629], [568499.739, 6914766.046], [568272.532, 6914580.719], [568165.876, 6914414.586], [568071.215, 6914370.703], [566940.521, 6914042.925], [566296.786, 6914418.844], [565882.233, 6914493.212], [565534.457, 6914743.786], [565483.56, 6915280.818], [565033.242, 6915474.136], [564416.794, 6914919.158], [563391.216, 6913696.347], [562752.374, 6913990.524], [561593.244, 6914087.177], [561923.213, 6913467.43], [561066.571, 6911436.947], [560682.429, 6911007.818], [558713.326, 6911517.498], [558484.922, 6910887.152], [556859.981, 6910931.722], [556841.792, 6910219.911], [557164.263, 6909948.323], [556831.999, 6909747.202], [556345.095, 6909984.103], [555486.971, 6909679.472], [555377.839, 6909367.866], [555685.867, 6909118.649], [556076.113, 6908330.171], [555791.43, 6907881.851], [555575.634, 6906800.784], [555057.936, 6906337.272], [554662.424, 6906456.869], [553511.758, 6907524.679], [553083.402, 6907605.706], [552992.935, 6908072.659], [553229.42, 6908411.523], [552872.41, 6909055.554], [552855.615, 6909371.726], [552417.99, 6910039.552], [551598.256, 6911044.695], [551216.071, 6911453.77], [550907.595, 6911574.219], [549556.111, 6913088.206], [548157.994, 6915148.651], [548039.041, 6915540.391], [547624.706, 6916060.277], [547197.076, 6916903.133], [546619.411, 6916800.07], [546229.045, 6915719.353], [545783.078, 6915600.754], [545639.787, 6915695.071], [545048.655, 6915431.314], [544451.9, 6914920.217], [543888.13, 6914755.48], [543761.309, 6914397.342], [543410.485, 6914199.908], [543287.095, 6913707.173], [542777.24, 6913794.059], [541849.256, 6914916.699], [541199.529, 6914793.518], [539220.287, 6915339.175], [535793.999, 6916121.358], [535450.227, 6917662.627], [534186.333, 6918515.969], [533729.715, 6918891.212], [532537.482, 6921088.407], [531264.588, 6922342.786], [531049.478, 6922745.632], [529548.17, 6924226.704], [528926.419, 6924685.512], [528024.381, 6925178.704], [527296.975, 6925180.197], [525184.623, 6926292.926], [523960.7, 6926720.155], [523965.11, 6927219.139], [523779.644, 6927684.084], [523683.027, 6928184.647], [523252.599, 6928072.366], [522744.397, 6928290.694], [521425.623, 6929425.444], [521042.272, 6930382.162], [520950.92, 6930607.775], [521690.259, 6932035.488], [521635.817, 6932542.592], [521619.516, 6933588.272], [521887.801, 6934432.632], [522818.219, 6935240.503], [523082.214, 6934844.361], [523347.785, 6934684.431], [523733.988, 6934641.685], [523778.231, 6935014.489], [523664.549, 6935908.372], [523828.34, 6936255.031], [523816.996, 6936594.934], [524007.492, 6936950.448], [523888.269, 6937502.09], [523314.397, 6938169.424], [523696.037, 6938971.8], [523673.442, 6939635.034], [524158.736, 6939410.665], [524608.061, 6939855.642], [524658.496, 6940334.271], [524110.61, 6940760.22], [523709.612, 6941540.505], [523883.34, 6941914.699], [523608.593, 6942298.43], [523087.657, 6942680.115], [524824.082, 6943593.136], [524566.411, 6943953.275], [525150.002, 6944326.659], [526252.571, 6942264.281], [526958.313, 6942255.46], [527631.311, 6941977.096], [527685.082, 6942835.653], [527242.329, 6943820.045], [527041.768, 6944732.167], [526579.387, 6945559.877], [526437.466, 6946718.596], [526114.288, 6946795.875], [527092.078, 6948103.354], [526248.511, 6949378.245], [525976.019, 6949907.529], [524873.941, 6950930.701], [524700.587, 6951347.074], [524327.818, 6951288.858], [524002.868, 6951620.41], [524239.455, 6952340.11], [524147.445, 6952659.804], [524686.223, 6952902.41], [526541.828, 6951640.78]]]}}, {\\\"id\\\": \\\"225\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vimpeli\\\", \\\"elakelaisten_osuus\\\": 34.7, \\\"freshwarea\\\": 41.47, \\\"gml_id\\\": 1601100113, \\\"landarea\\\": 287.32, \\\"namefin\\\": \\\"Vimpeli\\\", \\\"nameswe\\\": \\\"Vimpeli\\\", \\\"natcode\\\": \\\"934\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 328.79}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[338931.935, 7023487.98], [339192.861, 7022471.395], [339932.107, 7021744.371], [340354.266, 7021134.252], [340075.609, 7020897.149], [339636.289, 7021625.98], [339300.81, 7021495.36], [338196.285, 7023565.7], [338420.421, 7024035.025], [338931.935, 7023487.98]]], [[[347313.906, 7019966.588], [350315.927, 7018971.81], [352036.619, 7017751.916], [354228.049, 7016186.627], [357842.967, 7012259.634], [360769.996, 7007607.465], [358715.103, 7006026.686], [358246.35, 7006753.93], [357888.673, 7006642.602], [357993.919, 7006043.396], [357692.672, 7005876.251], [357452.604, 7005219.8], [357113.298, 7005076.054], [356791.574, 7005410.779], [356270.784, 7005868.223], [356247.124, 7006082.67], [355741.162, 7006136.802], [355378.09, 7006296.539], [354806.052, 7006517.327], [354702.613, 7006452.437], [355257.33, 7005693.9], [354223.371, 7004639.464], [354506.926, 7004065.953], [354233.29, 7003938.872], [353758.517, 7004785.768], [353198.936, 7004095.729], [352385.537, 7005311.72], [345476.078, 7001572.78], [343230.733, 7000963.675], [343371.715, 7000717.489], [343000.19, 7000437.209], [342794.912, 7001249.763], [342903.79, 7001937.357], [341921.025, 7002025.352], [335875.889, 6998150.953], [334785.181, 6999966.11], [334678.182, 7000463.592], [335264.183, 7001363.35], [335410.104, 7002082.47], [334329.441, 7002293.676], [334038.634, 7005280.721], [333800.972, 7009399.192], [337230.074, 7012139.906], [337871.89, 7012394.774], [337726.641, 7012989.472], [338027.402, 7013372.125], [338431.362, 7012082.03], [338491.506, 7011913.481], [338193.65, 7011832.907], [337531.736, 7011662.751], [337721.864, 7011324.213], [338491.438, 7011378.194], [339100.152, 7011632.287], [339062.49, 7011993.112], [339613.604, 7012309.761], [341603.627, 7013056.263], [342199.079, 7013709.329], [342611.354, 7020368.441], [347313.906, 7019966.588]]]]}}, {\\\"id\\\": \\\"226\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Imatra\\\", \\\"elakelaisten_osuus\\\": 35.4, \\\"freshwarea\\\": 36.27, \\\"gml_id\\\": 1601100505, \\\"landarea\\\": 155.01, \\\"namefin\\\": \\\"Imatra\\\", \\\"nameswe\\\": \\\"Imatra\\\", \\\"natcode\\\": \\\"153\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 191.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[602873.162, 6795012.41], [602190.985, 6793377.261], [602024.201, 6792775.966], [602534.202, 6793268.213], [602890.257, 6793122.363], [603074.977, 6792576.039], [602761.39, 6791332.681], [603425.182, 6790904.384], [603912.652, 6790749.549], [603481.503, 6789663.155], [608339.867, 6785752.508], [608340.239, 6785752.209], [608698.741, 6785463.503], [606797.8, 6783769.1], [605322.7, 6781243.5], [605040.9, 6781249.7], [604651.9, 6780838.4], [603692.7, 6780551.9], [603094.6, 6780262.0], [602417.7, 6780380.7], [601406.6, 6780101.1], [600850.0, 6779328.1], [598002.6, 6777691.7], [597482.0, 6774886.2], [597291.9, 6774531.2], [597105.3, 6774433.6], [595843.841, 6772915.996], [595403.92, 6773455.568], [595403.549, 6773456.033], [595401.337, 6773458.807], [595398.993, 6773461.747], [594355.861, 6774632.132], [593521.7, 6775238.009], [593491.371, 6775896.875], [593864.9, 6778500.966], [593960.82, 6780049.722], [593512.214, 6780538.657], [593580.34, 6781216.756], [593460.731, 6781301.533], [593473.442, 6781667.009], [593034.525, 6781677.835], [593114.432, 6783257.421], [593325.685, 6783878.448], [592402.858, 6784794.21], [593001.083, 6785418.999], [591184.497, 6787114.201], [591620.753, 6787594.555], [589610.527, 6788584.563], [591358.837, 6789769.532], [591600.941, 6789522.577], [593682.619, 6791103.442], [594667.94, 6790521.272], [597225.264, 6790900.146], [597829.105, 6790248.147], [599204.259, 6792013.805], [599346.282, 6792701.622], [598466.211, 6794274.749], [598941.403, 6795109.88], [599669.874, 6794877.355], [602086.541, 6795477.001], [602392.775, 6795958.022], [602873.162, 6795012.41]]]}}, {\\\"id\\\": \\\"227\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Liperi\\\", \\\"elakelaisten_osuus\\\": 26.3, \\\"freshwarea\\\": 434.36, \\\"gml_id\\\": 1601100664, \\\"landarea\\\": 726.87, \\\"namefin\\\": \\\"Liperi\\\", \\\"nameswe\\\": \\\"Liperi\\\", \\\"natcode\\\": \\\"426\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1161.23}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[632526.216, 6956208.318], [633004.715, 6956179.635], [633328.553, 6955137.468], [633882.823, 6954437.921], [633768.984, 6953762.831], [633921.392, 6952275.187], [633263.961, 6952570.042], [633083.493, 6952264.975], [635129.845, 6949861.893], [633914.307, 6949327.718], [634656.762, 6948934.426], [635158.652, 6948626.609], [635266.73, 6947868.01], [635152.375, 6947112.966], [635384.477, 6945034.878], [639627.554, 6938670.9], [641593.149, 6935279.406], [642490.814, 6928299.034], [642761.947, 6922622.43], [642812.498, 6921563.802], [639845.445, 6920265.03], [636900.765, 6917058.113], [631158.664, 6922113.32], [630128.715, 6921234.043], [618711.242, 6919371.21], [617168.754, 6921653.408], [615224.056, 6922708.652], [614426.258, 6921976.043], [613965.636, 6921162.962], [613650.869, 6920896.829], [612976.709, 6921191.487], [612545.462, 6921224.958], [612342.095, 6921457.937], [611859.168, 6920812.636], [611682.145, 6920380.801], [612163.317, 6919551.828], [612018.017, 6919096.63], [609797.981, 6919374.967], [608644.615, 6920183.097], [608652.317, 6920556.323], [608308.424, 6920915.469], [608707.992, 6921218.783], [608999.319, 6921748.925], [608764.279, 6922297.35], [607489.861, 6923163.68], [607673.787, 6925423.802], [608499.062, 6929377.352], [609128.315, 6930366.664], [608565.739, 6931012.163], [607318.648, 6930724.794], [606721.362, 6930972.747], [605932.281, 6931813.756], [605077.388, 6932230.637], [604668.03, 6932130.793], [604696.647, 6932519.445], [604210.081, 6932528.472], [603864.674, 6932860.58], [603032.112, 6933153.57], [604859.862, 6933709.92], [604664.828, 6934744.868], [604538.268, 6934929.606], [603288.364, 6935459.366], [602964.52, 6935965.009], [601908.234, 6936562.687], [600944.254, 6937917.129], [599782.285, 6938646.182], [599881.115, 6939946.668], [600926.757, 6939420.77], [601758.534, 6939262.506], [602619.812, 6940145.648], [602800.538, 6940730.343], [603586.277, 6941691.054], [604896.158, 6942945.931], [604355.647, 6943606.017], [603856.715, 6945308.146], [601861.35, 6945771.208], [601449.984, 6947163.254], [604035.554, 6948693.454], [607082.934, 6950809.335], [606643.219, 6951331.979], [609488.34, 6953907.567], [610317.686, 6954319.058], [610552.663, 6954087.821], [612490.011, 6953213.914], [613061.524, 6952776.731], [616554.232, 6952200.822], [617121.13, 6952663.72], [617807.354, 6956270.871], [618781.253, 6955723.239], [620045.575, 6956577.095], [620468.738, 6956328.359], [620193.552, 6954880.559], [621949.579, 6953219.442], [622119.558, 6952518.701], [622811.278, 6952316.302], [623274.51, 6953463.228], [624056.558, 6954854.105], [625846.497, 6957002.854], [626489.648, 6957082.457], [628190.237, 6955640.353], [629067.796, 6955964.978], [629877.651, 6956490.429], [630083.791, 6956951.127], [630728.495, 6956813.916], [631929.051, 6957093.322], [632146.536, 6957206.258], [632526.216, 6956208.318]]]}}, {\\\"id\\\": \\\"228\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sotkamo\\\", \\\"elakelaisten_osuus\\\": 31.3, \\\"freshwarea\\\": 303.11, \\\"gml_id\\\": 1601100589, \\\"landarea\\\": 2648.75, \\\"namefin\\\": \\\"Sotkamo\\\", \\\"nameswe\\\": \\\"Sotkamo\\\", \\\"natcode\\\": \\\"765\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2951.86}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[573863.228, 7136271.869], [574890.416, 7135771.211], [575266.504, 7136253.712], [576649.893, 7135416.65], [577379.863, 7135706.702], [577543.14, 7134923.126], [577288.726, 7134613.587], [582013.795, 7132356.815], [584731.874, 7132752.879], [589092.886, 7125174.871], [589723.863, 7124929.668], [589345.478, 7124717.825], [590027.428, 7123473.763], [589989.355, 7122562.648], [591154.191, 7116821.509], [591144.782, 7116810.957], [590634.08, 7116890.584], [590442.923, 7116005.368], [591219.817, 7115153.553], [590941.634, 7115033.467], [591068.155, 7114344.688], [591713.184, 7114057.208], [591865.772, 7113307.775], [592803.503, 7113453.707], [592637.746, 7112520.824], [592028.043, 7112523.782], [592405.534, 7110691.572], [592138.647, 7109360.583], [592692.838, 7109133.027], [593103.257, 7108796.829], [592975.486, 7108248.541], [593697.541, 7108060.956], [597695.078, 7104371.5], [596758.145, 7103352.808], [600218.014, 7098870.308], [608266.617, 7094962.388], [606127.874, 7081796.115], [603849.594, 7081611.248], [597232.124, 7080895.685], [592736.498, 7080090.685], [584358.113, 7082197.697], [577260.491, 7083740.433], [575411.88, 7084178.079], [573709.114, 7084778.258], [573485.878, 7084307.211], [571733.856, 7083473.122], [572443.86, 7082072.139], [567078.911, 7070399.907], [563043.244, 7060737.936], [562153.475, 7061355.213], [560035.192, 7064500.252], [559290.42, 7065338.115], [557710.527, 7065881.285], [556534.357, 7066842.237], [552296.423, 7073096.138], [545558.664, 7080024.947], [546200.491, 7080614.814], [547972.198, 7081367.701], [547699.719, 7081761.896], [547877.971, 7081968.55], [548396.704, 7081549.733], [549433.7, 7081994.305], [550812.267, 7083205.238], [552290.472, 7086700.074], [550065.201, 7091804.043], [550754.07, 7092632.222], [550533.804, 7092866.261], [549996.022, 7092820.849], [549545.448, 7093159.871], [549070.841, 7094100.537], [544529.761, 7098514.44], [543899.289, 7098738.905], [543924.579, 7099278.777], [542355.255, 7101364.961], [541861.986, 7100836.36], [540603.218, 7102212.076], [541362.757, 7102693.164], [541485.243, 7104275.052], [541203.91, 7104370.085], [541519.641, 7104708.697], [540797.186, 7106430.151], [540893.592, 7108520.317], [540619.595, 7108924.811], [540474.289, 7110746.627], [540598.168, 7111253.311], [540224.542, 7112127.296], [541062.071, 7112769.966], [541399.527, 7113490.034], [541463.446, 7114383.989], [540772.896, 7114532.96], [539327.166, 7114548.571], [538745.374, 7115354.196], [540885.579, 7115020.886], [541020.419, 7115602.459], [543544.497, 7121956.662], [545289.781, 7123433.089], [545936.621, 7123063.868], [546543.723, 7124505.314], [548240.559, 7123587.603], [548409.694, 7123909.508], [547515.046, 7124905.185], [549871.938, 7126737.187], [552932.762, 7130542.862], [553757.794, 7129844.893], [553675.614, 7130689.24], [556015.922, 7131849.309], [554778.497, 7132843.339], [555109.2, 7133409.367], [556376.22, 7133485.754], [558444.19, 7134306.008], [558687.687, 7135470.306], [559907.893, 7135637.459], [562377.712, 7134585.701], [564702.16, 7134968.727], [566153.25, 7137942.105], [570594.488, 7139642.95], [573863.228, 7136271.869]]]}}, {\\\"id\\\": \\\"229\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Suonenjoki\\\", \\\"elakelaisten_osuus\\\": 38.0, \\\"freshwarea\\\": 148.79, \\\"gml_id\\\": 1601100559, \\\"landarea\\\": 713.55, \\\"namefin\\\": \\\"Suonenjoki\\\", \\\"nameswe\\\": \\\"Suonenjoki\\\", \\\"natcode\\\": \\\"778\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 862.34}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[498498.863, 6965137.158], [499042.144, 6962060.719], [498822.701, 6960909.122], [500611.689, 6958409.838], [501019.223, 6958589.69], [501545.781, 6958464.222], [502127.962, 6957720.401], [502625.302, 6957532.751], [504189.07, 6958807.264], [503796.409, 6959137.826], [505977.348, 6959220.208], [506211.11, 6958768.485], [506605.71, 6958363.248], [507108.066, 6958063.131], [507831.691, 6957898.008], [507904.057, 6957588.078], [508366.346, 6957233.224], [508946.211, 6957137.913], [509236.082, 6956930.435], [509358.502, 6956696.132], [509768.685, 6956417.911], [510350.426, 6955832.742], [510514.026, 6955395.801], [511097.958, 6954912.37], [511430.017, 6955067.808], [514109.286, 6952466.858], [516429.57, 6953754.81], [516823.147, 6953596.338], [517430.696, 6953497.248], [517848.327, 6953592.008], [518488.637, 6953277.532], [518772.532, 6952814.493], [519473.588, 6952198.684], [520488.591, 6951967.626], [520978.755, 6952315.137], [521346.581, 6952257.896], [521802.189, 6952112.923], [521845.822, 6952905.912], [522406.266, 6952234.557], [522959.804, 6953330.837], [523295.83, 6953505.962], [523396.204, 6954278.834], [524395.833, 6954055.542], [524686.223, 6952902.41], [524147.445, 6952659.804], [524239.455, 6952340.11], [524002.868, 6951620.41], [524327.818, 6951288.858], [524700.587, 6951347.074], [524873.941, 6950930.701], [525976.019, 6949907.529], [526248.511, 6949378.245], [527092.078, 6948103.354], [526114.288, 6946795.875], [526437.466, 6946718.596], [526579.387, 6945559.877], [527041.768, 6944732.167], [527242.329, 6943820.045], [527685.082, 6942835.653], [527631.311, 6941977.096], [526958.313, 6942255.46], [526252.571, 6942264.281], [525150.002, 6944326.659], [524566.411, 6943953.275], [524824.082, 6943593.136], [523087.657, 6942680.115], [523608.593, 6942298.43], [523883.34, 6941914.699], [523709.612, 6941540.505], [524110.61, 6940760.22], [524658.496, 6940334.271], [524608.061, 6939855.642], [524158.736, 6939410.665], [523673.442, 6939635.034], [523696.037, 6938971.8], [523314.397, 6938169.424], [523888.269, 6937502.09], [524007.492, 6936950.448], [523816.996, 6936594.934], [523828.34, 6936255.031], [523664.549, 6935908.372], [523778.231, 6935014.489], [523733.988, 6934641.685], [523347.785, 6934684.431], [523082.214, 6934844.361], [522818.219, 6935240.503], [521887.801, 6934432.632], [521619.516, 6933588.272], [521635.817, 6932542.592], [521690.259, 6932035.488], [520950.92, 6930607.775], [521042.272, 6930382.162], [520244.811, 6930269.431], [519861.123, 6930550.852], [519788.018, 6931533.146], [518710.738, 6933279.584], [518411.365, 6933201.719], [517734.413, 6932478.908], [519126.314, 6931399.871], [518821.659, 6930779.302], [517892.708, 6930872.506], [518672.908, 6929515.493], [517400.241, 6929606.302], [515592.643, 6928346.987], [514947.394, 6925889.388], [514639.03, 6925702.548], [514245.671, 6926063.019], [513812.093, 6925769.997], [512944.067, 6927035.395], [512923.607, 6927659.298], [511594.191, 6927678.736], [511379.634, 6925864.301], [510650.231, 6925616.404], [510460.615, 6926185.998], [511238.256, 6927096.684], [510883.215, 6927539.844], [509765.393, 6926570.933], [510084.372, 6924990.589], [508598.941, 6925350.611], [509136.198, 6925615.888], [508637.45, 6926831.531], [508775.791, 6927236.868], [508405.24, 6927936.581], [507085.365, 6929148.583], [506873.147, 6929597.4], [505874.645, 6930580.097], [506102.983, 6929649.511], [505433.734, 6929230.339], [505265.032, 6928189.748], [504838.293, 6928218.713], [504558.14, 6928458.629], [504195.908, 6928607.103], [503516.586, 6927577.799], [503160.479, 6926689.347], [499852.823, 6926485.709], [499683.787, 6927049.08], [499270.352, 6927500.495], [498925.389, 6927604.051], [498480.313, 6928662.911], [497537.859, 6927817.613], [497483.479, 6927158.521], [498311.083, 6925438.814], [498547.465, 6924789.184], [498017.041, 6924411.339], [498105.643, 6923797.081], [497493.305, 6923492.7], [497281.738, 6924110.156], [496897.785, 6924577.23], [496713.41, 6925071.557], [495120.148, 6926070.444], [494015.685, 6927392.702], [493788.071, 6928274.445], [494074.44, 6928880.184], [493973.591, 6929319.901], [495156.045, 6931941.087], [495106.377, 6932403.011], [494172.989, 6932857.494], [493681.359, 6932700.77], [493072.402, 6933491.134], [493044.599, 6934152.335], [493516.921, 6934440.989], [494102.727, 6934489.215], [494515.929, 6934883.157], [494498.431, 6935222.205], [495172.04, 6935488.876], [495488.747, 6936168.862], [492656.622, 6938539.237], [491820.766, 6938390.351], [491367.852, 6938855.224], [491093.104, 6939556.034], [492747.299, 6939534.931], [495427.895, 6939324.525], [495248.626, 6940060.827], [495221.475, 6940518.094], [498033.519, 6939522.216], [499678.349, 6941395.264], [499490.447, 6941583.481], [498291.888, 6940363.157], [497946.484, 6940443.878], [496500.686, 6942023.564], [495825.803, 6942288.334], [495743.735, 6943034.061], [495888.262, 6943862.205], [497194.281, 6944914.636], [496097.619, 6946471.076], [496150.42, 6949401.785], [495226.642, 6953616.546], [495739.647, 6956179.048], [491950.636, 6963827.477], [493949.142, 6965621.232], [493664.883, 6966072.759], [494074.153, 6967275.994], [494799.063, 6967856.067], [494976.216, 6967893.646], [495364.254, 6968874.07], [498498.863, 6965137.158]]]}}, {\\\"id\\\": \\\"230\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Isojoki\\\", \\\"elakelaisten_osuus\\\": 37.6, \\\"freshwarea\\\": 5.05, \\\"gml_id\\\": 1601100249, \\\"landarea\\\": 642.38, \\\"namefin\\\": \\\"Isojoki\\\", \\\"nameswe\\\": \\\"Stor\\\\u00e5\\\", \\\"natcode\\\": \\\"151\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 647.43}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[236439.099, 6913273.385], [236769.076, 6912952.904], [236941.459, 6913476.473], [237376.971, 6913468.796], [237858.422, 6912305.976], [248728.146, 6900520.771], [249539.259, 6894974.367], [244232.829, 6887379.314], [236801.933, 6882124.138], [225346.628, 6887071.612], [222946.328, 6887833.806], [220077.099, 6887919.971], [219279.874, 6890304.411], [219915.284, 6891632.822], [220598.229, 6892319.177], [219644.377, 6896875.884], [220672.425, 6898182.983], [220952.133, 6902377.43], [222290.181, 6901278.795], [222639.866, 6901935.83], [223144.816, 6902013.071], [223300.344, 6901573.528], [222826.449, 6900965.132], [223708.692, 6901517.61], [224367.82, 6904027.344], [222606.082, 6906388.024], [225119.667, 6909119.52], [228225.214, 6909312.401], [228071.129, 6909811.776], [228152.922, 6909981.352], [228413.249, 6909859.476], [231256.322, 6910737.189], [232038.375, 6916571.412], [234558.9, 6917838.143], [236439.099, 6913273.385]]]}}, {\\\"id\\\": \\\"231\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Posio\\\", \\\"elakelaisten_osuus\\\": 46.4, \\\"freshwarea\\\": 505.11, \\\"gml_id\\\": 1601100311, \\\"landarea\\\": 3039.79, \\\"namefin\\\": \\\"Posio\\\", \\\"nameswe\\\": \\\"Posio\\\", \\\"natcode\\\": \\\"614\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3544.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[575470.26, 7375090.259], [574331.064, 7366929.423], [572160.937, 7366924.199], [571438.651, 7366393.298], [570870.689, 7366761.25], [571437.378, 7365418.103], [570785.355, 7365496.054], [570390.764, 7363396.727], [569229.505, 7363445.875], [569234.348, 7359966.517], [569530.172, 7359634.081], [569540.433, 7359062.803], [569244.328, 7358689.635], [569247.407, 7357833.435], [568892.525, 7357831.516], [571229.728, 7351250.243], [571535.284, 7350680.086], [571960.888, 7350559.798], [572146.932, 7350323.093], [573067.55, 7350579.59], [573597.504, 7350603.19], [573711.593, 7350460.738], [573861.763, 7348941.833], [574700.121, 7348468.029], [575614.245, 7350085.478], [575839.838, 7350162.04], [576112.055, 7350105.288], [576530.621, 7349806.88], [576862.927, 7350073.309], [577797.851, 7349747.178], [578610.673, 7349374.686], [578214.194, 7348484.636], [578638.134, 7348267.889], [578947.276, 7347711.139], [579237.101, 7347480.28], [579072.003, 7347315.891], [579008.16, 7346919.562], [579332.683, 7346700.37], [579100.633, 7346573.078], [578970.388, 7346112.395], [578258.483, 7345952.285], [578099.634, 7345625.572], [578181.946, 7345364.513], [578483.531, 7345380.664], [578752.636, 7344989.463], [578139.801, 7343814.066], [579673.784, 7341606.08], [577448.01, 7338846.217], [577450.11, 7336119.469], [576184.002, 7335152.04], [572435.541, 7335122.877], [573539.548, 7330944.378], [574439.627, 7330457.992], [573532.923, 7328766.401], [576820.432, 7327831.078], [576732.305, 7327453.406], [577116.841, 7326887.01], [577806.06, 7326846.825], [578110.252, 7326401.46], [577653.363, 7326099.331], [577854.484, 7325798.504], [578365.892, 7326070.471], [579010.934, 7326741.97], [579928.398, 7325866.071], [578514.582, 7325167.317], [578471.813, 7324507.86], [578712.348, 7323897.549], [579271.839, 7323659.216], [579288.478, 7321216.143], [577101.67, 7321197.137], [575757.955, 7320885.089], [575008.83, 7319436.645], [572544.29, 7319425.845], [572533.614, 7320747.032], [570051.364, 7321770.669], [570054.96, 7321158.727], [567302.553, 7321138.093], [567313.995, 7319556.826], [564099.99, 7319104.59], [564067.37, 7320466.929], [564214.141, 7320793.314], [564846.617, 7321069.7], [565133.33, 7321503.265], [564564.407, 7321678.262], [564215.227, 7321200.5], [563017.365, 7321040.931], [562291.438, 7320821.39], [562216.441, 7320417.873], [562661.828, 7320437.51], [563104.105, 7320196.602], [563267.106, 7318133.286], [563274.71, 7317108.761], [562847.366, 7317386.655], [562374.076, 7317389.286], [562174.792, 7316979.046], [562371.144, 7316158.058], [565167.663, 7314687.818], [566384.16, 7311625.57], [568767.928, 7308451.269], [569086.753, 7303600.565], [566988.618, 7303463.983], [555960.827, 7298229.095], [553138.504, 7299001.446], [552273.747, 7299756.158], [541533.649, 7300441.959], [541550.167, 7300814.594], [541259.366, 7300777.466], [541109.819, 7300461.152], [534776.431, 7300873.374], [535060.569, 7302026.853], [535817.024, 7301806.136], [535884.599, 7302094.746], [535048.175, 7302408.077], [531660.85, 7309046.605], [529768.18, 7315646.993], [529401.652, 7315434.262], [529119.709, 7315457.893], [528977.868, 7315272.473], [528659.807, 7315210.376], [528369.989, 7315100.51], [528226.506, 7315178.631], [528087.124, 7314773.819], [527771.011, 7314801.401], [527685.955, 7315041.923], [527138.055, 7314986.615], [527137.978, 7314815.974], [527046.824, 7314623.068], [526884.518, 7314566.414], [526653.689, 7314223.002], [526456.432, 7313746.442], [526180.542, 7313480.006], [526133.236, 7313263.097], [525842.687, 7312955.607], [525712.282, 7312386.469], [525845.757, 7311895.595], [525605.31, 7311830.115], [525384.513, 7311736.735], [525075.979, 7311856.245], [524669.036, 7311650.939], [524396.557, 7311674.753], [523951.184, 7311273.286], [522617.133, 7312376.021], [521912.154, 7312566.625], [520347.462, 7312026.017], [518845.212, 7312611.05], [519122.505, 7312708.644], [519226.394, 7312959.252], [519132.056, 7313143.161], [518748.091, 7313463.748], [520795.847, 7316637.623], [521109.68, 7327849.841], [521688.753, 7328153.164], [522150.728, 7327978.892], [522382.534, 7328227.435], [521511.456, 7328498.387], [521120.404, 7328251.817], [521208.571, 7331556.466], [512311.532, 7335857.737], [511583.982, 7341846.137], [511710.473, 7342032.767], [514687.481, 7346415.994], [514039.777, 7347093.346], [511734.922, 7348523.66], [512214.036, 7350805.994], [510487.383, 7354769.37], [511192.147, 7356938.071], [518606.762, 7352192.601], [527167.39, 7363214.051], [526623.087, 7364728.303], [535378.621, 7368308.192], [543832.875, 7367003.429], [550800.376, 7368510.817], [554638.626, 7367022.047], [556095.343, 7369113.973], [557279.895, 7369030.03], [557523.268, 7369535.918], [557169.844, 7369520.859], [556809.918, 7369777.13], [556769.304, 7370078.025], [557287.632, 7370831.338], [559803.307, 7373462.411], [560741.431, 7374437.0], [562149.926, 7375474.395], [575470.26, 7375090.259]]]}}, {\\\"id\\\": \\\"232\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ii\\\", \\\"elakelaisten_osuus\\\": 25.7, \\\"freshwarea\\\": 52.33, \\\"gml_id\\\": 1601100223, \\\"landarea\\\": 1614.1, \\\"namefin\\\": \\\"Ii\\\", \\\"nameswe\\\": \\\"Ii\\\", \\\"natcode\\\": \\\"139\\\", \\\"seawarea\\\": 1206.0, \\\"totalarea\\\": 2872.43}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[456431.141, 7248705.838], [456766.802, 7248138.04], [457360.943, 7247970.644], [459258.555, 7248453.677], [460015.237, 7247820.89], [460520.949, 7242121.548], [453395.501, 7240901.587], [453304.001, 7241823.144], [453168.835, 7243281.572], [452976.425, 7245448.545], [452673.328, 7248026.658], [453721.83, 7248064.032], [454679.509, 7248187.745], [454676.239, 7248470.344], [455867.482, 7248770.67], [456431.141, 7248705.838]]], [[[461385.917, 7289578.81], [461012.297, 7270595.634], [454689.127, 7270616.058], [454541.099, 7271357.86], [454068.902, 7271714.991], [449250.194, 7271301.868], [449211.357, 7271229.371], [444079.256, 7270323.677], [436755.625, 7252505.571], [437101.716, 7251320.914], [435486.112, 7248251.902], [437741.614, 7246042.049], [437676.614, 7245973.074], [437839.755, 7245814.967], [437771.771, 7245716.043], [437671.586, 7245566.51], [437920.405, 7245059.052], [438179.146, 7245226.887], [438277.568, 7245382.323], [438300.916, 7245358.721], [438365.097, 7245262.39], [438405.563, 7245253.26], [438413.847, 7245251.836], [438409.377, 7245186.164], [438482.158, 7244984.02], [438517.183, 7244906.351], [438575.456, 7244836.812], [438652.376, 7244722.096], [438729.611, 7244554.542], [438739.176, 7244482.295], [438731.087, 7244419.7], [438707.046, 7244374.257], [438645.227, 7244328.606], [438623.521, 7244296.747], [438623.807, 7244275.156], [438609.72, 7244255.41], [438585.33, 7244237.576], [438537.338, 7244178.42], [438505.248, 7243997.049], [438466.979, 7243905.113], [438394.456, 7243776.943], [438379.751, 7243720.938], [438333.785, 7243618.452], [438317.404, 7243506.46], [438327.857, 7243406.756], [438306.317, 7243381.242], [438300.685, 7243362.365], [438342.633, 7243318.158], [438348.187, 7243283.952], [438371.926, 7243249.069], [438412.783, 7243220.777], [438438.448, 7243214.646], [438496.034, 7243224.357], [438570.546, 7243211.932], [438653.168, 7243155.234], [438711.489, 7243100.556], [438742.559, 7243073.685], [438813.323, 7243034.883], [438935.47, 7242985.146], [438987.0, 7242907.518], [439029.194, 7242821.531], [439048.618, 7242712.863], [439018.324, 7242597.39], [439016.699, 7242546.718], [438992.607, 7242454.969], [438940.64, 7242336.284], [438902.487, 7242306.637], [438885.853, 7242275.042], [438860.38, 7242281.774], [438841.317, 7242268.741], [438831.065, 7242271.482], [438795.08, 7242251.049], [438771.774, 7242233.316], [438716.179, 7242148.231], [438698.776, 7242081.44], [438713.384, 7242069.44], [438688.957, 7242030.326], [438668.934, 7241974.682], [438618.006, 7241923.28], [438590.359, 7241923.095], [438501.841, 7241891.876], [438448.365, 7241898.253], [438375.29, 7241929.107], [438321.253, 7241969.836], [438245.121, 7242051.644], [438246.435, 7242068.834], [438259.1, 7242072.29], [438259.446, 7242096.623], [438209.38, 7242209.675], [438187.594, 7242234.837], [438218.289, 7242252.044], [438219.247, 7242266.379], [438181.096, 7242328.807], [438139.462, 7242364.957], [438095.049, 7242380.402], [438051.624, 7242369.948], [438015.636, 7242377.294], [437945.408, 7242368.672], [437853.772, 7242159.216], [437899.732, 7242121.208], [437911.582, 7242142.927], [437940.698, 7242149.533], [437970.055, 7242134.017], [438014.618, 7242083.213], [438025.059, 7242070.697], [438041.018, 7242050.956], [438085.811, 7241997.501], [438137.337, 7241950.552], [438179.275, 7241895.156], [438163.656, 7241886.246], [438096.342, 7241845.769], [438220.193, 7241641.175], [438232.294, 7241621.352], [438235.084, 7241616.967], [438262.376, 7241581.211], [438564.399, 7241190.253], [438639.057, 7241094.811], [438728.124, 7241042.393], [438997.292, 7240946.528], [439741.231, 7240683.145], [439927.722, 7240760.033], [439966.074, 7240708.313], [440551.4, 7240899.664], [440717.382, 7240686.751], [440766.081, 7240624.079], [440803.616, 7240575.772], [440764.104, 7240513.239], [440531.821, 7240143.947], [440657.888, 7239991.759], [440791.706, 7239830.216], [440623.165, 7239699.402], [440642.577, 7239617.378], [440711.04, 7239518.275], [440744.562, 7239469.75], [440920.634, 7239214.877], [441023.528, 7239065.933], [440950.474, 7239000.968], [440816.204, 7238878.92], [440645.284, 7238729.566], [440492.43, 7238600.925], [440356.408, 7238482.085], [440288.527, 7238422.652], [440234.758, 7238375.142], [440096.977, 7238253.406], [440053.065, 7238214.597], [440010.195, 7238177.315], [439168.31, 7237446.069], [439062.289, 7237353.2], [439046.893, 7237340.495], [438945.178, 7237251.149], [438864.25, 7237179.957], [438602.398, 7236954.301], [438526.001, 7236889.247], [438504.662, 7236870.284], [438231.937, 7236636.213], [437686.982, 7236167.735], [437413.501, 7235933.846], [437389.747, 7235913.698], [437355.76, 7235859.602], [437289.106, 7235928.857], [436859.98, 7236244.509], [436760.946, 7236344.701], [436542.438, 7236683.949], [436485.022, 7236687.947], [436429.496, 7236714.907], [436366.553, 7236779.105], [436182.707, 7236886.15], [435988.959, 7237000.373], [435881.213, 7237005.15], [435729.949, 7237024.836], [435687.613, 7237070.645], [435624.928, 7237060.673], [435478.632, 7237051.633], [435351.734, 7237066.104], [435038.837, 7237101.383], [435019.752, 7237103.647], [434970.836, 7237111.278], [434912.957, 7237120.241], [434800.38, 7237130.895], [434752.608, 7237136.649], [434646.26, 7237147.916], [434602.02, 7237152.753], [434497.404, 7237165.236], [434438.188, 7237171.559], [434320.768, 7237185.676], [433608.298, 7237271.33], [433402.186, 7237296.874], [433400.201, 7237297.111], [432420.399, 7237414.132], [432388.139, 7237418.018], [430615.373, 7237222.465], [422774.725, 7238065.007], [422030.849, 7238385.984], [421537.328, 7238769.747], [420987.788, 7238750.265], [418420.272, 7237409.324], [417042.583, 7235995.332], [414822.784, 7236281.805], [414985.888, 7237798.666], [388075.268, 7234147.593], [366270.584, 7238420.621], [367320.513, 7244045.46], [388320.874, 7252065.826], [411715.851, 7275474.38], [412128.027, 7275809.87], [413803.717, 7277425.091], [415427.335, 7280561.571], [416607.922, 7281848.708], [416237.483, 7282185.395], [416709.711, 7282704.962], [417081.14, 7282367.373], [418662.272, 7284085.111], [422247.895, 7285846.901], [424782.152, 7290505.51], [427779.649, 7292121.84], [444538.768, 7291543.363], [451429.652, 7295129.029], [461616.22, 7300363.885], [461385.917, 7289578.81]], [[435609.141, 7249252.604], [432819.367, 7248335.924], [432575.526, 7248425.641], [432651.55, 7249188.537], [435596.671, 7249434.605], [435609.141, 7249252.604]]]]}}, {\\\"id\\\": \\\"233\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siikalatva\\\", \\\"elakelaisten_osuus\\\": 36.5, \\\"freshwarea\\\": 56.24, \\\"gml_id\\\": 1601100475, \\\"landarea\\\": 2172.94, \\\"namefin\\\": \\\"Siikalatva\\\", \\\"nameswe\\\": \\\"Siikalatva\\\", \\\"natcode\\\": \\\"791\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2229.18}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[431897.75, 7166463.678], [433830.793, 7165105.402], [436872.249, 7159608.408], [437187.63, 7159422.794], [437351.51, 7159064.997], [437619.716, 7158849.768], [437444.732, 7158312.799], [437715.304, 7158066.377], [438848.783, 7156006.923], [439513.348, 7155303.517], [441525.511, 7158017.46], [440713.661, 7158644.107], [441155.496, 7159062.516], [441366.398, 7158767.705], [441531.592, 7159066.216], [442180.607, 7158739.112], [442833.377, 7158835.212], [443722.135, 7157287.389], [444551.397, 7156468.143], [445466.2, 7155537.221], [448539.905, 7159514.905], [462321.252, 7148806.18], [464549.54, 7149280.512], [465921.867, 7150589.585], [470346.026, 7146556.245], [470428.802, 7146743.419], [471005.674, 7146716.238], [471300.753, 7146219.942], [471090.061, 7146091.625], [471216.641, 7145753.814], [472331.753, 7144775.921], [473571.159, 7142131.963], [474005.915, 7141702.54], [474170.552, 7141390.171], [474523.559, 7141776.647], [475171.27, 7141615.502], [475142.34, 7141336.517], [474855.46, 7141021.005], [475221.592, 7140713.302], [474941.826, 7140352.839], [474369.442, 7140447.545], [474857.833, 7139408.769], [473960.568, 7139980.959], [473902.142, 7139783.962], [474981.475, 7138853.12], [474331.89, 7138312.392], [474077.563, 7137821.364], [474285.366, 7137457.117], [474009.195, 7136904.425], [474006.16, 7136407.42], [474598.1, 7136302.976], [476390.37, 7134481.122], [476250.995, 7134149.805], [476685.594, 7133743.277], [476848.56, 7133967.86], [478041.878, 7132753.291], [478854.47, 7132719.476], [479191.848, 7132326.451], [479783.224, 7132625.835], [484564.683, 7132279.761], [484803.835, 7131970.837], [484732.678, 7127848.676], [485377.889, 7127442.435], [485439.378, 7127130.732], [485742.096, 7126738.46], [487801.728, 7126527.084], [488735.814, 7126583.419], [488879.423, 7121106.639], [481937.494, 7120917.542], [481732.525, 7120844.809], [481096.769, 7121373.334], [480531.657, 7121458.239], [477378.208, 7123383.445], [475887.583, 7123846.571], [475414.875, 7124295.547], [475520.763, 7123818.54], [473851.02, 7121949.739], [472717.098, 7122122.251], [472541.801, 7122573.704], [470766.991, 7122659.592], [471210.411, 7120928.45], [469746.464, 7118503.049], [468436.491, 7118787.282], [468067.184, 7119358.168], [467072.306, 7119547.364], [466891.397, 7118076.872], [466866.573, 7116670.354], [467413.628, 7116667.56], [467284.139, 7116091.394], [466824.134, 7116286.293], [465587.685, 7115107.992], [465143.484, 7115582.975], [464524.99, 7114987.366], [464796.352, 7114711.337], [463849.222, 7114340.267], [463136.107, 7113349.386], [462978.733, 7113696.152], [462371.775, 7113747.919], [461196.808, 7114278.52], [460703.24, 7114770.789], [460623.104, 7114694.672], [460425.325, 7113956.714], [459727.888, 7113869.983], [459503.027, 7113434.758], [458575.178, 7112547.562], [458350.203, 7112731.834], [458151.605, 7112800.336], [458173.858, 7112673.987], [458323.398, 7112477.554], [458251.155, 7112404.776], [458393.326, 7112116.86], [459232.465, 7111716.807], [459073.156, 7111452.185], [458548.929, 7111835.362], [458019.445, 7111478.449], [458360.122, 7111247.228], [458204.007, 7111070.203], [458334.299, 7110772.532], [458364.518, 7110545.544], [458517.547, 7110208.615], [458712.797, 7110275.552], [458791.869, 7109971.884], [458946.896, 7109794.926], [459727.113, 7109783.712], [459880.147, 7109149.685], [460454.726, 7108612.814], [460936.279, 7108517.227], [461272.939, 7108896.301], [461458.253, 7108689.03], [461342.089, 7108387.323], [462081.221, 7107716.527], [461929.93, 7107409.221], [462313.422, 7107343.105], [462257.374, 7106904.143], [462035.722, 7107144.745], [460602.068, 7105994.877], [461137.195, 7103347.083], [461403.467, 7103274.88], [461226.591, 7102643.67], [462269.566, 7103148.013], [462313.949, 7102028.367], [460624.167, 7101253.88], [459460.146, 7101219.986], [459711.636, 7099834.536], [460925.073, 7100547.985], [461570.336, 7099749.991], [460317.508, 7096721.518], [458418.159, 7099050.971], [457950.725, 7099224.815], [458209.88, 7098690.43], [457945.448, 7098438.543], [457337.006, 7098972.075], [457111.353, 7098884.225], [455987.803, 7099478.276], [456194.76, 7099799.421], [455681.109, 7100325.496], [456126.838, 7101250.439], [449607.504, 7105619.072], [448140.183, 7105703.166], [448346.983, 7105010.491], [448472.154, 7104526.712], [448313.886, 7104474.808], [447902.265, 7105137.097], [447461.914, 7105740.225], [446522.158, 7106569.01], [443345.377, 7108103.246], [443132.244, 7107462.005], [443249.362, 7106816.546], [443240.27, 7106596.602], [442817.201, 7106792.984], [442740.113, 7107723.233], [442416.869, 7108546.273], [440915.288, 7109285.027], [440434.527, 7109915.434], [439737.433, 7110764.298], [439357.166, 7111302.865], [438973.656, 7111287.472], [438926.985, 7111693.237], [439136.147, 7111768.137], [438062.252, 7113307.167], [435969.928, 7115115.003], [436044.205, 7115660.761], [435986.849, 7116141.419], [436379.623, 7116607.179], [436146.501, 7117148.049], [436224.307, 7117516.822], [435819.211, 7117419.712], [434840.489, 7120109.792], [434441.179, 7120031.902], [432948.444, 7121990.308], [431854.216, 7123066.278], [431970.497, 7123304.486], [431561.468, 7124004.537], [431171.74, 7123756.853], [430525.584, 7124678.937], [430105.917, 7125157.327], [430222.482, 7125357.273], [429577.58, 7125540.654], [429534.938, 7127613.616], [429282.174, 7127588.7], [426839.418, 7132472.724], [426522.483, 7131972.51], [425944.007, 7132953.497], [426063.839, 7133312.104], [426589.356, 7133625.524], [426790.233, 7134243.615], [426397.737, 7135098.648], [426131.147, 7135199.303], [425743.527, 7134996.625], [425528.754, 7135056.838], [425646.306, 7135493.342], [426283.114, 7135660.844], [425748.473, 7137355.075], [425799.694, 7138315.664], [423921.136, 7144295.5], [424470.4, 7144319.003], [424720.519, 7144142.786], [424905.645, 7144262.72], [424936.215, 7144919.165], [425369.047, 7144992.904], [425603.259, 7144706.83], [426937.16, 7145583.317], [425154.263, 7149346.872], [424955.048, 7149514.695], [425231.432, 7149864.946], [426214.36, 7149727.698], [426241.064, 7149967.178], [425958.69, 7150097.319], [425181.474, 7150073.845], [424786.524, 7151221.479], [425501.729, 7151201.154], [426842.86, 7153699.23], [424639.323, 7155741.35], [422307.573, 7157278.686], [422415.744, 7158582.465], [422627.591, 7158172.804], [423250.69, 7157553.355], [423405.584, 7157656.368], [423316.393, 7157979.511], [423021.736, 7158269.689], [423292.165, 7158485.748], [424108.53, 7157905.741], [424207.261, 7158034.098], [423836.322, 7158539.117], [422982.656, 7159270.168], [423319.264, 7159790.44], [424053.736, 7159105.255], [424197.9, 7159228.452], [423482.213, 7160150.122], [423294.952, 7160200.304], [422896.306, 7159689.869], [422400.774, 7158974.026], [422341.065, 7160578.229], [422720.883, 7160770.84], [422665.706, 7161435.817], [423342.525, 7161445.116], [423859.318, 7163097.329], [424831.673, 7165377.56], [426218.196, 7166771.24], [426944.892, 7166978.974], [427679.7, 7166662.366], [428061.006, 7166923.743], [428800.532, 7166443.147], [428849.473, 7166699.455], [429596.34, 7166396.644], [429661.013, 7166694.445], [428584.262, 7167123.789], [429259.375, 7167927.441], [431897.75, 7166463.678]], [[457451.947, 7105663.333], [457701.04, 7105482.0], [458190.666, 7105642.64], [458397.431, 7105139.879], [458742.016, 7103834.258], [457943.465, 7103436.484], [457758.041, 7103732.566], [457708.522, 7104015.7], [458062.192, 7104248.216], [457900.294, 7104576.298], [457537.618, 7104257.915], [457412.848, 7104420.109], [457780.689, 7104892.983], [457430.752, 7104999.859], [457135.784, 7105091.814], [456745.101, 7104199.745], [456316.157, 7104549.358], [455938.522, 7104630.758], [455765.059, 7105177.084], [456622.15, 7105246.228], [456604.402, 7105947.72], [456875.093, 7106006.595], [456936.948, 7106275.422], [457056.215, 7106376.693], [457451.947, 7105663.333]], [[432954.414, 7134581.96], [432676.612, 7134073.532], [432477.43, 7134090.691], [432210.283, 7134369.094], [429827.325, 7134284.858], [429213.636, 7135049.584], [429560.262, 7135226.047], [432780.693, 7136873.376], [432954.414, 7134581.96]]]}}, {\\\"id\\\": \\\"234\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lapua\\\", \\\"elakelaisten_osuus\\\": 28.5, \\\"freshwarea\\\": 13.63, \\\"gml_id\\\": 1601100632, \\\"landarea\\\": 737.15, \\\"namefin\\\": \\\"Lapua\\\", \\\"nameswe\\\": \\\"Lappo\\\", \\\"natcode\\\": \\\"408\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 750.78}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[293251.134, 7000716.396], [293256.779, 6999925.654], [293691.011, 6999683.181], [293658.286, 6999179.516], [300323.748, 6995032.444], [308100.836, 6995990.242], [309963.283, 6995119.524], [309861.427, 6994639.555], [309925.672, 6994249.243], [310618.29, 6993559.44], [311126.421, 6994576.486], [311346.656, 6994471.209], [313414.244, 6994715.809], [315535.978, 6993865.284], [318611.672, 6996005.494], [317509.407, 6996379.458], [317609.81, 6996671.826], [318794.809, 6996132.785], [320884.326, 6997585.179], [323678.067, 6993602.727], [323637.167, 6993373.461], [323939.182, 6993464.19], [323905.394, 6993711.72], [323741.577, 6994061.198], [324106.389, 6994055.351], [324515.16, 6993946.526], [324569.766, 6993648.013], [324950.188, 6993753.585], [324622.552, 6993340.4], [323606.333, 6993190.41], [322692.663, 6988079.052], [322582.275, 6987160.996], [322248.819, 6986848.722], [320404.452, 6986053.073], [323281.486, 6981415.652], [323011.251, 6981430.73], [322579.776, 6981080.36], [322273.401, 6981065.417], [322159.68, 6980735.29], [321791.616, 6980654.096], [321599.856, 6980405.616], [321007.331, 6980442.953], [320351.263, 6980239.0], [319758.372, 6980616.904], [317296.653, 6979547.545], [316626.766, 6978965.299], [316442.142, 6979144.586], [316057.644, 6979006.882], [316433.436, 6978326.15], [316093.924, 6977645.335], [315841.886, 6977362.373], [315787.777, 6977065.865], [313617.307, 6972716.735], [313487.953, 6971769.623], [311266.077, 6969928.572], [310434.857, 6966397.154], [310144.482, 6965973.224], [307768.97, 6966994.044], [306623.758, 6968672.938], [306266.263, 6970339.552], [305867.191, 6970888.752], [297610.294, 6970735.983], [302288.271, 6975938.655], [294898.888, 6978228.867], [294596.996, 6978382.513], [294087.376, 6978011.32], [293793.282, 6978071.798], [287336.625, 6978128.122], [288216.872, 6979776.952], [288388.578, 6983003.988], [288784.501, 6983286.169], [288449.96, 6984117.552], [288536.724, 6985739.94], [287239.678, 6991275.32], [287490.565, 6992762.894], [286845.149, 6996808.744], [288245.149, 6999374.962], [292795.352, 7000398.811], [292839.955, 7000923.559], [293251.134, 7000716.396]]]}}, {\\\"id\\\": \\\"235\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kankaanp\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 32.1, \\\"freshwarea\\\": 15.11, \\\"gml_id\\\": 1601100362, \\\"landarea\\\": 689.63, \\\"namefin\\\": \\\"Kankaanp\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Kankaanp\\\\u00e4\\\\u00e4\\\", \\\"natcode\\\": \\\"214\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 704.74}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[261164.991, 6883400.22], [261260.917, 6883400.983], [265093.673, 6883618.284], [264818.96, 6882333.148], [265604.691, 6882061.381], [265892.059, 6881961.973], [268111.236, 6880174.072], [268657.973, 6880338.361], [269594.366, 6879865.833], [269750.138, 6879422.856], [269188.59, 6879134.629], [269335.935, 6878164.907], [269811.08, 6878173.579], [270275.283, 6879458.856], [269982.002, 6880207.72], [270167.395, 6880373.457], [270869.943, 6879793.934], [270517.333, 6878421.852], [272284.096, 6877936.503], [272285.428, 6876780.299], [271747.796, 6876503.156], [270958.37, 6876045.398], [271125.664, 6873958.489], [270224.89, 6874487.661], [270396.131, 6874960.139], [269858.712, 6875294.584], [269588.736, 6874860.816], [269192.446, 6875092.514], [267574.754, 6874276.135], [267668.031, 6873710.762], [267551.776, 6873619.128], [267047.883, 6874113.449], [265591.546, 6872077.463], [264506.398, 6870917.548], [264565.804, 6870028.141], [266159.771, 6869318.258], [266234.668, 6867922.215], [266266.878, 6866139.203], [266463.337, 6865695.771], [266260.175, 6864968.471], [266478.619, 6864323.015], [265239.556, 6860206.001], [266868.261, 6858846.038], [271821.964, 6855863.802], [271012.094, 6853427.434], [272494.73, 6852837.498], [272629.757, 6852498.621], [272523.775, 6852052.825], [272649.919, 6851642.703], [272069.697, 6851488.86], [271788.802, 6851214.379], [272227.794, 6848590.898], [272006.133, 6848218.054], [269868.088, 6848072.825], [269222.456, 6848033.136], [264982.579, 6847237.863], [256002.203, 6850467.681], [252896.767, 6855121.348], [248960.33, 6856172.372], [248231.58, 6856285.66], [248155.482, 6855218.014], [247708.273, 6854900.415], [247410.232, 6854650.534], [247212.54, 6854020.711], [247579.895, 6853831.824], [247580.444, 6853400.981], [247238.286, 6853401.354], [246958.338, 6852895.655], [246590.079, 6849132.773], [246393.212, 6850490.749], [245693.609, 6850597.76], [245366.531, 6851012.342], [245898.92, 6851917.036], [245469.822, 6852228.379], [245560.222, 6852568.114], [246197.29, 6852384.001], [246458.089, 6854411.019], [246288.787, 6854927.817], [245263.592, 6855281.8], [244964.714, 6858301.623], [241042.32, 6859759.356], [238454.466, 6862380.77], [240715.686, 6866123.581], [242548.493, 6866327.658], [244652.974, 6867353.269], [244142.652, 6867718.005], [246466.189, 6870105.136], [245098.428, 6871537.786], [244656.662, 6872188.992], [244875.314, 6872605.793], [245579.419, 6872530.446], [245340.64, 6872881.859], [245420.519, 6873994.301], [244739.432, 6874098.919], [245670.402, 6874918.105], [247123.009, 6874984.49], [248172.939, 6873227.063], [248786.613, 6873247.727], [248910.039, 6872732.801], [249356.718, 6872719.066], [249358.756, 6873068.021], [249879.535, 6874130.238], [250724.648, 6873971.44], [250783.898, 6874451.367], [251376.592, 6874717.309], [252292.636, 6875731.612], [252506.257, 6876834.675], [251665.638, 6876778.031], [251812.828, 6877911.924], [252911.75, 6878798.341], [254000.432, 6878181.046], [254150.321, 6878449.835], [254894.118, 6878260.422], [255169.277, 6878557.745], [255337.766, 6879344.194], [254871.523, 6879765.344], [255736.219, 6879739.354], [255685.588, 6880207.002], [256139.384, 6880537.81], [256777.977, 6880775.033], [256719.816, 6881666.397], [256345.065, 6881911.747], [256865.836, 6883149.88], [259070.311, 6883275.594], [259200.346, 6883746.109], [261083.355, 6883857.928], [261164.991, 6883400.22]]]}}, {\\\"id\\\": \\\"236\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuusamo\\\", \\\"elakelaisten_osuus\\\": 33.3, \\\"freshwarea\\\": 830.44, \\\"gml_id\\\": 1601100575, \\\"landarea\\\": 4978.52, \\\"namefin\\\": \\\"Kuusamo\\\", \\\"nameswe\\\": \\\"Kuusamo\\\", \\\"natcode\\\": \\\"305\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5808.96}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[600847.92, 7367226.299], [600723.816, 7369982.334], [612078.878, 7370408.847], [612078.908, 7370408.848], [613389.57, 7370458.079], [614766.058, 7370520.712], [615835.8, 7367722.2], [617685.0, 7363213.5], [619283.8, 7358092.5], [620922.5, 7353752.3], [621053.9, 7353495.2], [621039.5, 7353416.2], [621203.3, 7353421.9], [621306.6, 7353324.2], [621322.2, 7353256.6], [621423.3, 7353207.3], [621493.8, 7353124.8], [621479.1, 7352973.2], [621417.5, 7352896.1], [621271.3, 7352842.2], [621104.1, 7352839.5], [620992.2, 7352766.4], [620977.9, 7352666.5], [621060.9, 7352474.3], [621194.5, 7352324.9], [621352.4, 7352275.0], [621494.7, 7352310.3], [621646.4, 7352449.6], [624860.8, 7347658.5], [628924.6, 7341822.0], [631979.4, 7337161.9], [634258.2, 7329393.0], [634557.1, 7328249.7], [634598.5, 7328200.2], [635028.5, 7328025.9], [634704.9, 7327650.2], [635268.2, 7325888.5], [635664.7, 7325640.5], [635668.9, 7325457.1], [635520.0, 7325349.5], [636100.1, 7320803.2], [637395.4, 7319511.3], [637446.1, 7318624.2], [639296.8, 7313311.1], [639794.5, 7311620.6], [640887.4, 7306726.4], [642023.6, 7300352.3], [642152.0, 7299843.0], [642903.3, 7295839.3], [643867.7, 7290028.3], [644242.1, 7286581.5], [639605.2, 7288429.1], [638519.4, 7289404.2], [635646.5, 7287775.1], [630403.7, 7284987.9], [625258.2, 7282170.4], [626870.0, 7279145.9], [630574.7, 7275679.0], [632179.8, 7273925.6], [629330.4, 7269989.0], [627450.6, 7266675.5], [626850.681, 7266542.107], [626222.252, 7266253.296], [626210.365, 7266254.637], [625891.768, 7266290.583], [625513.142, 7266241.751], [624666.384, 7266501.39], [622744.543, 7266448.483], [617831.862, 7267193.629], [616771.666, 7266543.907], [616770.279, 7266427.995], [616991.952, 7266316.878], [617086.189, 7266224.705], [616806.325, 7266121.958], [616757.784, 7265796.555], [616445.737, 7265640.549], [616225.686, 7265459.776], [615908.356, 7265294.24], [615938.18, 7265151.534], [607264.126, 7268485.668], [602324.006, 7268038.776], [599682.567, 7269408.915], [593246.052, 7275640.415], [588882.281, 7281899.838], [585250.544, 7276519.878], [579713.477, 7277104.23], [576763.503, 7278715.804], [575918.768, 7280896.79], [575442.148, 7290742.522], [576108.407, 7290789.287], [575753.761, 7291071.058], [575416.65, 7291031.442], [575380.486, 7292007.532], [574476.051, 7293830.789], [573330.764, 7296142.049], [571645.663, 7302771.884], [569086.753, 7303600.565], [568767.928, 7308451.269], [566384.16, 7311625.57], [565167.663, 7314687.818], [562371.144, 7316158.058], [562174.792, 7316979.046], [562374.076, 7317389.286], [562847.366, 7317386.655], [563274.71, 7317108.761], [563267.106, 7318133.286], [563104.105, 7320196.602], [562661.828, 7320437.51], [562216.441, 7320417.873], [562291.438, 7320821.39], [563017.365, 7321040.931], [564215.227, 7321200.5], [564564.407, 7321678.262], [565133.33, 7321503.265], [564846.617, 7321069.7], [564214.141, 7320793.314], [564067.37, 7320466.929], [564099.99, 7319104.59], [567313.995, 7319556.826], [567302.553, 7321138.093], [570054.96, 7321158.727], [570051.364, 7321770.669], [572533.614, 7320747.032], [572544.29, 7319425.845], [575008.83, 7319436.645], [575757.955, 7320885.089], [577101.67, 7321197.137], [579288.478, 7321216.143], [579271.839, 7323659.216], [578712.348, 7323897.549], [578471.813, 7324507.86], [578514.582, 7325167.317], [579928.398, 7325866.071], [579010.934, 7326741.97], [578365.892, 7326070.471], [577854.484, 7325798.504], [577653.363, 7326099.331], [578110.252, 7326401.46], [577806.06, 7326846.825], [577116.841, 7326887.01], [576732.305, 7327453.406], [576820.432, 7327831.078], [573532.923, 7328766.401], [574439.627, 7330457.992], [573539.548, 7330944.378], [572435.541, 7335122.877], [576184.002, 7335152.04], [577450.11, 7336119.469], [577448.01, 7338846.217], [579673.784, 7341606.08], [578139.801, 7343814.066], [578752.636, 7344989.463], [578483.531, 7345380.664], [578181.946, 7345364.513], [578099.634, 7345625.572], [578258.483, 7345952.285], [578970.388, 7346112.395], [579100.633, 7346573.078], [579332.683, 7346700.37], [579008.16, 7346919.562], [579072.003, 7347315.891], [579237.101, 7347480.28], [578947.276, 7347711.139], [578638.134, 7348267.889], [578214.194, 7348484.636], [578610.673, 7349374.686], [577797.851, 7349747.178], [576862.927, 7350073.309], [576530.621, 7349806.88], [576112.055, 7350105.288], [575839.838, 7350162.04], [575614.245, 7350085.478], [574700.121, 7348468.029], [573861.763, 7348941.833], [573711.593, 7350460.738], [573597.504, 7350603.19], [573067.55, 7350579.59], [572146.932, 7350323.093], [571960.888, 7350559.798], [571535.284, 7350680.086], [571229.728, 7351250.243], [568892.525, 7357831.516], [569247.407, 7357833.435], [569244.328, 7358689.635], [569540.433, 7359062.803], [569530.172, 7359634.081], [569234.348, 7359966.517], [569229.505, 7363445.875], [570390.764, 7363396.727], [570785.355, 7365496.054], [571437.378, 7365418.103], [570870.689, 7366761.25], [571438.651, 7366393.298], [572160.937, 7366924.199], [574331.064, 7366929.423], [575470.26, 7375090.259], [600847.92, 7367226.299]]]}}, {\\\"id\\\": \\\"237\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyh\\\\u00e4joki\\\", \\\"elakelaisten_osuus\\\": 33.1, \\\"freshwarea\\\": 6.03, \\\"gml_id\\\": 1601100602, \\\"landarea\\\": 543.11, \\\"namefin\\\": \\\"Pyh\\\\u00e4joki\\\", \\\"nameswe\\\": \\\"Pyh\\\\u00e4joki\\\", \\\"natcode\\\": \\\"625\\\", \\\"seawarea\\\": 815.95, \\\"totalarea\\\": 1365.09}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[371201.078, 7158159.342], [371190.892, 7158433.986], [371436.648, 7158639.452], [371948.675, 7158613.373], [372071.989, 7158397.524], [372392.352, 7158391.415], [372434.018, 7158129.626], [372354.853, 7157665.648], [374198.207, 7156873.707], [374927.178, 7156598.412], [377749.852, 7155506.183], [377733.239, 7155081.979], [378176.447, 7154992.307], [378434.164, 7155243.487], [383492.515, 7153288.977], [384681.508, 7153191.646], [387547.384, 7152951.969], [388116.469, 7152812.495], [388403.031, 7152412.397], [388572.573, 7152863.668], [389180.991, 7152811.575], [389040.91, 7152411.399], [389498.93, 7152667.248], [389835.358, 7152313.764], [390452.17, 7151663.887], [390357.663, 7151147.18], [390689.697, 7151231.353], [390826.488, 7150672.896], [391343.425, 7150731.837], [393531.722, 7148421.584], [394539.466, 7147361.864], [394794.906, 7147092.35], [397674.958, 7142382.101], [398198.206, 7141785.062], [396860.288, 7141532.662], [395453.152, 7141526.964], [395348.722, 7142588.983], [394731.54, 7142223.694], [394483.839, 7142467.758], [394215.475, 7142086.455], [393910.602, 7141565.258], [393695.258, 7141396.773], [393726.336, 7140926.876], [391137.614, 7140371.693], [390244.192, 7140355.373], [390594.492, 7139647.985], [390917.33, 7139646.374], [390957.586, 7139369.036], [390239.785, 7139325.863], [389553.514, 7139478.131], [389501.532, 7138958.103], [389109.579, 7138731.501], [387987.367, 7138529.045], [387787.125, 7138595.696], [387729.731, 7138878.23], [387869.239, 7139325.387], [388436.176, 7139855.003], [388806.172, 7139966.393], [388316.346, 7140809.257], [387724.863, 7140084.26], [386849.447, 7141294.418], [386693.361, 7141215.378], [385006.081, 7141056.035], [385380.944, 7141349.025], [385116.536, 7141764.81], [384558.612, 7141403.913], [384308.984, 7140737.04], [383678.325, 7141589.226], [383216.881, 7141305.206], [383450.923, 7140265.503], [383493.356, 7139562.244], [383016.55, 7139330.018], [382485.772, 7140143.511], [382646.024, 7140246.041], [382512.337, 7140674.262], [382309.908, 7140610.729], [382206.489, 7140848.006], [381813.443, 7140753.987], [381785.172, 7141209.702], [382058.905, 7141314.04], [382014.763, 7141647.28], [381101.274, 7141791.921], [381045.025, 7141520.685], [381292.148, 7141359.109], [381425.466, 7140766.119], [380941.621, 7140537.915], [380654.147, 7140589.878], [380254.294, 7140285.456], [380630.047, 7139774.607], [381325.926, 7139183.151], [381081.365, 7139012.924], [380648.872, 7139060.772], [380424.431, 7138852.106], [380668.091, 7138418.494], [376806.969, 7137839.033], [377192.119, 7139709.588], [376767.859, 7140134.752], [377052.278, 7140288.467], [377292.844, 7140202.24], [378186.685, 7139148.5], [378835.908, 7139659.122], [379240.91, 7139532.436], [379632.108, 7139553.932], [379518.627, 7139757.59], [378582.883, 7140413.771], [378591.482, 7140972.27], [378975.156, 7140916.235], [378522.312, 7141526.268], [379042.311, 7141883.84], [378726.802, 7142300.353], [378443.684, 7142024.148], [377985.088, 7142433.632], [376007.533, 7140680.404], [373569.925, 7140184.24], [373123.411, 7139922.489], [373122.368, 7139788.194], [374102.841, 7139757.015], [374461.626, 7139388.951], [374635.111, 7139001.851], [373739.103, 7138479.138], [373765.029, 7137666.45], [372243.391, 7137607.43], [371927.632, 7137323.396], [371936.242, 7136972.103], [371633.611, 7136358.06], [372104.872, 7136144.45], [372085.606, 7135789.008], [371875.01, 7134932.006], [371866.219, 7134460.006], [371327.364, 7134439.114], [370981.109, 7133567.774], [370671.449, 7133635.18], [370560.602, 7133193.09], [370342.235, 7133305.849], [370075.784, 7133753.234], [370752.861, 7134389.882], [371088.873, 7135137.078], [371223.948, 7135729.36], [371060.304, 7136206.755], [371564.166, 7136828.983], [371592.385, 7137148.52], [370201.324, 7136077.373], [369970.829, 7136271.756], [370021.285, 7136701.966], [369745.038, 7136927.221], [369232.94, 7136647.064], [369476.535, 7135971.49], [368390.8, 7135360.603], [368526.327, 7135064.135], [368244.696, 7134922.16], [368439.351, 7134727.041], [368264.464, 7134584.399], [368163.433, 7134694.9], [368074.216, 7134530.996], [367731.058, 7134639.838], [366308.123, 7136413.435], [364543.838, 7136898.724], [364604.588, 7137103.877], [364072.348, 7137218.959], [363516.991, 7137191.679], [362914.526, 7137497.364], [363067.908, 7137796.745], [363026.756, 7138161.145], [362660.585, 7137627.966], [357082.084, 7140597.572], [357137.948, 7140778.343], [356503.563, 7140904.385], [355965.437, 7141198.142], [355817.021, 7141005.502], [355597.966, 7141391.544], [354886.46, 7141865.719], [354536.463, 7142479.686], [314558.837, 7156530.087], [316114.181, 7157633.828], [317127.861, 7158250.98], [341837.983, 7171207.978], [371201.078, 7158159.342]], [[380911.402, 7143726.214], [380836.222, 7143491.241], [381028.457, 7143372.998], [380921.129, 7143011.239], [380429.35, 7142860.059], [380616.729, 7142697.663], [380224.362, 7142381.502], [379680.254, 7142166.466], [379442.737, 7142465.86], [379981.859, 7142828.954], [380041.195, 7143016.575], [379227.955, 7142765.237], [378494.281, 7142932.089], [378875.553, 7143270.21], [379401.519, 7143208.188], [379395.34, 7143635.659], [380351.868, 7143842.539], [380911.402, 7143726.214]]]}}, {\\\"id\\\": \\\"238\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Puumala\\\", \\\"elakelaisten_osuus\\\": 46.7, \\\"freshwarea\\\": 443.57, \\\"gml_id\\\": 1601100325, \\\"landarea\\\": 794.18, \\\"namefin\\\": \\\"Puumala\\\", \\\"nameswe\\\": \\\"Puumala\\\", \\\"natcode\\\": \\\"623\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1237.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[562954.277, 6842653.882], [563173.338, 6842380.4], [563914.703, 6840647.002], [563885.923, 6839498.867], [564231.085, 6839240.374], [564900.715, 6839271.268], [566223.373, 6840526.372], [566286.451, 6840111.941], [566796.446, 6839957.508], [567020.161, 6839150.936], [566990.776, 6838752.197], [567287.598, 6838709.174], [567324.266, 6838221.142], [568790.957, 6837713.434], [570204.384, 6838135.776], [570406.604, 6837973.144], [570952.08, 6838488.74], [571427.79, 6838245.043], [571797.839, 6838575.713], [572635.001, 6838538.036], [572988.862, 6838124.107], [573372.8, 6838219.175], [573711.671, 6838091.161], [574197.777, 6837670.301], [574499.658, 6837274.364], [574309.338, 6836821.746], [574556.94, 6836527.567], [574670.496, 6836021.601], [575305.146, 6835384.537], [576852.923, 6835255.503], [577091.934, 6834155.65], [577100.937, 6833161.852], [577349.447, 6831714.44], [578291.766, 6831909.67], [578505.68, 6831725.946], [579248.282, 6831650.784], [579668.981, 6831984.707], [581120.312, 6832104.754], [582127.652, 6831044.155], [582684.913, 6831009.704], [583404.19, 6830603.966], [583794.72, 6830055.486], [583557.144, 6829480.376], [583680.226, 6828236.349], [584100.892, 6827503.861], [584021.206, 6826928.51], [584182.876, 6826330.052], [584648.701, 6826447.081], [584796.447, 6826852.159], [584447.519, 6827937.625], [584166.167, 6828981.071], [584118.665, 6829798.836], [584587.357, 6829703.861], [585277.898, 6828946.853], [585738.566, 6829110.683], [586058.526, 6828573.553], [586395.002, 6828001.56], [586177.399, 6827047.386], [586569.765, 6827001.824], [587121.145, 6827138.609], [587864.266, 6826749.666], [590646.499, 6826788.529], [591716.596, 6826394.234], [592199.513, 6825932.155], [593477.986, 6825294.147], [594923.774, 6824175.856], [595272.67, 6824236.681], [596327.952, 6823806.064], [596718.363, 6821421.612], [596433.819, 6820651.16], [596561.602, 6820001.675], [595438.864, 6819265.774], [595424.474, 6817314.955], [593466.402, 6817891.525], [592276.282, 6817623.793], [591585.069, 6817815.57], [590489.684, 6817407.605], [589715.42, 6817049.628], [589413.997, 6816104.506], [589040.968, 6816138.666], [587853.116, 6815685.2], [587791.2, 6816699.644], [587022.962, 6816208.759], [584644.836, 6815998.289], [584439.839, 6816553.567], [584032.415, 6816790.525], [583155.829, 6816630.993], [582296.247, 6816815.96], [581990.121, 6816690.388], [581815.155, 6817073.99], [581149.842, 6816953.893], [581202.267, 6819220.706], [579323.121, 6820886.44], [577874.71, 6819246.883], [577618.34, 6819454.134], [577153.999, 6820542.953], [576626.611, 6820614.718], [575718.785, 6818224.569], [575596.635, 6817590.723], [576045.059, 6814506.169], [575172.613, 6814167.395], [574207.305, 6813180.98], [573049.675, 6812643.283], [572631.944, 6812587.301], [572218.613, 6812335.399], [572376.92, 6811868.767], [571611.776, 6811611.702], [571548.622, 6811103.766], [571512.413, 6809889.788], [570287.21, 6809660.368], [569794.608, 6809923.955], [569323.81, 6808056.314], [568711.062, 6807414.371], [568668.681, 6807035.426], [568055.634, 6806242.644], [567456.176, 6806459.55], [567322.732, 6806203.053], [567647.605, 6805338.011], [566913.4, 6805721.647], [560597.067, 6803902.241], [558844.777, 6803669.924], [557485.23, 6803184.013], [556679.658, 6802850.843], [551228.665, 6802525.636], [549805.424, 6802171.894], [545772.871, 6802211.037], [542379.233, 6803375.649], [540059.564, 6804182.511], [538939.513, 6804641.819], [537738.091, 6805505.562], [537270.474, 6806098.716], [537311.154, 6806636.398], [536670.91, 6806589.61], [536123.526, 6806988.542], [536242.969, 6808208.648], [536773.357, 6808213.851], [536815.138, 6808512.43], [536417.096, 6808794.412], [536662.493, 6809393.671], [536252.352, 6810131.367], [536986.353, 6810847.384], [537706.066, 6810845.193], [538712.359, 6811249.237], [540525.026, 6811494.846], [540196.242, 6813846.19], [539952.737, 6814357.981], [539641.061, 6814564.596], [539481.222, 6815160.853], [540004.561, 6815312.228], [539618.361, 6815876.563], [540121.158, 6815826.586], [540443.729, 6815672.75], [540786.99, 6815822.291], [540431.339, 6816338.635], [540423.684, 6816914.845], [540062.545, 6817354.666], [540037.89, 6817705.124], [539166.627, 6818306.075], [539680.218, 6818428.128], [540004.827, 6818234.077], [540731.493, 6818584.47], [540503.777, 6819771.587], [541368.327, 6819810.875], [541796.259, 6819101.764], [543147.216, 6818717.426], [543193.132, 6819264.342], [542981.276, 6819830.674], [543086.431, 6820131.452], [543406.603, 6820025.697], [543660.504, 6820619.911], [544030.568, 6820542.724], [544876.182, 6821916.799], [544790.825, 6822576.194], [545052.617, 6823097.259], [545643.81, 6823274.384], [545671.963, 6823773.388], [546213.743, 6823948.82], [546663.062, 6823914.436], [547044.932, 6823725.09], [547859.379, 6823891.352], [549856.115, 6824725.14], [550151.115, 6825615.624], [549812.071, 6827209.22], [550011.175, 6829633.64], [551427.064, 6830511.306], [552723.774, 6830648.96], [552525.079, 6832188.314], [551253.103, 6833932.268], [551392.101, 6836202.72], [551947.353, 6836243.877], [552778.52, 6835749.281], [554201.345, 6835847.249], [554542.689, 6836006.91], [555061.791, 6835415.314], [555374.953, 6835246.307], [555081.932, 6834041.308], [555733.04, 6833864.059], [556314.73, 6833158.305], [556832.179, 6833296.574], [557108.315, 6833907.871], [557376.775, 6834058.688], [558694.138, 6831920.741], [559415.165, 6832239.94], [559730.969, 6833093.369], [559510.672, 6833435.284], [560037.295, 6835622.786], [558834.374, 6836484.625], [559518.216, 6837695.486], [559047.178, 6838717.782], [559619.666, 6839018.669], [559561.265, 6839370.473], [560009.382, 6839858.582], [559831.243, 6840126.556], [560120.834, 6840431.252], [560549.559, 6840531.599], [562166.891, 6843209.649], [562954.277, 6842653.882]]]}}, {\\\"id\\\": \\\"239\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Juuka\\\", \\\"elakelaisten_osuus\\\": 43.7, \\\"freshwarea\\\": 344.87, \\\"gml_id\\\": 1601100297, \\\"landarea\\\": 1501.7, \\\"namefin\\\": \\\"Juuka\\\", \\\"nameswe\\\": \\\"Juuka\\\", \\\"natcode\\\": \\\"176\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1846.57}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[607203.808, 7035838.978], [608878.941, 7036930.996], [616616.715, 7027941.906], [623462.217, 7026722.969], [624983.267, 7025463.832], [626723.105, 7025822.026], [628947.939, 7024433.713], [628967.858, 7024136.43], [627263.873, 7022123.559], [627506.724, 7021254.069], [627902.029, 7021183.734], [628009.43, 7020614.967], [629184.829, 7018055.984], [628915.036, 7016435.713], [630257.126, 7016193.777], [630580.279, 7015869.613], [632038.821, 7015479.339], [631506.267, 7013636.945], [631282.867, 7011969.612], [630851.828, 7011798.933], [631749.417, 7010888.626], [633314.494, 7010501.591], [633998.737, 7009064.463], [633655.431, 7006963.104], [633040.769, 7005612.376], [634361.283, 7004428.254], [636217.391, 7002324.037], [635960.577, 7001463.064], [636556.22, 7000515.004], [636953.541, 7000315.042], [637421.146, 6997650.048], [639223.732, 6994881.967], [640895.471, 6994382.714], [641271.62, 6993678.702], [638619.896, 6989157.324], [632628.968, 6986213.588], [632099.484, 6984754.453], [629322.659, 6986801.369], [627921.275, 6989100.963], [626638.043, 6994132.235], [626253.851, 6994563.861], [626219.584, 6994935.123], [626044.153, 6995266.894], [624837.173, 6996746.659], [624521.075, 6996609.313], [624198.89, 6996947.552], [621912.828, 6999802.476], [621404.97, 6999653.481], [621386.684, 6998831.872], [621080.331, 6999007.407], [620565.755, 7000040.474], [620521.433, 6999021.558], [621052.54, 6997796.322], [621496.392, 6996036.646], [619052.983, 6993850.254], [619031.009, 6993841.465], [612388.808, 6992306.864], [611891.656, 6990932.259], [608711.035, 6990737.317], [607783.378, 6986258.266], [607026.019, 6985841.516], [605637.717, 6985726.488], [604624.085, 6985773.066], [603179.212, 6988433.798], [597409.5, 6991065.729], [596470.334, 6992295.184], [595957.685, 6992110.76], [595848.724, 6992384.613], [595448.325, 6992766.431], [594878.03, 6992920.713], [594639.966, 6993145.15], [594427.609, 6993135.014], [594071.775, 6993305.435], [593808.104, 6993697.193], [593633.82, 6994220.892], [593370.599, 6994784.689], [593470.617, 6995115.403], [593257.002, 6995668.851], [592964.81, 6995948.878], [592655.625, 6996342.444], [592537.421, 6996890.095], [592454.262, 6997369.501], [588843.378, 7002040.871], [585976.078, 7005720.012], [585462.344, 7007121.275], [583199.352, 7008593.925], [581015.594, 7009316.911], [583454.881, 7013595.515], [582677.4, 7014330.671], [582750.379, 7014521.657], [584174.574, 7015248.937], [584296.455, 7016267.309], [585657.226, 7017054.751], [585411.27, 7018396.286], [584438.457, 7018343.722], [586099.061, 7019518.125], [585561.801, 7019944.738], [587025.332, 7021459.087], [587931.855, 7030006.2], [588244.954, 7030009.643], [588459.93, 7029633.559], [588734.709, 7029432.639], [588818.186, 7029095.243], [589044.799, 7028803.646], [589698.181, 7028369.816], [590123.55, 7028231.251], [590340.31, 7028592.224], [590482.194, 7028462.179], [590581.589, 7027998.9], [590874.74, 7027953.455], [591160.801, 7027636.055], [591384.535, 7027621.226], [591507.088, 7027835.862], [591297.381, 7028188.283], [591545.756, 7028696.357], [591244.954, 7029452.872], [591304.074, 7029793.323], [590965.119, 7030443.762], [590993.045, 7030833.026], [591312.523, 7030896.559], [591443.203, 7031095.4], [591882.182, 7031103.66], [592027.164, 7031420.551], [592246.675, 7031328.909], [592550.749, 7031533.413], [599787.868, 7035655.225], [600660.753, 7035915.099], [601142.507, 7036209.574], [601542.016, 7036292.468], [601657.924, 7036020.715], [603035.039, 7036178.674], [603966.562, 7036900.901], [604674.405, 7036781.942], [605056.385, 7037424.897], [607203.808, 7035838.978]]]}}, {\\\"id\\\": \\\"240\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Joutsa\\\", \\\"elakelaisten_osuus\\\": 42.9, \\\"freshwarea\\\": 199.4, \\\"gml_id\\\": 1601100293, \\\"landarea\\\": 867.02, \\\"namefin\\\": \\\"Joutsa\\\", \\\"nameswe\\\": \\\"Joutsa\\\", \\\"natcode\\\": \\\"172\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1066.42}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[448408.67, 6839367.033], [447544.912, 6839540.324], [447172.863, 6837987.334], [446955.056, 6837863.917], [446674.116, 6838006.806], [446701.928, 6839318.959], [446889.484, 6840064.038], [448622.18, 6840140.641], [448408.67, 6839367.033]]], [[[465037.534, 6878458.625], [469310.883, 6871297.97], [465072.045, 6868875.069], [465154.886, 6868261.887], [464842.603, 6867729.014], [464919.735, 6866624.35], [465396.372, 6866123.39], [465448.603, 6865472.447], [465314.318, 6864197.252], [465476.832, 6863296.159], [464957.025, 6862589.112], [465109.624, 6862373.213], [464990.902, 6861696.735], [464557.351, 6861404.553], [464469.635, 6861000.713], [465952.063, 6861586.854], [467301.63, 6861310.393], [467091.819, 6860866.471], [466918.695, 6859910.458], [467850.329, 6858083.904], [467223.19, 6857187.763], [467281.67, 6856588.306], [467487.79, 6856041.929], [467130.019, 6855732.681], [467026.881, 6855174.354], [467297.163, 6854605.62], [467105.409, 6854258.507], [467152.875, 6853575.549], [466646.517, 6852939.703], [468270.268, 6852508.207], [469723.416, 6851621.01], [470355.284, 6850290.599], [471626.142, 6848619.739], [472764.665, 6846514.494], [473076.889, 6845494.244], [473673.234, 6844207.22], [474190.648, 6843828.427], [474035.456, 6843416.178], [474990.739, 6841361.132], [475332.61, 6839882.934], [474847.251, 6838119.344], [474903.804, 6836831.767], [474385.255, 6836952.475], [474336.298, 6836517.815], [474592.586, 6836128.763], [474345.907, 6835635.435], [474345.184, 6834519.289], [474636.626, 6834962.447], [474732.572, 6834516.619], [474599.694, 6834241.122], [474684.246, 6833832.948], [474328.644, 6833366.637], [474311.498, 6832730.575], [473837.175, 6832779.338], [472460.919, 6833469.712], [470605.068, 6834230.99], [469230.019, 6835388.211], [467013.913, 6836218.059], [467084.991, 6835290.536], [466571.701, 6834993.652], [466484.144, 6834020.246], [465892.6, 6834075.027], [465488.762, 6833626.389], [465509.217, 6833059.181], [465703.58, 6833040.21], [465788.022, 6832233.159], [464881.717, 6831202.773], [464408.608, 6831448.77], [464199.598, 6830754.149], [463664.516, 6830753.345], [463685.217, 6830957.649], [462860.602, 6832871.343], [463667.601, 6834237.156], [462936.108, 6835813.406], [462369.097, 6835397.181], [462028.369, 6836146.618], [461161.475, 6834507.847], [461163.433, 6834489.704], [458993.592, 6834510.286], [457496.01, 6835225.683], [457185.449, 6835460.267], [455502.859, 6831695.757], [454267.839, 6832099.924], [454323.072, 6833248.131], [453805.622, 6834141.123], [452586.713, 6834909.24], [450788.379, 6838039.882], [450836.985, 6838628.64], [451251.268, 6839025.603], [451465.848, 6839450.336], [451556.575, 6839883.764], [451469.0, 6840500.797], [451292.517, 6841115.014], [451444.692, 6841830.456], [451412.38, 6842188.716], [451197.115, 6842296.766], [450869.579, 6842202.411], [450443.347, 6843037.878], [450652.216, 6843205.31], [450707.9, 6843951.649], [450465.773, 6844546.246], [449947.341, 6845396.168], [449705.331, 6845091.532], [449655.002, 6844467.974], [449557.645, 6843991.912], [449344.157, 6843793.949], [449017.267, 6843928.483], [447976.807, 6843436.993], [447032.648, 6844393.552], [446799.004, 6844817.189], [446916.562, 6845473.268], [446359.337, 6846016.912], [446542.231, 6846332.957], [446150.804, 6846437.748], [446157.566, 6846784.553], [446415.344, 6847309.266], [446359.614, 6847818.874], [444461.123, 6849154.728], [443372.644, 6850333.753], [443126.909, 6850962.418], [442340.866, 6848493.548], [441767.564, 6848327.115], [439968.399, 6848097.527], [439745.442, 6848204.736], [441120.189, 6851806.954], [439110.805, 6852598.036], [439158.303, 6853155.316], [439855.456, 6853233.65], [440143.411, 6853655.998], [440966.771, 6853936.613], [440851.392, 6854297.953], [440384.546, 6854858.15], [441726.525, 6855936.816], [443239.255, 6858883.81], [441897.02, 6860678.158], [439556.55, 6862532.984], [441623.456, 6864347.166], [443798.993, 6867447.858], [446771.912, 6870783.003], [446666.152, 6871283.1], [446244.058, 6872128.978], [445769.711, 6872360.412], [445635.759, 6873001.296], [445076.777, 6874341.848], [445334.515, 6874667.032], [446359.11, 6877377.815], [446454.094, 6878593.808], [449138.233, 6878556.988], [449942.616, 6878251.479], [450526.404, 6878262.592], [451574.109, 6877950.437], [451529.13, 6877465.633], [452408.784, 6875726.344], [452843.608, 6875721.35], [453501.9, 6874216.22], [453699.465, 6874116.315], [456232.756, 6878749.175], [460674.823, 6878620.133], [462967.907, 6879196.918], [465037.534, 6878458.625]]]]}}, {\\\"id\\\": \\\"241\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"M\\\\u00e4nts\\\\u00e4l\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 22.3, \\\"freshwarea\\\": 15.3, \\\"gml_id\\\": 1601100243, \\\"landarea\\\": 580.81, \\\"namefin\\\": \\\"M\\\\u00e4nts\\\\u00e4l\\\\u00e4\\\", \\\"nameswe\\\": \\\"M\\\\u00e4nts\\\\u00e4l\\\\u00e4\\\", \\\"natcode\\\": \\\"505\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 596.11}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[403206.296, 6742272.2], [406583.601, 6739083.464], [407242.505, 6736361.608], [408411.192, 6737335.581], [411827.672, 6736406.795], [414607.88, 6740484.35], [414724.928, 6741021.646], [416036.884, 6740969.057], [416961.327, 6740661.414], [418049.26, 6737786.17], [418978.389, 6735649.514], [419548.43, 6732439.567], [419174.539, 6730717.412], [417083.74, 6729930.636], [413935.768, 6726304.675], [414265.317, 6724029.045], [415839.644, 6722173.205], [417210.624, 6719244.888], [417560.683, 6717873.156], [418695.893, 6716908.78], [417853.345, 6714376.312], [416517.649, 6713739.6], [415987.033, 6713740.297], [413073.963, 6712770.878], [412963.006, 6714194.858], [409040.961, 6713246.04], [406120.702, 6713144.423], [404641.805, 6713025.032], [403518.489, 6712618.26], [403663.471, 6712337.058], [401427.364, 6711210.401], [402460.677, 6708594.602], [399460.778, 6709189.412], [398475.842, 6710386.973], [392888.155, 6717249.589], [394487.723, 6719032.347], [393406.254, 6720319.816], [395172.675, 6722687.235], [396836.372, 6726576.903], [396881.264, 6726690.999], [395415.295, 6730809.505], [398844.389, 6732634.254], [401427.038, 6733484.123], [398860.168, 6734306.427], [397446.714, 6736041.627], [397192.501, 6735340.434], [395952.615, 6734129.618], [394576.094, 6732544.186], [394084.197, 6733721.417], [395807.399, 6736903.431], [395971.924, 6737895.136], [399355.782, 6738403.414], [399519.499, 6739515.226], [396745.352, 6743091.568], [397258.069, 6744059.536], [397796.926, 6743800.499], [400590.046, 6744077.191], [401521.187, 6744135.529], [401265.756, 6744671.507], [401508.06, 6745710.041], [401997.66, 6745908.099], [401949.902, 6746283.263], [402662.436, 6746389.445], [403206.296, 6742272.2]]]}}, {\\\"id\\\": \\\"242\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Perho\\\", \\\"elakelaisten_osuus\\\": 27.3, \\\"freshwarea\\\": 27.32, \\\"gml_id\\\": 1601100255, \\\"landarea\\\": 747.87, \\\"namefin\\\": \\\"Perho\\\", \\\"nameswe\\\": \\\"Perho\\\", \\\"natcode\\\": \\\"584\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 775.19}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[382428.688, 7030046.839], [388595.831, 7027489.373], [389814.314, 7018219.869], [387296.023, 7017190.734], [387878.205, 7015986.847], [387123.571, 7015642.183], [387535.842, 7011924.633], [386612.126, 7009629.973], [385696.266, 7003990.698], [387722.5, 7002395.289], [375623.274, 7005527.284], [366787.924, 7001300.583], [366588.895, 7001524.047], [364150.54, 7004163.783], [361718.123, 7003363.475], [362040.89, 7002146.911], [359118.039, 7005913.191], [357452.604, 7005219.8], [357692.672, 7005876.251], [357993.919, 7006043.396], [357888.673, 7006642.602], [358246.35, 7006753.93], [358715.103, 7006026.686], [360769.996, 7007607.465], [357842.967, 7012259.634], [354228.049, 7016186.627], [352036.619, 7017751.916], [352449.988, 7020431.646], [354055.394, 7020332.564], [353819.599, 7021791.794], [354586.628, 7023380.065], [356592.89, 7024791.342], [357121.392, 7023653.04], [357251.601, 7023517.548], [357523.068, 7023438.047], [357411.254, 7023841.893], [357967.541, 7024701.976], [357025.412, 7025100.243], [357514.988, 7025444.962], [358048.851, 7025710.982], [360935.555, 7027162.652], [361422.964, 7026662.235], [361813.563, 7027035.695], [368311.879, 7025840.863], [370293.451, 7029678.875], [374329.738, 7029859.59], [374632.251, 7028884.941], [378728.175, 7031589.024], [382428.688, 7030046.839]]]}}, {\\\"id\\\": \\\"243\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sastamala\\\", \\\"elakelaisten_osuus\\\": 33.9, \\\"freshwarea\\\": 102.71, \\\"gml_id\\\": 1601100577, \\\"landarea\\\": 1429.04, \\\"namefin\\\": \\\"Sastamala\\\", \\\"nameswe\\\": \\\"Sastamala\\\", \\\"natcode\\\": \\\"790\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1531.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[275508.547, 6847821.026], [276756.932, 6847202.23], [279058.358, 6845083.295], [279169.002, 6843356.211], [279792.466, 6840641.314], [279990.099, 6839987.823], [280215.313, 6839376.199], [282269.024, 6837584.376], [284530.866, 6834895.12], [285642.413, 6835525.584], [285818.348, 6834851.058], [286298.281, 6834962.156], [286778.37, 6834309.846], [287064.918, 6834366.587], [288106.989, 6835569.413], [289257.447, 6836126.045], [291273.225, 6834911.684], [291936.694, 6834189.859], [290476.904, 6832296.812], [290982.526, 6831333.114], [291405.441, 6829696.794], [292694.158, 6829465.937], [293962.356, 6829479.405], [296575.524, 6828954.943], [297708.422, 6828597.687], [297636.547, 6827513.561], [298142.816, 6826446.451], [298107.634, 6823759.115], [297805.369, 6821523.706], [297010.319, 6821148.72], [296644.043, 6821351.798], [294365.008, 6821017.228], [294219.939, 6820490.604], [295184.349, 6819848.613], [296154.651, 6819339.708], [297225.786, 6819763.038], [297819.772, 6819211.558], [296886.615, 6818191.077], [295841.127, 6817361.906], [296826.329, 6816739.944], [296718.367, 6816244.726], [297856.137, 6813398.414], [298864.569, 6810048.79], [299235.422, 6809198.957], [299890.929, 6808508.635], [298648.645, 6806773.796], [297788.894, 6805221.834], [300085.282, 6803247.133], [301102.603, 6800694.352], [300703.912, 6797451.822], [300346.112, 6795011.413], [299894.258, 6793125.238], [298246.214, 6793510.993], [297826.825, 6791902.122], [297370.795, 6791707.726], [294145.944, 6792557.749], [294087.919, 6792266.578], [293008.194, 6791922.322], [292607.95, 6791628.348], [290744.236, 6791007.635], [288135.808, 6791197.017], [288605.925, 6789751.067], [287789.643, 6789527.95], [287620.387, 6789852.188], [287804.13, 6790401.505], [287650.863, 6790829.035], [286977.622, 6790746.983], [286885.859, 6790366.588], [285307.458, 6790016.681], [281615.645, 6792413.385], [278407.536, 6794586.992], [278967.265, 6794937.031], [277639.413, 6796110.485], [277028.406, 6795428.499], [275911.884, 6796121.768], [276051.106, 6795755.649], [275568.07, 6795559.752], [275577.231, 6796315.678], [274585.086, 6796929.362], [272987.479, 6797581.89], [269839.516, 6797756.623], [269892.904, 6797253.724], [269478.477, 6797139.966], [269445.303, 6797788.933], [268854.779, 6797729.033], [268451.747, 6797942.93], [267709.741, 6797790.94], [266836.777, 6797785.92], [266428.884, 6798044.509], [266252.788, 6798694.306], [265999.846, 6799373.47], [265481.475, 6799810.81], [266329.427, 6800128.687], [266037.315, 6800566.392], [265336.518, 6803152.676], [264807.819, 6804306.108], [264362.048, 6804367.733], [264528.391, 6804790.051], [262460.383, 6807729.462], [264251.866, 6808859.591], [262883.624, 6814780.764], [263748.329, 6815011.608], [263236.792, 6817580.91], [260519.503, 6818726.479], [256997.689, 6825762.4], [265331.352, 6831822.259], [266361.408, 6831103.776], [268526.519, 6833046.71], [268952.552, 6834951.671], [268959.881, 6835580.478], [271736.938, 6837141.473], [270186.02, 6841924.132], [272349.674, 6839794.226], [273597.562, 6842067.542], [273097.757, 6843059.366], [273118.52, 6844753.645], [273339.148, 6845099.773], [272641.862, 6845005.785], [272494.798, 6845579.075], [271945.638, 6845525.215], [271623.297, 6843948.921], [269965.465, 6843325.258], [269719.358, 6844869.151], [271356.439, 6845135.285], [270115.518, 6846446.2], [269868.088, 6848072.825], [272006.133, 6848218.054], [272227.794, 6848590.898], [273600.902, 6850880.284], [275508.547, 6847821.026]]]}}, {\\\"id\\\": \\\"244\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tornio\\\", \\\"elakelaisten_osuus\\\": 27.4, \\\"freshwarea\\\": 40.46, \\\"gml_id\\\": 1601100634, \\\"landarea\\\": 1188.78, \\\"namefin\\\": \\\"Tornio\\\", \\\"nameswe\\\": \\\"Torne\\\\u00e5\\\", \\\"natcode\\\": \\\"851\\\", \\\"seawarea\\\": 119.59, \\\"totalarea\\\": 1348.83}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[398565.586, 7355562.83], [397127.815, 7353850.66], [394911.569, 7351277.06], [393313.086, 7349486.704], [390203.353, 7346142.255], [387116.986, 7342874.889], [387319.746, 7339764.638], [387117.53, 7339696.101], [387125.854, 7325545.337], [387049.951, 7308052.362], [386702.722, 7308095.917], [386695.339, 7307397.459], [387049.796, 7307381.692], [387089.321, 7306689.615], [386815.425, 7306232.131], [386660.069, 7306180.4], [386678.965, 7305857.407], [386610.713, 7305506.75], [386662.09, 7305112.054], [386529.1, 7304796.923], [385988.63, 7304486.691], [385664.496, 7304530.358], [385489.403, 7304048.839], [385660.681, 7303517.999], [385650.125, 7302995.042], [385198.122, 7302082.383], [384883.168, 7302367.032], [384791.384, 7302106.979], [384962.272, 7301540.987], [384839.027, 7301181.292], [383871.954, 7300814.872], [383388.454, 7300289.747], [383691.306, 7300012.945], [384067.277, 7300301.458], [384293.079, 7300338.868], [384200.683, 7299942.6], [383848.128, 7299725.305], [383630.121, 7299227.873], [383430.121, 7298990.032], [383524.438, 7298648.393], [383537.667, 7298510.809], [383317.746, 7297938.122], [382603.667, 7296353.473], [369174.752, 7279707.957], [369292.725, 7280425.096], [370238.089, 7284966.282], [369826.32, 7288905.429], [370310.386, 7292208.338], [368695.723, 7297451.455], [368535.473, 7298213.927], [368588.902, 7298906.733], [368756.941, 7299434.109], [368912.51, 7300238.743], [369386.867, 7300877.596], [369993.308, 7302290.369], [369790.946, 7304194.23], [369633.148, 7305149.97], [369379.278, 7305678.996], [368914.565, 7306119.212], [368801.775, 7306360.328], [368849.532, 7307059.71], [368908.511, 7307227.651], [369047.15, 7307409.901], [369114.974, 7307551.394], [369128.322, 7307614.917], [369153.486, 7307645.044], [369238.848, 7307644.664], [369538.272, 7307578.497], [369715.961, 7307514.047], [370132.894, 7307537.852], [370058.68, 7307697.372], [370007.939, 7307898.34], [369860.549, 7308338.869], [369639.078, 7308757.451], [369536.39, 7309124.484], [369455.12, 7309732.608], [369416.358, 7309881.387], [369387.26, 7309934.165], [369380.535, 7310161.241], [369333.836, 7310416.852], [369236.004, 7310623.05], [369148.671, 7310745.161], [368945.515, 7310912.279], [368722.456, 7311148.322], [368686.976, 7311222.476], [368598.234, 7311651.005], [368584.494, 7311778.485], [368615.071, 7312051.21], [368609.914, 7312220.163], [368543.771, 7312528.188], [368433.851, 7312893.344], [368416.296, 7313115.39], [368425.636, 7313308.828], [368476.873, 7313452.158], [368553.12, 7313582.918], [368654.586, 7313683.841], [368724.654, 7313858.328], [368764.779, 7314051.934], [368812.686, 7314516.92], [368873.268, 7314686.48], [368842.712, 7314798.081], [368787.102, 7314888.061], [368696.223, 7314987.013], [368577.999, 7315221.078], [368530.886, 7315268.873], [368441.683, 7315320.998], [368334.693, 7315296.415], [368182.155, 7315156.747], [368025.199, 7315098.84], [367727.987, 7315205.712], [367579.315, 7315286.703], [367517.664, 7315344.708], [367411.15, 7315504.559], [367203.187, 7315938.599], [367014.567, 7316702.583], [366961.133, 7316825.793], [366808.144, 7316977.404], [366542.578, 7317106.1], [366430.703, 7317381.418], [366388.169, 7317445.669], [366316.243, 7317503.419], [366119.401, 7317599.705], [366058.968, 7317660.317], [366033.91, 7317853.199], [365958.105, 7318058.548], [365932.438, 7318283.473], [365857.253, 7318458.881], [365682.779, 7318770.404], [365610.539, 7318959.454], [365606.068, 7319090.37], [365663.044, 7319329.641], [365525.735, 7319585.556], [365521.228, 7319647.296], [365538.81, 7319711.147], [365595.784, 7319798.639], [365765.728, 7319922.015], [366043.091, 7320038.901], [366114.538, 7320113.552], [366153.685, 7320239.429], [366062.408, 7320550.31], [366026.052, 7320738.417], [366022.08, 7320904.946], [366057.33, 7321215.123], [366087.874, 7322493.717], [366073.03, 7322706.31], [366035.011, 7322944.88], [365952.323, 7323275.402], [365705.809, 7323862.278], [365682.185, 7323967.945], [365514.851, 7324309.832], [365359.913, 7324576.169], [364626.141, 7325705.56], [364249.647, 7326495.293], [364045.034, 7326816.21], [363907.546, 7327092.723], [363813.09, 7327336.379], [363693.894, 7327666.219], [363491.025, 7328299.951], [363458.328, 7328448.17], [363444.554, 7328728.99], [363382.941, 7328939.868], [363053.55, 7329692.349], [362946.876, 7329860.149], [362723.966, 7330103.41], [362623.069, 7330252.664], [362539.458, 7330412.842], [362423.885, 7330634.879], [362343.44, 7330813.378], [362318.616, 7330904.198], [362279.263, 7331002.512], [362218.47, 7331099.836], [362134.203, 7331175.018], [361862.351, 7331329.205], [361772.488, 7331433.306], [361670.124, 7331546.29], [361561.589, 7331702.203], [361500.707, 7331855.891], [361455.518, 7332099.617], [361446.606, 7332234.989], [361504.668, 7332615.326], [361516.007, 7332813.739], [361488.178, 7333305.382], [361505.175, 7333460.461], [361613.805, 7333856.99], [361636.734, 7334141.54], [361670.187, 7334324.762], [361738.926, 7334478.539], [361926.886, 7334673.936], [361969.75, 7334778.883], [361992.964, 7334927.749], [361982.243, 7335233.366], [361933.097, 7335390.316], [361807.837, 7335557.19], [361679.84, 7335641.261], [361614.426, 7335707.93], [361587.553, 7335774.41], [361579.08, 7335863.177], [361620.158, 7336044.371], [361824.908, 7336432.346], [361872.901, 7336572.802], [361883.218, 7336674.634], [361856.465, 7336751.922], [361727.202, 7336972.768], [361549.854, 7337344.27], [361300.626, 7337761.454], [361169.483, 7337942.718], [360796.463, 7338359.333], [360740.078, 7338460.557], [360725.748, 7338520.182], [360747.754, 7338768.742], [360802.071, 7338919.097], [360855.173, 7338978.197], [361076.632, 7339132.602], [361216.522, 7339293.165], [361298.518, 7339361.706], [361375.834, 7339477.618], [361421.307, 7339665.917], [361409.079, 7339859.277], [361509.306, 7339957.609], [361520.35, 7340017.212], [361452.044, 7340184.713], [361366.242, 7340517.077], [361179.404, 7341101.212], [361072.064, 7341303.642], [361013.515, 7341369.017], [360939.473, 7341417.142], [360656.059, 7341541.502], [360464.281, 7341583.238], [360271.228, 7341719.933], [360154.407, 7341776.41], [360096.268, 7341829.532], [360054.691, 7341938.33], [359905.369, 7342076.242], [360115.78, 7342359.619], [360124.146, 7342809.254], [359988.373, 7343287.761], [359795.423, 7343504.579], [359685.721, 7344074.979], [359823.741, 7344857.06], [359727.323, 7345113.984], [359823.069, 7345556.58], [374427.873, 7350335.182], [373883.216, 7351048.915], [373850.393, 7351352.078], [374347.575, 7351722.395], [373767.434, 7352354.222], [374433.289, 7352772.762], [375275.739, 7351606.288], [375890.482, 7352012.283], [376100.696, 7351331.45], [375745.27, 7350957.673], [375894.276, 7350794.766], [401100.619, 7358688.557], [398565.586, 7355562.83]]]}}, {\\\"id\\\": \\\"245\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tervo\\\", \\\"elakelaisten_osuus\\\": 43.9, \\\"freshwarea\\\": 146.55, \\\"gml_id\\\": 1601100640, \\\"landarea\\\": 347.75, \\\"namefin\\\": \\\"Tervo\\\", \\\"nameswe\\\": \\\"Tervo\\\", \\\"natcode\\\": \\\"844\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 494.3}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[493884.055, 6999885.627], [495154.209, 6997963.303], [497811.369, 6998703.022], [498009.279, 6998227.844], [497844.062, 6997818.385], [497943.58, 6997275.99], [498408.271, 6997183.605], [498903.487, 6996122.111], [499807.347, 6995130.311], [500157.106, 6994409.566], [500399.728, 6994172.49], [501137.999, 6993821.181], [501587.627, 6993515.362], [502541.913, 6992643.816], [504071.068, 6991435.717], [504144.258, 6991028.409], [504321.631, 6990650.452], [503917.398, 6990466.969], [504552.984, 6988963.902], [505120.986, 6989141.293], [507194.793, 6987224.764], [507212.07, 6986955.85], [506358.75, 6986208.614], [505898.623, 6986408.651], [505311.872, 6986871.513], [505001.036, 6987198.132], [504619.832, 6987298.73], [504229.005, 6986921.067], [503656.373, 6986725.824], [503865.355, 6985929.274], [503800.839, 6985581.996], [503221.028, 6986040.062], [502807.635, 6986014.222], [502398.483, 6986189.493], [502424.851, 6986615.082], [501760.592, 6986065.394], [501282.717, 6985898.249], [501436.018, 6984658.915], [500723.841, 6984459.311], [500685.008, 6984759.91], [499698.164, 6984480.136], [498958.396, 6983725.379], [498058.414, 6984091.357], [497054.2, 6985153.007], [496198.322, 6985004.988], [495841.37, 6984661.679], [494704.849, 6984371.583], [495175.069, 6982998.468], [494427.81, 6981565.354], [494735.94, 6980756.519], [495527.622, 6980448.69], [496122.575, 6979147.55], [496788.469, 6977036.498], [496957.478, 6976209.76], [496153.969, 6975319.891], [495792.182, 6975672.022], [495324.718, 6975274.502], [496269.169, 6974196.868], [495327.37, 6973732.135], [495458.252, 6972988.901], [495458.162, 6972297.949], [495761.173, 6971385.831], [495101.701, 6971452.541], [494940.411, 6971090.161], [495579.864, 6970125.147], [495364.254, 6968874.07], [494976.216, 6967893.646], [494799.063, 6967856.067], [494074.153, 6967275.994], [493664.883, 6966072.759], [493949.142, 6965621.232], [491950.636, 6963827.477], [491557.604, 6964449.612], [489955.304, 6962907.059], [489471.179, 6963337.872], [489290.739, 6963784.499], [489291.423, 6964361.363], [489016.698, 6964932.947], [488451.531, 6965433.161], [487721.702, 6966716.404], [486435.407, 6967922.596], [485780.451, 6967338.264], [484097.44, 6967769.417], [483246.754, 6968417.548], [483056.071, 6968826.888], [481589.131, 6972347.429], [482820.629, 6972769.269], [483803.219, 6974284.665], [482089.892, 6976896.598], [482821.362, 6976670.305], [482610.441, 6977302.478], [481779.072, 6978593.43], [480405.544, 6980677.054], [476699.022, 6983736.784], [476399.455, 6984130.605], [477663.622, 6984833.347], [476882.933, 6985539.054], [480904.221, 6987909.067], [480114.214, 6990337.464], [481093.383, 6991321.605], [483579.962, 6991043.497], [484817.356, 6991706.779], [486111.96, 6990838.645], [486915.089, 6992329.756], [487411.802, 6992491.174], [487394.114, 6993312.352], [487946.042, 6993696.835], [489185.645, 6993282.269], [489727.643, 6993394.06], [489990.3, 6993219.338], [490077.024, 6993640.534], [490534.408, 6993924.505], [490426.428, 6994435.668], [490565.024, 6994689.928], [490851.289, 6994518.5], [491415.041, 6994594.086], [493759.185, 6994512.752], [494049.877, 6994769.578], [493615.349, 6994968.81], [493395.013, 6995587.75], [493223.427, 6995825.277], [493383.337, 6996189.78], [494046.18, 6995707.25], [494691.166, 6995533.807], [495456.852, 6995901.886], [493593.212, 6997034.454], [492841.6, 6997758.874], [492427.837, 6998492.124], [492119.455, 6999801.492], [492753.292, 6999959.94], [493118.786, 7000241.232], [493884.055, 6999885.627]]]}}, {\\\"id\\\": \\\"246\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hyvink\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 25.7, \\\"freshwarea\\\": 14.09, \\\"gml_id\\\": 1601100171, \\\"landarea\\\": 322.68, \\\"namefin\\\": \\\"Hyvink\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Hyvinge\\\", \\\"natcode\\\": \\\"106\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 336.77}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[393132.974, 6728795.219], [393672.688, 6728679.497], [394096.887, 6727510.1], [396836.372, 6726576.903], [395172.675, 6722687.235], [393406.254, 6720319.816], [394487.723, 6719032.347], [392888.155, 6717249.589], [392539.411, 6717680.693], [391816.219, 6717405.93], [391724.482, 6716415.835], [389797.168, 6716075.338], [389091.205, 6716493.83], [388455.138, 6716686.756], [385516.648, 6715109.21], [385524.207, 6715301.21], [384896.62, 6716137.049], [384380.796, 6716029.019], [384218.119, 6716765.309], [384018.352, 6717062.774], [381477.763, 6715781.069], [380830.734, 6712274.837], [379166.296, 6712317.587], [379931.524, 6713965.208], [378683.813, 6714744.554], [378810.368, 6715129.206], [379291.068, 6715228.981], [379244.203, 6715603.408], [378032.838, 6716363.993], [378352.475, 6717936.043], [376652.726, 6719107.204], [376093.43, 6717158.633], [374069.231, 6711386.241], [371690.956, 6710280.182], [370926.378, 6711258.416], [370965.851, 6711300.816], [368183.62, 6715888.706], [367281.278, 6719098.266], [366566.184, 6720982.625], [366718.033, 6722751.706], [366878.133, 6724828.718], [367404.222, 6725325.49], [369728.766, 6728123.905], [370959.922, 6727103.778], [371658.943, 6727238.489], [373774.103, 6725944.312], [374972.344, 6725997.961], [376423.919, 6725649.768], [376504.267, 6725969.324], [376946.739, 6725862.978], [377100.874, 6726446.11], [377400.636, 6726383.081], [377798.348, 6726987.713], [378600.996, 6726288.341], [378703.998, 6726425.871], [380321.143, 6728341.144], [380789.706, 6727840.539], [381696.299, 6727565.336], [381699.598, 6726787.923], [384903.493, 6726773.311], [384957.056, 6727214.05], [386372.16, 6727041.281], [386433.836, 6727552.456], [386940.094, 6727784.682], [387050.189, 6728218.131], [389552.355, 6728855.209], [391756.354, 6729090.876], [392330.658, 6728967.769], [392674.162, 6729306.24], [393132.974, 6728795.219]]]}}, {\\\"id\\\": \\\"247\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lemi\\\", \\\"elakelaisten_osuus\\\": 29.4, \\\"freshwarea\\\": 44.58, \\\"gml_id\\\": 1601100646, \\\"landarea\\\": 217.9, \\\"namefin\\\": \\\"Lemi\\\", \\\"nameswe\\\": \\\"Lemi\\\", \\\"natcode\\\": \\\"416\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 262.48}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[545390.268, 6780291.39], [545659.961, 6779988.616], [546739.122, 6780235.724], [547166.952, 6779894.866], [546419.463, 6778565.703], [547175.263, 6777728.651], [547172.666, 6777362.001], [547492.639, 6777028.839], [547773.719, 6777964.659], [548576.388, 6778859.3], [549379.076, 6776916.9], [550332.885, 6777705.286], [551016.014, 6776843.243], [551137.075, 6775480.9], [552465.743, 6774629.658], [552854.389, 6774023.808], [553065.622, 6770711.66], [553499.951, 6770045.635], [552754.163, 6768861.11], [553244.764, 6768876.008], [553512.959, 6768345.326], [553308.044, 6768012.26], [552168.508, 6767904.894], [551727.39, 6767582.622], [551261.978, 6767736.755], [550227.901, 6767393.786], [550628.041, 6767061.225], [550920.828, 6766236.662], [550891.346, 6765390.007], [550495.107, 6765418.792], [550201.523, 6765825.124], [549952.321, 6766328.917], [549720.613, 6766568.218], [548444.135, 6766134.484], [547763.409, 6766475.64], [546857.68, 6766061.9], [547183.656, 6765074.005], [546458.253, 6764721.142], [546304.818, 6764355.09], [546310.924, 6763295.421], [546574.321, 6762691.069], [546389.998, 6762395.088], [545466.773, 6762437.263], [545059.435, 6762856.889], [544435.285, 6763257.62], [541987.779, 6763061.877], [540181.718, 6762616.538], [539317.869, 6762665.009], [538374.247, 6763374.511], [538103.454, 6763785.442], [538113.145, 6764332.02], [537181.822, 6764532.329], [536238.408, 6764279.721], [536596.77, 6763458.858], [536057.292, 6763093.601], [535294.001, 6763332.396], [534243.522, 6764003.312], [534092.181, 6764284.996], [533688.143, 6764560.78], [532271.916, 6764998.088], [531577.6, 6764803.659], [530962.248, 6764893.317], [531608.272, 6766507.568], [532078.777, 6766939.398], [533160.438, 6766850.145], [533581.664, 6767074.359], [533758.19, 6767364.943], [533767.881, 6767860.442], [534159.123, 6767786.476], [534507.584, 6767477.905], [534408.131, 6766746.001], [535055.268, 6766688.631], [534912.108, 6768693.916], [533313.246, 6770086.234], [534052.84, 6770738.277], [534531.247, 6770502.978], [534797.833, 6771092.941], [534260.151, 6771247.872], [534032.936, 6772082.031], [534308.419, 6772574.235], [535125.681, 6773175.299], [537036.498, 6774127.63], [537236.019, 6773876.634], [537923.139, 6774058.766], [538206.571, 6774453.702], [538184.425, 6775032.872], [537272.676, 6777341.125], [537131.725, 6778389.697], [537395.109, 6779784.63], [538269.555, 6779667.985], [539728.56, 6780310.335], [540679.875, 6780375.317], [542049.516, 6780986.279], [542196.954, 6781271.564], [542841.099, 6780395.127], [543682.853, 6781237.79], [544696.754, 6781709.045], [545359.069, 6781943.915], [545732.28, 6781988.686], [545390.268, 6780291.39]]]}}, {\\\"id\\\": \\\"248\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pornainen\\\", \\\"elakelaisten_osuus\\\": 18.7, \\\"freshwarea\\\": 3.57, \\\"gml_id\\\": 1601100579, \\\"landarea\\\": 146.52, \\\"namefin\\\": \\\"Pornainen\\\", \\\"nameswe\\\": \\\"Borgn\\\\u00e4s\\\", \\\"natcode\\\": \\\"611\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 150.09}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[413073.963, 6712770.878], [412974.561, 6711425.238], [413346.511, 6710052.277], [413760.794, 6709312.742], [413954.616, 6708224.21], [413795.168, 6706224.109], [416495.765, 6703678.83], [417449.445, 6702898.098], [418012.334, 6701318.942], [416939.36, 6700119.668], [414618.849, 6698913.891], [412449.0, 6698268.84], [409843.854, 6697758.511], [408782.366, 6699946.592], [407644.735, 6701563.577], [406339.895, 6703376.025], [405444.334, 6704375.991], [404879.929, 6705306.499], [402460.677, 6708594.602], [401427.364, 6711210.401], [403663.471, 6712337.058], [403518.489, 6712618.26], [404641.805, 6713025.032], [406120.702, 6713144.423], [409040.961, 6713246.04], [412963.006, 6714194.858], [413073.963, 6712770.878]]]}}, {\\\"id\\\": \\\"249\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Koski Tl\\\", \\\"elakelaisten_osuus\\\": 36.8, \\\"freshwarea\\\": 0.92, \\\"gml_id\\\": 1601100464, \\\"landarea\\\": 191.49, \\\"namefin\\\": \\\"Koski Tl\\\", \\\"nameswe\\\": \\\"Koski Tl\\\", \\\"natcode\\\": \\\"284\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 192.41}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[278874.926, 6736826.659], [279427.834, 6736548.923], [279467.508, 6736181.963], [279207.08, 6735868.581], [278545.328, 6735900.194], [278119.067, 6736720.374], [278138.999, 6736887.159], [277691.834, 6737030.396], [277804.586, 6737161.342], [278874.926, 6736826.659]]], [[[292222.129, 6739539.638], [293462.602, 6733271.746], [293937.001, 6733131.285], [294391.915, 6732720.282], [294821.4, 6732609.042], [293359.04, 6729021.933], [295306.358, 6727167.025], [295245.555, 6726870.063], [294519.301, 6725929.236], [293574.447, 6724476.571], [293395.265, 6724071.006], [292306.716, 6722632.42], [291279.476, 6721069.583], [289712.028, 6722281.247], [288577.551, 6721994.652], [286994.9, 6721989.918], [286367.884, 6721621.783], [282244.268, 6728544.737], [282470.624, 6728606.199], [282639.16, 6728569.001], [282834.698, 6728660.353], [282765.988, 6729331.794], [281743.874, 6733114.505], [280648.51, 6735218.298], [280528.084, 6735358.863], [280385.401, 6735343.259], [280095.469, 6735479.969], [279489.249, 6736716.908], [279891.021, 6737345.31], [283433.029, 6735783.936], [287196.503, 6739209.58], [287489.901, 6740336.498], [287986.377, 6740740.086], [290626.556, 6743768.628], [292222.129, 6739539.638]]]]}}, {\\\"id\\\": \\\"250\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pihtipudas\\\", \\\"elakelaisten_osuus\\\": 36.5, \\\"freshwarea\\\": 172.58, \\\"gml_id\\\": 1601100399, \\\"landarea\\\": 1074.91, \\\"namefin\\\": \\\"Pihtipudas\\\", \\\"nameswe\\\": \\\"Pihtipudas\\\", \\\"natcode\\\": \\\"601\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1247.49}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[417999.767, 7051437.468], [424479.199, 7045853.194], [424539.134, 7045824.724], [427435.427, 7044777.465], [435241.508, 7044181.914], [437213.116, 7043578.989], [439004.42, 7042516.974], [440697.493, 7041240.938], [444765.3, 7035052.776], [449823.929, 7033795.763], [457055.198, 7036862.779], [458926.46, 7034751.371], [456080.03, 7031129.764], [453493.984, 7025455.896], [454305.846, 7025328.552], [456372.244, 7022676.481], [456944.478, 7016484.555], [451030.645, 7018254.742], [443270.066, 7016668.71], [437002.822, 7018165.712], [434653.536, 7017587.748], [431808.117, 7015024.66], [432061.845, 7013673.334], [430740.605, 7014213.157], [431048.571, 7015469.688], [429126.482, 7015846.426], [428799.676, 7014440.513], [425796.66, 7015010.01], [425512.535, 7015147.963], [425367.382, 7015587.907], [424728.289, 7016140.803], [423524.052, 7017539.03], [423066.115, 7017725.639], [422990.921, 7017457.411], [419376.739, 7017035.262], [416417.539, 7018339.659], [414039.806, 7023568.883], [409188.331, 7032274.613], [404408.486, 7039073.207], [406076.256, 7042943.258], [407657.217, 7050922.609], [412982.72, 7054781.153], [413282.133, 7054997.821], [417999.767, 7051437.468]]]}}, {\\\"id\\\": \\\"251\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ylivieska\\\", \\\"elakelaisten_osuus\\\": 23.9, \\\"freshwarea\\\": 4.5, \\\"gml_id\\\": 1601100187, \\\"landarea\\\": 568.92, \\\"namefin\\\": \\\"Ylivieska\\\", \\\"nameswe\\\": \\\"Ylivieska\\\", \\\"natcode\\\": \\\"977\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 573.42}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[385273.397, 7118697.454], [387793.687, 7118269.548], [388950.576, 7116906.794], [389139.995, 7116991.372], [389658.143, 7116387.387], [389481.676, 7116257.847], [390810.116, 7114726.253], [392464.69, 7113564.625], [397308.226, 7111227.548], [397302.592, 7110823.481], [398092.767, 7110671.231], [399547.853, 7109418.412], [399696.069, 7109515.536], [403461.736, 7106084.121], [397874.997, 7096815.305], [396122.102, 7097601.366], [395532.158, 7096783.791], [395139.601, 7096597.591], [395247.981, 7096304.59], [395082.415, 7095891.496], [394340.27, 7096452.676], [393911.904, 7096252.152], [393549.682, 7096340.35], [393239.802, 7096602.942], [393702.848, 7096814.65], [393584.739, 7097024.416], [393147.781, 7096889.401], [392818.242, 7097266.987], [392459.327, 7097074.729], [392125.446, 7096544.834], [391256.334, 7097421.941], [391526.059, 7097749.352], [391222.813, 7098092.853], [390941.155, 7098011.552], [390946.079, 7097740.246], [390632.352, 7097272.442], [390229.855, 7097305.462], [390374.342, 7097886.689], [389714.913, 7098261.328], [389303.1, 7097838.349], [389396.79, 7097091.462], [389883.037, 7097067.211], [389447.972, 7096499.552], [389097.73, 7096242.88], [388758.509, 7095565.917], [388620.052, 7094885.519], [388782.886, 7094246.431], [389506.4, 7093477.724], [389364.791, 7093271.479], [389005.775, 7093411.071], [388428.318, 7094217.608], [387551.349, 7093999.778], [386742.888, 7094562.4], [385165.296, 7094760.841], [384342.984, 7095390.186], [384323.357, 7093223.3], [383104.343, 7093060.032], [382933.31, 7092789.5], [377271.779, 7095868.673], [372078.336, 7098871.456], [371989.764, 7099580.978], [371713.343, 7100167.957], [372074.148, 7100884.425], [371617.899, 7101088.605], [371521.023, 7100705.638], [370801.907, 7103059.226], [370391.731, 7103008.08], [370443.5, 7102605.316], [369843.234, 7102555.754], [369735.507, 7103092.438], [368795.291, 7101681.398], [368395.877, 7102260.559], [368274.035, 7102437.233], [370391.021, 7104305.316], [370424.741, 7104339.038], [371535.809, 7108197.54], [370658.604, 7110159.351], [371568.503, 7110509.77], [371446.804, 7109699.265], [371823.694, 7109246.416], [372546.393, 7111640.368], [372600.049, 7115148.911], [373204.44, 7115164.496], [372645.944, 7116054.774], [373119.497, 7115874.429], [373358.234, 7116446.164], [373991.129, 7116323.377], [374389.812, 7115874.108], [375687.348, 7116478.362], [375900.905, 7116053.18], [376724.254, 7116637.759], [376606.347, 7116905.318], [378778.654, 7117935.556], [378541.964, 7118471.702], [378800.67, 7118626.555], [379204.01, 7118108.854], [382899.505, 7119849.311], [385273.397, 7118697.454]], [[398614.748, 7098768.564], [398683.838, 7098435.776], [398425.321, 7097997.745], [398091.666, 7097607.545], [397544.509, 7097413.226], [396384.272, 7098245.198], [396658.169, 7098382.597], [397114.808, 7098063.256], [397673.366, 7098231.101], [398150.392, 7098396.254], [398377.093, 7098806.908], [398614.748, 7098768.564]], [[395828.167, 7098459.944], [395283.16, 7098689.957], [394852.012, 7098330.69], [395036.493, 7097738.791], [394577.95, 7097308.594], [394317.414, 7098119.34], [394544.207, 7098414.931], [394238.295, 7099033.772], [395707.303, 7099091.225], [395828.167, 7098459.944]]]}}, {\\\"id\\\": \\\"252\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hattula\\\", \\\"elakelaisten_osuus\\\": 26.1, \\\"freshwarea\\\": 69.6, \\\"gml_id\\\": 1601100131, \\\"landarea\\\": 357.79, \\\"namefin\\\": \\\"Hattula\\\", \\\"nameswe\\\": \\\"Hattula\\\", \\\"natcode\\\": \\\"082\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 427.39}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[355196.889, 6791753.407], [354812.746, 6791648.662], [355992.688, 6790406.172], [356114.566, 6790467.78], [356403.127, 6790220.911], [356190.501, 6790197.707], [356798.372, 6789561.845], [356536.436, 6788803.281], [360348.144, 6784328.793], [362124.024, 6781778.869], [362812.324, 6781131.992], [363170.404, 6780318.919], [364406.907, 6778726.385], [365287.203, 6776733.779], [367518.543, 6774986.519], [367244.66, 6774245.637], [371780.278, 6771929.979], [371407.353, 6771495.294], [367588.565, 6770679.341], [366759.006, 6770310.35], [366722.17, 6770393.682], [366554.459, 6770325.285], [366587.418, 6770249.433], [365951.083, 6769963.636], [365906.257, 6770073.084], [363812.284, 6769285.617], [363464.519, 6770127.675], [362477.607, 6769892.178], [361735.139, 6769613.619], [360696.419, 6769443.005], [359102.23, 6768841.637], [358769.802, 6768562.392], [358369.811, 6768777.962], [357880.956, 6768193.086], [358074.668, 6767622.313], [355961.526, 6765318.655], [356498.13, 6764971.174], [355777.443, 6764548.185], [355700.304, 6765028.076], [353289.231, 6762452.82], [349611.879, 6759430.875], [347456.32, 6757534.462], [344768.662, 6752225.652], [344278.748, 6752445.807], [344075.426, 6752196.943], [343492.958, 6752374.263], [342769.806, 6751107.825], [342279.866, 6751403.024], [341735.675, 6750423.562], [340829.817, 6751102.924], [341191.071, 6751632.691], [340605.235, 6752273.95], [340815.404, 6752567.78], [339606.821, 6753327.676], [338962.004, 6752655.968], [337483.452, 6752882.446], [338802.836, 6754986.797], [338136.876, 6756212.603], [338903.844, 6758348.256], [342342.615, 6763156.647], [346582.714, 6768720.031], [348551.165, 6770772.519], [349470.133, 6772439.127], [350284.571, 6773154.874], [351667.912, 6774016.752], [351455.406, 6774851.254], [352140.83, 6775493.546], [351711.493, 6776036.135], [351234.258, 6776888.192], [351222.859, 6782799.339], [354730.834, 6787129.876], [353116.351, 6789104.767], [352746.008, 6790185.798], [354082.071, 6792429.585], [354164.609, 6792565.666], [355196.889, 6791753.407]]]}}, {\\\"id\\\": \\\"253\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"M\\\\u00e4ntyharju\\\", \\\"elakelaisten_osuus\\\": 41.3, \\\"freshwarea\\\": 230.08, \\\"gml_id\\\": 1601100121, \\\"landarea\\\": 980.9, \\\"namefin\\\": \\\"M\\\\u00e4ntyharju\\\", \\\"nameswe\\\": \\\"M\\\\u00e4ntyharju\\\", \\\"natcode\\\": \\\"507\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1210.98}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[479366.903, 6829692.161], [480033.358, 6829596.94], [480451.924, 6829071.188], [480551.7, 6828767.368], [480595.899, 6828081.644], [481403.041, 6827906.297], [483625.98, 6827964.38], [483822.821, 6828106.171], [484413.283, 6827618.073], [485252.949, 6826319.503], [485538.118, 6825793.039], [485996.141, 6826058.677], [486292.329, 6825735.047], [486295.131, 6825297.024], [486627.795, 6825353.503], [486683.46, 6825805.955], [487083.636, 6826727.688], [487787.91, 6827178.874], [487842.679, 6827490.778], [488468.131, 6827507.146], [488530.409, 6826950.072], [489491.225, 6825748.864], [489496.365, 6824521.709], [489755.23, 6823727.082], [490689.051, 6823456.398], [490913.121, 6821977.771], [491529.782, 6821883.112], [491625.059, 6821458.048], [491272.186, 6821039.772], [492359.34, 6821103.364], [493284.21, 6821131.714], [493473.713, 6820567.706], [493569.884, 6820485.96], [493572.606, 6820350.324], [493713.554, 6820255.408], [493838.087, 6820239.22], [495869.557, 6820451.348], [495797.391, 6819787.516], [496010.584, 6819932.404], [496332.065, 6820998.531], [496707.212, 6821110.488], [497296.529, 6820016.575], [497452.718, 6819389.589], [498066.771, 6818863.905], [498670.618, 6816752.322], [498399.311, 6816127.896], [498604.571, 6815629.518], [499140.753, 6815600.533], [499467.324, 6814876.529], [499470.225, 6814532.668], [500381.755, 6814409.223], [500513.296, 6815215.598], [500413.424, 6815437.348], [500929.32, 6816275.871], [503041.968, 6815342.659], [502889.836, 6814398.34], [503605.444, 6814553.114], [503326.068, 6813452.267], [503296.68, 6812963.922], [502326.278, 6812306.783], [502522.006, 6811137.656], [502914.448, 6810936.04], [503908.957, 6808900.568], [504105.483, 6808005.331], [503969.04, 6807703.952], [505246.624, 6807175.472], [505668.852, 6807321.115], [506031.205, 6807287.731], [506895.251, 6807697.07], [508287.286, 6807633.502], [508807.475, 6807537.844], [508227.414, 6806969.071], [507777.705, 6805810.936], [508030.004, 6805507.96], [507965.233, 6805040.549], [507473.733, 6805091.426], [507259.721, 6804869.814], [507219.535, 6803943.343], [506533.92, 6804216.875], [506088.103, 6804137.632], [505701.061, 6803869.311], [504767.84, 6803996.355], [504863.399, 6804330.02], [503802.623, 6805314.917], [502724.961, 6805334.904], [502607.546, 6805176.662], [501030.648, 6805670.159], [500810.541, 6805112.684], [500823.338, 6804696.652], [500010.075, 6803737.436], [497932.309, 6802522.25], [497532.996, 6801506.625], [499146.242, 6801194.959], [499739.201, 6801254.138], [500381.406, 6801637.298], [500711.901, 6801993.844], [501698.101, 6801891.99], [503827.246, 6800312.24], [504004.076, 6799965.98], [505536.556, 6799496.878], [505921.702, 6799101.741], [507000.468, 6798496.794], [507487.573, 6798112.554], [507699.046, 6799313.48], [509196.373, 6798930.13], [510234.647, 6799543.586], [511218.846, 6799698.528], [512173.555, 6799600.43], [512724.502, 6799294.216], [513459.839, 6799149.865], [513949.942, 6798891.473], [513939.451, 6798162.87], [513808.406, 6797879.985], [512945.593, 6797951.748], [512118.491, 6798171.456], [511641.685, 6798136.868], [512201.465, 6797018.827], [514023.727, 6796523.439], [514561.143, 6796236.17], [514614.289, 6796320.826], [514970.747, 6795809.336], [515252.23, 6796241.662], [515544.611, 6796239.964], [515597.994, 6795524.156], [516216.753, 6794022.172], [516398.985, 6793165.923], [517435.273, 6791808.582], [518096.61, 6791134.261], [518224.362, 6790728.828], [518645.013, 6790560.019], [518678.091, 6790033.543], [518026.15, 6789845.565], [517313.143, 6789339.089], [517267.066, 6788854.187], [517030.066, 6788365.285], [517689.31, 6787193.867], [519054.867, 6786323.731], [519698.777, 6786117.366], [520334.347, 6786709.482], [520632.817, 6786551.176], [520842.24, 6785377.226], [519285.79, 6784554.955], [519282.398, 6783739.388], [519478.927, 6782835.058], [519122.677, 6782169.927], [516974.294, 6781550.982], [516240.837, 6782563.949], [516141.324, 6782319.425], [514478.96, 6781264.768], [512903.995, 6781331.131], [512328.427, 6781418.892], [511075.037, 6780901.795], [508971.588, 6780730.852], [507918.613, 6780974.946], [507084.654, 6780734.539], [506504.587, 6781106.384], [506001.296, 6780384.176], [505183.83, 6780093.989], [504518.1, 6780163.157], [502998.421, 6779674.447], [501677.656, 6779725.218], [501232.334, 6780196.324], [500163.065, 6780579.361], [498212.85, 6781650.712], [496588.704, 6782277.246], [495275.032, 6783192.165], [496213.633, 6786184.652], [496065.187, 6787116.471], [495777.403, 6787284.701], [495744.612, 6787935.336], [494598.87, 6788985.101], [494140.351, 6789797.867], [494457.122, 6789980.394], [493460.602, 6793775.142], [493633.327, 6794561.122], [492083.258, 6794395.281], [488300.007, 6792880.069], [487768.626, 6792454.838], [487841.802, 6791606.684], [487328.018, 6790493.833], [487146.898, 6789500.836], [486618.817, 6789015.229], [486331.738, 6788397.578], [481801.4, 6785877.967], [480120.975, 6787463.909], [482347.689, 6789964.483], [482131.206, 6790934.765], [481228.794, 6792286.561], [480796.742, 6794311.385], [480335.594, 6794872.001], [480126.503, 6795433.237], [479477.555, 6794821.737], [476496.82, 6793001.94], [475851.116, 6793726.835], [475058.303, 6793576.698], [474912.594, 6793200.371], [474163.556, 6793167.891], [473923.367, 6793440.746], [473443.059, 6794111.071], [473199.148, 6795921.536], [472325.886, 6798856.739], [468467.358, 6799180.17], [467854.81, 6798804.117], [464269.164, 6801993.532], [463415.195, 6803061.448], [463557.53, 6804291.851], [465014.233, 6804642.823], [466262.524, 6804657.13], [466923.656, 6804404.938], [467289.206, 6804566.377], [467980.827, 6804086.378], [468518.206, 6804366.969], [470785.679, 6804629.185], [470597.462, 6803658.877], [471160.185, 6802608.584], [471350.164, 6802116.109], [470248.216, 6801720.659], [470636.798, 6801163.494], [470759.29, 6800694.928], [471075.234, 6800607.494], [471662.869, 6799520.528], [472325.886, 6798856.739], [473282.892, 6799523.376], [473767.99, 6800111.141], [473576.864, 6800740.285], [473519.272, 6803358.723], [473899.113, 6804014.159], [473815.343, 6804668.694], [473925.457, 6804950.324], [474791.623, 6803786.633], [475944.574, 6804826.943], [475903.721, 6805667.052], [474202.578, 6805962.172], [474818.77, 6807144.297], [476467.242, 6807835.927], [477219.531, 6808543.945], [477499.511, 6809508.556], [477109.656, 6809372.583], [476884.871, 6809980.834], [476931.338, 6810727.305], [476749.907, 6811169.478], [476562.878, 6811889.462], [476423.92, 6814483.432], [477268.826, 6815399.854], [477897.408, 6816286.511], [479739.292, 6816707.12], [479651.085, 6817759.426], [480273.498, 6818002.858], [481280.618, 6818121.89], [481340.391, 6818638.082], [481132.473, 6819113.588], [480365.195, 6819801.085], [479912.88, 6820320.634], [479931.592, 6820827.677], [480915.616, 6820537.119], [480990.713, 6820908.142], [480635.219, 6821216.754], [481686.051, 6821223.184], [481441.23, 6822111.476], [480226.758, 6822544.082], [481477.031, 6822732.082], [481405.903, 6823167.127], [480081.957, 6822875.607], [479944.789, 6823088.561], [480161.232, 6823355.334], [480885.446, 6823691.034], [479591.739, 6824399.318], [479263.919, 6825711.749], [479557.276, 6825664.127], [479723.971, 6825318.377], [480064.87, 6825471.009], [479004.744, 6826593.347], [478783.56, 6830093.662], [479366.903, 6829692.161]]]}}, {\\\"id\\\": \\\"254\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Urjala\\\", \\\"elakelaisten_osuus\\\": 36.9, \\\"freshwarea\\\": 29.98, \\\"gml_id\\\": 1601100039, \\\"landarea\\\": 475.4, \\\"namefin\\\": \\\"Urjala\\\", \\\"nameswe\\\": \\\"Urjala\\\", \\\"natcode\\\": \\\"887\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 505.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[301430.128, 6794669.462], [302019.477, 6794852.05], [302124.849, 6794291.482], [302809.444, 6794492.79], [302933.135, 6793833.684], [304877.821, 6794460.134], [304893.116, 6793683.878], [306133.007, 6794099.794], [306222.922, 6792590.959], [305658.269, 6792122.614], [305625.918, 6791665.178], [306598.061, 6791310.142], [306780.198, 6791559.587], [307465.372, 6791093.519], [307850.331, 6791401.793], [308259.776, 6790959.328], [307593.313, 6790341.531], [314246.201, 6790569.479], [313817.653, 6790150.983], [314007.781, 6788828.254], [313585.482, 6788327.893], [312487.832, 6787659.023], [311369.043, 6786031.512], [312391.798, 6785087.378], [312604.031, 6784784.322], [311848.244, 6784902.605], [312714.164, 6784141.286], [312834.779, 6783493.164], [314199.833, 6782403.167], [314007.717, 6781751.974], [314710.661, 6781498.544], [315305.386, 6780879.04], [315431.856, 6781682.98], [316285.081, 6782076.181], [319568.327, 6780771.709], [318715.865, 6779431.065], [319814.366, 6778635.311], [320187.41, 6777202.829], [320262.66, 6775804.078], [321126.595, 6775671.721], [322197.843, 6775035.896], [322559.986, 6775134.373], [322661.929, 6775512.792], [323167.426, 6775455.571], [323025.198, 6775005.702], [323730.293, 6774964.704], [324952.559, 6773513.092], [327451.427, 6772682.17], [326977.811, 6771908.483], [327423.08, 6771011.58], [326711.239, 6769836.393], [328684.169, 6770304.607], [330716.749, 6770991.298], [330824.33, 6770250.531], [331332.852, 6769259.209], [331123.466, 6768906.122], [330425.841, 6768578.206], [329999.047, 6768325.406], [329509.862, 6767899.431], [329209.783, 6767689.513], [328892.023, 6768060.356], [328848.861, 6767215.166], [327809.259, 6767047.899], [329707.948, 6764708.23], [329878.266, 6763698.908], [330233.488, 6761682.662], [328776.641, 6760201.18], [326640.495, 6765809.765], [326103.046, 6765809.67], [325640.862, 6766626.104], [325149.65, 6766777.448], [323464.302, 6766308.588], [323623.191, 6767593.425], [322286.219, 6768255.124], [321322.677, 6767946.127], [320781.262, 6767652.203], [319687.984, 6768020.357], [319459.11, 6767591.492], [318869.276, 6767549.556], [317843.978, 6767913.684], [317641.113, 6767523.765], [317182.141, 6767787.183], [316552.947, 6766575.294], [315842.017, 6766446.611], [315314.119, 6765828.433], [314632.612, 6766585.963], [314813.135, 6766905.599], [315186.96, 6766538.714], [315466.184, 6767123.128], [314357.692, 6767768.106], [314249.7, 6767212.284], [313714.463, 6767605.181], [313118.669, 6767173.548], [312361.052, 6766349.073], [311306.574, 6767093.892], [310685.698, 6766815.134], [309571.537, 6766804.612], [308931.534, 6766582.699], [308843.904, 6766045.3], [308185.517, 6766112.178], [308118.064, 6765933.473], [308663.125, 6765553.47], [308664.845, 6765124.966], [308494.589, 6764536.373], [309143.035, 6763855.071], [308623.193, 6763975.57], [307985.642, 6764577.177], [307250.616, 6764894.233], [307046.776, 6764598.047], [306420.535, 6764852.997], [305769.984, 6764568.365], [304942.526, 6765824.728], [304223.077, 6768472.871], [303420.561, 6769865.451], [301959.966, 6769441.809], [298359.877, 6770746.386], [297912.327, 6770626.756], [297813.288, 6770909.189], [299677.521, 6774882.564], [298474.223, 6775088.822], [298521.523, 6775580.908], [297326.31, 6775695.096], [296796.581, 6775949.754], [296616.696, 6776641.977], [298067.246, 6776541.901], [297752.536, 6776809.122], [298751.001, 6776737.475], [299093.358, 6777099.428], [299708.266, 6777132.492], [299512.543, 6777452.579], [298711.587, 6777505.132], [298654.376, 6778016.888], [297914.31, 6778070.229], [298136.031, 6779881.462], [297182.195, 6780156.331], [296720.734, 6780661.405], [297121.029, 6780986.42], [297449.981, 6781630.821], [298035.598, 6781529.42], [298475.448, 6781606.439], [299038.66, 6781253.373], [298641.525, 6780791.058], [298993.601, 6780634.445], [299441.503, 6781002.326], [301137.653, 6781163.282], [301251.437, 6781576.494], [305264.715, 6782737.647], [301566.561, 6786740.901], [298836.826, 6788879.988], [299894.258, 6793125.238], [300346.112, 6795011.413], [301430.128, 6794669.462]]]}}, {\\\"id\\\": \\\"255\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Merikarvia\\\", \\\"elakelaisten_osuus\\\": 39.9, \\\"freshwarea\\\": 4.6, \\\"gml_id\\\": 1601100076, \\\"landarea\\\": 446.14, \\\"namefin\\\": \\\"Merikarvia\\\", \\\"nameswe\\\": \\\"Sastmola\\\", \\\"natcode\\\": \\\"484\\\", \\\"seawarea\\\": 795.5, \\\"totalarea\\\": 1246.24}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[220077.099, 6887919.971], [222946.328, 6887833.806], [225346.628, 6887071.612], [224763.833, 6878131.636], [224521.152, 6878170.413], [222758.819, 6871542.319], [221130.561, 6871412.635], [219842.221, 6865149.052], [221808.002, 6857384.242], [220287.519, 6856434.139], [216528.796, 6857374.843], [216190.941, 6857731.503], [215741.599, 6857513.818], [215292.618, 6857686.303], [213867.808, 6858049.795], [213431.768, 6857756.337], [213153.252, 6858227.025], [212571.592, 6858259.586], [212339.081, 6857445.004], [206708.163, 6855811.34], [205498.186, 6855876.09], [202499.941, 6856750.518], [177110.724, 6855934.835], [176308.291, 6880855.366], [200249.249, 6881206.518], [204486.251, 6882577.493], [208432.048, 6887784.308], [213658.47, 6889017.4], [220077.099, 6887919.971]]]}}, {\\\"id\\\": \\\"256\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Maalahti\\\", \\\"elakelaisten_osuus\\\": 30.5, \\\"freshwarea\\\": 4.07, \\\"gml_id\\\": 1601100062, \\\"landarea\\\": 521.75, \\\"namefin\\\": \\\"Maalahti\\\", \\\"nameswe\\\": \\\"Malax\\\", \\\"natcode\\\": \\\"475\\\", \\\"seawarea\\\": 1429.12, \\\"totalarea\\\": 1954.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[198928.241, 7011668.255], [214718.588, 7001851.991], [215149.9, 7001522.135], [215268.304, 7001048.299], [215969.429, 7000488.151], [215857.362, 7000239.514], [216684.072, 6999848.307], [217816.047, 6999861.124], [217877.201, 6999947.551], [218062.239, 7000075.538], [218276.769, 6999955.281], [218273.186, 6999866.89], [221516.905, 6998045.178], [224100.254, 6995266.449], [224706.123, 6995547.622], [224736.825, 6995280.116], [225700.808, 6995393.87], [226520.624, 6994184.332], [227999.886, 6992159.244], [229404.45, 6990666.326], [233443.958, 6986747.961], [233148.491, 6986631.409], [233598.704, 6986145.368], [233933.374, 6986273.848], [234786.913, 6985451.635], [234390.451, 6985308.054], [235110.453, 6984519.06], [234172.221, 6981191.422], [233680.603, 6979445.867], [231587.15, 6976648.721], [231118.654, 6970711.502], [230402.056, 6970713.036], [228945.182, 6967606.74], [227994.262, 6967923.382], [228187.239, 6968346.957], [228088.379, 6968679.549], [227556.6, 6968569.653], [227513.795, 6968132.728], [226855.786, 6968232.571], [226129.857, 6968721.814], [226092.496, 6968542.149], [225835.875, 6968347.423], [225826.298, 6968364.419], [225316.532, 6968333.54], [225407.011, 6969905.637], [222157.229, 6969979.705], [221820.45, 6970818.294], [220647.97, 6970190.435], [220369.98, 6970662.279], [220702.666, 6970946.939], [220633.07, 6971179.744], [214057.559, 6971107.767], [213838.628, 6971105.629], [212960.376, 6971155.43], [212945.705, 6972207.385], [211699.911, 6973745.012], [210923.76, 6975562.38], [209812.632, 6977271.893], [210907.292, 6977773.265], [210243.979, 6978326.707], [210290.578, 6978386.569], [210577.112, 6978197.479], [211192.692, 6978943.918], [211387.727, 6978801.671], [211418.027, 6979063.447], [211310.873, 6979108.339], [211524.372, 6979534.361], [211761.258, 6980635.402], [211384.056, 6982557.919], [212097.03, 6982800.176], [212443.567, 6980508.295], [212423.366, 6980502.445], [212418.842, 6980512.114], [211952.749, 6980535.894], [212076.72, 6980290.345], [212480.482, 6980265.259], [212788.814, 6978202.379], [213243.911, 6978801.705], [213107.832, 6978860.755], [213576.758, 6979833.739], [211703.607, 6984624.119], [211901.302, 6984714.569], [211614.156, 6984980.81], [211518.954, 6985101.118], [211463.829, 6985242.096], [211362.421, 6985320.612], [207929.756, 6991941.097], [188964.666, 6993360.359], [160279.808, 6995507.005], [160272.076, 6995558.621], [156269.296, 7022279.566], [164704.525, 7032920.449], [198928.241, 7011668.255]]]}}, {\\\"id\\\": \\\"257\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Maarianhamina\\\", \\\"elakelaisten_osuus\\\": 24.5, \\\"freshwarea\\\": 0.0, \\\"gml_id\\\": 1601100066, \\\"landarea\\\": 11.8, \\\"namefin\\\": \\\"Maarianhamina\\\", \\\"nameswe\\\": \\\"Mariehamn\\\", \\\"natcode\\\": \\\"478\\\", \\\"seawarea\\\": 8.95, \\\"totalarea\\\": 20.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[109065.355, 6685101.119], [109213.871, 6682698.358], [109606.966, 6682052.048], [108957.647, 6679362.605], [108657.102, 6679222.814], [108426.203, 6678964.271], [108314.781, 6678598.04], [108067.706, 6678337.705], [108021.271, 6678038.524], [107772.447, 6677580.713], [106669.075, 6677676.693], [106774.144, 6678983.494], [106413.73, 6679816.692], [106114.946, 6680335.082], [106610.297, 6680830.433], [106492.59, 6681048.682], [106266.984, 6681154.128], [106188.513, 6681480.275], [106455.806, 6681487.632], [106784.406, 6681691.167], [106924.183, 6682063.906], [106875.138, 6682289.512], [106705.934, 6682399.862], [106630.221, 6682427.294], [106536.73, 6682461.168], [106571.061, 6682851.073], [106691.221, 6682927.092], [106759.883, 6683155.15], [106590.679, 6683263.048], [106725.585, 6683696.546], [106774.597, 6683854.036], [106721.781, 6684146.923], [106946.774, 6684202.991], [107096.491, 6685437.026], [107055.541, 6686268.769], [107856.891, 6686323.354], [107902.072, 6686578.637], [109363.682, 6686625.619], [109065.355, 6685101.119]]]}}, {\\\"id\\\": \\\"258\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vihti\\\", \\\"elakelaisten_osuus\\\": 21.9, \\\"freshwarea\\\": 45.04, \\\"gml_id\\\": 1601100331, \\\"landarea\\\": 522.02, \\\"namefin\\\": \\\"Vihti\\\", \\\"nameswe\\\": \\\"Vichtis\\\", \\\"natcode\\\": \\\"927\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 567.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[368183.62, 6715888.706], [370965.851, 6711300.816], [370926.378, 6711258.416], [369643.826, 6711554.014], [366633.292, 6710124.519], [365127.95, 6708432.689], [363954.349, 6707069.304], [365888.007, 6706299.373], [366672.676, 6703867.295], [366694.026, 6702765.801], [367125.803, 6699065.852], [367997.104, 6697059.824], [369134.568, 6693775.377], [368572.913, 6692805.761], [367946.035, 6691143.146], [367225.249, 6689936.88], [365362.86, 6688879.345], [361962.88, 6690367.147], [362472.847, 6686495.759], [361751.588, 6686061.341], [362569.982, 6685740.984], [362624.151, 6685325.923], [360545.372, 6685786.993], [360456.483, 6686609.239], [358665.968, 6687306.956], [358629.146, 6687291.817], [357274.66, 6686963.923], [356697.668, 6685800.744], [355498.108, 6684885.579], [354500.398, 6682887.474], [352899.518, 6681792.724], [352485.409, 6683868.535], [351084.214, 6687267.974], [350363.933, 6688252.079], [349518.905, 6689020.53], [349093.986, 6688735.556], [348417.581, 6689549.867], [345713.071, 6687943.616], [345493.322, 6690244.929], [345912.732, 6693008.579], [345724.96, 6693756.118], [345907.536, 6694529.922], [345790.284, 6695101.034], [345536.454, 6695499.79], [344796.879, 6696988.756], [343903.356, 6696816.829], [343618.334, 6698186.568], [342067.039, 6698486.552], [342640.679, 6699725.891], [341664.302, 6699827.095], [341980.601, 6700173.762], [342449.466, 6700524.444], [342588.24, 6700785.319], [342332.096, 6701328.023], [342320.02, 6702608.377], [343088.693, 6705507.978], [344565.478, 6708737.405], [344726.117, 6708985.216], [346908.349, 6708626.508], [347157.647, 6709005.556], [347127.119, 6709676.088], [348708.216, 6710739.592], [350442.191, 6707960.156], [350158.251, 6707035.125], [350500.573, 6706895.799], [350939.092, 6707435.074], [352638.209, 6707983.574], [355987.583, 6708738.364], [360778.209, 6710231.502], [358726.22, 6715710.045], [365623.834, 6716265.571], [367281.278, 6719098.266], [368183.62, 6715888.706]]]}}, {\\\"id\\\": \\\"259\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"\\\\u00c4ht\\\\u00e4ri\\\", \\\"elakelaisten_osuus\\\": 37.0, \\\"freshwarea\\\": 105.05, \\\"gml_id\\\": 1601100201, \\\"landarea\\\": 805.83, \\\"namefin\\\": \\\"\\\\u00c4ht\\\\u00e4ri\\\", \\\"nameswe\\\": \\\"Etseri\\\", \\\"natcode\\\": \\\"989\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 910.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[346370.41, 6962622.67], [346680.51, 6962138.434], [346836.633, 6961626.646], [346684.645, 6961242.367], [347407.831, 6960710.268], [346754.622, 6960392.901], [347302.684, 6959056.438], [348604.168, 6959564.335], [348320.016, 6960219.487], [349451.161, 6958886.724], [349503.653, 6958611.741], [350670.224, 6957398.553], [352199.941, 6957628.171], [352602.241, 6954957.813], [354881.771, 6954754.83], [354330.276, 6957373.177], [356963.607, 6958464.126], [357177.61, 6957484.111], [356787.609, 6957445.651], [356744.96, 6956131.807], [356329.977, 6955531.371], [358224.611, 6953625.812], [360798.19, 6957289.0], [357636.362, 6959575.281], [358605.026, 6961232.517], [361105.043, 6961695.986], [361299.033, 6960996.085], [360416.74, 6959780.367], [360582.188, 6958944.795], [361496.586, 6958289.877], [361895.352, 6958857.803], [362251.699, 6957997.644], [365428.641, 6956812.475], [365643.369, 6955069.913], [367642.238, 6955313.487], [368410.318, 6953528.435], [369653.826, 6953825.444], [370577.486, 6951977.75], [372133.887, 6952309.675], [371713.314, 6952728.003], [372286.902, 6953381.793], [372885.83, 6952868.862], [373036.311, 6953044.961], [376149.768, 6950563.473], [372408.821, 6947361.48], [371940.958, 6945869.658], [373837.705, 6945237.765], [375790.919, 6945737.599], [376037.789, 6944649.72], [374447.476, 6944292.001], [375019.394, 6941243.75], [373385.501, 6940934.129], [373831.896, 6939120.711], [372763.801, 6938861.006], [373352.832, 6936379.243], [373030.433, 6936296.178], [372735.27, 6936971.627], [372350.716, 6936799.291], [372926.096, 6935477.746], [372218.326, 6935135.598], [371944.111, 6935657.861], [371729.058, 6935540.595], [371559.621, 6934149.749], [371680.354, 6933362.602], [371640.843, 6933095.55], [371944.61, 6932698.537], [371036.517, 6932014.307], [370494.994, 6932246.918], [370410.905, 6931947.235], [368884.285, 6931755.923], [368683.893, 6930774.065], [367232.015, 6929567.187], [366428.199, 6932105.355], [365851.934, 6931938.683], [365776.553, 6932199.31], [366352.819, 6932365.981], [366246.345, 6932750.553], [365668.543, 6932589.881], [365005.786, 6931897.527], [364786.11, 6932843.729], [362483.209, 6931740.306], [362711.194, 6931135.257], [361942.061, 6930776.119], [362504.795, 6929363.334], [362746.296, 6929459.528], [363038.414, 6928736.444], [362797.078, 6928629.543], [361807.394, 6926920.543], [355768.028, 6931075.644], [349972.567, 6923649.061], [350233.547, 6923119.684], [346809.505, 6920085.301], [345455.368, 6918226.112], [344590.659, 6919411.754], [344617.79, 6919777.67], [342540.245, 6920984.86], [342075.228, 6921040.23], [341008.871, 6921479.901], [340961.525, 6922195.209], [340448.679, 6923133.136], [340387.137, 6923823.651], [340262.62, 6924127.964], [340427.319, 6924692.017], [340478.735, 6925243.97], [340261.385, 6925736.272], [340090.974, 6926557.551], [340673.178, 6928541.979], [340194.41, 6928683.492], [340305.99, 6929067.577], [340738.76, 6928959.927], [340214.894, 6931990.53], [338583.246, 6932174.94], [338489.746, 6929365.582], [336987.61, 6929367.886], [336977.473, 6933246.544], [339774.014, 6936999.023], [341656.202, 6936683.408], [343431.897, 6937443.807], [343526.012, 6938093.839], [344072.096, 6939719.957], [344913.627, 6941164.424], [344484.192, 6941306.669], [344065.203, 6941133.928], [344124.189, 6941520.233], [343730.747, 6942192.426], [343976.995, 6942299.011], [345211.276, 6941675.331], [345569.224, 6942289.741], [345086.851, 6944801.999], [344495.569, 6946917.678], [344196.266, 6948614.392], [345266.738, 6950227.027], [346286.633, 6951157.61], [346251.263, 6953327.752], [343831.847, 6959331.648], [343298.204, 6961570.195], [345273.225, 6961724.547], [345555.806, 6962635.162], [346033.466, 6962902.709], [346370.41, 6962622.67]]]}}, {\\\"id\\\": \\\"260\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Paimio\\\", \\\"elakelaisten_osuus\\\": 25.0, \\\"freshwarea\\\": 1.62, \\\"gml_id\\\": 1601100239, \\\"landarea\\\": 238.41, \\\"namefin\\\": \\\"Paimio\\\", \\\"nameswe\\\": \\\"Pemar\\\", \\\"natcode\\\": \\\"577\\\", \\\"seawarea\\\": 2.24, \\\"totalarea\\\": 242.27}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[264191.414, 6719898.342], [264811.025, 6719614.725], [268059.273, 6717470.908], [268471.229, 6717381.943], [269391.303, 6717347.741], [270739.01, 6717118.531], [270623.204, 6716814.338], [271037.404, 6716717.64], [271142.545, 6717066.775], [271837.919, 6716510.001], [271984.469, 6715508.801], [272433.72, 6713632.545], [272420.579, 6713067.957], [271791.405, 6711118.647], [271868.275, 6710463.948], [273166.818, 6708107.437], [271942.536, 6706276.264], [272759.344, 6706045.99], [272614.391, 6705049.736], [271712.212, 6705131.156], [270651.642, 6703892.931], [270363.229, 6701795.995], [269524.021, 6700258.507], [269253.277, 6700115.454], [267669.917, 6699970.234], [266240.792, 6701135.719], [265709.428, 6701977.364], [266119.185, 6702630.874], [265937.215, 6702739.428], [265543.724, 6702394.511], [264929.537, 6702268.812], [263051.922, 6700760.188], [262574.171, 6700460.255], [262248.458, 6700730.418], [261769.99, 6700478.278], [261351.242, 6700714.04], [260836.931, 6700459.117], [260263.534, 6700510.278], [259397.756, 6699956.979], [257945.707, 6702009.431], [257834.386, 6703206.768], [257203.771, 6703443.778], [257754.814, 6704127.765], [256811.564, 6704579.284], [257527.964, 6705005.012], [257766.937, 6705467.721], [257641.557, 6709312.335], [257040.024, 6709398.744], [257318.54, 6709768.931], [257619.415, 6709672.103], [257517.69, 6711836.8], [257272.581, 6712383.465], [257534.588, 6712560.654], [257299.702, 6713010.931], [257446.584, 6713502.467], [257212.873, 6714707.055], [257252.408, 6715150.02], [259973.34, 6716915.663], [260681.641, 6717407.201], [261776.506, 6718398.447], [262876.295, 6719355.015], [263188.224, 6719818.677], [263817.478, 6719686.177], [263670.702, 6720195.353], [264191.414, 6719898.342]]]}}, {\\\"id\\\": \\\"261\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Jomala\\\", \\\"elakelaisten_osuus\\\": 16.2, \\\"freshwarea\\\": 1.72, \\\"gml_id\\\": 1601100288, \\\"landarea\\\": 142.67, \\\"namefin\\\": \\\"Jomala\\\", \\\"nameswe\\\": \\\"Jomala\\\", \\\"natcode\\\": \\\"170\\\", \\\"seawarea\\\": 542.62, \\\"totalarea\\\": 687.01}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[108817.096, 6695781.066], [108884.356, 6695635.452], [108942.421, 6695197.348], [109628.474, 6695123.981], [109974.425, 6694859.828], [110080.348, 6694799.985], [110101.561, 6694768.395], [110168.228, 6694647.456], [110242.904, 6694417.806], [110857.293, 6694485.93], [110934.318, 6694286.437], [110967.376, 6694052.54], [110960.99, 6693684.985], [111339.81, 6693686.319], [111725.722, 6693367.538], [111850.53, 6692819.984], [112069.137, 6692277.651], [112262.061, 6692201.125], [112324.419, 6692092.165], [112610.056, 6692157.812], [112635.599, 6692431.205], [112533.232, 6692568.954], [112671.316, 6692786.326], [112938.309, 6693036.685], [113361.246, 6693227.362], [113871.666, 6693990.054], [115037.249, 6693379.02], [114974.5, 6691379.607], [115392.322, 6690682.064], [119119.776, 6687192.932], [116705.2, 6686678.39], [115079.385, 6684389.033], [114156.947, 6684134.663], [113852.122, 6683535.198], [113816.862, 6682563.743], [113561.309, 6681973.052], [112861.977, 6682381.497], [112483.761, 6682802.606], [112211.991, 6682714.355], [111864.912, 6682719.547], [111202.706, 6682897.761], [111215.629, 6682269.514], [110845.711, 6682192.62], [110787.737, 6681827.959], [110191.91, 6682169.658], [109606.966, 6682052.048], [109213.871, 6682698.358], [109065.355, 6685101.119], [109363.682, 6686625.619], [107902.072, 6686578.637], [107856.891, 6686323.354], [107055.541, 6686268.769], [107096.491, 6685437.026], [106946.774, 6684202.991], [106721.781, 6684146.923], [106774.597, 6683854.036], [106725.585, 6683696.546], [106590.679, 6683263.048], [106759.883, 6683155.15], [106691.221, 6682927.092], [106571.061, 6682851.073], [106536.73, 6682461.168], [106630.221, 6682427.294], [106705.934, 6682399.862], [106875.138, 6682289.512], [106924.183, 6682063.906], [106784.406, 6681691.167], [106455.806, 6681487.632], [106188.513, 6681480.275], [106266.984, 6681154.128], [106492.59, 6681048.682], [106610.297, 6680830.433], [106114.946, 6680335.082], [106413.73, 6679816.692], [106774.144, 6678983.494], [106669.075, 6677676.693], [105860.231, 6678069.951], [104620.598, 6677467.691], [104703.971, 6675789.112], [104351.304, 6675054.16], [88483.137, 6651045.069], [77470.352, 6670793.378], [94806.373, 6686995.636], [95086.904, 6687454.901], [95660.257, 6687447.264], [96185.421, 6687925.85], [98374.195, 6689026.231], [98775.755, 6689207.373], [101452.852, 6689753.272], [101015.517, 6692137.396], [103529.419, 6692244.433], [103785.433, 6692421.699], [103571.878, 6692917.047], [103625.707, 6693417.765], [103485.322, 6693846.502], [104753.709, 6693969.904], [105793.749, 6693401.563], [106350.914, 6693408.849], [106439.817, 6693906.093], [106631.346, 6694275.489], [106725.34, 6694390.147], [106743.968, 6694566.855], [106847.612, 6694636.927], [107073.072, 6694687.649], [107094.779, 6694777.884], [107213.713, 6694982.53], [107217.967, 6695097.484], [107307.847, 6695104.769], [107360.223, 6695248.567], [107439.114, 6695372.045], [108408.936, 6695849.488], [108517.58, 6695848.824], [108700.646, 6695884.607], [108817.096, 6695781.066]]]}}, {\\\"id\\\": \\\"262\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyh\\\\u00e4nt\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 27.9, \\\"freshwarea\\\": 36.81, \\\"gml_id\\\": 1601100336, \\\"landarea\\\": 810.67, \\\"namefin\\\": \\\"Pyh\\\\u00e4nt\\\\u00e4\\\", \\\"nameswe\\\": \\\"Pyh\\\\u00e4nt\\\\u00e4\\\", \\\"natcode\\\": \\\"630\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 847.48}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[457451.947, 7105663.333], [457701.04, 7105482.0], [458190.666, 7105642.64], [458397.431, 7105139.879], [458742.016, 7103834.258], [457943.465, 7103436.484], [457758.041, 7103732.566], [457708.522, 7104015.7], [458062.192, 7104248.216], [457900.294, 7104576.298], [457537.618, 7104257.915], [457412.848, 7104420.109], [457780.689, 7104892.983], [457430.752, 7104999.859], [457135.784, 7105091.814], [456745.101, 7104199.745], [456316.157, 7104549.358], [455938.522, 7104630.758], [455765.059, 7105177.084], [456622.15, 7105246.228], [456604.402, 7105947.72], [456875.093, 7106006.595], [456936.948, 7106275.422], [457056.215, 7106376.693], [457451.947, 7105663.333]]], [[[475887.583, 7123846.571], [477378.208, 7123383.445], [480531.657, 7121458.239], [481096.769, 7121373.334], [481732.525, 7120844.809], [481937.494, 7120917.542], [488879.423, 7121106.639], [489129.12, 7110807.551], [488582.814, 7110316.427], [488722.627, 7110054.641], [489118.094, 7110371.574], [489315.436, 7103395.369], [493669.471, 7101140.706], [480320.629, 7094791.276], [478421.209, 7093042.385], [477770.861, 7092445.144], [477428.32, 7093249.202], [476313.119, 7092992.43], [476771.702, 7091522.345], [471887.497, 7087020.621], [469237.026, 7084830.775], [468923.803, 7085064.318], [468396.956, 7084567.428], [467546.345, 7084470.636], [468071.093, 7083870.106], [462785.501, 7079521.042], [463261.848, 7089025.861], [463238.399, 7091462.177], [460317.508, 7096721.518], [461570.336, 7099749.991], [460925.073, 7100547.985], [459711.636, 7099834.536], [459460.146, 7101219.986], [460624.167, 7101253.88], [462313.949, 7102028.367], [462269.566, 7103148.013], [461226.591, 7102643.67], [461403.467, 7103274.88], [461137.195, 7103347.083], [460602.068, 7105994.877], [462035.722, 7107144.745], [462257.374, 7106904.143], [462313.422, 7107343.105], [461929.93, 7107409.221], [462081.221, 7107716.527], [461342.089, 7108387.323], [461458.253, 7108689.03], [461272.939, 7108896.301], [460936.279, 7108517.227], [460454.726, 7108612.814], [459880.147, 7109149.685], [459727.113, 7109783.712], [458946.896, 7109794.926], [458791.869, 7109971.884], [458712.797, 7110275.552], [458517.547, 7110208.615], [458364.518, 7110545.544], [458334.299, 7110772.532], [458204.007, 7111070.203], [458360.122, 7111247.228], [458019.445, 7111478.449], [458548.929, 7111835.362], [459073.156, 7111452.185], [459232.465, 7111716.807], [458393.326, 7112116.86], [458251.155, 7112404.776], [458323.398, 7112477.554], [458173.858, 7112673.987], [458151.605, 7112800.336], [458350.203, 7112731.834], [458575.178, 7112547.562], [459503.027, 7113434.758], [459727.888, 7113869.983], [460425.325, 7113956.714], [460623.104, 7114694.672], [460703.24, 7114770.789], [461196.808, 7114278.52], [462371.775, 7113747.919], [462978.733, 7113696.152], [463136.107, 7113349.386], [463849.222, 7114340.267], [464796.352, 7114711.337], [464524.99, 7114987.366], [465143.484, 7115582.975], [465587.685, 7115107.992], [466824.134, 7116286.293], [467284.139, 7116091.394], [467413.628, 7116667.56], [466866.573, 7116670.354], [466891.397, 7118076.872], [467072.306, 7119547.364], [468067.184, 7119358.168], [468436.491, 7118787.282], [469746.464, 7118503.049], [471210.411, 7120928.45], [470766.991, 7122659.592], [472541.801, 7122573.704], [472717.098, 7122122.251], [473851.02, 7121949.739], [475520.763, 7123818.54], [475414.875, 7124295.547], [475887.583, 7123846.571]]]]}}, {\\\"id\\\": \\\"263\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vantaa\\\", \\\"elakelaisten_osuus\\\": 18.1, \\\"freshwarea\\\": 1.98, \\\"gml_id\\\": 1601100143, \\\"landarea\\\": 238.37, \\\"namefin\\\": \\\"Vantaa\\\", \\\"nameswe\\\": \\\"Vanda\\\", \\\"natcode\\\": \\\"092\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 240.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[382575.481, 6697867.459], [382443.229, 6697726.269], [382438.25, 6697647.282], [382506.957, 6697552.438], [382494.664, 6697291.458], [382586.033, 6697177.885], [382715.368, 6697048.678], [382770.967, 6696943.284], [382889.974, 6696840.412], [382987.851, 6696674.777], [382996.953, 6696538.523], [382996.28, 6696325.706], [382960.116, 6696144.578], [382884.152, 6696008.878], [384530.145, 6693873.715], [385803.386, 6691773.387], [386415.123, 6690916.784], [387070.673, 6690187.983], [388086.16, 6690204.789], [389583.713, 6690171.531], [389794.713, 6690193.444], [391687.909, 6691145.787], [392345.124, 6691701.998], [392281.636, 6691810.226], [392348.256, 6691854.422], [391270.033, 6693438.579], [390864.644, 6694019.402], [391435.163, 6694416.411], [391615.906, 6694184.811], [391818.765, 6694318.46], [392067.121, 6693991.362], [392476.08, 6694313.323], [392511.0, 6694452.41], [392570.997, 6694522.291], [392585.024, 6694525.007], [392631.168, 6694588.155], [392674.797, 6694579.377], [392713.045, 6694617.159], [393253.837, 6694140.46], [393357.568, 6694188.686], [393443.603, 6694275.064], [393597.39, 6694256.56], [393721.294, 6694301.427], [393916.943, 6694490.093], [394375.772, 6694399.69], [394675.378, 6693732.064], [396010.458, 6693625.721], [396034.786, 6693054.079], [396926.462, 6692862.656], [398036.723, 6692854.03], [397048.739, 6691679.924], [398032.965, 6691388.805], [397993.38, 6690736.507], [397493.096, 6690202.427], [396672.554, 6690176.552], [396441.833, 6690963.399], [396230.376, 6690954.45], [396070.823, 6690272.12], [395227.064, 6690255.984], [397027.615, 6688559.041], [398875.337, 6687504.945], [400112.193, 6685327.02], [399936.362, 6684600.244], [399775.22, 6683958.338], [397248.729, 6682902.962], [397331.415, 6681726.289], [397651.602, 6681601.262], [397991.167, 6681181.115], [398143.117, 6680542.14], [397591.948, 6680179.274], [397205.078, 6680111.587], [396776.252, 6679289.143], [394340.078, 6680245.367], [393859.815, 6680762.439], [394172.454, 6681823.842], [394237.387, 6683152.603], [393623.266, 6683650.066], [392338.906, 6683739.547], [392195.008, 6684000.574], [391741.718, 6684369.445], [391521.014, 6685096.633], [391152.104, 6684820.34], [390587.083, 6685274.051], [389429.588, 6684974.633], [389163.963, 6684434.41], [388417.243, 6684180.691], [388012.611, 6683190.741], [388143.404, 6682978.819], [388001.153, 6682639.793], [387466.386, 6682804.814], [387142.976, 6683182.986], [386932.169, 6683597.195], [386969.299, 6683938.502], [386389.758, 6684186.137], [385798.687, 6683898.268], [385212.185, 6683822.904], [384438.804, 6683466.8], [383433.773, 6683179.204], [382543.152, 6682291.394], [382253.446, 6681613.497], [381443.67, 6681580.076], [380402.966, 6682225.844], [379983.85, 6681677.614], [377355.891, 6680366.179], [376822.62, 6682157.378], [376500.033, 6682866.332], [376371.406, 6683713.235], [376856.143, 6686816.984], [376354.195, 6689748.032], [375531.318, 6689430.332], [375773.698, 6691596.517], [380445.966, 6697310.819], [382590.573, 6697998.256], [382575.481, 6697867.459]]]}}, {\\\"id\\\": \\\"264\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lieto\\\", \\\"elakelaisten_osuus\\\": 21.9, \\\"freshwarea\\\": 2.04, \\\"gml_id\\\": 1601100660, \\\"landarea\\\": 300.52, \\\"namefin\\\": \\\"Lieto\\\", \\\"nameswe\\\": \\\"Lundo\\\", \\\"natcode\\\": \\\"423\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 302.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[254539.286, 6730559.132], [254023.134, 6729937.081], [253718.466, 6730114.704], [253283.526, 6729659.13], [252908.705, 6728601.717], [252348.788, 6726734.48], [252771.279, 6723487.742], [254927.938, 6724758.02], [257019.551, 6722629.399], [257226.507, 6722616.045], [257607.98, 6723117.889], [257754.092, 6722813.639], [257947.81, 6722922.643], [258076.793, 6723670.818], [257985.242, 6724055.984], [257832.681, 6724254.093], [256851.029, 6723578.801], [256331.775, 6725335.334], [257178.4, 6726491.597], [257601.229, 6727013.076], [257911.659, 6727362.361], [259649.823, 6727350.35], [259334.794, 6726915.67], [258122.139, 6726518.819], [258208.095, 6726260.956], [259577.461, 6726535.517], [259996.733, 6726843.282], [260508.056, 6726673.942], [261413.308, 6727949.858], [263852.335, 6730164.759], [263938.323, 6730398.827], [264556.397, 6730295.796], [265908.922, 6729415.581], [267410.716, 6729080.842], [269551.435, 6728705.554], [272477.364, 6728416.42], [273291.59, 6728645.782], [272613.078, 6727609.378], [272164.76, 6726627.935], [270542.795, 6725157.323], [270007.356, 6724879.305], [269930.789, 6720671.631], [271142.545, 6717066.775], [271037.404, 6716717.64], [270623.204, 6716814.338], [270739.01, 6717118.531], [269391.303, 6717347.741], [268471.229, 6717381.943], [268059.273, 6717470.908], [264811.025, 6719614.725], [264191.414, 6719898.342], [263670.702, 6720195.353], [263817.478, 6719686.177], [263188.224, 6719818.677], [262876.295, 6719355.015], [261776.506, 6718398.447], [260681.641, 6717407.201], [259973.34, 6716915.663], [257252.408, 6715150.02], [257212.873, 6714707.055], [257066.481, 6714452.398], [256564.38, 6714725.429], [255544.191, 6714079.823], [254088.965, 6713109.862], [254662.539, 6712554.895], [254323.403, 6712241.042], [253811.266, 6712904.892], [252959.785, 6712239.521], [251364.554, 6711261.809], [250466.79, 6711006.867], [250203.755, 6710357.776], [249127.668, 6710201.136], [249138.58, 6710567.666], [248326.493, 6710494.214], [246904.943, 6710051.877], [246348.984, 6711392.688], [245370.121, 6713650.59], [245832.073, 6714528.813], [245363.859, 6714707.18], [244825.727, 6715370.219], [245701.558, 6716884.842], [246667.202, 6718822.446], [246228.54, 6719343.719], [246294.932, 6721075.124], [246300.199, 6721309.72], [246830.533, 6722844.979], [248460.65, 6725741.379], [248775.53, 6725491.379], [249073.975, 6725828.546], [248898.263, 6726195.203], [249886.998, 6727200.66], [250772.145, 6729961.492], [251061.931, 6730032.491], [250828.344, 6730648.815], [251038.068, 6731421.609], [254539.286, 6730559.132]]]}}, {\\\"id\\\": \\\"265\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Heinola\\\", \\\"elakelaisten_osuus\\\": 38.5, \\\"freshwarea\\\": 163.29, \\\"gml_id\\\": 1601100181, \\\"landarea\\\": 675.99, \\\"namefin\\\": \\\"Heinola\\\", \\\"nameswe\\\": \\\"Heinola\\\", \\\"natcode\\\": \\\"111\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 839.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[463668.865, 6807388.997], [463353.098, 6806666.787], [462573.721, 6805903.189], [462197.579, 6805150.69], [461869.214, 6804910.484], [461784.758, 6804007.952], [461910.804, 6803800.034], [462589.725, 6804144.401], [463557.53, 6804291.851], [463415.195, 6803061.448], [464269.164, 6801993.532], [467854.81, 6798804.117], [468467.358, 6799180.17], [472325.886, 6798856.739], [471662.869, 6799520.528], [471075.234, 6800607.494], [470759.29, 6800694.928], [470636.798, 6801163.494], [470248.216, 6801720.659], [471350.164, 6802116.109], [473576.864, 6800740.285], [473767.99, 6800111.141], [473282.892, 6799523.376], [472325.886, 6798856.739], [473199.148, 6795921.536], [473443.059, 6794111.071], [473923.367, 6793440.746], [473473.461, 6792950.611], [472321.193, 6792427.136], [471431.322, 6792215.237], [470177.082, 6792185.906], [470148.17, 6791472.946], [469646.027, 6791385.544], [469145.508, 6790937.15], [469375.013, 6790419.76], [469471.648, 6789352.951], [467575.586, 6786743.196], [466960.144, 6783898.544], [464915.473, 6782309.266], [460749.756, 6781163.186], [460650.401, 6779663.392], [458764.596, 6777509.207], [455122.835, 6778478.314], [454230.123, 6778164.035], [453782.169, 6780409.618], [451736.799, 6778728.477], [448758.183, 6776577.502], [448832.449, 6775428.737], [448631.368, 6774964.719], [448239.54, 6774790.021], [448838.598, 6774406.185], [447598.506, 6773765.925], [445626.315, 6772778.394], [442627.871, 6771152.621], [441862.853, 6771933.286], [440997.904, 6772118.9], [438438.634, 6774760.005], [439242.476, 6776610.948], [441856.214, 6780190.765], [440987.936, 6781552.543], [440521.701, 6783307.034], [439890.598, 6783966.518], [440493.85, 6784765.802], [442401.762, 6788656.952], [439936.661, 6789861.635], [440622.224, 6791358.827], [439614.677, 6792895.536], [438298.685, 6793402.429], [435912.756, 6793343.376], [435714.468, 6793683.539], [436139.68, 6798279.085], [436529.922, 6797962.118], [438179.885, 6800517.488], [439014.628, 6800613.223], [439043.241, 6801358.12], [439511.327, 6801265.95], [439941.517, 6801440.442], [440202.833, 6801885.257], [440096.457, 6802393.268], [440625.742, 6802506.729], [440531.42, 6802941.433], [440004.369, 6802828.168], [439761.556, 6803971.742], [440282.076, 6804082.887], [441390.323, 6804938.654], [441927.604, 6804927.765], [442750.974, 6803418.385], [443149.021, 6803704.083], [443543.431, 6803688.501], [444145.947, 6804342.042], [445620.202, 6804628.63], [446306.622, 6805064.562], [447291.223, 6805063.374], [447837.402, 6805407.24], [448705.652, 6805198.934], [448946.954, 6805652.153], [449309.307, 6805871.368], [449120.208, 6806189.002], [449593.152, 6806556.877], [450701.546, 6805783.018], [451370.175, 6805999.038], [451958.739, 6805403.185], [453444.335, 6807236.559], [454641.357, 6805644.715], [455822.769, 6806830.846], [460772.728, 6810440.832], [463668.865, 6807388.997]]]}}, {\\\"id\\\": \\\"266\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tammela\\\", \\\"elakelaisten_osuus\\\": 30.4, \\\"freshwarea\\\": 74.62, \\\"gml_id\\\": 1601100587, \\\"landarea\\\": 640.53, \\\"namefin\\\": \\\"Tammela\\\", \\\"nameswe\\\": \\\"Tammela\\\", \\\"natcode\\\": \\\"834\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 715.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[334481.015, 6762146.618], [335966.391, 6761762.66], [334998.396, 6760666.527], [335533.583, 6760426.929], [336675.024, 6759528.164], [337225.84, 6759347.877], [338597.429, 6758480.188], [336558.559, 6753133.98], [340193.714, 6747966.028], [339456.492, 6747028.044], [338496.084, 6746758.275], [338914.956, 6746324.414], [340080.868, 6743832.051], [340169.431, 6743358.368], [339813.702, 6743135.782], [339143.523, 6739541.851], [338515.195, 6726577.401], [338216.004, 6726835.9], [336263.847, 6726814.352], [334371.929, 6726306.184], [333831.31, 6726317.468], [333014.817, 6726919.3], [332283.617, 6727231.085], [332162.632, 6727612.894], [331531.475, 6728183.032], [330561.662, 6727772.87], [329807.293, 6727796.991], [329047.891, 6728298.825], [328653.723, 6728053.214], [325879.434, 6728702.16], [322243.763, 6728565.552], [320440.782, 6729830.608], [318782.759, 6729183.198], [318244.134, 6730715.347], [318787.478, 6732082.177], [315811.531, 6733413.106], [313841.68, 6733718.05], [313084.851, 6733612.289], [311144.907, 6734830.544], [310693.38, 6736424.062], [309159.559, 6737515.969], [309356.366, 6739351.631], [309741.209, 6741245.089], [310953.758, 6742110.248], [311394.711, 6743699.223], [312251.77, 6744213.355], [316771.415, 6742928.94], [317633.395, 6743422.372], [318978.582, 6745180.187], [319166.12, 6745693.749], [319757.257, 6745427.455], [320040.311, 6745877.646], [320586.47, 6745606.739], [320793.508, 6747122.596], [319090.155, 6747573.124], [319279.727, 6748354.244], [319188.329, 6749521.841], [318950.253, 6752766.631], [318038.833, 6753668.194], [319650.688, 6754252.184], [320961.202, 6753927.426], [322045.173, 6755113.438], [321563.738, 6756010.612], [321616.061, 6756342.76], [324225.629, 6760248.96], [324795.257, 6759863.202], [327839.403, 6759242.022], [328776.641, 6760201.18], [330233.488, 6761682.662], [329878.266, 6763698.908], [331188.676, 6763909.853], [334481.015, 6762146.618]]]}}, {\\\"id\\\": \\\"267\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hyrynsalmi\\\", \\\"elakelaisten_osuus\\\": 48.1, \\\"freshwarea\\\": 100.18, \\\"gml_id\\\": 1601100145, \\\"landarea\\\": 1421.19, \\\"namefin\\\": \\\"Hyrynsalmi\\\", \\\"nameswe\\\": \\\"Hyrynsalmi\\\", \\\"natcode\\\": \\\"105\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1521.37}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[573861.767, 7189126.427], [576428.494, 7185838.98], [576342.544, 7185245.312], [576852.539, 7185294.712], [579589.937, 7181790.21], [586187.938, 7176802.353], [589552.721, 7177351.17], [599595.199, 7173868.48], [601036.981, 7173615.517], [602916.997, 7172428.8], [609096.649, 7168402.873], [612257.089, 7167365.002], [617833.942, 7162404.442], [615987.541, 7157158.424], [604073.238, 7149445.731], [599099.059, 7149136.915], [599106.823, 7148753.012], [597415.536, 7149590.96], [593557.471, 7150637.057], [590375.152, 7153701.988], [589351.221, 7153309.61], [584008.52, 7156129.628], [583723.976, 7155935.411], [583466.705, 7156416.103], [579170.472, 7158680.066], [578764.704, 7157896.2], [577563.957, 7158537.095], [577988.93, 7159300.402], [576415.271, 7160125.951], [575896.398, 7159735.104], [575534.163, 7160589.245], [568497.679, 7164284.406], [568477.134, 7164321.929], [567428.172, 7163559.172], [563722.908, 7164007.08], [563256.154, 7163384.285], [562728.279, 7163782.681], [562697.46, 7164847.566], [559551.799, 7168560.612], [554667.678, 7168474.81], [554081.921, 7169838.25], [553159.615, 7170589.47], [552219.359, 7169439.837], [552324.291, 7168896.18], [552830.261, 7168806.817], [552882.358, 7168439.627], [551354.01, 7167975.529], [550550.891, 7181143.788], [550305.433, 7180938.683], [549859.964, 7181071.38], [549870.942, 7181227.127], [550531.818, 7181480.342], [550152.366, 7187538.985], [554520.03, 7187574.191], [561263.377, 7197755.394], [573861.767, 7189126.427]]]}}, {\\\"id\\\": \\\"268\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Riihim\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 25.8, \\\"freshwarea\\\": 4.55, \\\"gml_id\\\": 1601100435, \\\"landarea\\\": 121.0, \\\"namefin\\\": \\\"Riihim\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Riihim\\\\u00e4ki\\\", \\\"natcode\\\": \\\"694\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 125.55}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[376340.832, 6742165.228], [376693.216, 6742123.692], [377883.485, 6741513.21], [378229.843, 6741504.382], [379117.283, 6740767.647], [381035.184, 6740207.176], [380906.846, 6739890.416], [381721.563, 6739526.994], [382173.614, 6739788.296], [382104.263, 6739113.776], [381322.075, 6737641.349], [381924.081, 6737705.12], [382300.014, 6737194.031], [381758.677, 6736807.905], [382340.484, 6735875.234], [382475.85, 6735219.284], [381590.828, 6734411.79], [381207.372, 6733483.126], [381524.265, 6733021.276], [381462.243, 6732725.878], [380687.954, 6732372.137], [380125.805, 6731601.53], [380749.542, 6731055.025], [381688.188, 6729294.2], [381696.299, 6727565.336], [380789.706, 6727840.539], [380321.143, 6728341.144], [378703.998, 6726425.871], [378600.996, 6726288.341], [377798.348, 6726987.713], [377400.636, 6726383.081], [377100.874, 6726446.11], [376946.739, 6725862.978], [376504.267, 6725969.324], [376423.919, 6725649.768], [374972.344, 6725997.961], [373774.103, 6725944.312], [371658.943, 6727238.489], [370959.922, 6727103.778], [369728.766, 6728123.905], [369615.465, 6728831.842], [370002.559, 6729985.348], [369268.605, 6730948.148], [373874.033, 6734444.033], [374156.418, 6737320.495], [377362.838, 6737968.095], [376474.062, 6739845.97], [375619.809, 6742282.469], [375985.623, 6742322.285], [376025.755, 6742671.284], [376310.277, 6742687.545], [376340.832, 6742165.228]]]}}, {\\\"id\\\": \\\"269\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kumlinge\\\", \\\"elakelaisten_osuus\\\": 35.9, \\\"freshwarea\\\": 0.38, \\\"gml_id\\\": 1601100485, \\\"landarea\\\": 99.05, \\\"namefin\\\": \\\"Kumlinge\\\", \\\"nameswe\\\": \\\"Kumlinge\\\", \\\"natcode\\\": \\\"295\\\", \\\"seawarea\\\": 766.45, \\\"totalarea\\\": 865.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[143329.159, 6741792.854], [141904.572, 6725552.657], [141855.79, 6724833.279], [141619.126, 6722542.66], [143398.803, 6720017.357], [145221.864, 6720274.746], [150150.036, 6721068.668], [156256.469, 6718700.771], [158635.245, 6715627.489], [159345.37, 6711369.005], [161737.54, 6710755.912], [163020.403, 6710881.917], [163932.781, 6711227.336], [164414.003, 6711265.378], [165147.236, 6711211.154], [166936.468, 6709814.579], [167349.537, 6708255.199], [168428.782, 6705486.325], [165782.108, 6701735.084], [165821.178, 6700301.695], [165740.504, 6700166.92], [163976.997, 6700158.105], [163766.399, 6697700.057], [162720.353, 6696983.512], [162698.187, 6696875.176], [161898.989, 6685455.012], [160363.511, 6682700.76], [160352.753, 6682702.22], [158717.552, 6681545.473], [159927.243, 6679907.453], [156306.44, 6679495.896], [155620.581, 6680556.934], [154016.708, 6681906.006], [153066.557, 6683484.428], [150914.268, 6683806.331], [150098.228, 6686450.522], [147407.192, 6688488.081], [144951.168, 6691887.873], [148689.254, 6702665.077], [147210.369, 6709978.728], [143835.101, 6708555.449], [143711.533, 6709433.72], [145388.252, 6709681.236], [144830.895, 6712138.921], [144536.224, 6712841.245], [144820.222, 6715222.738], [140496.266, 6721258.001], [136118.41, 6721648.385], [137667.564, 6737834.671], [124826.518, 6756009.051], [130489.45, 6759966.542], [143329.159, 6741792.854]]]}}, {\\\"id\\\": \\\"270\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Laihia\\\", \\\"elakelaisten_osuus\\\": 26.4, \\\"freshwarea\\\": 3.28, \\\"gml_id\\\": 1601100614, \\\"landarea\\\": 505.16, \\\"namefin\\\": \\\"Laihia\\\", \\\"nameswe\\\": \\\"Laihela\\\", \\\"natcode\\\": \\\"399\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 508.44}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[244182.152, 6999509.663], [244975.085, 6999098.906], [245994.218, 6998880.013], [246644.15, 6998476.214], [247318.364, 6997886.537], [248010.109, 6997645.04], [248331.12, 6997202.951], [249116.317, 6995812.264], [249167.815, 6995427.564], [248861.539, 6995458.438], [249308.246, 6994963.606], [249259.121, 6994610.529], [249510.435, 6994061.168], [250062.279, 6994169.974], [250126.583, 6993987.657], [251972.957, 6991981.721], [252618.378, 6991488.937], [253532.592, 6990389.842], [253892.615, 6990776.106], [253998.065, 6990234.265], [254297.836, 6990305.979], [254196.833, 6989800.517], [255108.0, 6989544.789], [254952.857, 6989267.462], [254439.861, 6989336.047], [255095.696, 6988593.252], [255957.317, 6987155.326], [256447.387, 6986337.007], [256810.887, 6985172.895], [257029.531, 6983946.664], [257083.616, 6983087.663], [257628.946, 6981390.373], [257862.299, 6981199.703], [257175.859, 6981244.313], [257150.017, 6981158.078], [257513.038, 6980872.974], [257735.274, 6980776.68], [257936.041, 6981012.597], [258524.271, 6981138.982], [258695.245, 6977176.84], [258245.63, 6976811.036], [259021.178, 6976191.626], [258872.742, 6974568.973], [259091.105, 6974433.455], [259007.971, 6974155.456], [259373.836, 6973526.992], [259413.134, 6973102.491], [259643.697, 6972674.534], [259547.16, 6972208.676], [259951.198, 6971938.555], [260010.179, 6971737.245], [259059.772, 6971163.906], [255005.203, 6967040.636], [251241.627, 6969084.82], [251019.616, 6968303.129], [248342.023, 6969452.64], [248100.358, 6968891.892], [245268.886, 6970189.838], [245563.691, 6970448.682], [243468.191, 6971372.436], [243714.463, 6971931.767], [242986.222, 6972250.994], [242805.983, 6971905.93], [240654.014, 6973001.529], [240852.706, 6973511.763], [239099.463, 6974154.268], [238889.835, 6974793.577], [238086.329, 6975083.104], [238031.781, 6975947.387], [237332.478, 6975789.586], [236999.588, 6978926.289], [234996.196, 6980334.703], [235066.009, 6980418.307], [234172.221, 6981191.422], [235110.453, 6984519.06], [236026.14, 6987753.665], [238093.674, 6990516.512], [239652.093, 6992249.7], [239588.662, 6992380.711], [239785.962, 6992526.804], [240529.242, 6993490.376], [241068.004, 6994084.207], [241621.239, 6996569.823], [241960.337, 6997873.282], [242175.076, 6997874.222], [242116.029, 6998782.654], [242430.106, 6999521.908], [242914.54, 7001206.841], [244182.152, 6999509.663]]]}}, {\\\"id\\\": \\\"271\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kiuruvesi\\\", \\\"elakelaisten_osuus\\\": 36.4, \\\"freshwarea\\\": 94.76, \\\"gml_id\\\": 1601100147, \\\"landarea\\\": 1328.14, \\\"namefin\\\": \\\"Kiuruvesi\\\", \\\"nameswe\\\": \\\"Kiuruvesi\\\", \\\"natcode\\\": \\\"263\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1422.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[477770.861, 7092445.144], [478421.209, 7093042.385], [479062.124, 7092341.715], [479397.407, 7091589.067], [480237.517, 7090438.546], [481168.138, 7089120.986], [481355.325, 7088779.337], [481355.296, 7088138.808], [483223.834, 7088812.472], [484457.419, 7088611.087], [485336.048, 7087194.88], [486667.666, 7086657.472], [486555.446, 7084950.815], [488147.587, 7084239.598], [488517.607, 7082713.247], [489176.401, 7079546.056], [486348.936, 7080467.236], [485618.731, 7079908.041], [486518.801, 7076860.397], [488200.783, 7078669.984], [488773.553, 7078201.969], [489703.717, 7078101.892], [490721.85, 7077615.387], [490906.789, 7076891.962], [491467.136, 7076201.697], [491689.687, 7076186.502], [491941.489, 7075865.096], [491824.339, 7075714.973], [492034.492, 7075505.163], [492150.651, 7074966.384], [493159.858, 7073684.032], [493422.957, 7073681.878], [493517.692, 7073351.782], [492565.838, 7072910.37], [492517.099, 7072673.739], [492004.748, 7072557.36], [491874.641, 7072357.374], [491960.046, 7071988.874], [491428.39, 7071142.343], [492486.237, 7069468.873], [492465.595, 7068987.978], [492681.834, 7068083.544], [493295.965, 7066545.99], [493822.965, 7066601.649], [493851.065, 7064618.247], [494532.215, 7064645.57], [494592.567, 7063697.659], [494795.604, 7063069.352], [495361.446, 7063087.042], [495501.219, 7062478.842], [496140.741, 7062575.202], [496285.193, 7061725.062], [495690.256, 7061503.809], [493346.378, 7061318.671], [493483.926, 7060764.12], [493497.941, 7060135.362], [492622.433, 7059657.796], [491358.778, 7061025.519], [491262.623, 7060617.525], [491581.946, 7060202.213], [491527.006, 7059898.865], [491481.232, 7059345.416], [491046.142, 7059213.867], [490903.187, 7058654.1], [490996.152, 7058375.423], [490869.276, 7058041.893], [491205.655, 7057266.457], [490543.274, 7057144.481], [490149.486, 7056709.302], [490273.752, 7056172.399], [490495.792, 7056017.199], [490526.724, 7055406.658], [490685.905, 7054833.255], [490406.508, 7054053.044], [490829.78, 7053515.673], [491017.262, 7052957.051], [491252.084, 7052680.033], [491446.521, 7052157.073], [491268.474, 7051914.45], [490742.126, 7052284.625], [490585.671, 7051642.858], [490695.863, 7051262.696], [490695.636, 7050973.814], [490220.858, 7050440.375], [489988.55, 7050584.315], [489775.334, 7050469.515], [490474.985, 7047819.663], [490240.747, 7047594.201], [490277.872, 7047411.17], [490674.988, 7047116.009], [491413.487, 7046320.179], [491413.957, 7045997.191], [491075.011, 7045498.186], [491360.42, 7045002.209], [491136.885, 7044745.924], [491022.298, 7044400.72], [491235.695, 7043899.1], [491270.491, 7043139.937], [491054.15, 7043133.962], [490694.35, 7042644.883], [490464.546, 7042755.735], [490202.966, 7042382.012], [489949.234, 7042478.983], [489492.501, 7042807.737], [489072.547, 7042543.914], [488959.99, 7042129.675], [488451.984, 7040800.54], [488548.412, 7040316.034], [488859.716, 7039769.314], [488906.791, 7039418.199], [489633.965, 7038730.256], [489704.784, 7038222.829], [489336.694, 7037878.398], [488851.507, 7037722.938], [488574.886, 7037053.006], [488151.001, 7036931.412], [487606.184, 7037166.039], [486836.93, 7036740.613], [486795.318, 7036350.666], [486549.459, 7036067.99], [486069.419, 7036435.766], [485440.191, 7036732.884], [484933.67, 7036885.322], [484711.28, 7035042.017], [482289.958, 7036184.519], [481992.532, 7036045.205], [481410.198, 7035936.095], [481328.598, 7036493.46], [481054.361, 7036945.264], [480826.225, 7037427.486], [480334.532, 7036745.83], [479846.732, 7036434.562], [479954.653, 7035740.405], [479279.431, 7035701.15], [479193.056, 7036481.063], [476383.907, 7036194.489], [476281.204, 7037086.955], [475450.097, 7036736.094], [475271.61, 7033777.775], [469359.754, 7038572.513], [468379.52, 7038354.73], [468195.982, 7038983.207], [466856.129, 7039395.962], [466123.532, 7039380.884], [466589.735, 7037951.61], [465483.017, 7037625.897], [465144.346, 7038472.025], [464769.274, 7038444.75], [464790.975, 7038031.816], [464503.907, 7037306.546], [461765.15, 7038429.784], [461551.748, 7037849.262], [460671.487, 7038063.797], [458422.283, 7039438.245], [459485.685, 7041441.803], [459768.116, 7043118.699], [460032.116, 7049273.187], [460468.877, 7049594.464], [464854.405, 7051516.751], [464875.673, 7052712.042], [463830.206, 7063901.906], [463072.06, 7063916.966], [463036.769, 7064302.96], [463790.053, 7064358.732], [462709.449, 7075683.706], [461527.866, 7078487.964], [462785.501, 7079521.042], [468071.093, 7083870.106], [467546.345, 7084470.636], [468396.956, 7084567.428], [468923.803, 7085064.318], [469237.026, 7084830.775], [471887.497, 7087020.621], [476771.702, 7091522.345], [476313.119, 7092992.43], [477428.32, 7093249.202], [477770.861, 7092445.144]]]}}, {\\\"id\\\": \\\"272\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lapinlahti\\\", \\\"elakelaisten_osuus\\\": 33.1, \\\"freshwarea\\\": 148.56, \\\"gml_id\\\": 1601100585, \\\"landarea\\\": 1096.6, \\\"namefin\\\": \\\"Lapinlahti\\\", \\\"nameswe\\\": \\\"Lapinlahti\\\", \\\"natcode\\\": \\\"402\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1245.16}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[551986.42, 7047162.035], [552175.436, 7046652.551], [552769.258, 7046615.754], [552953.146, 7046138.711], [553370.232, 7045827.301], [553705.655, 7044891.468], [554384.513, 7043916.348], [554296.356, 7043119.869], [555005.569, 7042945.244], [555343.134, 7042499.327], [555426.008, 7041356.189], [555561.031, 7041028.92], [556114.933, 7040487.644], [556328.154, 7039065.12], [555804.047, 7037567.545], [555692.15, 7037093.308], [555325.646, 7037092.424], [555100.036, 7036623.913], [554995.95, 7036059.617], [554966.034, 7035348.277], [555193.336, 7034806.429], [555673.687, 7034337.391], [555389.962, 7033556.762], [555171.926, 7033259.372], [554582.949, 7033473.699], [554151.873, 7033443.485], [553685.556, 7033614.937], [553523.964, 7034038.062], [553302.402, 7034279.322], [553193.335, 7034939.455], [552733.641, 7035107.593], [553989.85, 7031372.909], [554366.998, 7030987.967], [554266.941, 7030627.512], [553812.93, 7029996.164], [552598.632, 7028608.116], [552225.188, 7027913.594], [551983.7, 7027825.726], [551522.118, 7027446.157], [551321.246, 7027000.142], [551556.365, 7026441.86], [551443.624, 7026055.23], [551186.776, 7025684.587], [550977.012, 7025271.052], [550834.637, 7024921.444], [550374.893, 7025141.003], [550245.343, 7024843.352], [550387.96, 7023816.036], [549613.777, 7023600.317], [548637.779, 7023663.68], [548237.936, 7023802.826], [547686.761, 7023745.645], [547537.486, 7023282.44], [547026.717, 7022714.191], [547059.926, 7022020.738], [547201.671, 7021512.044], [547200.169, 7020436.07], [546923.198, 7020256.353], [547117.16, 7019729.184], [547045.646, 7019492.658], [546703.586, 7019403.992], [546382.178, 7019680.517], [545984.794, 7019890.47], [545429.082, 7020408.459], [545647.114, 7019806.722], [545939.797, 7019487.952], [545480.478, 7018721.612], [545388.975, 7019042.897], [544803.385, 7019400.268], [544333.547, 7019824.795], [543675.164, 7019895.594], [543081.527, 7018894.176], [543244.205, 7017779.124], [542714.723, 7017442.056], [542212.44, 7015240.842], [541381.582, 7014688.859], [540595.697, 7015515.62], [539955.556, 7015610.477], [539263.129, 7014190.262], [539076.226, 7013512.118], [538527.449, 7013485.225], [537241.371, 7013528.3], [536514.365, 7013781.193], [535572.193, 7013627.871], [535150.42, 7013637.242], [534884.726, 7013837.559], [534401.18, 7013354.207], [534097.602, 7013232.476], [534174.325, 7012740.561], [534552.871, 7012283.784], [534204.846, 7011866.564], [534084.91, 7011311.26], [533714.128, 7011619.946], [533523.387, 7011971.303], [533033.66, 7012414.817], [532698.799, 7012452.974], [532650.937, 7012189.084], [532955.897, 7012001.357], [532825.962, 7011211.216], [532581.937, 7010842.168], [531761.604, 7010950.573], [531650.385, 7010544.028], [531142.259, 7010856.55], [530901.753, 7010756.2], [531620.666, 7009892.228], [532295.697, 7009359.748], [531977.827, 7009044.673], [531898.261, 7008708.808], [532093.402, 7007122.767], [532034.33, 7006435.477], [531819.31, 7006011.197], [531422.968, 7006229.106], [531284.322, 7006491.799], [530646.475, 7007049.369], [530214.548, 7007194.008], [529595.103, 7006499.384], [529355.597, 7006759.178], [529034.885, 7006882.582], [528820.514, 7006548.959], [528637.186, 7006930.603], [527932.169, 7006403.986], [527729.465, 7005512.806], [527389.36, 7004865.566], [527069.246, 7004294.707], [527038.558, 7003924.132], [527647.658, 7003527.02], [527482.678, 7002837.85], [526928.499, 7003222.591], [526526.957, 7003766.368], [526137.309, 7004447.49], [525688.901, 7004563.872], [525370.843, 7005560.824], [525016.919, 7005790.341], [524803.534, 7006266.006], [524060.834, 7006118.6], [523371.816, 7005531.333], [519632.823, 7005379.869], [518915.511, 7005572.486], [518007.281, 7004928.94], [517773.765, 7006501.503], [516629.92, 7007348.253], [516828.432, 7008438.614], [517559.436, 7008763.087], [516959.866, 7010436.807], [515413.774, 7012715.975], [514974.015, 7018311.911], [514490.31, 7018206.35], [513589.667, 7019121.674], [513568.468, 7020363.973], [513086.861, 7020569.087], [511611.753, 7020822.474], [511128.942, 7021728.105], [509827.964, 7022043.668], [509229.081, 7021929.599], [509161.972, 7022394.746], [509139.435, 7023009.574], [508706.736, 7023482.243], [508530.349, 7023908.726], [507925.787, 7023803.141], [507266.255, 7024337.727], [507017.977, 7025038.14], [506713.33, 7025067.085], [505955.992, 7026731.548], [506711.706, 7026639.472], [506938.916, 7026293.151], [507418.61, 7025953.473], [507513.734, 7026349.03], [507791.955, 7026849.915], [508081.973, 7027448.8], [508281.409, 7028206.243], [507893.062, 7028355.332], [507611.911, 7028907.181], [506940.875, 7029786.521], [507119.286, 7030151.149], [507621.946, 7030315.393], [507924.03, 7030288.718], [508269.443, 7030481.068], [508538.754, 7030243.307], [508702.224, 7030556.858], [508781.583, 7031226.298], [509570.406, 7031662.904], [509630.703, 7032122.007], [509791.458, 7032346.351], [509736.534, 7032880.738], [509582.888, 7033430.068], [509368.265, 7033694.166], [509533.594, 7034253.447], [510472.833, 7034573.827], [510252.106, 7035313.812], [510899.708, 7035912.224], [511774.926, 7035162.747], [512897.546, 7034740.064], [513177.534, 7034719.874], [513742.706, 7035398.989], [513983.413, 7036099.57], [514232.908, 7035654.8], [514036.785, 7035192.589], [514151.969, 7034583.314], [514567.003, 7034539.754], [514850.066, 7034036.862], [515491.409, 7033982.789], [515633.548, 7034476.29], [515563.972, 7034956.796], [515697.114, 7035680.704], [515038.765, 7035981.79], [514993.163, 7036318.829], [515436.781, 7036197.35], [516051.563, 7036935.4], [516420.551, 7036859.067], [518274.359, 7038541.773], [518590.124, 7039687.716], [518584.522, 7040402.83], [520722.951, 7042184.032], [520848.294, 7043132.853], [521382.746, 7042662.731], [522380.001, 7039599.28], [522795.839, 7038906.361], [522898.297, 7038969.836], [523816.894, 7043859.083], [524262.084, 7044094.388], [524722.341, 7043918.66], [524990.32, 7042825.559], [524835.2, 7042462.276], [525259.668, 7041524.453], [525884.723, 7041393.983], [526094.597, 7041117.454], [526608.62, 7041471.887], [526526.378, 7041684.889], [527234.327, 7042132.896], [527034.323, 7040645.895], [527327.225, 7040406.868], [528395.973, 7040500.161], [528365.096, 7039498.565], [532998.819, 7039339.652], [532858.886, 7039894.993], [533256.506, 7040123.337], [533120.011, 7040502.824], [532388.476, 7040919.904], [532183.135, 7040739.383], [531560.592, 7041127.216], [531121.155, 7041726.879], [535229.288, 7041983.499], [535640.013, 7042788.776], [538160.284, 7043607.562], [539031.782, 7043354.451], [541472.393, 7044323.961], [542363.771, 7044656.967], [542251.314, 7044905.266], [542280.298, 7045286.412], [542588.874, 7045217.742], [543778.014, 7045507.403], [544167.438, 7044953.759], [545106.06, 7044690.372], [546904.842, 7043752.963], [551773.224, 7047305.505], [551986.42, 7047162.035]]]}}, {\\\"id\\\": \\\"273\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Salo\\\", \\\"elakelaisten_osuus\\\": 31.2, \\\"freshwarea\\\": 75.11, \\\"gml_id\\\": 1601100497, \\\"landarea\\\": 1986.59, \\\"namefin\\\": \\\"Salo\\\", \\\"nameswe\\\": \\\"Salo\\\", \\\"natcode\\\": \\\"734\\\", \\\"seawarea\\\": 106.58, \\\"totalarea\\\": 2168.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[307804.393, 6716379.817], [307866.038, 6716061.265], [308624.811, 6714548.661], [308930.079, 6714040.505], [310002.925, 6713131.776], [313645.233, 6711947.927], [313642.011, 6711941.115], [313244.424, 6711780.289], [311964.209, 6712118.575], [312425.037, 6710150.229], [314141.375, 6710583.191], [314237.272, 6710227.55], [315435.5, 6708165.017], [319453.481, 6711387.269], [320774.171, 6710467.086], [319136.184, 6708592.486], [319406.81, 6707686.962], [318062.995, 6706087.889], [323117.104, 6705869.091], [323521.746, 6703467.077], [323346.815, 6702887.257], [322884.789, 6700820.565], [323121.55, 6698918.567], [323127.585, 6698912.221], [322622.818, 6698673.89], [322338.971, 6698959.51], [320907.257, 6697465.156], [320340.276, 6697060.956], [319314.378, 6696972.814], [319234.718, 6695995.216], [319703.935, 6695854.48], [319836.611, 6695490.734], [319757.935, 6694107.783], [319813.052, 6693508.174], [319409.151, 6692532.305], [319425.238, 6690794.283], [319231.631, 6690169.649], [318599.844, 6689674.073], [317054.174, 6688711.47], [316234.726, 6689800.029], [314406.387, 6687630.939], [313660.858, 6687654.06], [313407.291, 6685196.412], [313042.056, 6685303.479], [313064.193, 6686375.57], [312771.764, 6686403.47], [312636.046, 6685266.045], [311879.08, 6685929.454], [311633.409, 6685884.911], [311672.632, 6685673.071], [311402.739, 6685482.729], [311139.037, 6685125.451], [311807.545, 6684683.595], [311893.034, 6684183.946], [312236.212, 6684157.07], [313632.967, 6683270.744], [314298.047, 6682451.864], [313608.45, 6682308.012], [313549.956, 6681769.58], [313729.863, 6680577.226], [314253.062, 6679640.469], [313993.449, 6679357.709], [314278.739, 6678574.4], [312658.828, 6677827.908], [311951.44, 6677560.051], [310860.868, 6678524.315], [309001.264, 6678917.712], [308146.69, 6678526.293], [304204.322, 6675868.936], [301694.067, 6675507.35], [301120.979, 6675208.747], [299125.388, 6675523.72], [298119.962, 6673665.522], [295648.696, 6676222.75], [295676.341, 6676609.07], [295812.62, 6677110.975], [296371.792, 6677813.677], [296303.672, 6678078.163], [295198.34, 6678153.616], [294823.024, 6678011.324], [294550.294, 6677619.696], [294051.436, 6677161.263], [293526.064, 6676461.0], [293315.942, 6675529.126], [293413.231, 6674347.893], [293075.881, 6674436.914], [290848.677, 6672960.012], [289831.396, 6672611.148], [289849.68, 6672262.427], [289292.342, 6672123.455], [288747.559, 6672438.2], [288770.471, 6671180.961], [285913.262, 6668838.274], [281645.756, 6668057.072], [281519.049, 6668690.273], [280713.644, 6667824.977], [278790.121, 6669802.943], [276921.236, 6668826.839], [275227.495, 6666202.15], [275933.903, 6665396.831], [276350.256, 6662951.309], [276085.467, 6662010.058], [274387.242, 6658255.018], [268643.954, 6658136.552], [268712.43, 6662037.915], [266091.484, 6661666.31], [265857.994, 6663056.007], [265752.131, 6665401.189], [266870.436, 6664892.356], [268068.775, 6664760.524], [269130.951, 6666229.659], [267977.402, 6667137.169], [267929.987, 6667576.663], [267994.457, 6668360.905], [269142.593, 6668899.06], [269319.176, 6669733.371], [270085.205, 6670475.611], [270474.039, 6671399.825], [272356.235, 6673278.834], [271299.176, 6675376.241], [270751.669, 6676303.282], [270342.413, 6678139.253], [271332.959, 6678710.462], [271198.777, 6679234.257], [271409.506, 6679729.618], [271043.118, 6680178.78], [270678.956, 6680418.317], [270789.11, 6680874.368], [271523.15, 6681935.883], [272860.048, 6683178.436], [273113.614, 6684024.872], [273379.044, 6684492.497], [273321.97, 6685369.798], [274272.536, 6686334.936], [274069.563, 6687208.504], [273726.319, 6687815.33], [273279.148, 6687394.227], [272376.068, 6686296.848], [271679.027, 6686174.549], [271358.412, 6686160.68], [270969.28, 6686189.452], [270752.862, 6686514.01], [270956.42, 6687336.53], [270710.961, 6687732.813], [271283.935, 6688122.92], [271644.101, 6690445.668], [272383.994, 6691454.85], [272432.554, 6692499.31], [270536.716, 6696216.522], [270774.268, 6697008.736], [270213.779, 6698348.883], [270633.654, 6698647.29], [269524.021, 6700258.507], [270363.229, 6701795.995], [270651.642, 6703892.931], [271712.212, 6705131.156], [272614.391, 6705049.736], [272759.344, 6706045.99], [271942.536, 6706276.264], [273166.818, 6708107.437], [271868.275, 6710463.948], [271791.405, 6711118.647], [272420.579, 6713067.957], [272433.72, 6713632.545], [271984.469, 6715508.801], [275088.049, 6716860.691], [276912.768, 6718138.055], [278553.805, 6718485.836], [279242.214, 6718641.666], [280409.221, 6719052.252], [280775.528, 6719172.294], [284162.61, 6720130.499], [286367.884, 6721621.783], [286994.9, 6721989.918], [288577.551, 6721994.652], [289712.028, 6722281.247], [291279.476, 6721069.583], [292306.716, 6722632.42], [294254.901, 6722618.658], [297343.36, 6721877.18], [300638.097, 6718692.216], [302390.447, 6717646.38], [305654.454, 6720562.244], [305687.709, 6721154.769], [306480.202, 6721293.681], [307602.437, 6722296.504], [307921.9, 6722794.718], [309224.065, 6722809.054], [307804.393, 6716379.817]]]}}, {\\\"id\\\": \\\"274\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tampere\\\", \\\"elakelaisten_osuus\\\": 22.4, \\\"freshwarea\\\": 164.64, \\\"gml_id\\\": 1601100628, \\\"landarea\\\": 524.95, \\\"namefin\\\": \\\"Tampere\\\", \\\"nameswe\\\": \\\"Tammerfors\\\", \\\"natcode\\\": \\\"837\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 689.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[336661.298, 6857626.5], [341807.049, 6854120.846], [345820.889, 6854665.704], [346626.256, 6854536.218], [346495.272, 6852674.89], [347619.359, 6847783.319], [345583.68, 6845897.273], [345988.47, 6844856.125], [346639.203, 6842378.683], [346613.166, 6840354.593], [345801.078, 6837771.885], [346042.25, 6836963.748], [347257.028, 6836031.877], [347270.109, 6836030.211], [346408.013, 6835320.645], [345474.086, 6834846.405], [343617.475, 6833670.783], [338856.579, 6824709.014], [339131.423, 6822540.723], [338403.228, 6822449.923], [337267.898, 6822913.083], [336872.95, 6821804.979], [336840.429, 6820778.152], [336628.258, 6819473.711], [336188.632, 6818774.247], [335642.151, 6817053.183], [334665.689, 6815700.402], [334112.121, 6814346.136], [330545.508, 6814802.112], [329943.277, 6814696.758], [329786.424, 6814912.769], [327513.337, 6815227.089], [326191.538, 6815267.876], [325851.472, 6816029.221], [325730.716, 6817527.192], [325275.823, 6818624.49], [325667.992, 6818792.243], [325556.402, 6818968.554], [325580.263, 6819396.715], [325212.897, 6819910.982], [325656.919, 6821088.745], [324724.414, 6821487.323], [324587.738, 6821197.998], [324084.849, 6820860.831], [322578.09, 6821620.492], [319633.759, 6820693.772], [319401.318, 6821431.059], [318831.891, 6821797.77], [318515.954, 6822464.609], [317263.558, 6822525.447], [317619.588, 6823732.921], [316754.117, 6825030.582], [316192.01, 6827073.221], [316486.715, 6826869.93], [316673.988, 6826457.669], [317270.642, 6826230.485], [317934.515, 6825882.378], [318400.367, 6825031.513], [319504.269, 6825748.776], [321475.941, 6826114.403], [322082.372, 6826409.062], [323154.009, 6827710.865], [323661.447, 6827056.425], [324570.873, 6826990.257], [324970.212, 6827347.747], [325805.61, 6827013.04], [327966.045, 6827198.092], [327538.501, 6834564.224], [326508.716, 6839352.753], [326475.325, 6841903.801], [326823.44, 6843578.07], [328468.675, 6843983.318], [329843.464, 6847842.865], [329109.082, 6848874.892], [328719.611, 6850546.464], [329318.968, 6852300.347], [328876.407, 6852673.62], [329180.858, 6853072.287], [329479.549, 6853086.7], [330370.153, 6854871.349], [331469.929, 6855405.787], [331875.759, 6858435.143], [334465.339, 6859985.051], [336661.298, 6857626.5]]]}}, {\\\"id\\\": \\\"275\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Teuva\\\", \\\"elakelaisten_osuus\\\": 38.0, \\\"freshwarea\\\": 1.38, \\\"gml_id\\\": 1601100644, \\\"landarea\\\": 554.57, \\\"namefin\\\": \\\"Teuva\\\", \\\"nameswe\\\": \\\"\\\\u00d6stermark\\\", \\\"natcode\\\": \\\"846\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 555.95}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[228945.381, 6956916.507], [228558.476, 6956100.892], [228612.335, 6955725.437], [228575.72, 6954913.394], [228287.396, 6954877.683], [228255.086, 6954394.304], [227862.409, 6953945.212], [226610.176, 6954715.785], [226006.023, 6953820.843], [226735.736, 6953300.506], [226968.644, 6954009.285], [227995.504, 6953529.86], [228499.873, 6953431.258], [229387.937, 6954137.794], [229331.645, 6954861.219], [229577.382, 6955419.754], [231170.625, 6954667.101], [231031.929, 6954268.272], [231422.618, 6954157.564], [231185.25, 6953598.229], [231783.827, 6953227.88], [232409.978, 6953600.122], [232711.219, 6953514.757], [232955.745, 6953939.429], [232919.784, 6954416.18], [233861.674, 6954310.717], [233933.285, 6955041.701], [234380.359, 6954388.323], [233995.008, 6953356.39], [232265.202, 6951514.998], [233138.565, 6951147.576], [233550.656, 6951945.192], [234423.639, 6951725.53], [234824.315, 6952286.4], [235804.633, 6952081.31], [236194.047, 6951579.557], [236698.665, 6951407.707], [237254.805, 6952236.457], [237720.265, 6952385.599], [237887.14, 6952024.596], [238530.116, 6951777.972], [238556.791, 6951145.468], [238113.792, 6951057.076], [238457.633, 6950504.196], [238458.097, 6950107.126], [240070.364, 6949760.421], [240259.609, 6951398.376], [241107.709, 6951821.732], [240646.899, 6952901.604], [241559.474, 6953019.826], [242107.261, 6953682.278], [242365.045, 6953453.665], [242238.59, 6953013.203], [242556.072, 6952511.6], [242818.122, 6951524.132], [243155.369, 6951393.406], [243340.896, 6951634.212], [243260.003, 6952836.063], [244463.197, 6951755.28], [245048.674, 6951670.997], [245167.849, 6950872.626], [245496.433, 6950914.496], [245476.076, 6951615.684], [248616.072, 6951180.018], [249140.589, 6950278.228], [248866.223, 6946499.036], [246230.092, 6944585.668], [245092.32, 6944296.194], [243600.856, 6943919.121], [243667.482, 6944783.995], [243511.328, 6944844.137], [243271.361, 6944767.957], [243465.62, 6944318.495], [243160.9, 6943994.731], [243416.103, 6943899.506], [243511.582, 6943420.761], [243305.093, 6942518.149], [242684.019, 6941983.918], [242963.583, 6941228.611], [242514.416, 6939057.935], [241583.005, 6936113.178], [239776.246, 6932924.438], [239892.18, 6932893.044], [239831.676, 6932789.264], [239715.333, 6932820.597], [234990.134, 6925005.508], [228009.925, 6928310.946], [227984.149, 6927516.944], [227380.163, 6927597.212], [227575.989, 6928511.906], [223527.016, 6930406.901], [223738.186, 6930971.862], [223601.767, 6931107.157], [223041.786, 6930607.193], [220183.393, 6931963.498], [219427.77, 6932188.97], [219607.313, 6932789.093], [219000.159, 6933062.97], [218977.094, 6933299.884], [218719.864, 6935511.963], [217811.732, 6935874.027], [217977.842, 6936162.885], [217058.599, 6936696.917], [217419.419, 6937062.217], [218740.744, 6935882.546], [222504.412, 6944931.612], [223310.661, 6947484.256], [223234.279, 6947987.379], [222360.69, 6948029.851], [222613.453, 6949969.791], [222606.645, 6953265.494], [224375.245, 6953707.543], [225565.632, 6954822.793], [226075.453, 6956548.487], [226534.377, 6956810.068], [228167.102, 6956093.188], [228596.205, 6956997.853], [228945.381, 6956916.507]]]}}, {\\\"id\\\": \\\"276\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vesanto\\\", \\\"elakelaisten_osuus\\\": 46.5, \\\"freshwarea\\\": 147.18, \\\"gml_id\\\": 1601100087, \\\"landarea\\\": 422.62, \\\"namefin\\\": \\\"Vesanto\\\", \\\"nameswe\\\": \\\"Vesanto\\\", \\\"natcode\\\": \\\"921\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 569.8}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[466320.21, 6989673.188], [467254.785, 6989706.3], [473815.855, 6986724.259], [475433.865, 6984772.006], [476882.933, 6985539.054], [477663.622, 6984833.347], [476399.455, 6984130.605], [476699.022, 6983736.784], [480405.544, 6980677.054], [481779.072, 6978593.43], [482610.441, 6977302.478], [482821.362, 6976670.305], [482089.892, 6976896.598], [483803.219, 6974284.665], [482820.629, 6972769.269], [481589.131, 6972347.429], [483056.071, 6968826.888], [480283.257, 6967207.928], [480574.895, 6966000.586], [481017.004, 6965699.529], [481127.077, 6965282.981], [481570.125, 6965007.023], [481370.758, 6964484.125], [480126.197, 6963891.438], [479151.981, 6965063.756], [478492.954, 6964514.774], [478056.224, 6965326.842], [476471.164, 6965629.408], [476259.876, 6965228.509], [473945.267, 6964114.392], [474475.106, 6962377.414], [473487.499, 6963204.072], [471765.145, 6962221.13], [469335.815, 6961030.086], [469041.648, 6960703.851], [469658.072, 6959845.472], [467106.855, 6957611.173], [461282.179, 6965443.648], [460882.112, 6965695.76], [460407.526, 6966405.5], [459791.964, 6966970.282], [458701.957, 6966221.441], [456811.171, 6968809.34], [457013.971, 6968961.99], [458392.429, 6969880.409], [458719.053, 6970465.058], [457542.012, 6971661.854], [452626.858, 6973610.366], [451260.41, 6978834.552], [453799.153, 6979248.592], [455573.873, 6980648.896], [460537.808, 6980747.209], [462759.45, 6978506.395], [463064.891, 6977448.452], [465210.011, 6981169.848], [466173.475, 6983934.095], [464005.057, 6983814.039], [460656.913, 6988709.902], [461507.934, 6990710.121], [466320.21, 6989673.188]]]}}, {\\\"id\\\": \\\"277\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"V\\\\u00f6yri\\\", \\\"elakelaisten_osuus\\\": 28.4, \\\"freshwarea\\\": 9.19, \\\"gml_id\\\": 1601100133, \\\"landarea\\\": 782.2, \\\"namefin\\\": \\\"V\\\\u00f6yri\\\", \\\"nameswe\\\": \\\"V\\\\u00f6r\\\\u00e5\\\", \\\"natcode\\\": \\\"946\\\", \\\"seawarea\\\": 708.59, \\\"totalarea\\\": 1499.98}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[232980.295, 7071558.938], [254049.167, 7041655.689], [256142.351, 7039958.191], [263745.792, 7033349.892], [270621.664, 7031992.72], [270982.103, 7031874.996], [271019.828, 7031504.277], [271358.131, 7031538.115], [271395.236, 7031825.257], [273300.643, 7031395.622], [273378.649, 7031149.011], [273851.337, 7031117.391], [274163.717, 7030702.914], [274611.241, 7031015.309], [275560.666, 7030188.422], [275864.342, 7030007.56], [276384.937, 7030038.542], [276326.372, 7030923.489], [276845.089, 7030809.677], [277849.261, 7028946.489], [277654.205, 7028826.466], [280240.272, 7024528.828], [279732.947, 7024235.19], [279218.741, 7024817.955], [277252.012, 7022908.176], [277047.991, 7021758.195], [277254.575, 7021067.984], [278644.377, 7020453.851], [278494.928, 7020099.503], [279605.213, 7019630.154], [279125.485, 7019374.398], [279319.718, 7018894.667], [278802.647, 7018753.471], [278962.869, 7018545.719], [279461.972, 7018545.49], [280292.406, 7016464.128], [278459.142, 7015629.28], [277228.533, 7013258.264], [278858.545, 7014120.863], [279180.35, 7013799.667], [279538.342, 7013867.625], [279703.668, 7012994.708], [279478.794, 7012877.157], [279846.023, 7012374.095], [280245.068, 7012550.456], [280436.672, 7012183.032], [280852.199, 7012317.487], [280757.763, 7011973.929], [280402.047, 7011811.624], [280185.419, 7011997.896], [279988.438, 7011803.789], [280252.036, 7011466.506], [279493.163, 7010865.855], [279578.232, 7010508.537], [280296.003, 7010760.389], [280430.58, 7010142.291], [280845.576, 7010265.913], [280966.276, 7010093.664], [280254.973, 7009447.669], [280308.955, 7009215.732], [280773.501, 7009334.944], [281020.303, 7008557.153], [280651.174, 7008476.91], [280654.179, 7008023.016], [280658.335, 7008009.105], [281171.761, 7008103.341], [281203.037, 7007823.64], [281013.785, 7007542.321], [279706.992, 7007407.249], [279724.695, 7006835.774], [280400.653, 7006862.139], [280511.162, 7004769.324], [279630.013, 7004441.65], [278511.153, 7004496.072], [278336.389, 7004568.998], [278317.434, 7004494.355], [277048.262, 7004549.843], [277012.025, 7004740.179], [276751.362, 7004689.281], [276554.174, 7004568.402], [276312.932, 7004580.854], [276048.372, 7004677.185], [275940.597, 7004619.438], [275774.91, 7004662.465], [275639.077, 7004604.935], [273378.669, 7004696.762], [273357.699, 7004768.631], [272972.594, 7004862.088], [272815.78, 7004728.879], [272253.875, 7004745.731], [264423.185, 7000886.345], [263764.825, 7000826.848], [263112.307, 7000488.762], [261911.292, 7000845.832], [260744.397, 7001168.399], [259700.002, 7001591.214], [258642.833, 7002609.152], [257377.924, 7004357.906], [256328.043, 7005521.302], [256385.548, 7005560.32], [256302.38, 7005647.38], [256208.114, 7005653.499], [255846.783, 7006054.112], [255752.81, 7006226.219], [255599.843, 7006328.56], [254934.33, 7007063.839], [255006.49, 7007079.186], [255025.574, 7007123.347], [254918.46, 7007172.936], [254877.902, 7007122.179], [254545.052, 7007483.503], [254235.893, 7008060.123], [254144.609, 7008037.808], [254114.224, 7008080.466], [254196.121, 7008133.173], [253725.425, 7009015.488], [253586.534, 7009129.209], [253623.43, 7009178.436], [253375.844, 7009357.636], [253335.482, 7009334.672], [252989.513, 7009620.356], [252420.91, 7009920.11], [251829.387, 7009977.724], [251711.586, 7010458.079], [250819.524, 7010502.201], [250663.291, 7010466.81], [250455.7, 7011048.701], [251126.589, 7011109.029], [250892.971, 7014514.038], [250553.197, 7017304.527], [250249.208, 7017759.807], [249337.848, 7018700.736], [247321.842, 7018898.101], [247367.348, 7020339.897], [247450.644, 7020512.096], [247484.353, 7021509.086], [247611.575, 7021710.552], [247648.468, 7022415.465], [247449.951, 7022858.161], [247128.467, 7024805.811], [237693.419, 7039801.029], [236534.737, 7040274.738], [234990.679, 7040057.034], [233938.89, 7040842.064], [233504.718, 7041741.024], [234101.374, 7044347.866], [235005.778, 7045684.757], [220786.098, 7067997.0], [228494.409, 7071591.094], [232980.295, 7071558.938]]]}}, {\\\"id\\\": \\\"278\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kirkkonummi\\\", \\\"elakelaisten_osuus\\\": 19.0, \\\"freshwarea\\\": 27.35, \\\"gml_id\\\": 1601100425, \\\"landarea\\\": 366.23, \\\"namefin\\\": \\\"Kirkkonummi\\\", \\\"nameswe\\\": \\\"Kyrksl\\\\u00e4tt\\\", \\\"natcode\\\": \\\"257\\\", \\\"seawarea\\\": 623.43, \\\"totalarea\\\": 1017.01}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[360456.483, 6686609.239], [360545.372, 6685786.993], [362624.151, 6685325.923], [361979.124, 6684547.048], [361894.255, 6682470.534], [363001.768, 6681442.419], [362957.958, 6679709.508], [362477.208, 6679221.87], [361652.114, 6677734.396], [362814.249, 6676852.943], [363457.769, 6676740.111], [363412.641, 6675840.156], [363017.28, 6675707.949], [364338.397, 6674422.046], [365162.244, 6673862.205], [365108.457, 6673407.561], [365314.502, 6673111.62], [365022.882, 6672599.145], [365540.027, 6672116.941], [366143.883, 6672265.576], [366385.661, 6671650.774], [366767.419, 6671638.43], [367525.556, 6671157.064], [368242.629, 6670403.578], [368662.779, 6669079.204], [369024.123, 6668858.872], [368827.362, 6668560.415], [369014.905, 6667969.252], [369624.923, 6665548.81], [369511.307, 6664951.673], [369008.343, 6664006.643], [370918.596, 6659436.164], [374291.085, 6654447.058], [378708.759, 6642381.577], [376085.855, 6641460.907], [359153.176, 6633708.145], [350306.834, 6631794.646], [347448.843, 6631327.115], [347664.16, 6649540.705], [348907.918, 6655503.817], [350437.45, 6656951.381], [352530.63, 6660002.812], [352516.64, 6660117.275], [352494.25, 6660300.469], [352701.357, 6660428.678], [353152.439, 6661558.513], [353211.131, 6663179.187], [353012.993, 6663526.057], [352072.516, 6664499.594], [352803.333, 6666141.826], [353026.423, 6667261.008], [352168.137, 6670266.637], [351921.248, 6670857.475], [351485.238, 6672530.473], [349893.018, 6675625.877], [352899.518, 6681792.724], [354500.398, 6682887.474], [355498.108, 6684885.579], [356697.668, 6685800.744], [357274.66, 6686963.923], [358629.146, 6687291.817], [358665.968, 6687306.956], [360456.483, 6686609.239]]]}}, {\\\"id\\\": \\\"279\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ylitornio\\\", \\\"elakelaisten_osuus\\\": 43.1, \\\"freshwarea\\\": 184.43, \\\"gml_id\\\": 1601100383, \\\"landarea\\\": 2028.04, \\\"namefin\\\": \\\"Ylitornio\\\", \\\"nameswe\\\": \\\"\\\\u00d6vertorne\\\\u00e5\\\", \\\"natcode\\\": \\\"976\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2212.47}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[407141.236, 7406338.065], [407131.878, 7405982.74], [409019.912, 7405514.707], [409669.99, 7405466.501], [410312.023, 7404169.581], [409180.963, 7404460.313], [408933.338, 7403421.081], [409370.786, 7402666.986], [409704.07, 7402589.309], [409805.286, 7403492.33], [410673.947, 7403504.99], [410897.513, 7403092.245], [411208.144, 7403204.607], [410784.179, 7404046.064], [410432.901, 7405428.723], [411402.469, 7405428.684], [411736.599, 7402270.586], [411431.451, 7402183.838], [411780.011, 7401738.84], [412035.943, 7398569.006], [412284.105, 7394267.949], [412499.786, 7390323.379], [413178.062, 7374305.669], [405450.151, 7363995.214], [401561.363, 7359275.278], [401100.619, 7358688.557], [375894.276, 7350794.766], [375745.27, 7350957.673], [376100.696, 7351331.45], [375890.482, 7352012.283], [375275.739, 7351606.288], [374433.289, 7352772.762], [373767.434, 7352354.222], [374347.575, 7351722.395], [373850.393, 7351352.078], [373883.216, 7351048.915], [374427.873, 7350335.182], [359823.069, 7345556.58], [359727.323, 7345113.984], [359823.741, 7344857.06], [359685.721, 7344074.979], [359795.423, 7343504.579], [359988.373, 7343287.761], [360124.146, 7342809.254], [360115.78, 7342359.619], [359905.369, 7342076.242], [359850.432, 7342096.391], [359742.242, 7342090.532], [359364.252, 7341916.313], [359285.092, 7341898.052], [359172.761, 7341902.644], [359061.23, 7341876.782], [358921.13, 7341892.122], [358790.004, 7341869.916], [358732.539, 7341893.208], [358698.727, 7341938.657], [358610.356, 7342142.698], [358578.761, 7342263.155], [358510.774, 7342355.172], [358448.256, 7342531.761], [358404.487, 7342584.275], [358329.986, 7342574.608], [358262.542, 7342522.827], [358161.973, 7342505.505], [357939.95, 7342564.133], [357779.151, 7342557.164], [357681.396, 7342569.844], [357492.808, 7342496.558], [357230.244, 7342478.855], [357176.688, 7342511.235], [357100.804, 7342604.772], [357019.782, 7342669.561], [356794.867, 7342821.614], [356646.965, 7343116.312], [356523.347, 7343284.537], [356386.384, 7343370.766], [356210.199, 7343451.82], [356135.404, 7343519.328], [355980.069, 7343635.373], [355829.463, 7343784.22], [355674.161, 7343947.771], [355462.656, 7344146.953], [355070.984, 7344479.585], [354762.155, 7344618.385], [354550.403, 7344712.75], [354455.778, 7344796.302], [354228.676, 7344933.276], [353815.595, 7345096.629], [353522.675, 7345186.557], [353286.544, 7345195.869], [353119.87, 7345237.879], [352877.727, 7345354.031], [352752.503, 7345446.43], [352668.448, 7345538.722], [352628.026, 7345624.213], [352615.969, 7345947.944], [352636.401, 7346024.729], [352689.044, 7346123.657], [352760.521, 7346219.87], [352950.647, 7346406.284], [352986.003, 7346463.374], [353005.295, 7346586.11], [352973.059, 7346792.446], [352874.465, 7347092.036], [352703.665, 7347527.929], [352626.665, 7347665.859], [352516.062, 7347767.398], [352369.741, 7347845.412], [352048.117, 7347950.455], [351890.526, 7348079.25], [351765.501, 7348251.925], [351656.266, 7348449.993], [351509.203, 7348960.954], [351364.951, 7349294.418], [351333.593, 7349559.824], [351377.98, 7349807.263], [351416.679, 7349946.058], [351626.176, 7350382.748], [351764.034, 7350750.19], [351763.591, 7350856.292], [351676.98, 7351095.879], [351310.177, 7351777.481], [351204.76, 7351911.241], [351122.539, 7351987.42], [350816.085, 7352139.812], [350698.524, 7352230.444], [350635.757, 7352323.353], [350489.065, 7352648.058], [350361.404, 7352795.084], [350342.949, 7352835.897], [350321.568, 7352913.002], [350325.455, 7352991.867], [350435.381, 7353194.878], [350489.167, 7353333.623], [350569.523, 7353790.156], [350676.576, 7354253.332], [350669.044, 7354364.042], [350616.184, 7354576.796], [350451.175, 7354953.152], [350353.341, 7355725.537], [350282.492, 7355882.389], [350223.64, 7356000.859], [350120.793, 7356159.316], [350018.682, 7356612.645], [349762.142, 7357130.778], [349677.43, 7357322.485], [349621.871, 7357555.363], [349654.175, 7357817.118], [349708.079, 7358015.057], [349812.666, 7358210.034], [350034.538, 7358632.656], [350171.316, 7359031.477], [350271.581, 7359573.065], [350263.972, 7359705.648], [350300.83, 7360245.095], [350373.496, 7360458.592], [350391.645, 7360891.932], [350482.025, 7361386.094], [350466.32, 7361591.277], [350382.294, 7361797.587], [350372.384, 7361896.896], [350406.049, 7362061.941], [350421.916, 7362598.266], [350408.838, 7362796.698], [350377.868, 7363021.885], [350464.218, 7363265.28], [351019.258, 7364138.554], [351293.23, 7364836.82], [351352.181, 7364944.075], [351395.201, 7365116.885], [351676.662, 7365630.879], [351869.198, 7365888.455], [351867.067, 7366101.304], [351962.308, 7366392.061], [352078.571, 7366972.037], [352053.874, 7367177.006], [351992.662, 7367418.996], [351859.27, 7367683.397], [351751.465, 7367771.331], [351609.936, 7367835.921], [351430.947, 7367952.659], [351244.736, 7368125.816], [351179.224, 7368233.228], [350911.046, 7369289.923], [350886.258, 7369678.967], [350784.629, 7370051.828], [350590.834, 7370586.166], [350393.621, 7370981.784], [350282.904, 7371163.666], [350226.719, 7371304.105], [350230.472, 7371397.323], [350273.036, 7371758.443], [350258.567, 7371867.004], [350327.706, 7372517.415], [350386.68, 7372711.176], [350423.639, 7372775.363], [350509.947, 7372860.566], [350545.725, 7372948.338], [350618.366, 7373359.068], [350638.623, 7373770.054], [350686.396, 7374019.407], [350731.001, 7374610.123], [350804.245, 7374778.63], [350895.865, 7374873.336], [350957.399, 7375068.161], [351014.628, 7375151.58], [351246.662, 7375355.485], [351782.772, 7375654.531], [351885.364, 7375737.716], [352231.651, 7376234.351], [352283.347, 7376329.118], [352390.801, 7376463.409], [352532.492, 7376584.125], [352687.687, 7376680.468], [352852.839, 7376750.617], [353056.617, 7376788.969], [353208.151, 7376737.974], [353386.034, 7376579.882], [353499.358, 7376561.089], [353595.6, 7376603.453], [353719.053, 7376696.424], [353922.378, 7376875.191], [353964.33, 7376932.229], [353992.874, 7377079.378], [353981.795, 7377179.014], [353822.766, 7377803.686], [353791.224, 7378094.716], [353796.674, 7378530.243], [353815.486, 7378705.323], [353842.525, 7378766.864], [353901.137, 7378830.885], [354221.787, 7379063.444], [354340.522, 7379199.901], [354373.798, 7379327.729], [354355.841, 7379703.833], [354423.003, 7379853.762], [354467.68, 7380127.743], [354570.182, 7380356.675], [354652.179, 7380404.693], [354733.431, 7380401.271], [354779.013, 7380374.867], [354832.459, 7380284.725], [354930.904, 7379968.002], [354969.679, 7379895.938], [355009.01, 7379865.254], [355161.132, 7379831.504], [355546.104, 7379950.491], [355633.424, 7380006.765], [355806.751, 7380183.897], [355997.215, 7380511.057], [356044.981, 7380562.753], [356187.567, 7380621.35], [356380.379, 7380665.743], [356648.874, 7380917.922], [356779.395, 7380989.799], [357355.828, 7381083.833], [357490.455, 7381154.928], [357567.033, 7381262.142], [357653.477, 7381647.716], [358370.344, 7381426.173], [358764.992, 7379662.425], [359656.999, 7378966.417], [361471.629, 7378187.813], [363936.462, 7375115.105], [370856.99, 7378554.661], [370354.787, 7380930.152], [372024.946, 7381366.52], [372619.566, 7379730.511], [372871.049, 7379467.226], [374880.006, 7379860.34], [374999.359, 7380042.714], [374507.15, 7380477.581], [376816.007, 7382186.719], [376808.319, 7383341.428], [376190.216, 7383319.552], [375540.193, 7385256.254], [374311.468, 7385569.834], [373979.822, 7386366.384], [374375.017, 7386491.0], [374630.127, 7385773.148], [375610.252, 7385913.433], [376373.798, 7384164.594], [377639.935, 7383307.282], [378964.329, 7383455.164], [379548.425, 7383864.17], [380123.289, 7383810.828], [380182.229, 7384404.137], [379595.512, 7386018.158], [381303.081, 7387578.83], [381388.299, 7389101.684], [381942.642, 7389349.549], [383252.605, 7388847.673], [384452.725, 7389319.337], [385770.577, 7390951.547], [386882.255, 7390815.436], [386995.896, 7391658.872], [387811.585, 7391577.251], [387918.462, 7393185.221], [390534.912, 7392093.582], [390340.125, 7393946.418], [390770.706, 7394365.657], [391123.418, 7394240.863], [391311.903, 7394819.072], [392366.034, 7394468.287], [391714.807, 7395992.905], [391885.833, 7396659.402], [392291.068, 7396323.983], [392396.412, 7396859.745], [394577.366, 7396498.411], [394927.067, 7396548.116], [395191.322, 7397666.614], [394626.454, 7397675.495], [394421.55, 7398085.78], [393982.613, 7398307.446], [394865.4, 7398595.81], [394573.685, 7399441.837], [395451.998, 7399891.508], [395959.526, 7400320.459], [396415.857, 7400204.099], [396363.795, 7400669.71], [396697.937, 7401010.873], [396887.983, 7400847.966], [398139.564, 7398444.578], [399016.23, 7400527.224], [398231.193, 7402574.683], [398215.928, 7403790.346], [399323.12, 7404872.413], [399962.238, 7406563.692], [400384.722, 7406761.881], [400571.998, 7406233.458], [400429.647, 7405554.3], [400509.669, 7405082.137], [400910.044, 7405130.897], [400930.796, 7405995.146], [405195.844, 7406900.603], [407141.236, 7406338.065]]]}}, {\\\"id\\\": \\\"280\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vesilahti\\\", \\\"elakelaisten_osuus\\\": 21.9, \\\"freshwarea\\\": 52.9, \\\"gml_id\\\": 1601100305, \\\"landarea\\\": 301.04, \\\"namefin\\\": \\\"Vesilahti\\\", \\\"nameswe\\\": \\\"Vesilahti\\\", \\\"natcode\\\": \\\"922\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 353.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[312867.391, 6810931.619], [313180.534, 6810751.561], [313426.757, 6810316.38], [313684.052, 6809469.592], [314656.69, 6808838.397], [314942.732, 6807444.064], [315480.728, 6807577.389], [318262.334, 6804714.172], [320875.409, 6803837.524], [321842.309, 6802618.305], [321868.994, 6802181.529], [321315.657, 6801675.613], [320944.472, 6800498.142], [321171.248, 6800295.921], [321444.853, 6799619.42], [322088.838, 6799627.526], [322480.919, 6800304.33], [323249.59, 6800139.654], [324019.518, 6799588.238], [324646.934, 6798826.654], [324707.898, 6798537.66], [324458.217, 6798035.259], [324745.435, 6797972.217], [324977.484, 6797413.835], [324589.445, 6796757.176], [325014.538, 6796004.595], [324273.095, 6795263.289], [323755.88, 6794623.86], [322865.425, 6794163.727], [322290.513, 6793565.428], [322204.585, 6793131.204], [321520.356, 6793270.387], [321094.744, 6793033.027], [321290.934, 6792613.27], [322241.09, 6792016.457], [322242.168, 6791194.287], [317209.632, 6790296.18], [315667.074, 6789857.932], [314246.201, 6790569.479], [307593.313, 6790341.531], [308259.776, 6790959.328], [307850.331, 6791401.793], [307465.372, 6791093.519], [306780.198, 6791559.587], [306598.061, 6791310.142], [305625.918, 6791665.178], [305658.269, 6792122.614], [306222.922, 6792590.959], [306133.007, 6794099.794], [304893.116, 6793683.878], [304877.821, 6794460.134], [302933.135, 6793833.684], [302809.444, 6794492.79], [302124.849, 6794291.482], [302019.477, 6794852.05], [301430.128, 6794669.462], [300346.112, 6795011.413], [300703.912, 6797451.822], [301102.603, 6800694.352], [300085.282, 6803247.133], [297788.894, 6805221.834], [300931.473, 6808129.885], [303526.983, 6807346.522], [305522.186, 6805777.932], [308021.115, 6804616.695], [308554.456, 6804528.688], [308726.575, 6805452.098], [309603.799, 6805166.429], [309952.892, 6805241.214], [310168.225, 6805496.124], [309664.612, 6806134.316], [308934.379, 6806816.059], [307610.528, 6807798.308], [307206.594, 6808297.845], [308836.595, 6809496.936], [308239.204, 6810240.996], [308330.028, 6810403.253], [309024.691, 6810453.081], [309802.59, 6811055.805], [310314.51, 6811205.887], [310633.693, 6810982.696], [311320.535, 6811163.701], [311934.626, 6812066.557], [312867.391, 6810931.619]]]}}, {\\\"id\\\": \\\"281\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Enonkoski\\\", \\\"elakelaisten_osuus\\\": 42.2, \\\"freshwarea\\\": 113.62, \\\"gml_id\\\": 1601100064, \\\"landarea\\\": 305.58, \\\"namefin\\\": \\\"Enonkoski\\\", \\\"nameswe\\\": \\\"Enonkoski\\\", \\\"natcode\\\": \\\"046\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 419.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[592983.742, 6905823.212], [593712.023, 6905316.66], [593948.679, 6904646.346], [594811.999, 6904742.188], [595524.696, 6904086.598], [596082.087, 6903375.284], [596486.176, 6903489.355], [597138.102, 6902984.723], [597490.036, 6903290.879], [597811.516, 6903400.549], [598592.449, 6903354.599], [599634.351, 6903532.391], [599721.984, 6903138.256], [599559.91, 6901518.826], [599438.513, 6900733.411], [598684.571, 6901045.631], [598796.643, 6900415.651], [598603.792, 6900082.442], [599369.426, 6899288.56], [599448.996, 6898234.868], [601222.508, 6898110.954], [601772.416, 6898733.377], [602480.251, 6898110.022], [603609.099, 6897827.623], [603629.128, 6896778.147], [604452.747, 6896314.238], [605140.645, 6896197.97], [605418.454, 6895714.803], [605374.086, 6895501.784], [605104.948, 6895300.33], [604925.06, 6895101.906], [604851.931, 6894984.9], [604991.439, 6894659.758], [605112.866, 6894312.634], [604925.547, 6893348.852], [605733.047, 6893079.437], [606429.468, 6892438.488], [608402.441, 6891131.121], [609289.989, 6890028.444], [609175.667, 6889392.826], [608872.0, 6888994.225], [608899.536, 6888719.103], [608642.008, 6888007.9], [608240.311, 6887321.891], [608344.426, 6886975.8], [609169.448, 6886814.43], [609112.66, 6887074.946], [609697.733, 6887334.453], [610110.478, 6887339.639], [610594.1, 6887204.064], [610975.544, 6886871.678], [610492.702, 6884517.676], [610902.915, 6884224.026], [610523.108, 6883655.804], [611441.179, 6883154.272], [610534.767, 6882187.186], [609112.36, 6882797.472], [608682.265, 6882692.671], [608727.391, 6882335.616], [609190.44, 6881782.499], [609398.372, 6880974.336], [609755.342, 6880702.087], [609799.11, 6880289.032], [609386.165, 6880279.973], [609178.17, 6879983.116], [609218.132, 6879678.789], [609379.934, 6879359.911], [609679.575, 6878983.809], [610019.033, 6878795.86], [609032.451, 6876694.183], [608651.203, 6877476.85], [608066.491, 6877778.497], [606619.031, 6878531.136], [606436.184, 6878292.303], [605890.125, 6878129.436], [604806.56, 6878738.942], [604566.275, 6878431.194], [604295.973, 6877799.53], [604172.715, 6877246.429], [604559.606, 6877012.779], [603624.528, 6875870.959], [602652.062, 6876626.895], [602986.917, 6877016.075], [602396.023, 6877492.275], [601982.622, 6877450.234], [601783.791, 6877238.668], [601320.697, 6877441.097], [600821.376, 6877212.763], [601075.408, 6876617.48], [600534.017, 6876467.434], [601138.034, 6876005.074], [600610.556, 6875620.637], [600832.592, 6875482.9], [600341.481, 6875229.57], [599771.221, 6875320.202], [599080.439, 6875633.316], [598384.483, 6875848.885], [597609.013, 6876609.074], [597954.869, 6877070.264], [598221.983, 6876844.394], [598629.028, 6876984.022], [598022.274, 6877470.621], [597917.537, 6878085.933], [596416.381, 6878698.854], [595799.085, 6879075.1], [595399.847, 6878696.434], [594674.936, 6878808.487], [593890.272, 6878197.808], [593633.579, 6877671.298], [593336.732, 6877971.715], [593418.571, 6879058.255], [591756.27, 6879357.367], [592298.969, 6880176.076], [590926.347, 6880900.69], [590251.782, 6881394.932], [590516.156, 6881513.924], [591712.598, 6881186.268], [592574.669, 6881894.059], [593137.518, 6882482.905], [593927.534, 6882024.044], [594741.004, 6881787.641], [595036.913, 6881551.326], [595335.982, 6881570.902], [595445.81, 6881933.923], [595737.068, 6881805.885], [595996.082, 6882883.375], [592949.0, 6884760.443], [592265.387, 6885745.175], [592380.466, 6886299.34], [592876.699, 6886729.817], [592356.575, 6887722.457], [592005.936, 6888707.235], [591261.233, 6889514.441], [590806.526, 6889466.092], [589708.543, 6890241.979], [588196.756, 6888684.988], [587891.477, 6889228.539], [586981.163, 6889651.393], [586737.1, 6890031.36], [585745.667, 6890753.662], [585588.294, 6891104.921], [585830.764, 6891374.835], [585297.362, 6891885.192], [585996.806, 6892221.782], [585893.742, 6892758.743], [586333.921, 6893078.356], [586730.774, 6893487.813], [586067.196, 6894522.54], [585838.1, 6894800.43], [586196.374, 6895707.738], [586983.668, 6895529.335], [587144.353, 6896201.351], [587150.585, 6896585.01], [586883.423, 6896878.04], [586081.723, 6897004.091], [586445.064, 6897237.199], [586973.718, 6898050.143], [587358.859, 6898039.452], [587106.374, 6898301.195], [587671.537, 6898669.979], [586635.569, 6899087.288], [586299.9, 6899473.76], [586801.14, 6900237.28], [587420.551, 6899727.694], [587919.109, 6899971.856], [588266.04, 6899528.609], [589549.593, 6900345.589], [589848.288, 6900086.787], [590010.275, 6899462.437], [592145.221, 6898063.286], [591895.015, 6897766.277], [592477.905, 6897395.98], [593595.261, 6898464.754], [593795.079, 6899348.636], [593406.229, 6899431.84], [593353.204, 6899669.991], [593020.241, 6900279.965], [592306.756, 6901101.491], [592297.047, 6901362.471], [593042.621, 6901836.116], [592876.184, 6902145.226], [592346.006, 6902448.375], [592448.14, 6902756.307], [593181.751, 6902902.737], [593038.971, 6903255.112], [592711.909, 6903301.203], [592303.146, 6903966.214], [591876.358, 6903946.46], [591612.083, 6904218.034], [591412.145, 6904650.681], [591649.668, 6905031.913], [591546.62, 6905527.494], [591795.078, 6905738.013], [591649.293, 6906014.778], [592206.77, 6906014.811], [592983.742, 6905823.212]]]}}, {\\\"id\\\": \\\"282\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siuntio\\\", \\\"elakelaisten_osuus\\\": 21.6, \\\"freshwarea\\\": 8.84, \\\"gml_id\\\": 1601100366, \\\"landarea\\\": 241.11, \\\"namefin\\\": \\\"Siuntio\\\", \\\"nameswe\\\": \\\"Sjunde\\\\u00e5\\\", \\\"natcode\\\": \\\"755\\\", \\\"seawarea\\\": 16.17, \\\"totalarea\\\": 266.12}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[352485.409, 6683868.535], [352899.518, 6681792.724], [349893.018, 6675625.877], [351485.238, 6672530.473], [351921.248, 6670857.475], [352168.137, 6670266.637], [353026.423, 6667261.008], [352803.333, 6666141.826], [352072.516, 6664499.594], [353012.993, 6663526.057], [353211.131, 6663179.187], [353152.439, 6661558.513], [352701.357, 6660428.678], [352494.25, 6660300.469], [352516.64, 6660117.275], [352530.63, 6660002.812], [350437.45, 6656951.381], [349371.915, 6658952.571], [348541.821, 6660998.491], [347781.151, 6661591.74], [347506.13, 6662354.912], [347393.918, 6663520.466], [346860.197, 6664434.118], [345827.574, 6665798.332], [346190.188, 6666410.305], [345984.802, 6666953.49], [345520.67, 6667738.645], [344553.647, 6668990.316], [343317.057, 6669366.688], [343031.474, 6669309.0], [341668.934, 6667854.539], [340836.33, 6667267.659], [340671.985, 6669430.235], [339890.622, 6669856.813], [338920.767, 6670846.283], [338020.923, 6671051.837], [336005.637, 6671797.73], [334526.292, 6672025.248], [334388.106, 6672664.936], [334644.843, 6673704.074], [334488.258, 6674031.399], [334593.506, 6674736.995], [334582.909, 6675293.781], [334085.902, 6675495.796], [334931.274, 6676379.156], [335415.626, 6676257.048], [336139.187, 6676444.443], [336079.221, 6677116.583], [335803.444, 6677775.55], [336202.331, 6677948.558], [336504.425, 6678461.636], [337345.651, 6678886.728], [338370.847, 6679743.356], [338116.178, 6680332.146], [338602.741, 6680623.867], [338766.559, 6680052.266], [339355.676, 6680363.89], [341112.128, 6680696.181], [341984.342, 6679755.135], [342829.409, 6680197.418], [342100.125, 6680560.278], [343117.684, 6681906.059], [343177.709, 6680551.318], [346110.335, 6683692.275], [346658.898, 6683627.58], [347755.179, 6683675.588], [348432.639, 6684532.268], [350150.857, 6686590.204], [351084.214, 6687267.974], [352485.409, 6683868.535]]]}}, {\\\"id\\\": \\\"283\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kempele\\\", \\\"elakelaisten_osuus\\\": 18.8, \\\"freshwarea\\\": 0.2, \\\"gml_id\\\": 1601100407, \\\"landarea\\\": 110.11, \\\"namefin\\\": \\\"Kempele\\\", \\\"nameswe\\\": \\\"Kempele\\\", \\\"natcode\\\": \\\"244\\\", \\\"seawarea\\\": 0.03, \\\"totalarea\\\": 110.34}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[428847.322, 7202947.939], [430531.487, 7202640.455], [434499.733, 7202605.988], [437175.562, 7200882.337], [437864.88, 7201451.532], [437868.012, 7200987.136], [437397.397, 7200739.678], [439410.179, 7199117.032], [439819.994, 7198411.25], [439204.069, 7197562.745], [436196.13, 7192290.351], [436231.204, 7192063.566], [435656.934, 7191684.974], [435235.839, 7191654.739], [435115.25, 7191830.112], [434669.573, 7191858.349], [433960.389, 7192115.759], [433847.015, 7191627.856], [432727.568, 7192047.491], [432658.919, 7191727.399], [431494.369, 7192393.78], [431317.272, 7192754.537], [431010.451, 7192923.102], [431116.938, 7193247.659], [430559.788, 7193536.526], [430017.755, 7194316.509], [429085.411, 7194342.518], [428478.902, 7194468.784], [428061.891, 7194854.602], [428168.936, 7195555.679], [427639.798, 7196168.853], [427685.054, 7196393.942], [427551.769, 7196734.489], [427244.4, 7196946.35], [426861.943, 7196873.546], [426386.798, 7197366.2], [426401.642, 7197497.376], [425994.868, 7198552.285], [426059.702, 7198661.89], [425865.918, 7199487.647], [425963.431, 7199665.062], [425853.555, 7199853.078], [425711.926, 7200044.475], [425549.598, 7200640.147], [425934.667, 7201222.769], [426231.047, 7201713.286], [426320.166, 7202154.113], [426094.275, 7202566.478], [426063.946, 7203160.564], [426188.062, 7203600.46], [428847.322, 7202947.939]]]}}, {\\\"id\\\": \\\"284\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sulkava\\\", \\\"elakelaisten_osuus\\\": 45.4, \\\"freshwarea\\\": 184.67, \\\"gml_id\\\": 1601100550, \\\"landarea\\\": 584.53, \\\"namefin\\\": \\\"Sulkava\\\", \\\"nameswe\\\": \\\"Sulkava\\\", \\\"natcode\\\": \\\"768\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 769.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[563273.618, 6868427.093], [564115.078, 6867829.082], [565167.757, 6867524.515], [565842.794, 6866638.781], [566988.322, 6867683.567], [568228.928, 6867164.19], [568722.229, 6867180.188], [569500.011, 6867698.485], [569888.15, 6868172.296], [570720.223, 6867348.738], [571027.606, 6866735.99], [572253.123, 6865646.544], [572562.287, 6866049.4], [573303.502, 6865558.489], [573455.45, 6864577.089], [574259.232, 6864085.096], [574906.976, 6863589.304], [574342.413, 6862559.617], [574682.579, 6862212.461], [574348.622, 6861391.991], [574849.124, 6860992.758], [577402.966, 6860082.385], [576588.838, 6859605.037], [576786.161, 6859344.045], [577690.969, 6859027.608], [577070.452, 6858768.382], [577579.692, 6858291.87], [578087.577, 6858608.223], [578238.59, 6857970.916], [578607.844, 6857763.004], [578542.674, 6857368.964], [578792.378, 6856946.138], [579123.274, 6857126.366], [579392.448, 6856223.265], [580353.34, 6855718.407], [580462.632, 6855405.232], [581500.695, 6855171.999], [581561.015, 6855432.359], [581915.595, 6855542.005], [582053.076, 6855096.052], [582587.374, 6854590.476], [582749.534, 6854104.132], [584009.397, 6853432.433], [583556.609, 6852186.287], [584348.251, 6850064.972], [584268.17, 6849070.799], [584629.018, 6847549.209], [583612.384, 6847307.347], [582066.02, 6846002.735], [582394.833, 6845036.051], [584161.911, 6843449.375], [584460.462, 6842858.541], [584199.803, 6841838.929], [584710.723, 6841188.944], [585601.548, 6841869.583], [586864.438, 6841335.645], [586606.364, 6840652.376], [586014.405, 6840074.388], [585672.466, 6840005.076], [585683.497, 6838833.284], [585848.52, 6838514.172], [585243.391, 6837605.558], [585505.73, 6837137.831], [586226.732, 6836547.557], [585808.047, 6835501.285], [587907.779, 6835183.09], [588371.796, 6834849.04], [590690.235, 6834915.923], [590992.797, 6835136.22], [591330.327, 6834387.747], [591888.926, 6833882.028], [592269.497, 6833254.819], [593234.68, 6834183.751], [593760.326, 6833995.264], [594302.583, 6834050.464], [594443.507, 6833696.3], [594777.368, 6833733.909], [595048.802, 6833545.281], [595452.44, 6832789.965], [595744.224, 6832068.957], [595617.233, 6831851.773], [597505.819, 6831469.189], [598618.328, 6831627.659], [599227.439, 6831146.244], [598745.625, 6830730.874], [599241.086, 6829990.462], [599307.567, 6829455.968], [598533.421, 6829144.652], [597940.423, 6829208.426], [597619.8, 6828645.344], [597192.748, 6828461.972], [597404.378, 6827658.561], [598384.79, 6827171.081], [598821.074, 6827254.708], [600207.502, 6826183.205], [600677.44, 6825974.952], [601124.9, 6825607.088], [601794.581, 6825409.88], [602617.762, 6825021.538], [603189.434, 6824870.647], [603980.674, 6824572.057], [600339.558, 6822975.738], [599879.391, 6823224.035], [599250.305, 6823211.564], [598091.278, 6823686.95], [597543.986, 6823690.271], [596879.88, 6823986.246], [596327.952, 6823806.064], [595272.67, 6824236.681], [594923.774, 6824175.856], [593477.986, 6825294.147], [592199.513, 6825932.155], [591716.596, 6826394.234], [590646.499, 6826788.529], [587864.266, 6826749.666], [587121.145, 6827138.609], [586569.765, 6827001.824], [586177.399, 6827047.386], [586395.002, 6828001.56], [586058.526, 6828573.553], [585738.566, 6829110.683], [585277.898, 6828946.853], [584587.357, 6829703.861], [584118.665, 6829798.836], [584166.167, 6828981.071], [584447.519, 6827937.625], [584796.447, 6826852.159], [584648.701, 6826447.081], [584182.876, 6826330.052], [584021.206, 6826928.51], [584100.892, 6827503.861], [583680.226, 6828236.349], [583557.144, 6829480.376], [583794.72, 6830055.486], [583404.19, 6830603.966], [582684.913, 6831009.704], [582127.652, 6831044.155], [581120.312, 6832104.754], [579668.981, 6831984.707], [579248.282, 6831650.784], [578505.68, 6831725.946], [578291.766, 6831909.67], [577349.447, 6831714.44], [577100.937, 6833161.852], [577091.934, 6834155.65], [576852.923, 6835255.503], [575305.146, 6835384.537], [574670.496, 6836021.601], [574556.94, 6836527.567], [574309.338, 6836821.746], [574499.658, 6837274.364], [574197.777, 6837670.301], [573711.671, 6838091.161], [573372.8, 6838219.175], [572988.862, 6838124.107], [572635.001, 6838538.036], [571797.839, 6838575.713], [571427.79, 6838245.043], [570952.08, 6838488.74], [570406.604, 6837973.144], [570204.384, 6838135.776], [568790.957, 6837713.434], [567324.266, 6838221.142], [567287.598, 6838709.174], [566990.776, 6838752.197], [567020.161, 6839150.936], [566796.446, 6839957.508], [566286.451, 6840111.941], [566223.373, 6840526.372], [564900.715, 6839271.268], [564231.085, 6839240.374], [563885.923, 6839498.867], [563914.703, 6840647.002], [563173.338, 6842380.4], [562954.277, 6842653.882], [562166.891, 6843209.649], [561799.234, 6843996.228], [560862.412, 6843935.044], [560325.53, 6843743.916], [559764.653, 6844169.439], [559411.896, 6843999.105], [559074.33, 6844394.542], [558558.23, 6845554.467], [558079.618, 6846251.081], [560399.755, 6847282.784], [560767.073, 6846806.574], [560817.9, 6846282.046], [561231.398, 6845944.544], [561829.523, 6845545.834], [562054.852, 6845748.76], [561892.281, 6846172.548], [561848.706, 6847417.505], [562232.834, 6847583.28], [562702.54, 6848352.274], [559250.541, 6852904.492], [558764.882, 6853231.858], [558320.907, 6853327.722], [557926.606, 6853751.392], [558035.749, 6855869.58], [559857.4, 6857389.78], [559890.398, 6858897.881], [560000.323, 6859268.519], [560656.158, 6859291.216], [561269.208, 6859660.771], [560309.702, 6860663.442], [559845.594, 6860703.252], [559306.371, 6860979.257], [558983.33, 6861381.357], [557239.91, 6861880.163], [558146.745, 6863303.456], [557890.322, 6863521.861], [558883.363, 6863811.232], [559217.998, 6863384.284], [559376.824, 6864280.18], [560752.952, 6865824.964], [561714.848, 6864720.916], [562103.712, 6865425.239], [562144.988, 6866146.946], [562387.986, 6866543.087], [562040.019, 6867280.985], [562494.728, 6868053.075], [562342.786, 6868356.651], [562706.237, 6868664.829], [563273.618, 6868427.093]]]}}, {\\\"id\\\": \\\"285\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"J\\\\u00e4rvenp\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 21.3, \\\"freshwarea\\\": 2.39, \\\"gml_id\\\": 1601100317, \\\"landarea\\\": 37.54, \\\"namefin\\\": \\\"J\\\\u00e4rvenp\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Tr\\\\u00e4sk\\\\u00e4nda\\\", \\\"natcode\\\": \\\"186\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 39.93}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[399460.778, 6709189.412], [398207.07, 6704408.364], [398206.29, 6704310.03], [396537.318, 6703928.307], [396597.639, 6703594.254], [397260.462, 6703680.032], [397346.868, 6703347.497], [396619.558, 6703175.581], [396736.427, 6702713.613], [395335.217, 6702375.806], [394387.911, 6702448.794], [392747.796, 6702964.899], [392604.146, 6703628.252], [392394.005, 6703964.248], [393296.122, 6704419.685], [392296.152, 6706000.394], [392338.19, 6706726.984], [392829.824, 6706758.376], [392713.103, 6707077.764], [393217.887, 6707520.591], [392299.561, 6710040.347], [394059.184, 6709762.275], [394119.612, 6710156.906], [395737.502, 6709879.18], [395536.093, 6709458.64], [395662.383, 6708853.887], [396040.624, 6708549.29], [396215.745, 6709084.51], [396648.029, 6709421.917], [397947.388, 6709203.435], [398475.842, 6710386.973], [399460.778, 6709189.412]]]}}, {\\\"id\\\": \\\"286\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyh\\\\u00e4ranta\\\", \\\"elakelaisten_osuus\\\": 31.7, \\\"freshwarea\\\": 4.87, \\\"gml_id\\\": 1601100338, \\\"landarea\\\": 143.53, \\\"namefin\\\": \\\"Pyh\\\\u00e4ranta\\\", \\\"nameswe\\\": \\\"Pyh\\\\u00e4ranta\\\", \\\"natcode\\\": \\\"631\\\", \\\"seawarea\\\": 143.35, \\\"totalarea\\\": 291.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[191458.446, 6787741.215], [193847.464, 6787633.763], [194966.83, 6785723.48], [195249.45, 6785543.526], [195400.958, 6785026.314], [196129.714, 6784587.862], [196682.383, 6784056.673], [196920.866, 6784170.78], [197472.825, 6783588.138], [197407.806, 6783128.043], [198821.076, 6781791.058], [199100.466, 6778656.456], [200197.074, 6777451.775], [201491.84, 6776415.871], [201720.532, 6775742.749], [201697.544, 6775310.987], [204310.187, 6775721.641], [205548.246, 6775583.225], [206435.889, 6776003.887], [208214.695, 6775891.548], [208642.13, 6775986.41], [207953.181, 6778071.221], [208863.61, 6778549.089], [209000.557, 6779364.385], [209781.948, 6780489.404], [211097.822, 6776529.702], [211113.686, 6774576.749], [211671.977, 6774130.133], [211038.651, 6773769.144], [208035.459, 6770839.404], [207393.043, 6770872.102], [207679.226, 6770119.047], [207979.512, 6769735.557], [207266.757, 6769371.405], [206814.661, 6769388.597], [206008.913, 6769665.909], [205320.239, 6770871.425], [205063.931, 6771588.796], [204664.724, 6771521.696], [204206.978, 6771898.137], [204411.807, 6772580.121], [204616.913, 6772774.492], [205142.545, 6772866.876], [205231.006, 6773498.06], [204816.094, 6773668.626], [202331.728, 6774071.747], [201571.367, 6773362.64], [201949.404, 6772680.152], [203122.906, 6771259.358], [202699.819, 6770651.285], [202875.589, 6770441.269], [203164.127, 6769479.752], [203122.57, 6767786.499], [203189.415, 6765815.775], [202330.463, 6765536.114], [203158.009, 6764900.614], [201312.686, 6763733.792], [202002.115, 6763592.887], [201798.599, 6762861.552], [201981.428, 6762310.155], [201405.973, 6762262.32], [201064.467, 6761552.539], [200700.634, 6761095.36], [200351.829, 6761033.911], [200256.701, 6761531.32], [200017.36, 6761831.076], [199408.144, 6763407.836], [199427.626, 6763697.38], [198787.365, 6764910.614], [197907.506, 6765832.768], [197414.597, 6766058.837], [197383.345, 6766777.27], [196800.934, 6767108.387], [196780.809, 6767638.41], [197022.913, 6768198.717], [197811.348, 6768569.372], [197909.875, 6771024.885], [197619.845, 6770845.895], [197611.528, 6770582.964], [197540.091, 6770527.402], [197455.754, 6770573.042], [197453.77, 6770781.402], [195811.213, 6772153.836], [195760.07, 6772717.424], [193683.35, 6775468.78], [193838.755, 6775659.137], [193854.823, 6775929.442], [193432.824, 6776390.466], [192878.408, 6776896.987], [192565.628, 6777104.596], [191908.648, 6777765.916], [191729.406, 6778388.409], [188815.565, 6782313.132], [164821.728, 6792899.912], [164981.865, 6793621.183], [191458.446, 6787741.215]]]}}, {\\\"id\\\": \\\"287\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Savukoski\\\", \\\"elakelaisten_osuus\\\": 39.1, \\\"freshwarea\\\": 56.93, \\\"gml_id\\\": 1601100513, \\\"landarea\\\": 6439.58, \\\"namefin\\\": \\\"Savukoski\\\", \\\"nameswe\\\": \\\"Savukoski\\\", \\\"natcode\\\": \\\"742\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 6496.51}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[576610.0, 7561931.7], [596951.2, 7553001.9], [599805.1, 7547503.9], [612091.882, 7523305.435], [610585.848, 7520347.523], [610585.457, 7520346.754], [605184.812, 7509739.683], [596819.988, 7500858.69], [594311.233, 7493036.835], [588174.998, 7484023.891], [583260.56, 7475568.692], [583137.732, 7471793.547], [578177.253, 7459365.977], [573223.38, 7449990.36], [573419.472, 7449242.715], [572715.158, 7447905.026], [564805.726, 7446058.54], [559024.553, 7444077.628], [548268.155, 7447959.284], [548466.512, 7447476.611], [548197.936, 7447347.103], [547920.534, 7448048.94], [547911.111, 7448223.763], [545054.425, 7450928.096], [541746.293, 7451259.921], [541615.945, 7451120.981], [538542.516, 7451098.721], [537908.944, 7451205.434], [538242.166, 7453184.812], [538598.124, 7453395.22], [538454.415, 7453657.92], [538222.882, 7453765.788], [537269.345, 7455972.184], [538056.718, 7456859.236], [536861.351, 7457902.307], [536573.179, 7457570.242], [535977.975, 7458949.387], [536314.636, 7458866.071], [536305.776, 7459228.818], [535885.704, 7459163.185], [533148.707, 7465518.432], [528617.033, 7468487.238], [528669.08, 7467994.474], [519210.187, 7473355.515], [518560.162, 7473419.541], [518621.653, 7473682.906], [509506.022, 7478809.643], [513185.822, 7486135.346], [512869.511, 7486071.275], [512853.326, 7486752.311], [513363.212, 7486784.008], [513413.674, 7486592.699], [516657.37, 7493013.882], [516523.311, 7493382.808], [516917.676, 7493530.353], [517346.509, 7494145.132], [516954.873, 7495290.476], [517648.901, 7495662.015], [518465.6, 7494094.658], [534119.547, 7503959.733], [536679.074, 7510311.335], [566730.011, 7563043.487], [566730.473, 7563044.296], [566730.506, 7563044.354], [568226.8, 7565660.7], [576610.0, 7561931.7]]]}}, {\\\"id\\\": \\\"288\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pori\\\", \\\"elakelaisten_osuus\\\": 30.1, \\\"freshwarea\\\": 61.86, \\\"gml_id\\\": 1601100573, \\\"landarea\\\": 1156.01, \\\"namefin\\\": \\\"Pori\\\", \\\"nameswe\\\": \\\"Bj\\\\u00f6rneborg\\\", \\\"natcode\\\": \\\"609\\\", \\\"seawarea\\\": 844.13, \\\"totalarea\\\": 2062.0}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[213153.252, 6858227.025], [213431.768, 6857756.337], [213867.808, 6858049.795], [215292.618, 6857686.303], [215741.599, 6857513.818], [216190.941, 6857731.503], [216528.796, 6857374.843], [220287.519, 6856434.139], [221808.002, 6857384.242], [225918.266, 6851590.76], [226698.672, 6850495.926], [227240.796, 6850509.842], [227728.139, 6849487.788], [234214.694, 6843144.308], [236817.074, 6841335.77], [237551.207, 6841525.632], [238037.43, 6841477.731], [238094.685, 6841737.083], [239311.797, 6841947.339], [240089.9, 6841913.021], [240882.562, 6841770.472], [241501.592, 6841725.197], [241943.967, 6843649.823], [242340.69, 6843046.876], [243340.289, 6843198.915], [243933.05, 6843084.753], [244192.479, 6843463.146], [244603.476, 6843636.468], [244808.115, 6843391.425], [247567.385, 6845977.933], [247977.686, 6849382.724], [248193.87, 6849542.349], [253389.279, 6850129.248], [253738.87, 6850546.523], [253401.245, 6851070.005], [253410.213, 6851483.381], [253738.166, 6851470.098], [254323.7, 6851344.839], [254730.855, 6851183.489], [256002.203, 6850467.681], [264982.579, 6847237.863], [269222.456, 6848033.136], [269868.088, 6848072.825], [270115.518, 6846446.2], [271356.439, 6845135.285], [269719.358, 6844869.151], [269965.465, 6843325.258], [271623.297, 6843948.921], [271945.638, 6845525.215], [272494.798, 6845579.075], [272641.862, 6845005.785], [273339.148, 6845099.773], [273118.52, 6844753.645], [273097.757, 6843059.366], [273597.562, 6842067.542], [272349.674, 6839794.226], [270186.02, 6841924.132], [271736.938, 6837141.473], [268959.881, 6835580.478], [268952.552, 6834951.671], [268526.519, 6833046.71], [266361.408, 6831103.776], [265331.352, 6831822.259], [256997.689, 6825762.4], [247459.686, 6835751.501], [239786.04, 6836441.196], [237735.079, 6835218.132], [237832.52, 6834865.638], [237604.673, 6834119.628], [236597.005, 6835196.476], [236199.58, 6835004.226], [236705.229, 6833132.339], [236191.412, 6833122.228], [235608.622, 6833990.444], [235503.669, 6833498.103], [234576.631, 6832853.686], [233523.503, 6834035.055], [232955.457, 6833850.217], [233678.217, 6833113.631], [233506.439, 6832910.476], [232307.876, 6833638.112], [230896.902, 6832882.707], [227893.757, 6829593.382], [227590.59, 6828603.917], [227833.796, 6828083.784], [227697.626, 6826727.964], [227101.171, 6826875.488], [227244.814, 6825840.046], [227196.595, 6825268.014], [226880.726, 6824857.103], [226746.977, 6824134.989], [226631.804, 6822877.583], [223545.99, 6822273.891], [222930.911, 6821748.896], [223085.804, 6821203.094], [222982.021, 6820161.191], [223215.874, 6819828.828], [223076.741, 6818017.723], [222750.075, 6817836.414], [222569.956, 6816742.727], [222549.467, 6816618.906], [217790.058, 6817656.44], [215160.166, 6821647.308], [214725.689, 6821843.447], [211065.023, 6821297.569], [209519.218, 6822225.263], [209562.143, 6822429.728], [209262.224, 6822609.127], [208979.267, 6822542.926], [207926.737, 6823170.663], [208161.603, 6824000.184], [208476.605, 6825314.244], [203577.811, 6828336.864], [202168.603, 6831250.639], [174575.7, 6837156.888], [177304.979, 6849902.846], [177110.724, 6855934.835], [202499.941, 6856750.518], [205498.186, 6855876.09], [206708.163, 6855811.34], [212339.081, 6857445.004], [212571.592, 6858259.586], [213153.252, 6858227.025]]]}}, {\\\"id\\\": \\\"289\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Karijoki\\\", \\\"elakelaisten_osuus\\\": 40.4, \\\"freshwarea\\\": 0.78, \\\"gml_id\\\": 1601100369, \\\"landarea\\\": 185.76, \\\"namefin\\\": \\\"Karijoki\\\", \\\"nameswe\\\": \\\"B\\\\u00f6tom\\\", \\\"natcode\\\": \\\"218\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 186.54}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[228225.214, 6909312.401], [225119.667, 6909119.52], [225163.871, 6909648.633], [227207.345, 6909689.491], [228071.129, 6909811.776], [228225.214, 6909312.401]]], [[[219607.313, 6932789.093], [219427.77, 6932188.97], [220183.393, 6931963.498], [223041.786, 6930607.193], [223601.767, 6931107.157], [223738.186, 6930971.862], [223527.016, 6930406.901], [227575.989, 6928511.906], [227380.163, 6927597.212], [227984.149, 6927516.944], [228009.925, 6928310.946], [234990.134, 6925005.508], [235016.563, 6924992.6], [235006.972, 6924928.098], [234319.031, 6920908.979], [237376.971, 6913468.796], [236941.459, 6913476.473], [236769.076, 6912952.904], [236439.099, 6913273.385], [234558.9, 6917838.143], [232038.375, 6916571.412], [231256.322, 6910737.189], [228413.249, 6909859.476], [228152.922, 6909981.352], [227743.462, 6910173.046], [227572.087, 6910641.65], [227581.819, 6911175.92], [227140.227, 6911587.763], [226954.213, 6912158.064], [227232.29, 6912460.38], [226903.183, 6912491.273], [227132.621, 6912942.509], [227281.822, 6913428.553], [226856.354, 6914006.684], [226231.269, 6914035.293], [225014.052, 6914546.209], [225315.526, 6914891.255], [224821.679, 6915201.47], [224296.246, 6914596.383], [223586.714, 6914542.365], [223760.954, 6915847.111], [223474.936, 6916382.241], [223915.927, 6916978.482], [224659.862, 6921051.008], [224215.351, 6921629.329], [224488.237, 6922000.135], [224207.702, 6922197.404], [223950.667, 6922049.032], [223712.47, 6922239.417], [224114.019, 6922909.18], [225011.905, 6923315.604], [224950.128, 6923642.274], [225201.122, 6924188.49], [225256.384, 6924650.712], [225167.371, 6925052.695], [224426.972, 6925681.659], [223826.055, 6925757.535], [223397.689, 6926552.538], [222158.918, 6926330.964], [222267.203, 6925770.216], [221718.688, 6925671.973], [221916.423, 6926284.112], [220473.577, 6926013.739], [220556.156, 6925612.214], [220176.156, 6925571.195], [220029.246, 6925930.535], [218955.365, 6925730.881], [218593.415, 6925888.223], [218436.99, 6926891.426], [218046.269, 6927149.566], [218093.547, 6927685.11], [216976.293, 6928462.479], [218572.718, 6930195.211], [218501.355, 6930941.002], [218770.84, 6931057.236], [218962.582, 6931422.913], [218707.443, 6931647.397], [219000.159, 6933062.97], [219607.313, 6932789.093]]]]}}, {\\\"id\\\": \\\"290\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyht\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 30.5, \\\"freshwarea\\\": 11.77, \\\"gml_id\\\": 1601100598, \\\"landarea\\\": 324.63, \\\"namefin\\\": \\\"Pyht\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Pyttis\\\", \\\"natcode\\\": \\\"624\\\", \\\"seawarea\\\": 444.56, \\\"totalarea\\\": 780.96}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[482653.225, 6723766.967], [486508.294, 6715561.273], [486511.377, 6715554.71], [486254.226, 6715441.911], [490323.991, 6706636.797], [491186.214, 6704307.832], [491365.343, 6701428.397], [491241.972, 6701099.185], [491398.609, 6700870.421], [493088.51, 6673729.015], [486952.213, 6673729.285], [485664.923, 6672514.456], [480933.752, 6670541.394], [476843.435, 6682646.971], [476270.228, 6690201.573], [475673.652, 6692068.282], [472528.212, 6694514.693], [471050.994, 6696805.354], [472052.984, 6697416.916], [472040.077, 6699096.736], [471700.599, 6701373.312], [469890.898, 6706150.359], [469660.843, 6706380.052], [469860.805, 6706690.84], [470539.481, 6706830.354], [470389.587, 6707191.344], [470786.323, 6707787.507], [470656.458, 6708466.269], [470940.938, 6708822.921], [471969.839, 6708710.146], [472210.74, 6708947.853], [472074.592, 6709365.082], [472478.425, 6709944.152], [472901.455, 6709897.975], [473171.244, 6710238.94], [473158.546, 6710610.79], [472652.804, 6711499.786], [472072.278, 6711585.185], [471924.734, 6712054.793], [472605.358, 6712262.216], [472965.51, 6712626.871], [473067.665, 6713232.927], [473394.934, 6713113.479], [473503.892, 6712833.593], [475008.681, 6713299.022], [475070.653, 6713753.838], [474886.715, 6715538.614], [476262.645, 6719264.126], [476977.992, 6719981.479], [477150.218, 6720959.217], [477799.487, 6721389.445], [477789.978, 6721786.969], [477933.466, 6722243.963], [477973.473, 6722914.56], [478291.188, 6723244.933], [480813.865, 6724119.206], [482653.225, 6723766.967]]]}}, {\\\"id\\\": \\\"291\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Uusikaupunki\\\", \\\"elakelaisten_osuus\\\": 32.7, \\\"freshwarea\\\": 47.41, \\\"gml_id\\\": 1601100052, \\\"landarea\\\": 502.86, \\\"namefin\\\": \\\"Uusikaupunki\\\", \\\"nameswe\\\": \\\"Nystad\\\", \\\"natcode\\\": \\\"895\\\", \\\"seawarea\\\": 1382.16, \\\"totalarea\\\": 1932.43}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[181860.132, 6739594.505], [181199.112, 6736686.356], [178213.333, 6739095.432], [177185.851, 6739825.218], [177631.69, 6740502.167], [177675.64, 6740353.826], [177795.715, 6740450.908], [177752.194, 6740758.881], [177803.031, 6740867.18], [181860.132, 6739594.505]]], [[[188815.565, 6782313.132], [191729.406, 6778388.409], [191908.648, 6777765.916], [192565.628, 6777104.596], [192878.408, 6776896.987], [193432.824, 6776390.466], [193854.823, 6775929.442], [193838.755, 6775659.137], [193683.35, 6775468.78], [195760.07, 6772717.424], [195811.213, 6772153.836], [197453.77, 6770781.402], [197455.754, 6770573.042], [197540.091, 6770527.402], [197611.528, 6770582.964], [197619.845, 6770845.895], [197909.875, 6771024.885], [197811.348, 6768569.372], [197022.913, 6768198.717], [196780.809, 6767638.41], [196800.934, 6767108.387], [197383.345, 6766777.27], [197414.597, 6766058.837], [197907.506, 6765832.768], [198787.365, 6764910.614], [199427.626, 6763697.38], [199408.144, 6763407.836], [200017.36, 6761831.076], [200256.701, 6761531.32], [200351.829, 6761033.911], [200700.634, 6761095.36], [201064.467, 6761552.539], [201405.973, 6762262.32], [201981.428, 6762310.155], [202311.607, 6762338.842], [203098.809, 6761868.535], [202713.595, 6759160.505], [203613.984, 6758875.562], [203467.033, 6757932.852], [203997.226, 6757986.793], [204610.461, 6757284.498], [206354.632, 6758196.21], [207209.022, 6757648.451], [207570.197, 6757761.354], [208264.087, 6757305.656], [208134.451, 6757058.005], [209058.01, 6756478.994], [209298.123, 6756556.339], [209473.921, 6756463.109], [209510.838, 6756193.78], [210684.683, 6755462.5], [212099.839, 6754039.705], [212999.714, 6752576.085], [212523.474, 6752544.608], [212330.693, 6750941.067], [212441.0, 6750580.383], [214224.941, 6748708.114], [213317.294, 6748691.146], [213134.531, 6747495.92], [212946.885, 6746527.537], [211382.33, 6745241.653], [210008.572, 6745307.388], [209566.051, 6745798.403], [208709.985, 6745669.383], [207717.072, 6745986.686], [205377.236, 6745914.507], [204342.435, 6746212.549], [203530.938, 6746118.53], [203656.075, 6745279.164], [202834.336, 6744620.644], [202429.691, 6744059.442], [202584.1, 6743724.792], [203587.887, 6743872.998], [203822.414, 6743605.416], [204088.896, 6743176.643], [203838.573, 6741823.349], [202936.527, 6741696.549], [201887.743, 6741113.826], [201592.465, 6740609.898], [202141.21, 6740108.554], [202358.026, 6739734.175], [201868.138, 6739063.936], [201870.467, 6739058.052], [201233.865, 6739029.961], [200340.777, 6739255.801], [201051.88, 6738427.542], [200965.809, 6738211.945], [199938.138, 6737671.952], [200822.084, 6737415.19], [201741.225, 6737571.959], [202684.719, 6736050.606], [203018.037, 6735285.936], [203578.276, 6735292.907], [203653.232, 6734623.52], [204495.941, 6733471.807], [204556.514, 6733083.118], [204078.315, 6732798.927], [203464.428, 6732707.528], [203287.119, 6732996.678], [202944.206, 6733250.651], [202747.62, 6733106.47], [201911.684, 6732992.367], [201893.511, 6733298.73], [200836.804, 6732996.353], [200078.324, 6733046.312], [199276.768, 6732741.728], [199128.857, 6732834.778], [199431.638, 6733873.249], [198131.59, 6734299.788], [197700.902, 6734193.418], [197256.222, 6733779.525], [196985.835, 6733986.17], [196665.219, 6733749.633], [195768.046, 6734082.207], [195994.392, 6734576.494], [196341.432, 6734448.129], [196328.715, 6734486.28], [196328.404, 6734487.214], [196328.1, 6734488.125], [196207.868, 6734848.822], [196668.657, 6734991.766], [195701.788, 6735657.636], [195417.963, 6735358.742], [195348.206, 6735108.993], [195142.247, 6734893.467], [195011.908, 6734410.759], [194961.244, 6734167.141], [195019.65, 6733674.817], [194729.923, 6733617.239], [194804.705, 6733371.103], [194663.56, 6733077.918], [194263.898, 6733403.293], [194219.169, 6733586.707], [193508.331, 6734567.698], [193295.424, 6733693.414], [193149.394, 6733378.276], [192904.154, 6733453.59], [192613.512, 6734127.278], [191924.172, 6734143.657], [191989.062, 6735179.783], [191905.423, 6735915.885], [191405.895, 6736340.347], [190654.462, 6738021.407], [190156.056, 6738405.334], [190017.339, 6738867.478], [189997.339, 6739222.377], [190107.869, 6739672.881], [185267.85, 6743788.024], [174109.351, 6750276.195], [144380.958, 6769674.449], [164821.728, 6792899.912], [188815.565, 6782313.132]]]]}}, {\\\"id\\\": \\\"292\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuopio\\\", \\\"elakelaisten_osuus\\\": 25.7, \\\"freshwarea\\\": 1085.34, \\\"gml_id\\\": 1601100489, \\\"landarea\\\": 3241.01, \\\"namefin\\\": \\\"Kuopio\\\", \\\"nameswe\\\": \\\"Kuopio\\\", \\\"natcode\\\": \\\"297\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 4326.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[557094.414, 7029244.035], [557441.784, 7028753.936], [557532.203, 7028425.583], [558011.004, 7028036.077], [558212.327, 7027554.337], [558670.203, 7027981.751], [558908.552, 7028425.443], [559271.98, 7028014.202], [559737.297, 7027970.456], [559892.367, 7027487.27], [560463.451, 7027478.207], [560588.414, 7028000.62], [560983.814, 7027885.288], [562945.666, 7029138.716], [563553.24, 7022845.424], [564001.617, 7022781.387], [567136.426, 7022506.299], [567946.912, 7028009.536], [568112.538, 7028133.289], [568844.893, 7027583.935], [569630.416, 7027691.876], [570397.483, 7028151.367], [570564.925, 7027610.211], [571243.153, 7027121.488], [571229.711, 7026652.466], [571583.799, 7026519.878], [571690.381, 7025777.516], [572001.571, 7025540.166], [572020.88, 7025258.279], [571907.272, 7024836.576], [572118.548, 7024186.356], [572729.086, 7023728.581], [572690.568, 7023195.086], [572366.502, 7023366.358], [572233.703, 7023025.54], [572434.869, 7022440.759], [572127.857, 7022240.514], [572188.501, 7021996.914], [572008.933, 7021735.308], [571971.279, 7020823.239], [572249.299, 7020448.631], [572398.472, 7020075.732], [572194.621, 7019450.959], [572583.656, 7019413.527], [572648.601, 7018981.317], [572876.663, 7018429.37], [572906.368, 7017753.735], [573142.962, 7017085.35], [572668.302, 7016790.715], [573310.064, 7014783.988], [573697.951, 7013932.525], [575299.962, 7012626.076], [577187.285, 7012453.358], [577484.392, 7012157.911], [577843.975, 7012082.208], [578175.492, 7011431.242], [580042.272, 7010005.696], [580291.392, 7009651.636], [581015.594, 7009316.911], [583199.352, 7008593.925], [585462.344, 7007121.275], [585976.078, 7005720.012], [588843.378, 7002040.871], [583562.361, 7000386.901], [582972.905, 7000391.019], [582304.669, 7000640.637], [577962.833, 7000380.05], [578030.113, 6999120.953], [577129.47, 6999071.876], [577163.756, 6998612.34], [575595.299, 6998272.453], [574258.551, 6998400.855], [574061.276, 6998169.958], [574257.162, 6997527.924], [574040.726, 6997165.868], [574564.49, 6996920.37], [574636.769, 6996431.194], [571598.39, 6995079.477], [572071.823, 6994820.198], [571884.101, 6994396.105], [571628.25, 6994530.892], [571860.211, 6993989.585], [571478.993, 6993796.211], [571805.805, 6993098.427], [571156.377, 6993264.364], [570748.676, 6993623.086], [570678.616, 6992184.047], [570809.415, 6991975.702], [571393.852, 6992250.435], [571640.112, 6992014.534], [571733.551, 6991275.974], [572335.585, 6991282.943], [574163.694, 6988158.428], [574577.481, 6987854.197], [573783.207, 6987117.207], [573702.404, 6986522.452], [573248.6, 6986164.362], [573057.551, 6986388.982], [572862.649, 6986142.955], [572387.838, 6986388.113], [572068.143, 6985692.157], [572241.373, 6985197.05], [571983.445, 6984329.84], [570284.522, 6982319.942], [570600.289, 6981089.902], [569542.577, 6980297.982], [566535.388, 6979928.196], [563359.47, 6980478.152], [562037.08, 6981198.842], [561846.791, 6980728.921], [563188.166, 6980011.06], [564631.672, 6979793.218], [565321.606, 6979442.186], [566115.64, 6979133.73], [566453.146, 6978652.992], [566361.821, 6978303.778], [565862.183, 6978290.35], [565479.294, 6978187.781], [565132.786, 6977872.8], [564984.039, 6977614.375], [564588.991, 6977264.844], [565066.422, 6976756.052], [566047.627, 6976518.655], [566013.352, 6975319.04], [565750.758, 6975348.326], [565713.776, 6975023.558], [564554.442, 6975385.203], [564418.603, 6974762.455], [566133.015, 6973965.589], [565739.976, 6973765.767], [565630.927, 6973071.647], [563345.045, 6973925.886], [563216.202, 6973460.573], [563518.336, 6973235.557], [563758.138, 6972821.483], [563921.596, 6972288.933], [563904.827, 6971986.284], [563574.132, 6971810.111], [563007.087, 6972026.803], [561742.102, 6973172.78], [560508.395, 6973864.092], [560055.784, 6973274.028], [559143.678, 6973267.712], [559343.081, 6972366.99], [560396.461, 6971570.12], [560929.351, 6970918.187], [561557.605, 6969988.568], [561447.753, 6969559.541], [561612.989, 6969220.679], [561112.914, 6968470.716], [561692.516, 6967941.18], [562099.173, 6967444.743], [562422.506, 6967068.017], [562706.893, 6966552.034], [563289.883, 6966313.925], [563640.182, 6966049.711], [564100.564, 6966025.021], [564508.293, 6965089.983], [567334.243, 6967785.605], [567418.776, 6967470.752], [567339.676, 6966607.574], [567260.324, 6966269.145], [567509.711, 6965528.522], [568048.271, 6965776.447], [568239.264, 6964701.207], [567908.612, 6964056.469], [567745.495, 6963129.954], [566521.504, 6963132.529], [563816.703, 6960456.932], [564334.853, 6960318.624], [564891.235, 6960473.694], [565222.803, 6961126.907], [566948.311, 6962657.428], [567859.272, 6961597.938], [568016.083, 6961152.694], [568394.355, 6960047.031], [567964.938, 6960009.314], [566999.018, 6960287.285], [565949.591, 6959995.959], [566531.461, 6958786.938], [567383.612, 6957241.162], [567996.016, 6956986.575], [567878.446, 6955877.671], [567941.005, 6955711.724], [568532.682, 6955860.714], [568819.566, 6955646.357], [569049.477, 6955140.742], [569404.581, 6954807.93], [569651.836, 6954411.842], [569703.954, 6953769.01], [570162.69, 6953150.803], [570479.919, 6952801.036], [570569.272, 6952584.973], [570379.925, 6952493.116], [569718.567, 6952673.969], [567637.326, 6947559.207], [567248.3, 6947448.528], [567926.799, 6946736.052], [568561.461, 6946557.71], [569294.955, 6946037.91], [570186.575, 6945325.348], [569438.188, 6945314.793], [569817.745, 6944339.056], [569336.414, 6944118.444], [569882.075, 6943616.534], [569835.846, 6943143.769], [569312.856, 6943248.523], [568655.317, 6943945.236], [568195.605, 6943594.374], [568505.783, 6943046.298], [568466.701, 6942787.703], [568817.062, 6942434.948], [569544.574, 6941512.128], [568973.509, 6940948.752], [568342.559, 6941609.079], [567848.657, 6941771.11], [566645.738, 6942582.472], [564615.658, 6942497.19], [563118.27, 6941441.406], [562588.58, 6942035.661], [562640.145, 6944053.744], [561828.165, 6945133.301], [561782.772, 6946876.794], [559728.694, 6948049.003], [559217.304, 6947530.609], [556389.934, 6949213.005], [555685.117, 6949654.02], [554996.87, 6949791.745], [554550.377, 6949552.751], [554547.38, 6949263.368], [553947.521, 6949459.983], [553010.086, 6949473.017], [551884.943, 6950042.347], [551430.062, 6949448.501], [550972.326, 6949414.074], [550561.651, 6948803.844], [549338.19, 6948945.149], [549042.107, 6949370.574], [548411.27, 6949641.746], [548027.018, 6949316.687], [547890.798, 6949450.723], [547969.928, 6950055.071], [548618.07, 6950665.846], [548670.243, 6951503.907], [548057.379, 6951814.67], [545046.494, 6949721.152], [544157.069, 6950405.606], [543667.842, 6950577.699], [543431.869, 6949912.11], [543431.353, 6949337.644], [543247.745, 6948906.933], [542661.584, 6949490.974], [542562.618, 6950078.638], [542245.428, 6950214.043], [542082.28, 6949943.487], [542135.585, 6949593.049], [540542.74, 6949125.708], [540025.445, 6949445.277], [539634.005, 6949222.664], [537886.938, 6950908.428], [536519.736, 6951176.19], [536160.9, 6949563.607], [534177.795, 6949838.285], [530558.604, 6951145.425], [530341.128, 6951204.118], [529784.299, 6951077.945], [529258.971, 6951490.784], [527976.615, 6952093.997], [527522.074, 6951584.262], [526541.828, 6951640.78], [524686.223, 6952902.41], [524395.833, 6954055.542], [523396.204, 6954278.834], [523295.83, 6953505.962], [522959.804, 6953330.837], [522406.266, 6952234.557], [521845.822, 6952905.912], [521802.189, 6952112.923], [521346.581, 6952257.896], [520978.755, 6952315.137], [520488.591, 6951967.626], [519473.588, 6952198.684], [518772.532, 6952814.493], [518488.637, 6953277.532], [517848.327, 6953592.008], [517430.696, 6953497.248], [516823.147, 6953596.338], [516429.57, 6953754.81], [514109.286, 6952466.858], [511430.017, 6955067.808], [511097.958, 6954912.37], [510514.026, 6955395.801], [510350.426, 6955832.742], [509768.685, 6956417.911], [509358.502, 6956696.132], [509236.082, 6956930.435], [508946.211, 6957137.913], [508366.346, 6957233.224], [507904.057, 6957588.078], [507831.691, 6957898.008], [507108.066, 6958063.131], [506605.71, 6958363.248], [506211.11, 6958768.485], [505977.348, 6959220.208], [503796.409, 6959137.826], [504189.07, 6958807.264], [502625.302, 6957532.751], [502127.962, 6957720.401], [501545.781, 6958464.222], [501019.223, 6958589.69], [500611.689, 6958409.838], [498822.701, 6960909.122], [499042.144, 6962060.719], [498498.863, 6965137.158], [495364.254, 6968874.07], [495579.864, 6970125.147], [494940.411, 6971090.161], [495101.701, 6971452.541], [495761.173, 6971385.831], [495458.162, 6972297.949], [495458.252, 6972988.901], [495327.37, 6973732.135], [496269.169, 6974196.868], [495324.718, 6975274.502], [495792.182, 6975672.022], [496153.969, 6975319.891], [496957.478, 6976209.76], [496788.469, 6977036.498], [496122.575, 6979147.55], [495527.622, 6980448.69], [494735.94, 6980756.519], [494427.81, 6981565.354], [495175.069, 6982998.468], [494704.849, 6984371.583], [495841.37, 6984661.679], [496198.322, 6985004.988], [497054.2, 6985153.007], [498058.414, 6984091.357], [498958.396, 6983725.379], [499698.164, 6984480.136], [500685.008, 6984759.91], [500723.841, 6984459.311], [501436.018, 6984658.915], [501282.717, 6985898.249], [501760.592, 6986065.394], [502424.851, 6986615.082], [502398.483, 6986189.493], [502807.635, 6986014.222], [503221.028, 6986040.062], [503800.839, 6985581.996], [503865.355, 6985929.274], [503656.373, 6986725.824], [504229.005, 6986921.067], [504619.832, 6987298.73], [505001.036, 6987198.132], [505311.872, 6986871.513], [505898.623, 6986408.651], [506358.75, 6986208.614], [507212.07, 6986955.85], [507194.793, 6987224.764], [505120.986, 6989141.293], [504552.984, 6988963.902], [503917.398, 6990466.969], [504321.631, 6990650.452], [504144.258, 6991028.409], [504071.068, 6991435.717], [502541.913, 6992643.816], [501587.627, 6993515.362], [501137.999, 6993821.181], [500399.728, 6994172.49], [500157.106, 6994409.566], [499807.347, 6995130.311], [498903.487, 6996122.111], [498408.271, 6997183.605], [497943.58, 6997275.99], [497844.062, 6997818.385], [498009.279, 6998227.844], [497811.369, 6998703.022], [497784.818, 6999144.74], [497575.655, 6999398.398], [497857.372, 6999731.098], [497492.725, 7000100.187], [497387.255, 7000530.231], [501070.521, 7001496.586], [500279.211, 7002309.036], [499742.691, 7003310.533], [499399.997, 7003435.796], [499155.912, 7003864.629], [498811.965, 7003707.048], [498268.889, 7004010.365], [497784.633, 7003944.123], [497626.988, 7005035.554], [498806.934, 7004441.985], [499282.491, 7004878.75], [499732.24, 7005085.662], [500540.879, 7005108.534], [501942.84, 7004369.198], [502357.023, 7004457.552], [503226.432, 7003903.432], [503661.024, 7003958.667], [504046.773, 7003721.481], [504504.419, 7003803.497], [504762.741, 7003447.725], [505586.54, 7003707.487], [501839.612, 7007339.948], [501824.911, 7007853.003], [502351.137, 7008735.733], [502584.798, 7010155.189], [502136.108, 7011078.042], [502396.204, 7012428.29], [502775.75, 7012456.188], [502722.302, 7013669.675], [501662.603, 7014122.743], [502310.662, 7015205.084], [502990.346, 7014581.464], [503573.985, 7015107.806], [504555.041, 7014543.769], [504909.129, 7014533.182], [505424.89, 7014151.155], [506214.962, 7014024.35], [505325.058, 7015338.305], [505238.408, 7016033.848], [505707.069, 7016081.069], [505910.411, 7016520.853], [507238.381, 7016001.593], [507432.255, 7016515.671], [507422.527, 7017034.097], [506707.018, 7018096.022], [506846.428, 7019816.87], [506443.759, 7020527.88], [506040.449, 7020552.632], [506597.452, 7020942.922], [506862.461, 7021387.212], [506669.038, 7021648.505], [508270.567, 7022901.362], [508756.458, 7023137.825], [509161.972, 7022394.746], [509229.081, 7021929.599], [509827.964, 7022043.668], [511128.942, 7021728.105], [511611.753, 7020822.474], [513086.861, 7020569.087], [513568.468, 7020363.973], [513589.667, 7019121.674], [514490.31, 7018206.35], [514974.015, 7018311.911], [515413.774, 7012715.975], [516959.866, 7010436.807], [517559.436, 7008763.087], [516828.432, 7008438.614], [516629.92, 7007348.253], [517773.765, 7006501.503], [518007.281, 7004928.94], [518915.511, 7005572.486], [519632.823, 7005379.869], [523371.816, 7005531.333], [524060.834, 7006118.6], [524803.534, 7006266.006], [525016.919, 7005790.341], [525370.843, 7005560.824], [525688.901, 7004563.872], [526137.309, 7004447.49], [526526.957, 7003766.368], [524649.618, 7003027.454], [524285.961, 7003526.25], [523785.462, 7003599.317], [524155.726, 7001649.208], [524031.685, 7000273.963], [523801.981, 6999819.245], [523824.474, 6999450.994], [523543.843, 6999320.744], [523454.324, 6999311.439], [523427.382, 6999238.159], [523315.993, 6999117.683], [523293.915, 6999040.822], [523318.747, 6998930.079], [523426.099, 6998872.034], [523525.425, 6998716.585], [523652.811, 6998644.418], [523805.61, 6998544.927], [523968.793, 6998420.566], [524089.914, 6998329.862], [524167.462, 6998205.325], [524312.433, 6998154.91], [524507.501, 6998199.359], [524733.685, 6998156.426], [524839.61, 6998194.312], [524921.034, 6998331.979], [525139.385, 6998351.62], [525321.082, 6997907.328], [525324.881, 6997834.258], [525582.508, 6997684.231], [525674.64, 6997578.868], [525825.557, 6997532.808], [525908.097, 6997408.5], [526027.669, 6997368.856], [526102.904, 6997298.52], [526153.65, 6997018.395], [525947.632, 6995361.353], [524836.297, 6994019.001], [524105.426, 6994026.519], [523785.629, 6992788.916], [523755.623, 6992728.181], [523548.424, 6992693.929], [523425.774, 6992726.514], [522602.306, 6992941.521], [520927.588, 6991969.302], [520312.949, 6991604.109], [519820.539, 6991252.294], [519665.86, 6991131.212], [519054.048, 6991485.183], [519065.499, 6991574.415], [518988.876, 6991655.394], [518928.598, 6991801.854], [518542.454, 6991674.502], [517919.403, 6992008.663], [517869.497, 6992146.583], [517080.964, 6992028.14], [517155.213, 6991689.787], [517559.596, 6991252.663], [517823.148, 6991099.33], [519385.82, 6990203.806], [519362.534, 6989100.053], [519649.221, 6988454.518], [519951.706, 6986864.266], [520609.541, 6986515.113], [520618.239, 6986174.251], [520839.151, 6985919.356], [520970.6, 6985371.48], [521289.973, 6984943.456], [523891.528, 6983111.42], [524557.362, 6983927.637], [526824.75, 6981938.713], [527381.025, 6981892.336], [526393.733, 6983266.158], [526655.207, 6983700.504], [527502.22, 6983376.782], [527875.613, 6983352.499], [528291.748, 6983187.522], [528319.418, 6982350.167], [529257.782, 6982285.537], [529411.405, 6981749.608], [530457.184, 6981417.949], [530651.999, 6982403.255], [531627.405, 6982310.6], [532196.473, 6982672.459], [533274.998, 6982299.664], [533960.687, 6982857.662], [534272.784, 6983488.492], [535002.928, 6983119.579], [535008.351, 6982854.115], [536091.66, 6981683.032], [536095.082, 6981665.648], [538844.096, 6983009.989], [539897.456, 6983247.374], [540290.362, 6982634.23], [540378.977, 6981536.769], [540168.566, 6981130.432], [541206.253, 6980549.347], [542207.846, 6980499.897], [542009.711, 6982189.313], [542155.844, 6983075.755], [541746.391, 6985127.123], [543074.047, 6985912.711], [546110.237, 6983863.155], [548071.021, 6986305.977], [547766.041, 6986670.028], [547361.444, 6987150.149], [545059.634, 6986886.627], [544175.791, 6986996.578], [540850.024, 6989753.244], [540239.067, 6990912.271], [541679.379, 6991428.869], [541909.779, 6992972.244], [542268.828, 6994053.007], [542586.596, 6994673.058], [543192.949, 6995002.627], [543695.444, 6994995.233], [544399.16, 6994605.195], [544756.313, 6995055.214], [543467.933, 6995815.699], [543243.623, 6996131.569], [543282.303, 6997016.411], [543486.917, 6997834.98], [543531.395, 6998702.528], [542751.777, 6999474.039], [542378.759, 6999622.249], [542102.767, 7000444.215], [541675.76, 7000906.595], [541412.243, 7001410.42], [540533.56, 7002518.129], [540561.657, 7002960.455], [540784.461, 7003132.024], [540788.975, 7003825.562], [541223.168, 7005190.733], [541080.66, 7005524.636], [541258.547, 7005678.432], [541675.988, 7005527.791], [541698.186, 7005931.794], [541610.628, 7006237.426], [541779.586, 7006637.739], [541625.799, 7006941.27], [541606.329, 7007652.401], [541090.832, 7008879.002], [539843.987, 7009520.701], [539223.105, 7010187.66], [539024.865, 7010497.635], [538682.708, 7010744.508], [537645.362, 7011020.467], [536809.464, 7010870.27], [536653.742, 7011283.387], [536294.851, 7011597.347], [535612.375, 7011977.51], [535237.395, 7012045.385], [535048.603, 7012816.942], [535190.0, 7013199.33], [535150.42, 7013637.242], [535572.193, 7013627.871], [536514.365, 7013781.193], [537241.371, 7013528.3], [538527.449, 7013485.225], [539076.226, 7013512.118], [539263.129, 7014190.262], [539955.556, 7015610.477], [540595.697, 7015515.62], [541381.582, 7014688.859], [542212.44, 7015240.842], [542714.723, 7017442.056], [543244.205, 7017779.124], [543081.527, 7018894.176], [543675.164, 7019895.594], [544333.547, 7019824.795], [544803.385, 7019400.268], [545388.975, 7019042.897], [545480.478, 7018721.612], [545939.797, 7019487.952], [545647.114, 7019806.722], [545429.082, 7020408.459], [545984.794, 7019890.47], [546382.178, 7019680.517], [546703.586, 7019403.992], [547045.646, 7019492.658], [547117.16, 7019729.184], [546923.198, 7020256.353], [547200.169, 7020436.07], [547201.671, 7021512.044], [547059.926, 7022020.738], [547026.717, 7022714.191], [547537.486, 7023282.44], [547686.761, 7023745.645], [548237.936, 7023802.826], [548637.779, 7023663.68], [549613.777, 7023600.317], [550387.96, 7023816.036], [550245.343, 7024843.352], [550374.893, 7025141.003], [550834.637, 7024921.444], [550977.012, 7025271.052], [551186.776, 7025684.587], [551443.624, 7026055.23], [551556.365, 7026441.86], [551321.246, 7027000.142], [551522.118, 7027446.157], [551983.7, 7027825.726], [552225.188, 7027913.594], [552598.632, 7028608.116], [553812.93, 7029996.164], [554266.941, 7030627.512], [554366.998, 7030987.967], [557094.414, 7029244.035]]]}}, {\\\"id\\\": \\\"293\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kaskinen\\\", \\\"elakelaisten_osuus\\\": 44.1, \\\"freshwarea\\\": 0.15, \\\"gml_id\\\": 1601100387, \\\"landarea\\\": 10.63, \\\"namefin\\\": \\\"Kaskinen\\\", \\\"nameswe\\\": \\\"Kask\\\\u00f6\\\", \\\"natcode\\\": \\\"231\\\", \\\"seawarea\\\": 164.58, \\\"totalarea\\\": 175.36}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[202301.553, 6931484.329], [203138.056, 6930061.462], [203767.375, 6928456.071], [203692.397, 6926277.615], [200873.402, 6922174.185], [195818.395, 6919478.746], [173652.367, 6917659.555], [173191.31, 6923274.095], [195357.709, 6925093.925], [200723.47, 6927928.049], [201562.449, 6931503.617], [201845.874, 6931728.17], [202301.553, 6931484.329]]]}}, {\\\"id\\\": \\\"294\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kangasniemi\\\", \\\"elakelaisten_osuus\\\": 42.1, \\\"freshwarea\\\": 257.91, \\\"gml_id\\\": 1601100360, \\\"landarea\\\": 1068.84, \\\"namefin\\\": \\\"Kangasniemi\\\", \\\"nameswe\\\": \\\"Kangasniemi\\\", \\\"natcode\\\": \\\"213\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1326.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[484680.05, 6906140.018], [484563.399, 6905857.331], [484950.772, 6904244.27], [485864.905, 6901606.856], [485767.352, 6900839.665], [485933.596, 6900248.149], [485924.297, 6899306.887], [484974.575, 6900711.011], [484536.556, 6900254.193], [484045.954, 6900450.31], [483963.784, 6900800.168], [484087.832, 6901122.339], [483720.404, 6902171.63], [483260.959, 6902118.931], [483173.805, 6900779.372], [483626.938, 6899705.536], [483943.808, 6899299.569], [483859.542, 6898909.931], [484285.139, 6897883.585], [485281.911, 6896539.271], [485516.334, 6895906.801], [485808.915, 6896063.474], [485783.669, 6896428.454], [485779.066, 6897713.731], [486995.504, 6895217.427], [487705.691, 6894382.8], [487947.591, 6894517.747], [488458.883, 6893909.698], [488520.055, 6894480.243], [488995.064, 6894331.833], [489375.506, 6894511.064], [489852.513, 6894127.948], [490068.904, 6893613.604], [490514.648, 6893075.655], [490669.886, 6892693.11], [490659.248, 6891855.623], [490845.627, 6891160.886], [491098.38, 6890743.148], [491553.672, 6889526.441], [491854.909, 6889109.743], [492192.946, 6888939.602], [492319.43, 6888548.702], [491756.265, 6887480.128], [491753.569, 6886819.495], [491158.712, 6886712.432], [491534.066, 6885480.833], [491250.688, 6884186.653], [491195.965, 6882594.132], [492394.851, 6881106.815], [493046.865, 6880027.676], [493436.446, 6879166.913], [494894.234, 6880334.132], [495573.15, 6879347.931], [496853.062, 6879133.296], [497355.325, 6879378.192], [497445.42, 6878604.48], [498575.037, 6878547.675], [498988.8, 6877223.425], [499603.252, 6877668.918], [499772.907, 6877415.511], [499748.302, 6876641.899], [499902.015, 6876139.091], [500508.7, 6875801.847], [500786.932, 6875335.472], [501583.198, 6875007.839], [502994.341, 6875157.91], [503503.444, 6874606.171], [503242.857, 6874343.234], [503772.954, 6873688.005], [503817.458, 6874269.887], [504200.816, 6873887.26], [504019.896, 6873189.941], [504669.65, 6871254.134], [506373.457, 6870457.367], [506637.48, 6870143.566], [506052.402, 6869600.613], [505332.101, 6868996.253], [504861.792, 6869066.622], [504318.709, 6869557.219], [503442.168, 6869358.892], [503041.634, 6869021.226], [503145.901, 6867944.864], [502447.891, 6867318.312], [502161.709, 6867194.759], [501725.985, 6867315.706], [501103.341, 6867044.91], [500676.312, 6867357.779], [499918.927, 6866575.989], [499903.44, 6865884.47], [499404.395, 6865607.501], [499623.362, 6865053.505], [499547.978, 6864716.229], [499088.696, 6863305.51], [498084.098, 6864028.807], [497857.684, 6864631.26], [497430.352, 6865236.51], [496963.839, 6865520.29], [496529.108, 6865274.422], [496503.609, 6864707.627], [496308.149, 6864499.415], [495743.118, 6864715.404], [495825.116, 6864157.835], [495438.012, 6863998.215], [494348.32, 6863906.129], [494318.04, 6863170.929], [493706.192, 6862845.258], [493475.481, 6863385.936], [492978.885, 6863187.214], [492435.718, 6861785.281], [491672.927, 6861940.113], [491469.512, 6861567.262], [492168.139, 6859933.429], [492292.094, 6859185.933], [491942.328, 6858283.438], [491632.971, 6857690.135], [491168.661, 6857515.602], [491083.087, 6858841.764], [490603.679, 6859256.992], [489857.596, 6857058.478], [489055.325, 6856661.033], [488259.949, 6856473.204], [488004.156, 6856010.289], [487282.051, 6855789.274], [486422.797, 6856256.978], [486110.53, 6855277.673], [484817.659, 6854791.46], [483435.316, 6855450.983], [481308.611, 6850687.898], [480940.553, 6851775.955], [480461.646, 6852057.937], [480284.814, 6852639.9], [481768.692, 6855586.916], [480313.573, 6857053.911], [479269.288, 6858484.524], [477930.03, 6858722.618], [477393.852, 6858126.856], [477701.042, 6855950.64], [477522.816, 6855652.959], [476891.571, 6855907.252], [476368.686, 6855408.95], [475420.64, 6855510.609], [474721.135, 6856126.832], [475263.126, 6856876.047], [475532.309, 6858056.471], [474367.782, 6857971.697], [473953.253, 6857549.765], [473096.503, 6857264.474], [472447.37, 6856745.38], [471388.2, 6856808.347], [470893.204, 6856342.632], [470223.676, 6856464.578], [469375.514, 6857336.718], [467850.329, 6858083.904], [466918.695, 6859910.458], [467091.819, 6860866.471], [467301.63, 6861310.393], [465952.063, 6861586.854], [464469.635, 6861000.713], [464557.351, 6861404.553], [464990.902, 6861696.735], [465109.624, 6862373.213], [464957.025, 6862589.112], [465476.832, 6863296.159], [465314.318, 6864197.252], [465448.603, 6865472.447], [465396.372, 6866123.39], [464919.735, 6866624.35], [464842.603, 6867729.014], [465154.886, 6868261.887], [465072.045, 6868875.069], [469310.883, 6871297.97], [465037.534, 6878458.625], [459342.968, 6887632.55], [464407.337, 6896701.058], [464790.628, 6896725.794], [465137.752, 6895843.056], [467101.577, 6897062.853], [466973.395, 6897413.031], [468534.462, 6897671.736], [469558.748, 6897473.622], [469693.792, 6897891.654], [469557.945, 6898702.825], [469917.028, 6899322.174], [470628.009, 6899529.397], [470773.756, 6898960.248], [470756.457, 6898299.12], [470989.812, 6897645.397], [471371.673, 6897991.595], [471379.837, 6898497.83], [472044.15, 6898931.641], [472359.218, 6898543.209], [473170.106, 6899126.762], [473089.712, 6899369.077], [473816.014, 6899782.214], [473222.543, 6901176.747], [472899.369, 6901802.592], [474934.941, 6902012.12], [474657.446, 6902943.142], [475190.031, 6902691.547], [476326.06, 6903855.184], [476904.007, 6902790.86], [477377.429, 6902563.604], [478706.826, 6899967.87], [479045.505, 6899636.195], [479577.27, 6900192.984], [479952.824, 6899406.005], [479817.039, 6898736.646], [479931.242, 6898421.003], [480412.648, 6898158.212], [480593.077, 6897782.865], [481935.342, 6898394.919], [481947.444, 6899302.997], [482292.713, 6900101.976], [481739.784, 6900327.915], [481220.243, 6900851.178], [481322.848, 6901828.635], [480723.175, 6903824.026], [480504.003, 6904149.524], [480534.086, 6904681.291], [480867.106, 6905102.211], [480932.374, 6905804.228], [480478.005, 6906153.301], [479811.124, 6907102.546], [481661.162, 6907707.464], [481998.203, 6907565.087], [482872.469, 6907954.373], [482738.021, 6908227.762], [483572.48, 6908502.157], [484680.05, 6906140.018]]]}}, {\\\"id\\\": \\\"295\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kannonkoski\\\", \\\"elakelaisten_osuus\\\": 41.5, \\\"freshwarea\\\": 104.87, \\\"gml_id\\\": 1601100364, \\\"landarea\\\": 445.01, \\\"namefin\\\": \\\"Kannonkoski\\\", \\\"nameswe\\\": \\\"Kannonkoski\\\", \\\"natcode\\\": \\\"216\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 549.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[417896.595, 6997336.918], [425653.566, 6990167.015], [425075.588, 6989135.051], [424295.151, 6985286.854], [424278.331, 6985005.111], [424874.766, 6984900.748], [425285.408, 6984783.095], [427263.294, 6982989.998], [428799.54, 6981017.866], [429551.944, 6979689.338], [430003.652, 6979610.802], [433193.53, 6981213.581], [434367.042, 6977417.745], [432182.868, 6975105.771], [427279.716, 6970716.39], [426671.993, 6976335.019], [422124.876, 6976321.002], [413384.497, 6966506.166], [413003.782, 6967037.373], [413254.134, 6967846.516], [413088.494, 6968106.42], [412572.862, 6968626.633], [411863.286, 6968895.861], [411641.837, 6969234.66], [411045.109, 6969293.649], [410457.636, 6969536.532], [410187.993, 6970026.829], [409691.55, 6970426.245], [409347.51, 6970422.294], [409118.224, 6970641.344], [409108.895, 6970791.966], [408991.617, 6970849.583], [407835.449, 6972680.015], [407443.602, 6973074.489], [407599.548, 6973674.134], [407419.485, 6974255.929], [408039.325, 6978522.909], [405294.952, 6979660.529], [404969.451, 6979415.331], [403937.371, 6979363.514], [403193.776, 6980022.935], [401860.868, 6980949.763], [402034.602, 6981239.752], [401825.15, 6982116.74], [401655.33, 6983806.582], [401355.968, 6983788.623], [401207.748, 6984618.205], [401867.378, 6984652.809], [401742.123, 6985067.321], [401101.201, 6985208.603], [400888.617, 6986385.028], [401708.207, 6986713.68], [401391.256, 6987961.64], [403336.98, 6988480.955], [402883.47, 6990123.484], [403730.955, 6990201.829], [403924.781, 6989505.585], [404239.471, 6989775.572], [404012.229, 6990282.464], [405308.726, 6990611.153], [406198.822, 6989870.001], [406862.156, 6990601.843], [406632.844, 6993800.996], [407056.988, 6995879.364], [409559.159, 6996768.814], [415279.52, 6997465.632], [417980.501, 6997686.862], [417896.595, 6997336.918]]]}}, {\\\"id\\\": \\\"296\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Orivesi\\\", \\\"elakelaisten_osuus\\\": 33.9, \\\"freshwarea\\\": 160.43, \\\"gml_id\\\": 1601100210, \\\"landarea\\\": 799.65, \\\"namefin\\\": \\\"Orivesi\\\", \\\"nameswe\\\": \\\"Orivesi\\\", \\\"natcode\\\": \\\"562\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 960.08}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[379826.847, 6856516.502], [380386.067, 6855472.741], [382603.601, 6854078.72], [382712.999, 6853535.899], [382491.742, 6853187.425], [383055.066, 6852946.141], [383528.516, 6852284.265], [383859.806, 6852653.279], [383990.209, 6852035.97], [385011.119, 6850500.343], [384917.781, 6850087.053], [384426.55, 6849862.895], [384662.458, 6848746.62], [383004.145, 6849310.302], [382559.985, 6849943.952], [382358.688, 6850465.759], [381289.288, 6851299.764], [381825.574, 6851968.569], [381511.688, 6852455.645], [381321.296, 6851964.929], [380818.367, 6851848.573], [380522.212, 6851511.834], [379980.076, 6851710.509], [379755.73, 6849931.582], [380939.607, 6846032.347], [381011.804, 6844948.99], [380243.861, 6842149.361], [381642.055, 6840863.234], [381842.331, 6840101.339], [383161.904, 6841673.594], [386462.799, 6839646.979], [384140.798, 6838254.77], [382507.388, 6834089.668], [382924.964, 6832142.474], [384108.444, 6830440.609], [385063.838, 6826579.342], [385505.84, 6827909.953], [385709.498, 6830188.286], [386497.317, 6830213.239], [387990.36, 6831152.808], [389443.041, 6830216.791], [389328.425, 6827551.193], [387200.555, 6825346.016], [385063.838, 6826579.342], [380221.158, 6827896.028], [379540.809, 6825597.669], [379648.671, 6823439.442], [376232.705, 6824560.678], [374603.317, 6822372.53], [373679.488, 6822313.436], [373498.092, 6822852.047], [371828.094, 6824498.852], [370882.757, 6823639.241], [367395.403, 6826414.17], [363116.884, 6826394.68], [361857.12, 6826389.159], [361508.492, 6826262.693], [359126.456, 6827513.75], [359266.802, 6829877.708], [358324.831, 6830598.227], [357714.081, 6830878.4], [357072.981, 6830669.429], [356206.786, 6830276.053], [353699.596, 6829178.152], [352847.059, 6829842.435], [352654.568, 6830346.062], [352184.584, 6830848.864], [350626.516, 6831834.315], [350079.901, 6832681.174], [347270.109, 6836030.211], [347257.028, 6836031.877], [346042.25, 6836963.748], [345801.078, 6837771.885], [346613.166, 6840354.593], [346639.203, 6842378.683], [345988.47, 6844856.125], [345583.68, 6845897.273], [347619.359, 6847783.319], [346495.272, 6852674.89], [346626.256, 6854536.218], [347999.011, 6856975.794], [353977.939, 6857778.959], [356604.825, 6855143.234], [358294.6, 6855917.973], [360123.818, 6851848.623], [360586.748, 6852061.46], [362564.896, 6848511.669], [363548.488, 6847647.663], [364574.357, 6847483.503], [365981.078, 6847628.843], [366223.012, 6847337.782], [367053.209, 6847244.338], [367475.054, 6847526.29], [368941.866, 6847160.741], [369293.616, 6846921.014], [369488.116, 6846599.525], [370271.418, 6845102.575], [370787.517, 6844919.426], [371824.5, 6848977.368], [372918.682, 6852068.225], [374932.57, 6856056.273], [374671.618, 6857878.047], [375412.064, 6859390.747], [377255.891, 6861121.622], [379826.847, 6856516.502]]]}}, {\\\"id\\\": \\\"297\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"P\\\\u00f6yty\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 29.0, \\\"freshwarea\\\": 23.61, \\\"gml_id\\\": 1601100348, \\\"landarea\\\": 750.08, \\\"namefin\\\": \\\"P\\\\u00f6yty\\\\u00e4\\\", \\\"nameswe\\\": \\\"P\\\\u00f6yty\\\\u00e4\\\", \\\"natcode\\\": \\\"636\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 773.69}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[260943.87, 6764023.99], [261728.108, 6762641.748], [261310.08, 6762245.338], [260791.972, 6760960.05], [260892.532, 6760578.264], [259833.832, 6759912.942], [259190.35, 6759178.957], [258697.329, 6757976.773], [259474.956, 6757798.275], [259236.822, 6757191.994], [258623.453, 6756894.97], [260436.312, 6753935.293], [262113.411, 6752950.561], [263769.786, 6751382.9], [265548.574, 6751474.511], [267904.906, 6750877.99], [268214.675, 6750621.712], [268497.564, 6750847.861], [268663.875, 6750141.368], [269332.746, 6749678.537], [269852.709, 6749169.242], [269681.115, 6748884.588], [271519.485, 6746038.621], [272907.361, 6744453.565], [273258.18, 6743623.892], [273540.925, 6743749.107], [278463.501, 6737971.342], [277804.586, 6737161.342], [277691.834, 6737030.396], [278138.999, 6736887.159], [278119.067, 6736720.374], [278545.328, 6735900.194], [278362.539, 6735526.23], [277853.579, 6735181.253], [276873.37, 6734578.648], [276698.181, 6734867.824], [276374.982, 6734617.458], [276052.037, 6735063.558], [275869.555, 6734847.528], [274215.896, 6731485.548], [273748.627, 6729710.521], [273291.59, 6728645.782], [272477.364, 6728416.42], [269551.435, 6728705.554], [267410.716, 6729080.842], [265908.922, 6729415.581], [264556.397, 6730295.796], [263938.323, 6730398.827], [264328.788, 6731767.923], [260870.156, 6733179.454], [259311.934, 6733627.545], [258273.467, 6733541.136], [256459.071, 6732989.546], [254029.689, 6736068.225], [253411.517, 6737014.039], [252919.298, 6738108.011], [252148.291, 6739017.061], [252634.236, 6739332.002], [251939.598, 6739849.088], [252272.446, 6740068.501], [251977.238, 6740429.484], [251601.995, 6739883.737], [250110.717, 6742255.941], [241979.368, 6749312.976], [241605.691, 6748979.851], [241430.103, 6748976.892], [241378.984, 6749380.186], [241448.51, 6749770.306], [240181.567, 6750860.31], [237353.515, 6758229.25], [237974.134, 6758761.085], [239108.513, 6760946.922], [240420.954, 6760189.153], [240679.382, 6760583.736], [239132.529, 6761341.812], [241410.974, 6763182.519], [242161.355, 6763667.92], [243395.267, 6763918.679], [243759.88, 6763353.697], [245986.399, 6762519.54], [246365.314, 6762574.004], [248896.201, 6764077.797], [251633.004, 6764330.886], [252569.836, 6764715.924], [255917.283, 6765381.586], [257436.007, 6765638.903], [260943.87, 6764023.99]]]}}, {\\\"id\\\": \\\"298\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nurmij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 19.0, \\\"freshwarea\\\": 5.39, \\\"gml_id\\\": 1601100183, \\\"landarea\\\": 361.87, \\\"namefin\\\": \\\"Nurmij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Nurmij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"543\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 367.26}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[378352.475, 6717936.043], [378032.838, 6716363.993], [379244.203, 6715603.408], [379291.068, 6715228.981], [378810.368, 6715129.206], [378683.813, 6714744.554], [379931.524, 6713965.208], [379166.296, 6712317.587], [380830.734, 6712274.837], [381477.763, 6715781.069], [384018.352, 6717062.774], [384218.119, 6716765.309], [384380.796, 6716029.019], [384896.62, 6716137.049], [385524.207, 6715301.21], [385516.648, 6715109.21], [385457.443, 6713782.74], [386278.152, 6712928.695], [386402.016, 6711870.378], [386913.195, 6711268.468], [386563.676, 6710972.248], [387039.324, 6710585.779], [387558.264, 6710891.859], [387382.642, 6711222.187], [387819.025, 6711519.725], [387967.182, 6711132.45], [388804.391, 6711625.308], [388809.063, 6711136.016], [388141.223, 6708924.305], [388284.885, 6708534.575], [388164.25, 6707998.643], [386495.569, 6704552.238], [386235.411, 6703324.431], [386239.927, 6703320.322], [384504.574, 6701791.092], [384059.646, 6700055.278], [382611.313, 6698010.177], [382590.573, 6697998.256], [380445.966, 6697310.819], [375773.698, 6691596.517], [373315.774, 6692906.008], [372701.704, 6693445.11], [371992.429, 6693568.406], [371189.604, 6694095.302], [369586.719, 6693654.252], [369134.568, 6693775.377], [367997.104, 6697059.824], [367125.803, 6699065.852], [366694.026, 6702765.801], [366672.676, 6703867.295], [365888.007, 6706299.373], [363954.349, 6707069.304], [365127.95, 6708432.689], [366633.292, 6710124.519], [369643.826, 6711554.014], [370926.378, 6711258.416], [371690.956, 6710280.182], [374069.231, 6711386.241], [376093.43, 6717158.633], [376652.726, 6719107.204], [378352.475, 6717936.043]]]}}, {\\\"id\\\": \\\"299\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kangasala\\\", \\\"elakelaisten_osuus\\\": 23.4, \\\"freshwarea\\\": 212.79, \\\"gml_id\\\": 1601100358, \\\"landarea\\\": 658.07, \\\"namefin\\\": \\\"Kangasala\\\", \\\"nameswe\\\": \\\"Kangasala\\\", \\\"natcode\\\": \\\"211\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 870.86}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[350079.901, 6832681.174], [350626.516, 6831834.315], [352184.584, 6830848.864], [352654.568, 6830346.062], [352847.059, 6829842.435], [353699.596, 6829178.152], [356206.786, 6830276.053], [357072.981, 6830669.429], [357714.081, 6830878.4], [358324.831, 6830598.227], [359266.802, 6829877.708], [359126.456, 6827513.75], [361508.492, 6826262.693], [361857.12, 6826389.159], [363116.884, 6826394.68], [367395.403, 6826414.17], [370882.757, 6823639.241], [371828.094, 6824498.852], [373498.092, 6822852.047], [373679.488, 6822313.436], [374603.317, 6822372.53], [376232.705, 6824560.678], [379648.671, 6823439.442], [379540.809, 6825597.669], [380221.158, 6827896.028], [385063.838, 6826579.342], [387200.555, 6825346.016], [390777.874, 6824551.546], [389646.462, 6820789.095], [389735.851, 6818049.666], [391393.307, 6815343.435], [391425.504, 6815300.875], [391802.732, 6814673.992], [386004.133, 6817676.616], [385359.184, 6818010.547], [384208.593, 6818312.233], [381899.242, 6819489.188], [382158.68, 6816207.393], [380113.172, 6816525.56], [380104.324, 6817315.682], [379318.645, 6817426.572], [378575.707, 6817836.404], [378764.536, 6816892.835], [378824.872, 6815874.059], [378918.742, 6814558.267], [376840.814, 6814903.722], [373735.627, 6814263.852], [373165.868, 6812859.172], [372946.076, 6813155.849], [363858.73, 6811612.349], [363378.352, 6811924.454], [360463.435, 6812902.672], [358928.208, 6813249.359], [357815.618, 6813310.362], [357305.008, 6814050.903], [355945.051, 6814767.981], [355052.202, 6814610.488], [355175.389, 6812245.673], [355135.749, 6810364.444], [355899.84, 6810180.345], [355552.201, 6809907.119], [354993.075, 6809882.105], [354350.296, 6810628.191], [353630.096, 6809544.48], [353179.594, 6809712.334], [352485.252, 6809478.995], [352335.789, 6808991.735], [351857.86, 6808904.399], [351819.686, 6808517.02], [350298.853, 6807693.022], [347503.524, 6807242.147], [345779.778, 6806415.291], [344654.413, 6806062.14], [345105.468, 6805006.119], [343822.592, 6803860.785], [343703.273, 6803095.608], [342672.261, 6804215.259], [340645.4, 6801601.514], [340558.652, 6803209.251], [339510.521, 6804397.634], [337878.13, 6802335.515], [337667.404, 6802673.768], [338049.756, 6803159.054], [337216.54, 6803488.529], [336853.096, 6804453.268], [337790.156, 6804830.894], [334112.121, 6814346.136], [334665.689, 6815700.402], [335642.151, 6817053.183], [336188.632, 6818774.247], [336628.258, 6819473.711], [336840.429, 6820778.152], [336872.95, 6821804.979], [337267.898, 6822913.083], [338403.228, 6822449.923], [339131.423, 6822540.723], [338856.579, 6824709.014], [343617.475, 6833670.783], [345474.086, 6834846.405], [346408.013, 6835320.645], [347270.109, 6836030.211], [350079.901, 6832681.174]]]}}, {\\\"id\\\": \\\"300\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hollola\\\", \\\"elakelaisten_osuus\\\": 27.9, \\\"freshwarea\\\": 76.31, \\\"gml_id\\\": 1601100483, \\\"landarea\\\": 651.15, \\\"namefin\\\": \\\"Hollola\\\", \\\"nameswe\\\": \\\"Hollola\\\", \\\"natcode\\\": \\\"098\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 727.46}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[422536.607, 6776416.537], [422974.529, 6776314.184], [424998.946, 6776487.676], [426019.4, 6776263.984], [427213.664, 6775783.431], [428726.492, 6774920.418], [430081.94, 6774838.368], [431461.978, 6774767.914], [432528.703, 6775012.582], [433139.295, 6774523.833], [433359.604, 6774888.989], [433282.034, 6775181.47], [434003.039, 6775347.813], [434407.88, 6774122.311], [432707.078, 6773276.029], [432361.32, 6772943.559], [430993.792, 6770806.644], [431479.291, 6770761.925], [436402.693, 6769081.163], [435614.594, 6767948.94], [433369.04, 6767026.151], [432532.963, 6766959.261], [430516.623, 6766807.887], [429658.53, 6767530.428], [428955.376, 6766488.344], [428550.014, 6766895.166], [427874.5, 6766427.948], [427228.407, 6766893.336], [426614.543, 6766572.986], [426474.579, 6767440.579], [426061.69, 6767078.327], [425563.006, 6767245.938], [425337.251, 6767700.947], [424345.896, 6767384.381], [424213.487, 6768012.657], [423571.505, 6767953.906], [423924.086, 6767421.372], [423869.148, 6767090.014], [424280.986, 6766915.822], [424080.586, 6766492.918], [423122.179, 6765975.909], [423065.411, 6765648.562], [423450.379, 6765148.488], [422830.833, 6763827.972], [421051.555, 6763473.657], [421613.033, 6760999.187], [422254.57, 6759670.294], [422096.438, 6759326.524], [422622.087, 6759122.276], [422122.357, 6758258.946], [421892.348, 6757431.476], [422065.988, 6757075.317], [421760.237, 6756264.151], [422224.907, 6756052.941], [422574.274, 6756511.431], [422919.781, 6756302.144], [422808.404, 6755884.524], [424042.136, 6755390.856], [424246.021, 6756064.071], [424478.691, 6756125.745], [424615.26, 6755663.279], [425370.392, 6755812.455], [426036.481, 6754514.319], [426791.589, 6754013.117], [426430.649, 6753580.911], [427180.355, 6753111.791], [427499.065, 6752725.001], [426999.524, 6751882.642], [426415.521, 6751781.682], [426154.481, 6751259.065], [426378.602, 6750313.524], [426064.87, 6749634.112], [425461.672, 6749979.297], [424932.219, 6749794.604], [424779.691, 6749366.665], [424231.286, 6749173.826], [422424.301, 6750762.698], [420727.693, 6748966.993], [419577.187, 6752005.268], [419007.348, 6751029.63], [418260.379, 6750287.494], [418013.796, 6749950.098], [417457.038, 6749866.234], [417341.203, 6749458.4], [416784.873, 6749608.744], [416289.233, 6749332.833], [415638.512, 6748469.231], [414224.568, 6748969.963], [413193.162, 6747622.577], [412331.475, 6748658.903], [411517.833, 6750514.234], [409442.778, 6751426.658], [409042.77, 6752005.803], [408790.841, 6752914.767], [409312.154, 6754073.095], [408668.008, 6754598.233], [408363.888, 6755384.121], [408830.458, 6756435.15], [408437.982, 6757432.009], [408592.381, 6757777.079], [408107.605, 6758837.889], [407315.494, 6761033.957], [405921.92, 6761994.718], [405116.726, 6760911.913], [403858.465, 6760772.82], [403192.993, 6760161.556], [401836.526, 6758676.956], [400802.833, 6755954.164], [398758.104, 6753653.565], [398212.152, 6751531.909], [398175.228, 6750003.38], [397829.515, 6749094.95], [397251.575, 6749240.891], [397113.617, 6750986.658], [396795.45, 6753278.804], [396647.61, 6755267.619], [394102.316, 6756313.412], [393094.362, 6756355.691], [392003.342, 6756401.455], [392675.227, 6758222.546], [393110.616, 6760136.654], [393908.791, 6760764.362], [395004.212, 6762771.98], [394481.919, 6763232.042], [394430.135, 6763576.96], [394975.511, 6764131.419], [394702.833, 6764301.44], [393299.352, 6763686.468], [393266.806, 6764872.406], [393768.382, 6765456.134], [394248.842, 6765521.12], [394351.313, 6766216.83], [394143.31, 6766455.961], [393495.338, 6767837.503], [394097.294, 6768194.948], [395087.371, 6769919.838], [400270.848, 6771210.613], [401269.783, 6772409.141], [402784.055, 6772618.129], [403654.905, 6775615.02], [404375.957, 6776455.044], [405156.381, 6776822.41], [406024.744, 6777231.029], [406032.03, 6776779.079], [406383.247, 6775964.177], [406663.163, 6775852.337], [407223.608, 6774944.921], [408513.141, 6775493.552], [409865.59, 6776502.56], [410286.05, 6776298.634], [411314.767, 6776690.058], [413344.828, 6776188.131], [414239.989, 6775727.322], [415806.434, 6776787.72], [417483.815, 6777714.331], [417940.39, 6777421.02], [418825.563, 6778235.154], [421278.199, 6780454.098], [422536.607, 6776416.537]]]}}, {\\\"id\\\": \\\"301\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Veteli\\\", \\\"elakelaisten_osuus\\\": 33.8, \\\"freshwarea\\\": 18.78, \\\"gml_id\\\": 1601100197, \\\"landarea\\\": 502.13, \\\"namefin\\\": \\\"Veteli\\\", \\\"nameswe\\\": \\\"Vetil\\\", \\\"natcode\\\": \\\"924\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 520.91}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[343850.803, 7048650.267], [344977.616, 7048586.201], [345597.382, 7047744.429], [344601.802, 7047031.675], [344901.417, 7046127.144], [345408.414, 7046129.192], [346318.951, 7046763.956], [347840.168, 7044696.36], [351926.993, 7046892.101], [352812.718, 7047129.635], [352829.619, 7047102.871], [353492.654, 7046340.735], [354243.771, 7044590.444], [354787.428, 7044819.691], [355217.569, 7044069.025], [354895.471, 7042973.357], [353890.844, 7042287.18], [354597.61, 7041268.702], [353358.672, 7040505.2], [354021.97, 7038537.854], [353465.95, 7033420.294], [353844.073, 7033156.743], [354126.067, 7033308.988], [354582.626, 7033745.303], [355021.022, 7033407.456], [355234.521, 7033682.646], [354522.297, 7034181.772], [354574.5, 7034828.044], [355374.182, 7034831.3], [356380.37, 7032997.856], [355614.066, 7032246.011], [356711.348, 7031461.727], [356038.167, 7030589.603], [356191.962, 7030297.235], [357790.64, 7029278.235], [358679.863, 7028508.291], [358736.7, 7028665.051], [359558.905, 7028437.638], [359813.382, 7027952.088], [359344.89, 7027281.454], [357848.768, 7026462.836], [358048.851, 7025710.982], [357514.988, 7025444.962], [357025.412, 7025100.243], [357967.541, 7024701.976], [357411.254, 7023841.893], [357523.068, 7023438.047], [357251.601, 7023517.548], [357121.392, 7023653.04], [356592.89, 7024791.342], [354586.628, 7023380.065], [353819.599, 7021791.794], [354055.394, 7020332.564], [352449.988, 7020431.646], [352036.619, 7017751.916], [350315.927, 7018971.81], [347313.906, 7019966.588], [342611.354, 7020368.441], [342171.013, 7020529.644], [338234.806, 7024550.772], [336381.525, 7028425.981], [334990.189, 7032062.987], [334929.075, 7032219.92], [335589.777, 7032471.214], [333399.799, 7038382.826], [333662.261, 7038502.26], [333492.636, 7040043.086], [333875.792, 7040206.713], [333595.445, 7041332.897], [333423.077, 7041330.967], [333567.123, 7043747.806], [337220.336, 7046144.572], [337453.455, 7046227.383], [337549.152, 7046466.442], [337726.499, 7046583.47], [337718.876, 7046707.224], [337865.866, 7046749.578], [337826.804, 7046897.99], [337970.702, 7046904.436], [338225.537, 7046462.149], [338509.436, 7046591.828], [338506.426, 7046716.246], [338746.497, 7046812.896], [338878.267, 7046765.863], [342644.203, 7048360.656], [342693.784, 7048721.573], [343276.982, 7049332.033], [343850.803, 7048650.267]]]}}, {\\\"id\\\": \\\"302\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Orimattila\\\", \\\"elakelaisten_osuus\\\": 28.8, \\\"freshwarea\\\": 28.84, \\\"gml_id\\\": 1601100600, \\\"landarea\\\": 785.17, \\\"namefin\\\": \\\"Orimattila\\\", \\\"nameswe\\\": \\\"Orimattila\\\", \\\"natcode\\\": \\\"560\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 814.01}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[431728.972, 6754385.914], [432032.652, 6753845.736], [433739.951, 6754884.043], [433900.044, 6754371.239], [433665.497, 6751270.299], [435739.649, 6751785.921], [436316.515, 6751884.39], [439026.879, 6751331.536], [441307.732, 6750645.811], [442765.48, 6753629.484], [443090.809, 6755286.53], [443608.411, 6755274.271], [443880.837, 6754964.956], [444554.774, 6754732.653], [446556.038, 6752524.285], [448535.187, 6751852.781], [450282.973, 6751562.577], [450385.083, 6751074.825], [451298.191, 6750671.083], [452400.055, 6752871.232], [453348.47, 6752760.689], [451894.146, 6750514.422], [451900.68, 6749837.966], [452214.362, 6749423.102], [452341.529, 6748597.606], [451737.586, 6748347.511], [451326.445, 6748288.808], [450848.981, 6747842.014], [450656.106, 6747555.583], [450284.344, 6746431.287], [449932.587, 6745690.084], [450017.754, 6745276.652], [449867.017, 6744814.535], [450801.141, 6744113.329], [451709.739, 6744168.683], [452025.634, 6744479.962], [454713.071, 6742905.856], [456571.912, 6740982.234], [456859.041, 6736092.211], [457664.832, 6732883.306], [457124.658, 6731439.279], [454321.599, 6729747.732], [453151.057, 6728618.779], [451349.21, 6728185.135], [446949.958, 6731617.598], [441787.77, 6730507.194], [440828.446, 6733856.824], [437790.956, 6733479.58], [436420.763, 6731601.905], [434481.46, 6731265.425], [432832.439, 6730966.031], [431598.603, 6730923.09], [430325.259, 6732101.752], [428903.15, 6730953.302], [427894.202, 6729156.008], [426673.977, 6729089.633], [426235.054, 6729494.566], [425842.185, 6729123.492], [425977.487, 6728734.803], [425983.299, 6728376.618], [425804.26, 6728176.225], [426073.717, 6727890.47], [425740.307, 6727698.83], [425397.319, 6728029.592], [424495.964, 6727973.835], [424194.666, 6727793.177], [424096.839, 6726998.038], [419174.539, 6730717.412], [419548.43, 6732439.567], [418978.389, 6735649.514], [418049.26, 6737786.17], [416961.327, 6740661.414], [416036.884, 6740969.057], [414724.928, 6741021.646], [415311.005, 6741424.122], [415651.984, 6742677.817], [414556.407, 6745100.191], [412780.92, 6746821.153], [413193.162, 6747622.577], [414224.568, 6748969.963], [415638.512, 6748469.231], [416289.233, 6749332.833], [416784.873, 6749608.744], [417341.203, 6749458.4], [417457.038, 6749866.234], [418013.796, 6749950.098], [418260.379, 6750287.494], [419007.348, 6751029.63], [419577.187, 6752005.268], [420727.693, 6748966.993], [422424.301, 6750762.698], [424231.286, 6749173.826], [424779.691, 6749366.665], [424932.219, 6749794.604], [425461.672, 6749979.297], [426064.87, 6749634.112], [426378.602, 6750313.524], [426154.481, 6751259.065], [426415.521, 6751781.682], [426999.524, 6751882.642], [427499.065, 6752725.001], [427180.355, 6753111.791], [427239.046, 6753149.144], [427513.404, 6752972.506], [429323.472, 6754291.859], [429679.533, 6754117.629], [430197.954, 6754643.909], [431080.766, 6756166.942], [431728.972, 6754385.914]]]}}, {\\\"id\\\": \\\"303\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Alavus\\\", \\\"elakelaisten_osuus\\\": 32.7, \\\"freshwarea\\\": 64.28, \\\"gml_id\\\": 1601100020, \\\"landarea\\\": 1087.18, \\\"namefin\\\": \\\"Alavus\\\", \\\"nameswe\\\": \\\"Alavus\\\", \\\"natcode\\\": \\\"010\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1151.46}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[336830.159, 6965327.371], [335880.418, 6964356.705], [334399.356, 6964903.1], [333567.256, 6964156.475], [333282.127, 6963623.411], [331760.705, 6965064.996], [331365.767, 6967087.545], [332837.085, 6967908.395], [333911.129, 6968504.392], [336830.159, 6965327.371]]], [[[339859.916, 6962790.345], [339734.353, 6962487.597], [340157.19, 6962295.322], [340572.015, 6962466.395], [343298.204, 6961570.195], [343831.847, 6959331.648], [346251.263, 6953327.752], [346286.633, 6951157.61], [345266.738, 6950227.027], [344196.266, 6948614.392], [344495.569, 6946917.678], [345086.851, 6944801.999], [345569.224, 6942289.741], [345211.276, 6941675.331], [343976.995, 6942299.011], [343730.747, 6942192.426], [344124.189, 6941520.233], [344065.203, 6941133.928], [344484.192, 6941306.669], [344913.627, 6941164.424], [344072.096, 6939719.957], [343526.012, 6938093.839], [343431.897, 6937443.807], [341656.202, 6936683.408], [339774.014, 6936999.023], [336977.473, 6933246.544], [335270.372, 6931504.254], [335908.271, 6930228.305], [335375.785, 6929821.898], [335555.61, 6929039.629], [335415.965, 6928765.619], [334923.994, 6929233.05], [334454.584, 6930197.409], [333753.681, 6929498.285], [333907.931, 6929240.817], [332876.856, 6929137.749], [327654.949, 6924153.087], [322979.767, 6924761.088], [319415.82, 6925258.906], [319892.311, 6920033.249], [317757.498, 6921783.127], [316169.578, 6921054.096], [315029.68, 6921444.987], [313410.146, 6922749.722], [313350.101, 6923606.307], [312777.727, 6924272.215], [312224.973, 6923674.716], [311899.599, 6923976.23], [312556.608, 6924539.479], [311807.83, 6925403.748], [311223.136, 6924891.075], [310740.236, 6925423.721], [310739.623, 6926324.497], [310933.466, 6926894.948], [312534.219, 6927715.967], [311809.243, 6929713.694], [310858.264, 6931240.306], [309971.004, 6932918.64], [309338.433, 6934611.508], [310091.824, 6934992.412], [308438.805, 6936885.361], [307781.686, 6937641.316], [307481.623, 6938239.216], [307683.341, 6938559.904], [306963.875, 6939661.121], [307158.112, 6939967.57], [307274.03, 6940542.78], [307820.816, 6940814.321], [307771.855, 6941459.912], [308398.22, 6942546.218], [309283.497, 6943243.457], [310341.131, 6943643.056], [309706.159, 6944663.686], [309113.928, 6944526.454], [309087.807, 6944038.128], [308600.077, 6944322.406], [308852.498, 6945637.446], [308501.246, 6945565.677], [308838.593, 6946354.772], [308275.332, 6948212.811], [306748.228, 6947769.5], [306746.125, 6947348.439], [306423.074, 6947357.431], [306223.29, 6947615.627], [305662.96, 6947449.885], [304455.041, 6949171.152], [304388.415, 6949688.94], [303919.651, 6949630.066], [304057.745, 6950611.752], [303550.398, 6950988.663], [303593.23, 6951285.105], [304015.335, 6951251.343], [305067.438, 6951724.96], [304801.391, 6952433.625], [304108.694, 6952390.184], [303353.32, 6953056.359], [305928.066, 6960568.844], [309502.375, 6961659.038], [313440.917, 6958332.437], [313593.169, 6957329.577], [314376.799, 6956330.322], [315182.096, 6957508.842], [315520.201, 6957178.656], [315519.734, 6956046.452], [315250.706, 6955693.082], [315249.01, 6955225.01], [318058.915, 6951716.892], [318513.322, 6952112.996], [318876.088, 6951484.556], [319163.802, 6951555.654], [318889.984, 6952408.898], [319615.918, 6953072.451], [319871.993, 6953244.527], [321201.474, 6953037.382], [321599.127, 6952377.891], [321638.768, 6952029.479], [322536.634, 6952029.83], [323132.857, 6951459.805], [324145.051, 6951598.086], [324376.584, 6951998.031], [324162.099, 6952342.846], [324202.239, 6952871.764], [325033.504, 6953215.666], [327736.201, 6957370.973], [328693.011, 6957876.482], [329032.056, 6958529.781], [329520.577, 6958319.412], [330074.423, 6959529.009], [330796.351, 6960551.665], [329315.002, 6961337.605], [329822.445, 6962332.912], [331150.218, 6960738.689], [331466.168, 6960120.355], [333982.673, 6961494.346], [334489.89, 6960615.783], [334811.974, 6961409.526], [335000.176, 6961317.194], [334934.682, 6960968.688], [339046.709, 6963078.849], [339859.916, 6962790.345]]]]}}, {\\\"id\\\": \\\"304\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kalajoki\\\", \\\"elakelaisten_osuus\\\": 29.1, \\\"freshwarea\\\": 6.98, \\\"gml_id\\\": 1601100352, \\\"landarea\\\": 924.05, \\\"namefin\\\": \\\"Kalajoki\\\", \\\"nameswe\\\": \\\"Kalajoki\\\", \\\"natcode\\\": \\\"208\\\", \\\"seawarea\\\": 1460.26, \\\"totalarea\\\": 2391.29}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[354536.463, 7142479.686], [354886.46, 7141865.719], [355597.966, 7141391.544], [355817.021, 7141005.502], [355965.437, 7141198.142], [356503.563, 7140904.385], [357137.948, 7140778.343], [357082.084, 7140597.572], [362660.585, 7137627.966], [363026.756, 7138161.145], [363067.908, 7137796.745], [362914.526, 7137497.364], [363516.991, 7137191.679], [364072.348, 7137218.959], [364604.588, 7137103.877], [364543.838, 7136898.724], [366308.123, 7136413.435], [367731.058, 7134639.838], [368791.01, 7133254.305], [368269.766, 7132592.902], [367540.977, 7132232.659], [367172.046, 7131298.761], [366016.144, 7130932.301], [366469.269, 7130195.844], [366449.594, 7129749.098], [366912.449, 7129240.785], [366381.56, 7128880.929], [365869.267, 7129393.919], [364294.474, 7127811.214], [365794.5, 7125301.078], [366866.709, 7123702.442], [367243.758, 7123247.233], [363770.412, 7120720.287], [363370.559, 7121298.809], [363521.47, 7121536.658], [363260.967, 7121832.587], [363080.798, 7121657.804], [362512.765, 7121930.389], [362444.482, 7122120.974], [361476.246, 7122259.226], [361127.642, 7122071.108], [361579.68, 7121568.82], [360962.992, 7121469.11], [361427.113, 7119664.574], [361856.494, 7119594.791], [362382.931, 7118796.172], [362528.098, 7116699.669], [362722.282, 7116441.369], [363214.512, 7116568.205], [363503.578, 7115551.147], [363058.018, 7115212.537], [367637.785, 7108316.084], [367961.824, 7108109.644], [368037.086, 7107424.825], [368581.321, 7106926.206], [369186.203, 7106356.035], [369702.708, 7105733.485], [369723.801, 7105170.862], [370048.178, 7105121.392], [370146.694, 7104619.325], [370424.741, 7104339.038], [370391.021, 7104305.316], [368274.035, 7102437.233], [368395.877, 7102260.559], [367971.401, 7102180.091], [364607.651, 7099251.249], [364308.693, 7099620.42], [364189.6, 7099648.203], [364022.399, 7099511.812], [363957.886, 7099346.721], [364196.794, 7098958.172], [359428.975, 7098263.923], [358172.708, 7100943.512], [358757.66, 7100877.82], [358615.832, 7101379.648], [358152.182, 7101509.765], [357922.837, 7108191.109], [354053.497, 7110689.86], [353998.891, 7110725.101], [352365.044, 7111142.042], [351822.165, 7109127.617], [349513.421, 7108116.752], [350327.223, 7107487.772], [350244.854, 7107263.18], [349324.437, 7107651.592], [349377.055, 7106023.879], [349725.008, 7105962.276], [349857.615, 7105766.341], [349471.835, 7105492.231], [349988.907, 7104616.133], [349675.818, 7104142.705], [349469.496, 7104250.621], [349161.24, 7103786.273], [348950.487, 7104019.02], [347814.096, 7103358.751], [347639.783, 7103011.512], [347489.105, 7102131.132], [349679.834, 7098155.892], [350445.907, 7097384.951], [350088.246, 7096884.497], [349596.708, 7097540.229], [348747.167, 7096776.962], [348401.203, 7097497.545], [347926.02, 7097101.808], [347329.118, 7097493.981], [347246.022, 7097840.208], [346100.967, 7097542.895], [345837.652, 7097742.54], [345493.163, 7097481.226], [343303.491, 7099402.644], [342455.49, 7100658.219], [341514.442, 7100046.079], [341244.656, 7100455.986], [340968.614, 7100252.631], [341059.993, 7099772.083], [340667.565, 7099231.498], [341216.124, 7098565.692], [340750.179, 7098151.94], [339837.41, 7099518.146], [339081.286, 7098673.058], [335973.546, 7105699.832], [329762.186, 7112237.981], [329149.423, 7113662.138], [294973.677, 7123760.451], [304107.553, 7127761.309], [304347.388, 7129427.522], [306267.664, 7142713.756], [306375.518, 7143297.325], [306637.807, 7144454.767], [306961.471, 7145596.514], [307345.71, 7146719.469], [307789.225, 7147820.233], [308290.916, 7148895.706], [308563.203, 7149422.997], [308849.384, 7149942.891], [309462.83, 7150958.788], [310129.754, 7151940.498], [310848.057, 7152885.223], [311225.801, 7153342.841], [312017.474, 7154226.989], [312430.604, 7154652.92], [313290.45, 7155470.894], [313736.466, 7155862.438], [314558.837, 7156530.087], [354536.463, 7142479.686]]]}}, {\\\"id\\\": \\\"305\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Jokioinen\\\", \\\"elakelaisten_osuus\\\": 29.2, \\\"freshwarea\\\": 1.52, \\\"gml_id\\\": 1601100286, \\\"landarea\\\": 180.42, \\\"namefin\\\": \\\"Jokioinen\\\", \\\"nameswe\\\": \\\"Jockis\\\", \\\"natcode\\\": \\\"169\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 181.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[310864.292, 6761550.988], [311087.9, 6761201.951], [311571.388, 6760969.473], [311691.769, 6760438.98], [311971.848, 6760135.856], [312024.126, 6759720.603], [312226.016, 6759534.162], [312561.453, 6759593.617], [312868.972, 6759376.302], [313075.059, 6757449.897], [313174.818, 6755861.675], [312814.51, 6754369.968], [312385.039, 6753536.521], [312586.106, 6751459.035], [313269.812, 6748856.701], [312614.635, 6748578.157], [312589.48, 6747430.802], [312784.352, 6745682.043], [312732.664, 6745235.705], [312251.77, 6744213.355], [311394.711, 6743699.223], [310953.758, 6742110.248], [309741.209, 6741245.089], [309356.366, 6739351.631], [308709.805, 6739519.368], [308607.988, 6739889.216], [308140.037, 6739670.172], [306783.464, 6740018.12], [306249.318, 6739838.496], [304237.405, 6739157.851], [303484.017, 6743917.414], [302940.981, 6744322.009], [302366.744, 6744514.121], [302000.587, 6744994.053], [302708.357, 6747538.716], [302378.007, 6747424.962], [301971.182, 6747926.84], [301425.997, 6749406.197], [300509.591, 6752744.301], [299361.869, 6754184.491], [297931.884, 6755403.995], [302526.524, 6753826.549], [303817.988, 6754044.971], [303690.879, 6754431.888], [304543.322, 6754593.88], [305760.046, 6753727.789], [306241.39, 6754490.669], [306239.123, 6755900.248], [306064.751, 6756110.553], [306100.055, 6756725.455], [306902.278, 6757050.966], [307173.207, 6758026.345], [310490.703, 6762013.978], [310864.292, 6761550.988]]]}}, {\\\"id\\\": \\\"306\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pielavesi\\\", \\\"elakelaisten_osuus\\\": 42.4, \\\"freshwarea\\\": 253.29, \\\"gml_id\\\": 1601100276, \\\"landarea\\\": 1153.22, \\\"namefin\\\": \\\"Pielavesi\\\", \\\"nameswe\\\": \\\"Pielavesi\\\", \\\"natcode\\\": \\\"595\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1406.51}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[491612.121, 7042241.665], [491847.412, 7042014.912], [491881.15, 7041570.772], [492118.271, 7041200.701], [492114.762, 7040757.752], [491955.965, 7040498.691], [492126.025, 7040010.198], [492109.506, 7039677.674], [492337.776, 7039003.966], [492606.779, 7038324.968], [492593.288, 7037654.537], [495751.711, 7036693.546], [496168.86, 7036383.476], [496559.307, 7036188.153], [496716.122, 7035708.373], [496703.112, 7035235.345], [496901.057, 7034161.579], [496993.086, 7033480.909], [496750.734, 7033325.333], [496821.646, 7032224.671], [497240.86, 7031931.782], [497239.963, 7031452.976], [497762.055, 7031167.595], [497767.357, 7030643.607], [498027.554, 7030362.222], [497618.928, 7029134.115], [497818.749, 7027377.798], [498581.755, 7027261.496], [499414.63, 7027681.726], [499943.904, 7027502.992], [501161.826, 7026596.463], [500624.639, 7026257.1], [500550.126, 7025411.879], [500859.759, 7024219.824], [500792.183, 7023104.829], [501422.044, 7022565.296], [502012.263, 7022751.599], [501889.136, 7023162.798], [502202.324, 7023371.701], [502437.377, 7023255.317], [502932.232, 7020688.424], [502523.822, 7019390.889], [502631.876, 7018936.613], [503245.042, 7019529.87], [504267.711, 7020631.299], [505044.606, 7020500.48], [505198.635, 7020779.046], [504816.286, 7021268.746], [504977.618, 7021653.491], [505449.129, 7021560.032], [505541.102, 7021310.687], [506862.461, 7021387.212], [506597.452, 7020942.922], [506040.449, 7020552.632], [506443.759, 7020527.88], [506846.428, 7019816.87], [506707.018, 7018096.022], [507422.527, 7017034.097], [507432.255, 7016515.671], [507238.381, 7016001.593], [505910.411, 7016520.853], [505707.069, 7016081.069], [505238.408, 7016033.848], [505325.058, 7015338.305], [506214.962, 7014024.35], [505424.89, 7014151.155], [504909.129, 7014533.182], [504555.041, 7014543.769], [503573.985, 7015107.806], [502990.346, 7014581.464], [502310.662, 7015205.084], [501662.603, 7014122.743], [502722.302, 7013669.675], [502775.75, 7012456.188], [502396.204, 7012428.29], [502136.108, 7011078.042], [502584.798, 7010155.189], [502351.137, 7008735.733], [501824.911, 7007853.003], [501839.612, 7007339.948], [505586.54, 7003707.487], [504762.741, 7003447.725], [504504.419, 7003803.497], [504046.773, 7003721.481], [503661.024, 7003958.667], [503226.432, 7003903.432], [502357.023, 7004457.552], [501942.84, 7004369.198], [500540.879, 7005108.534], [499732.24, 7005085.662], [499282.491, 7004878.75], [498806.934, 7004441.985], [497626.988, 7005035.554], [497784.633, 7003944.123], [498268.889, 7004010.365], [498811.965, 7003707.048], [499155.912, 7003864.629], [499399.997, 7003435.796], [499742.691, 7003310.533], [500279.211, 7002309.036], [501070.521, 7001496.586], [497387.255, 7000530.231], [497492.725, 7000100.187], [497857.372, 6999731.098], [497575.655, 6999398.398], [497784.818, 6999144.74], [497811.369, 6998703.022], [495154.209, 6997963.303], [493884.055, 6999885.627], [493118.786, 7000241.232], [492753.292, 6999959.94], [492119.455, 6999801.492], [492427.837, 6998492.124], [492841.6, 6997758.874], [493593.212, 6997034.454], [495456.852, 6995901.886], [494691.166, 6995533.807], [494046.18, 6995707.25], [493383.337, 6996189.78], [493223.427, 6995825.277], [493395.013, 6995587.75], [493615.349, 6994968.81], [494049.877, 6994769.578], [493759.185, 6994512.752], [491415.041, 6994594.086], [490851.289, 6994518.5], [490565.024, 6994689.928], [490426.428, 6994435.668], [490534.408, 6993924.505], [490077.024, 6993640.534], [489990.3, 6993219.338], [489727.643, 6993394.06], [489185.645, 6993282.269], [487946.042, 6993696.835], [487394.114, 6993312.352], [487411.802, 6992491.174], [486915.089, 6992329.756], [486111.96, 6990838.645], [484817.356, 6991706.779], [483579.962, 6991043.497], [481093.383, 6991321.605], [480114.214, 6990337.464], [474439.419, 6998182.904], [473529.025, 7001661.141], [472616.43, 7003071.744], [472898.302, 7003263.217], [472982.817, 7005226.325], [471656.724, 7009249.643], [471020.996, 7013398.967], [471163.848, 7013845.147], [470765.557, 7014193.089], [470846.145, 7014733.361], [470408.713, 7015591.471], [469144.225, 7017346.139], [467160.883, 7019232.168], [466336.531, 7019284.364], [465665.504, 7020106.898], [465986.445, 7023688.687], [460022.611, 7035242.768], [458926.46, 7034751.371], [457055.198, 7036862.779], [458422.283, 7039438.245], [460671.487, 7038063.797], [461551.748, 7037849.262], [461765.15, 7038429.784], [464503.907, 7037306.546], [464790.975, 7038031.816], [464769.274, 7038444.75], [465144.346, 7038472.025], [465483.017, 7037625.897], [466589.735, 7037951.61], [466123.532, 7039380.884], [466856.129, 7039395.962], [468195.982, 7038983.207], [468379.52, 7038354.73], [469359.754, 7038572.513], [475271.61, 7033777.775], [475450.097, 7036736.094], [476281.204, 7037086.955], [476383.907, 7036194.489], [479193.056, 7036481.063], [479279.431, 7035701.15], [479954.653, 7035740.405], [479846.732, 7036434.562], [480334.532, 7036745.83], [480826.225, 7037427.486], [481054.361, 7036945.264], [481328.598, 7036493.46], [481410.198, 7035936.095], [481992.532, 7036045.205], [482289.958, 7036184.519], [484711.28, 7035042.017], [484933.67, 7036885.322], [485440.191, 7036732.884], [486069.419, 7036435.766], [486549.459, 7036067.99], [486795.318, 7036350.666], [486836.93, 7036740.613], [487606.184, 7037166.039], [488151.001, 7036931.412], [488574.886, 7037053.006], [488851.507, 7037722.938], [489336.694, 7037878.398], [489704.784, 7038222.829], [489633.965, 7038730.256], [488906.791, 7039418.199], [488859.716, 7039769.314], [488548.412, 7040316.034], [488451.984, 7040800.54], [488959.99, 7042129.675], [489072.547, 7042543.914], [489492.501, 7042807.737], [489949.234, 7042478.983], [490202.966, 7042382.012], [490464.546, 7042755.735], [490694.35, 7042644.883], [491054.15, 7043133.962], [491270.491, 7043139.937], [491612.121, 7042241.665]]]}}, {\\\"id\\\": \\\"307\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lappaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 38.6, \\\"freshwarea\\\": 102.92, \\\"gml_id\\\": 1601100622, \\\"landarea\\\": 420.81, \\\"namefin\\\": \\\"Lappaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Lappaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"403\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 523.73}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[336381.525, 7028425.981], [338234.806, 7024550.772], [342171.013, 7020529.644], [342611.354, 7020368.441], [342199.079, 7013709.329], [341603.627, 7013056.263], [339613.604, 7012309.761], [339062.49, 7011993.112], [339100.152, 7011632.287], [338491.438, 7011378.194], [337721.864, 7011324.213], [337531.736, 7011662.751], [338193.65, 7011832.907], [338491.506, 7011913.481], [338431.362, 7012082.03], [338027.402, 7013372.125], [337726.641, 7012989.472], [337871.89, 7012394.774], [337230.074, 7012139.906], [333800.972, 7009399.192], [334038.634, 7005280.721], [334329.441, 7002293.676], [333629.564, 7000713.2], [332660.314, 7000879.018], [332374.566, 6999661.105], [330678.353, 6999788.214], [330110.392, 6997517.773], [330698.57, 6995665.808], [330808.702, 6995023.233], [330255.87, 6994937.841], [330165.207, 6994246.771], [329916.903, 6994485.861], [326813.055, 6991939.304], [326686.023, 6990198.5], [322692.663, 6988079.052], [323606.333, 6993190.41], [324622.552, 6993340.4], [324950.188, 6993753.585], [324569.766, 6993648.013], [324515.16, 6993946.526], [324106.389, 6994055.351], [323741.577, 6994061.198], [323905.394, 6993711.72], [323939.182, 6993464.19], [323637.167, 6993373.461], [323678.067, 6993602.727], [320884.326, 6997585.179], [321776.334, 6998205.464], [320840.72, 7005904.414], [318668.162, 7010423.032], [314856.432, 7013700.739], [313382.524, 7014037.225], [312991.227, 7013892.555], [313550.84, 7015078.575], [317623.797, 7014729.836], [317878.381, 7013645.802], [318784.08, 7013433.938], [318522.861, 7015350.087], [317833.743, 7014973.548], [318132.296, 7017216.067], [318520.738, 7017198.035], [318310.529, 7018200.536], [318730.382, 7018692.378], [318909.529, 7019110.19], [319926.9, 7019120.913], [319666.692, 7020111.371], [320898.551, 7020287.146], [320731.937, 7021329.375], [321659.111, 7021930.732], [321870.067, 7021060.078], [322760.609, 7019928.068], [323240.731, 7019817.339], [323329.513, 7020012.104], [322609.933, 7020622.497], [321985.98, 7022021.905], [322891.191, 7022732.876], [323488.809, 7021697.989], [324060.86, 7022085.435], [323380.112, 7023047.126], [325087.914, 7024145.199], [326030.645, 7023526.73], [326017.331, 7023917.44], [325278.462, 7024262.246], [327057.447, 7025404.755], [328823.44, 7022503.901], [330010.884, 7023322.98], [330023.019, 7023559.594], [329602.955, 7023770.371], [329025.927, 7024365.838], [328852.333, 7024963.155], [330482.09, 7025761.893], [331025.502, 7024745.899], [330919.65, 7023823.775], [330990.19, 7023433.797], [331315.981, 7023595.571], [331327.963, 7024707.695], [332206.254, 7024598.559], [333167.948, 7024978.74], [333908.433, 7023491.887], [335328.091, 7024162.012], [334511.181, 7025431.274], [335202.889, 7026028.765], [335981.742, 7026496.518], [334534.4, 7028636.642], [334959.588, 7028919.661], [335476.666, 7027915.227], [335926.973, 7028087.83], [335277.05, 7029358.667], [334728.221, 7029605.109], [334271.412, 7030047.344], [333656.238, 7029937.78], [333288.859, 7030482.837], [334990.189, 7032062.987], [336381.525, 7028425.981]], [[321696.369, 7015476.648], [322079.757, 7014768.243], [322466.176, 7012850.812], [322157.021, 7012609.221], [321710.938, 7014683.061], [321380.113, 7014964.156], [321119.741, 7015440.983], [321244.573, 7015908.62], [321696.369, 7015476.648]], [[338931.935, 7023487.98], [339192.861, 7022471.395], [339932.107, 7021744.371], [340354.266, 7021134.252], [340075.609, 7020897.149], [339636.289, 7021625.98], [339300.81, 7021495.36], [338196.285, 7023565.7], [338420.421, 7024035.025], [338931.935, 7023487.98]]]}}, {\\\"id\\\": \\\"308\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kajaani\\\", \\\"elakelaisten_osuus\\\": 28.1, \\\"freshwarea\\\": 429.2, \\\"gml_id\\\": 1601100274, \\\"landarea\\\": 1834.78, \\\"namefin\\\": \\\"Kajaani\\\", \\\"nameswe\\\": \\\"Kajana\\\", \\\"natcode\\\": \\\"205\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2263.98}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[502087.385, 7132317.391], [502304.602, 7132465.506], [502420.294, 7132205.705], [502789.504, 7132092.999], [503053.111, 7132413.27], [503550.713, 7131888.692], [502464.094, 7131225.009], [502887.018, 7130544.818], [502529.348, 7130434.294], [502218.87, 7130695.926], [501863.187, 7130597.958], [501650.506, 7130849.799], [501686.386, 7131064.051], [501157.458, 7132050.544], [501941.642, 7132651.145], [502087.385, 7132317.391]]], [[[545113.067, 7135843.595], [547521.275, 7133672.34], [548064.303, 7134141.997], [548525.883, 7133696.606], [553775.564, 7131594.474], [554778.497, 7132843.339], [556015.922, 7131849.309], [553675.614, 7130689.24], [553757.794, 7129844.893], [552932.762, 7130542.862], [549871.938, 7126737.187], [547515.046, 7124905.185], [548409.694, 7123909.508], [548240.559, 7123587.603], [546543.723, 7124505.314], [545936.621, 7123063.868], [545289.781, 7123433.089], [543544.497, 7121956.662], [541020.419, 7115602.459], [540885.579, 7115020.886], [538745.374, 7115354.196], [539327.166, 7114548.571], [540772.896, 7114532.96], [541463.446, 7114383.989], [541399.527, 7113490.034], [541062.071, 7112769.966], [540224.542, 7112127.296], [540598.168, 7111253.311], [540474.289, 7110746.627], [540619.595, 7108924.811], [540893.592, 7108520.317], [540797.186, 7106430.151], [541519.641, 7104708.697], [541203.91, 7104370.085], [541485.243, 7104275.052], [541362.757, 7102693.164], [540603.218, 7102212.076], [541861.986, 7100836.36], [542355.255, 7101364.961], [543924.579, 7099278.777], [543899.289, 7098738.905], [544529.761, 7098514.44], [549070.841, 7094100.537], [549545.448, 7093159.871], [549996.022, 7092820.849], [550533.804, 7092866.261], [550754.07, 7092632.222], [550065.201, 7091804.043], [552290.472, 7086700.074], [550812.267, 7083205.238], [549433.7, 7081994.305], [548396.704, 7081549.733], [547877.971, 7081968.55], [547699.719, 7081761.896], [547972.198, 7081367.701], [546200.491, 7080614.814], [545558.664, 7080024.947], [544756.828, 7080852.564], [543902.663, 7080507.429], [538925.193, 7084741.48], [538582.032, 7085233.406], [537505.952, 7086030.966], [537365.218, 7086313.182], [536885.671, 7086582.535], [536559.717, 7087017.864], [532559.692, 7088605.513], [531899.222, 7088122.338], [526482.682, 7092271.614], [523400.532, 7092809.191], [524354.101, 7091504.383], [522029.293, 7090894.056], [520998.113, 7091275.183], [520762.838, 7092076.659], [520367.927, 7092148.981], [520734.952, 7092515.29], [520689.395, 7093149.515], [520502.611, 7093336.756], [518557.507, 7093812.219], [512776.493, 7095851.907], [506419.508, 7096756.403], [505965.857, 7096106.027], [505835.73, 7095992.143], [505472.895, 7096400.085], [505391.302, 7096326.377], [500613.63, 7096898.191], [493669.471, 7101140.706], [489315.436, 7103395.369], [489118.094, 7110371.574], [488722.627, 7110054.641], [488582.814, 7110316.427], [489129.12, 7110807.551], [488879.423, 7121106.639], [488735.814, 7126583.419], [488732.51, 7126901.274], [487817.249, 7128077.452], [489646.001, 7129573.573], [490992.63, 7131144.094], [492202.326, 7131169.621], [492135.982, 7130938.809], [492519.147, 7130671.238], [493335.327, 7131106.481], [493498.295, 7130984.377], [494039.438, 7130976.448], [494250.821, 7130618.841], [494599.233, 7130621.624], [494913.088, 7131768.393], [496423.331, 7131771.429], [496215.344, 7132865.006], [497180.609, 7133462.036], [498262.02, 7129968.158], [502052.41, 7128720.126], [509082.061, 7131608.553], [514821.627, 7130717.809], [520667.276, 7129721.824], [523382.565, 7132961.268], [527689.922, 7131461.795], [531477.329, 7136138.285], [536981.87, 7136151.212], [538276.348, 7137945.896], [545113.067, 7135843.595]], [[492975.088, 7126811.191], [492107.954, 7125990.601], [491515.96, 7125798.493], [491147.195, 7126834.366], [490803.486, 7127856.332], [491047.936, 7127953.066], [492975.088, 7126811.191]]]]}}, {\\\"id\\\": \\\"309\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rautj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 45.9, \\\"freshwarea\\\": 50.39, \\\"gml_id\\\": 1601100427, \\\"landarea\\\": 351.51, \\\"namefin\\\": \\\"Rautj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Rautj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"689\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 401.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[620956.825, 6821823.99], [621125.106, 6822530.853], [622639.586, 6822660.992], [622539.434, 6821971.355], [622285.382, 6820785.794], [623268.2, 6820457.357], [623612.32, 6819945.87], [624532.978, 6820369.687], [625471.324, 6819492.432], [625892.02, 6819723.983], [626045.338, 6819111.325], [627049.123, 6816525.931], [627131.104, 6815588.713], [628476.781, 6814481.072], [629263.017, 6813466.27], [629717.134, 6813789.529], [630624.12, 6813209.471], [630626.35, 6813208.045], [630272.903, 6812827.132], [630185.142, 6812732.55], [630185.607, 6812732.1], [630185.616, 6812732.092], [630413.055, 6812512.125], [628878.3, 6810311.3], [627542.9, 6808494.4], [626027.9, 6806345.7], [624829.5, 6804566.7], [624790.6, 6804401.2], [624707.1, 6804320.6], [624589.8, 6804277.7], [624528.5, 6804146.0], [624448.1, 6804045.6], [624420.2, 6803959.1], [624335.3, 6803909.3], [624342.2, 6803832.4], [624268.3, 6803785.9], [624207.9, 6803706.4], [624196.4, 6803580.9], [624236.3, 6803493.5], [624224.0, 6803311.0], [621391.4, 6797377.8], [620155.1, 6795597.9], [620384.7, 6795295.8], [620362.3, 6795006.7], [620055.8, 6794718.3], [619757.8, 6794734.4], [619448.5, 6794369.1], [619143.0, 6794273.8], [619103.2, 6794098.4], [619010.4, 6794085.2], [618578.1, 6793749.1], [618608.9, 6793652.6], [618529.9, 6793509.1], [618393.7, 6793476.8], [618238.1, 6793382.9], [618003.5, 6793331.3], [617901.9, 6793158.4], [616838.6, 6791963.9], [616863.4, 6791868.2], [616772.2, 6791606.4], [616713.1, 6791605.6], [616599.4, 6791694.3], [616037.2, 6791062.6], [611969.414, 6788012.02], [611631.689, 6788369.955], [610861.94, 6788936.183], [610488.015, 6789015.407], [608560.973, 6791652.929], [609296.602, 6791821.333], [609484.7, 6792534.617], [609185.527, 6792786.074], [609043.947, 6794321.848], [609515.457, 6794293.079], [609968.633, 6794441.103], [610452.754, 6794743.548], [610373.902, 6795216.418], [609943.921, 6795825.829], [610329.748, 6796038.511], [610367.84, 6796625.01], [609331.8, 6797242.202], [608875.624, 6797795.772], [609386.034, 6798165.399], [609877.752, 6798031.681], [610816.91, 6798130.993], [611201.586, 6798294.372], [611075.882, 6798638.78], [610536.864, 6798906.628], [609666.338, 6800359.754], [609819.806, 6800881.004], [610256.487, 6801363.137], [610136.203, 6801735.097], [610262.988, 6802405.638], [611134.807, 6802750.563], [610777.953, 6803879.01], [610151.83, 6804132.758], [610177.766, 6804582.797], [610931.76, 6805770.365], [609310.884, 6806212.706], [609330.881, 6806548.118], [608722.584, 6806805.981], [608233.914, 6806527.044], [607889.976, 6806883.307], [608356.053, 6807293.944], [609442.911, 6806897.4], [609604.464, 6806683.562], [612086.467, 6806453.713], [612669.583, 6806301.651], [612970.962, 6806620.452], [613502.726, 6808842.434], [613652.36, 6809727.207], [613909.552, 6810425.981], [613863.907, 6810975.914], [614790.972, 6811964.521], [615023.114, 6812491.613], [613648.111, 6813324.835], [613287.563, 6813250.195], [612109.663, 6814273.815], [611681.196, 6814924.61], [610033.227, 6815822.391], [611581.985, 6818337.888], [612394.416, 6817927.151], [612570.536, 6817623.219], [613350.867, 6817724.999], [613916.497, 6818368.728], [614937.321, 6819785.317], [615680.838, 6819528.231], [616440.175, 6819746.949], [616934.369, 6819136.207], [617953.956, 6818825.979], [618556.525, 6821336.418], [618959.17, 6822774.405], [620956.825, 6821823.99]]]}}]}\",\"selected\":{\"id\":\"1492\"},\"selection_policy\":{\"id\":\"1491\"}},\"id\":\"1456\",\"type\":\"GeoJSONDataSource\"},{\"attributes\":{},\"id\":\"1492\",\"type\":\"Selection\"},{\"attributes\":{\"text\":\"Pension\\u00e4rernas andel av befolkningen 2018 (enligt 2020 kommungr\\u00e4nser). \"},\"id\":\"1424\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"1489\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1426\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1430\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1488\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1447\",\"type\":\"HelpTool\"},{\"attributes\":{},\"id\":\"1428\",\"type\":\"DataRange1d\"},{\"attributes\":{\"formatter\":{\"id\":\"1485\"},\"major_label_policy\":{\"id\":\"1486\"},\"ticker\":{\"id\":\"1439\"}},\"id\":\"1438\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1432\",\"type\":\"LinearScale\"},{\"attributes\":{\"formatter\":{\"id\":\"1488\"},\"major_label_policy\":{\"id\":\"1489\"},\"ticker\":{\"id\":\"1435\"}},\"id\":\"1434\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1435\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"1434\"},\"ticker\":null},\"id\":\"1437\",\"type\":\"Grid\"},{\"attributes\":{\"axis\":{\"id\":\"1438\"},\"dimension\":1,\"ticker\":null},\"id\":\"1441\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1439\",\"type\":\"BasicTicker\"},{\"attributes\":{\"active_multi\":null,\"tools\":[{\"id\":\"1442\"},{\"id\":\"1443\"},{\"id\":\"1444\"},{\"id\":\"1445\"},{\"id\":\"1446\"},{\"id\":\"1447\"}]},\"id\":\"1449\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"1443\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"field\":\"elakelaisten_osuus\",\"transform\":{\"id\":\"1457\"}},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"xs\":{\"field\":\"xs\"},\"ys\":{\"field\":\"ys\"}},\"id\":\"1460\",\"type\":\"Patches\"},{\"attributes\":{},\"id\":\"1442\",\"type\":\"PanTool\"},{\"attributes\":{\"source\":{\"id\":\"1456\"}},\"id\":\"1462\",\"type\":\"CDSView\"},{\"attributes\":{\"overlay\":{\"id\":\"1448\"}},\"id\":\"1444\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1486\",\"type\":\"AllLabels\"},{\"attributes\":{\"data_source\":{\"id\":\"1456\"},\"glyph\":{\"id\":\"1459\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1460\"},\"view\":{\"id\":\"1462\"}},\"id\":\"1461\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1445\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"1446\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"1491\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"high\":48.8,\"low\":12.6,\"palette\":[\"#edf8e9\",\"#c7e9c0\",\"#a1d99b\",\"#74c476\",\"#31a354\",\"#006d2c\"]},\"id\":\"1457\",\"type\":\"LinearColorMapper\"},{\"attributes\":{},\"id\":\"1485\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"elakelaisten_osuus\",\"transform\":{\"id\":\"1457\"}},\"line_color\":{\"value\":\"#1f77b4\"},\"xs\":{\"field\":\"xs\"},\"ys\":{\"field\":\"ys\"}},\"id\":\"1459\",\"type\":\"Patches\"}],\"root_ids\":[\"1423\"]},\"title\":\"Bokeh Application\",\"version\":\"2.3.3\"}};\n", " var render_items = [{\"docid\":\"615f3746-0034-4292-8c5c-6064141ba5fc\",\"root_ids\":[\"1423\"],\"roots\":{\"1423\":\"46edd3ff-5fc5-4eb8-9d70-ea28f626f962\"}}];\n", " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", "\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " var attempts = 0;\n", " var timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "1423" } }, "output_type": "display_data" } ], "source": [ "# Vi läser in funktionerna som behövs från deras respetive funktionsbibliotek.\n", "from bokeh.plotting import figure\n", "from bokeh.models import GeoJSONDataSource, LinearColorMapper\n", "from bokeh.palettes import Greens\n", "from bokeh.io import output_notebook, show\n", "\n", "# Vi grundar en ny bild och väljer en titel. Vi sparar bilden som variabeln \"fig\"\n", "fig = figure(title=\"Pensionärernas andel av befolkningen 2018 (enligt 2020 kommungränser). \")\n", "\n", "# Vi ändrar vår data till json-format (.to_json) och sedan till GeoJSONDataSource.\n", "data_json = data.to_json()\n", "geosource = GeoJSONDataSource(geojson = data_json)\n", "\n", "# Vi väljer en grönskala med 6 olika toner.\n", "# [::-1] på slutet inverterar skalan, så att högre värden motsvaras av mörkare toner.\n", "palette = Greens[6][::-1]\n", "\n", "# Vi ska definiera en skala, och väljer det lägsta värdet som nedre gräns och det högsta värdet som övre gräns.\n", "color_mapper = LinearColorMapper(palette = palette,\n", " low = data['elakelaisten_osuus'].min(),\n", " high = data['elakelaisten_osuus'].max())\n", "\n", "# Vi ritar in kommungränserna på kartan.\n", "# I GeoJSONDataSource-formatet har geometry-kolumnen ändrat till kolumnerna 'xs' och 'ys'\n", "# Vi ritar gränserna utgående från 'geosource'-variabeln som vi definierade tidigare.\n", "# Vi färglägger alla områden med fill_color-kommandot. Då behöver vi ange kolumnens namn och färgskalan.\n", "fig.patches('xs','ys',\n", " source = geosource,\n", " fill_color={'field':'elakelaisten_osuus','transform': color_mapper})\n", "\n", "# Vi ser till att resultatet visas här i samma notebook\n", "output_notebook()\n", "\n", "# Visa kartan\n", "show(fig)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Sådär! Nu fick vi kartan att synas med hjälp av Bokeh. Vi märker att andelen pensionärer är betydligt större i Östra Finland jämfört med t.ex. Huvudstadsregionen. Kustkommunerna, och speciellt Åland, ser lite märkliga ut eftersom också havsområden är markerade.\n", "\n", "Kartan har redan några praktiska verktyg som låter oss dra och zooma kartan, eller spara den. Den här kartan kan i någon mån anses vara interaktiv, men vi vill göra en karta där vi kan se information om områden när vi för pekaren över dem. Då behöver vi också verktyget [`HoverTool`](https://docs.bokeh.org/en/latest/docs/reference/models/tools.html#bokeh.models.tools.HoverTool) från Bokeh-biblioteket." ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "scrolled": false }, "outputs": [ { "data": { "text/html": [ "\n", "
\n", " \n", " Loading BokehJS ...\n", "
" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "\n", "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " var force = true;\n", "\n", " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", " root._bokeh_onload_callbacks = [];\n", " root._bokeh_is_loading = undefined;\n", " }\n", "\n", " var JS_MIME_TYPE = 'application/javascript';\n", " var HTML_MIME_TYPE = 'text/html';\n", " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", " var CLASS_NAME = 'output_bokeh rendered_html';\n", "\n", " /**\n", " * Render data to the DOM node\n", " */\n", " function render(props, node) {\n", " var script = document.createElement(\"script\");\n", " node.appendChild(script);\n", " }\n", "\n", " /**\n", " * Handle when an output is cleared or removed\n", " */\n", " function handleClearOutput(event, handle) {\n", " var cell = handle.cell;\n", "\n", " var id = cell.output_area._bokeh_element_id;\n", " var server_id = cell.output_area._bokeh_server_id;\n", " // Clean up Bokeh references\n", " if (id != null && id in Bokeh.index) {\n", " Bokeh.index[id].model.document.clear();\n", " delete Bokeh.index[id];\n", " }\n", "\n", " if (server_id !== undefined) {\n", " // Clean up Bokeh references\n", " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", " cell.notebook.kernel.execute(cmd, {\n", " iopub: {\n", " output: function(msg) {\n", " var id = msg.content.text.trim();\n", " if (id in Bokeh.index) {\n", " Bokeh.index[id].model.document.clear();\n", " delete Bokeh.index[id];\n", " }\n", " }\n", " }\n", " });\n", " // Destroy server and session\n", " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", " cell.notebook.kernel.execute(cmd);\n", " }\n", " }\n", "\n", " /**\n", " * Handle when a new output is added\n", " */\n", " function handleAddOutput(event, handle) {\n", " var output_area = handle.output_area;\n", " var output = handle.output;\n", "\n", " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", " return\n", " }\n", "\n", " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", "\n", " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", " // store reference to embed id on output_area\n", " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " }\n", " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " var bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " var script_attrs = bk_div.children[0].attributes;\n", " for (var i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", " }\n", "\n", " function register_renderer(events, OutputArea) {\n", "\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " var toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[toinsert.length - 1]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " /* Handle when an output is cleared or removed */\n", " events.on('clear_output.CodeCell', handleClearOutput);\n", " events.on('delete.Cell', handleClearOutput);\n", "\n", " /* Handle when a new output is added */\n", " events.on('output_added.OutputArea', handleAddOutput);\n", "\n", " /**\n", " * Register the mime type and append_mime function with output_area\n", " */\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " /* Is output safe? */\n", " safe: true,\n", " /* Index of renderer in `output_area.display_order` */\n", " index: 0\n", " });\n", " }\n", "\n", " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", " if (root.Jupyter !== undefined) {\n", " var events = require('base/js/events');\n", " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", "\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " }\n", "\n", " \n", " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " var NB_LOAD_WARNING = {'data': {'text/html':\n", " \"
\\n\"+\n", " \"

\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"

\\n\"+\n", " \"\\n\"+\n", " \"\\n\"+\n", " \"from bokeh.resources import INLINE\\n\"+\n", " \"output_notebook(resources=INLINE)\\n\"+\n", " \"\\n\"+\n", " \"
\"}};\n", "\n", " function display_loaded() {\n", " var el = document.getElementById(\"1576\");\n", " if (el != null) {\n", " el.textContent = \"BokehJS is loading...\";\n", " }\n", " if (root.Bokeh !== undefined) {\n", " if (el != null) {\n", " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(display_loaded, 100)\n", " }\n", " }\n", "\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", " if (root._bokeh_is_loading > 0) {\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " }\n", " if (js_urls == null || js_urls.length === 0) {\n", " run_callbacks();\n", " return null;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", "\n", " function on_error(url) {\n", " console.error(\"failed to load \" + url);\n", " }\n", "\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " }\n", "\n", " const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js\": \"dM3QQsP+wXdHg42wTqW85BjZQdLNNIXqlPw/BgKoExPmTG7ZLML4EGqLMfqHT6ON\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.3.min.js\": \"8x57I4YuIfu8XyZfFo0XVr2WAT8EK4rh/uDe3wF7YuW2FNUSNEpJbsPaB1nJ2fz2\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js\": \"3QTqdz9LyAm2i0sG5XTePsHec3UHWwVsrOL68SYRoAXsafvfAyqtQ+h440+qIBhS\"};\n", "\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.async = false;\n", " element.src = url;\n", " if (url in hashes) {\n", " element.crossOrigin = \"anonymous\";\n", " element.integrity = \"sha384-\" + hashes[url];\n", " }\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " \n", " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.3.min.js\"];\n", " var css_urls = [];\n", " \n", "\n", " var inline_js = [\n", " function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", " function(Bokeh) {\n", " \n", " \n", " }\n", " ];\n", "\n", " function run_inline_js() {\n", " \n", " if (root.Bokeh !== undefined || force === true) {\n", " \n", " for (var i = 0; i < inline_js.length; i++) {\n", " inline_js[i].call(root, root.Bokeh);\n", " }\n", " if (force === true) {\n", " display_loaded();\n", " }} else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " } else if (force !== true) {\n", " var cell = $(document.getElementById(\"1576\")).parents('.cell').data().cell;\n", " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", " }\n", "\n", " }\n", "\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", " run_inline_js();\n", " } else {\n", " load_libs(css_urls, js_urls, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", "}(window));" ], "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"1576\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js\": \"dM3QQsP+wXdHg42wTqW85BjZQdLNNIXqlPw/BgKoExPmTG7ZLML4EGqLMfqHT6ON\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.3.min.js\": \"8x57I4YuIfu8XyZfFo0XVr2WAT8EK4rh/uDe3wF7YuW2FNUSNEpJbsPaB1nJ2fz2\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js\": \"3QTqdz9LyAm2i0sG5XTePsHec3UHWwVsrOL68SYRoAXsafvfAyqtQ+h440+qIBhS\"};\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n if (url in hashes) {\n element.crossOrigin = \"anonymous\";\n element.integrity = \"sha384-\" + hashes[url];\n }\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n \n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.3.min.js\"];\n var css_urls = [];\n \n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n function(Bokeh) {\n \n \n }\n ];\n\n function run_inline_js() {\n \n if (root.Bokeh !== undefined || force === true) {\n \n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"1576\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " \n", " var docs_json = {\"05494ece-053e-4bba-950f-27efdff6f58e\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1434\"}],\"center\":[{\"id\":\"1437\"},{\"id\":\"1441\"}],\"left\":[{\"id\":\"1438\"}],\"renderers\":[{\"id\":\"1461\"}],\"title\":{\"id\":\"1424\"},\"toolbar\":{\"id\":\"1449\"},\"x_range\":{\"id\":\"1426\"},\"x_scale\":{\"id\":\"1430\"},\"y_range\":{\"id\":\"1428\"},\"y_scale\":{\"id\":\"1432\"}},\"id\":\"1423\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1448\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"geojson\":\"{\\\"type\\\": \\\"FeatureCollection\\\", \\\"features\\\": [{\\\"id\\\": \\\"0\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Reisj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 32.0, \\\"freshwarea\\\": 28.74, \\\"gml_id\\\": 1601100430, \\\"landarea\\\": 474.6, \\\"namefin\\\": \\\"Reisj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Reisj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"691\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 503.34}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[418701.443, 7055306.898], [418485.792, 7054001.707], [417581.224, 7053873.772], [417362.019, 7055296.974], [418235.255, 7056066.626], [418701.443, 7055306.898]]], [[[389116.555, 7071632.1], [389374.26, 7070643.179], [389688.93, 7070238.472], [389610.528, 7069940.564], [389372.326, 7069854.524], [389091.691, 7069936.651], [388812.242, 7071310.981], [388079.034, 7071246.667], [387655.765, 7072185.048], [387873.911, 7072207.187], [388212.335, 7071840.756], [388838.687, 7071634.967], [388643.78, 7072242.091], [388625.724, 7072707.16], [388749.673, 7072774.295], [389116.555, 7071632.1]]], [[[406550.481, 7071631.232], [406277.927, 7070869.142], [406372.229, 7070198.322], [405959.33, 7069904.897], [406267.167, 7069478.074], [406036.303, 7069089.489], [406557.795, 7068613.364], [406698.212, 7068232.278], [406892.445, 7067970.528], [406872.32, 7067754.169], [406546.368, 7067664.027], [406497.714, 7067265.547], [407052.113, 7067331.05], [407254.409, 7066688.361], [407503.513, 7066435.975], [407993.512, 7066422.911], [408252.135, 7066087.42], [408555.479, 7066273.134], [408589.61, 7066563.033], [408476.117, 7067165.432], [409017.747, 7067196.34], [409041.152, 7066948.29], [409355.501, 7067277.841], [409199.816, 7067708.582], [409536.879, 7067739.631], [409656.252, 7067595.437], [409642.429, 7067107.224], [408877.152, 7066247.035], [408742.1, 7065701.829], [409367.791, 7065462.568], [410047.51, 7064925.544], [409137.936, 7064653.964], [408911.117, 7064491.545], [409263.006, 7064375.245], [410652.149, 7063553.71], [410797.436, 7063215.181], [410332.849, 7062647.402], [410546.542, 7062374.1], [410484.467, 7061759.534], [410881.037, 7061777.96], [411340.281, 7060620.229], [411307.598, 7060145.806], [411571.319, 7060348.785], [412036.997, 7060394.735], [412261.232, 7059937.798], [411617.589, 7059751.508], [411730.979, 7059315.922], [412510.55, 7059106.793], [412626.643, 7058893.788], [412087.739, 7058445.592], [412733.309, 7057537.184], [413205.377, 7057847.259], [413627.8, 7057246.097], [413101.212, 7057274.888], [413151.118, 7056735.373], [412321.577, 7055698.715], [412982.72, 7054781.153], [407657.217, 7050922.609], [406076.256, 7042943.258], [404408.486, 7039073.207], [402107.619, 7038128.976], [396223.967, 7045813.228], [391823.151, 7052793.048], [388640.584, 7055639.208], [382074.78, 7060027.664], [382095.705, 7060308.614], [382441.533, 7060047.087], [382516.652, 7060212.749], [384316.07, 7062468.734], [383242.41, 7063430.535], [382528.059, 7064157.977], [382598.281, 7064210.307], [383899.512, 7063387.13], [384488.109, 7062662.534], [385214.342, 7063404.681], [384495.951, 7063814.001], [384512.039, 7064353.708], [384044.296, 7064559.518], [383416.175, 7065152.83], [382644.532, 7066065.687], [382461.436, 7066771.926], [382700.634, 7066947.351], [382835.103, 7066292.478], [383114.849, 7066095.15], [383826.376, 7065142.315], [384012.991, 7064847.849], [384479.572, 7064840.283], [384888.834, 7064229.273], [384967.969, 7063800.25], [385366.498, 7063566.582], [388181.098, 7066578.281], [388144.807, 7066976.413], [388902.338, 7066713.881], [389161.497, 7066283.394], [395724.234, 7062689.163], [397258.568, 7061945.667], [397676.71, 7063185.945], [397107.482, 7063224.888], [396743.194, 7063587.272], [397124.355, 7063757.215], [397421.014, 7064018.072], [396925.723, 7064253.882], [396828.944, 7064995.382], [396318.042, 7064771.779], [395785.178, 7065035.54], [395107.458, 7065699.103], [395203.356, 7065827.809], [395667.932, 7065647.804], [395939.935, 7065333.838], [396302.796, 7065765.531], [396468.89, 7065168.543], [397023.242, 7065544.031], [397467.158, 7065285.512], [397123.47, 7065056.144], [397784.538, 7064248.101], [397628.898, 7063521.442], [397897.74, 7063511.032], [399151.964, 7071604.938], [399710.4, 7071681.336], [401564.872, 7070691.202], [402135.964, 7069761.974], [402925.18, 7071093.19], [403774.699, 7070415.486], [403539.708, 7070152.711], [405349.819, 7068795.945], [405808.43, 7069404.76], [405366.243, 7069689.757], [406026.243, 7070483.217], [405677.328, 7070842.391], [406387.545, 7071758.781], [406550.481, 7071631.232]], [[404713.93, 7067951.36], [404899.143, 7068199.265], [405577.833, 7067691.095], [404636.193, 7066662.826], [404260.3, 7067202.146], [404531.902, 7067424.486], [404269.734, 7067678.253], [404004.276, 7067569.56], [403827.46, 7067826.28], [404019.677, 7068074.543], [403768.422, 7068345.63], [403962.631, 7068579.026], [404713.93, 7067951.36]]]]}}, {\\\"id\\\": \\\"1\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Turku\\\", \\\"elakelaisten_osuus\\\": 24.2, \\\"freshwarea\\\": 3.47, \\\"gml_id\\\": 1601100624, \\\"landarea\\\": 245.66, \\\"namefin\\\": \\\"Turku\\\", \\\"nameswe\\\": \\\"\\\\u00c5bo\\\", \\\"natcode\\\": \\\"853\\\", \\\"seawarea\\\": 57.22, \\\"totalarea\\\": 306.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[249073.975, 6725828.546], [248775.53, 6725491.379], [248460.65, 6725741.379], [246830.533, 6722844.979], [246300.199, 6721309.72], [246294.932, 6721075.124], [246228.54, 6719343.719], [246667.202, 6718822.446], [245701.558, 6716884.842], [244825.727, 6715370.219], [245363.859, 6714707.18], [245832.073, 6714528.813], [245370.121, 6713650.59], [245058.936, 6713448.535], [244279.15, 6714124.228], [243438.857, 6712982.504], [243762.982, 6712390.701], [244095.139, 6712519.864], [244460.089, 6711826.499], [245266.866, 6709451.216], [244869.462, 6709369.222], [245139.861, 6708768.784], [244865.892, 6708294.322], [243575.088, 6707737.168], [242897.594, 6707103.652], [241776.984, 6706438.115], [241030.459, 6706214.132], [240582.211, 6706184.043], [239767.447, 6705590.767], [240036.254, 6705106.084], [240200.39, 6704259.06], [240051.274, 6703759.665], [240373.16, 6703192.745], [241197.924, 6703081.102], [241384.58, 6701972.949], [241174.872, 6701432.765], [241481.885, 6700941.815], [241681.605, 6700245.15], [241259.876, 6699404.627], [240956.864, 6699162.204], [240008.098, 6699378.475], [239241.198, 6698998.88], [238235.56, 6699101.525], [237727.773, 6698846.377], [237284.214, 6698507.348], [236900.355, 6698434.226], [236347.31, 6698852.852], [235792.214, 6698209.134], [234899.196, 6698220.645], [234204.039, 6698501.413], [233449.271, 6699015.245], [232909.428, 6698932.925], [231638.026, 6699229.97], [231163.917, 6699468.75], [230061.904, 6699111.899], [228597.413, 6699757.856], [228193.083, 6699615.667], [228253.615, 6700171.949], [229188.53, 6701412.634], [228691.925, 6701676.26], [228333.285, 6701715.552], [228284.797, 6701799.795], [228011.532, 6702274.564], [228155.912, 6702439.352], [228185.398, 6702828.43], [228348.717, 6703323.663], [228858.24, 6703886.203], [229590.134, 6705435.827], [229470.172, 6708168.048], [229216.712, 6708422.847], [229072.472, 6709282.223], [229303.005, 6709852.733], [229751.474, 6710366.715], [230780.77, 6710476.329], [230992.164, 6711298.417], [231097.55, 6712047.676], [231342.832, 6711884.384], [231867.009, 6712835.119], [232691.064, 6713037.804], [233676.802, 6712936.049], [233881.452, 6712612.212], [234312.124, 6712653.628], [235620.049, 6712433.718], [235719.426, 6712962.695], [236077.69, 6713302.323], [236433.342, 6714042.766], [236744.25, 6713917.739], [236800.025, 6714774.117], [237925.619, 6715645.233], [237999.991, 6715302.327], [239212.053, 6716883.621], [239031.602, 6717088.129], [238650.348, 6717524.717], [238408.189, 6717771.664], [238887.308, 6718239.33], [237832.263, 6719201.024], [238266.697, 6719326.242], [239225.506, 6718845.252], [239613.159, 6718301.412], [239844.47, 6718435.527], [239720.651, 6718819.753], [239865.075, 6718991.8], [240176.902, 6718406.035], [240966.093, 6719689.578], [241438.801, 6720231.044], [241582.428, 6720831.328], [242019.815, 6721658.12], [242636.725, 6724182.534], [244013.124, 6726471.69], [246270.765, 6728419.956], [246938.099, 6729125.065], [247806.495, 6730482.339], [248030.263, 6731020.237], [247772.946, 6731373.64], [248104.726, 6731563.523], [250110.717, 6742255.941], [251719.145, 6736864.75], [251757.892, 6734926.868], [251652.34, 6734393.748], [251589.987, 6732957.986], [251038.068, 6731421.609], [250828.344, 6730648.815], [251061.931, 6730032.491], [250772.145, 6729961.492], [249886.998, 6727200.66], [248898.263, 6726195.203], [249073.975, 6725828.546]]]}}, {\\\"id\\\": \\\"2\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"K\\\\u00f6kar\\\", \\\"elakelaisten_osuus\\\": 36.4, \\\"freshwarea\\\": 0.43, \\\"gml_id\\\": 1601100110, \\\"landarea\\\": 63.5700000000002, \\\"namefin\\\": \\\"K\\\\u00f6kar\\\", \\\"nameswe\\\": \\\"K\\\\u00f6kar\\\", \\\"natcode\\\": \\\"318\\\", \\\"seawarea\\\": 2101.02, \\\"totalarea\\\": 2165.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[172798.744, 6674623.732], [173415.386, 6671793.648], [173445.193, 6670509.506], [173499.649, 6664445.477], [174684.898, 6660201.744], [177862.179, 6658560.503], [183780.112, 6652180.833], [181097.209, 6646222.985], [177959.57, 6638840.211], [170739.665, 6610069.233], [147435.516, 6615916.902], [125351.327, 6609670.918], [125144.229, 6609616.618], [124724.496, 6609532.048], [124299.565, 6609480.065], [123871.836, 6609460.869], [123443.907, 6609474.66], [123230.692, 6609493.851], [123018.378, 6609521.238], [122597.547, 6609600.502], [122389.83, 6609652.18], [121980.995, 6609779.325], [121780.577, 6609854.594], [121389.035, 6610028.021], [121198.612, 6610125.88], [120829.763, 6610343.289], [120651.835, 6610462.44], [120310.475, 6610720.833], [119990.006, 6611004.717], [119817.787, 6611176.886], [140847.33, 6640542.36], [149751.188, 6651665.109], [151992.085, 6657754.958], [152284.008, 6666717.923], [154848.253, 6672553.746], [155895.65, 6673202.687], [157041.536, 6672621.379], [159977.1, 6672068.394], [170185.666, 6677823.73], [172798.744, 6674623.732]]]}}, {\\\"id\\\": \\\"3\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tyrn\\\\u00e4v\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 16.2, \\\"freshwarea\\\": 3.04, \\\"gml_id\\\": 1601100668, \\\"landarea\\\": 491.82, \\\"namefin\\\": \\\"Tyrn\\\\u00e4v\\\\u00e4\\\", \\\"nameswe\\\": \\\"Tyrn\\\\u00e4v\\\\u00e4\\\", \\\"natcode\\\": \\\"859\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 494.86}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[440372.786, 7197460.702], [440107.431, 7197265.781], [440361.296, 7196882.91], [439980.948, 7196840.426], [440331.054, 7196554.657], [440834.202, 7196667.966], [441281.21, 7195919.457], [441112.556, 7195487.279], [441416.879, 7194904.382], [441619.044, 7195182.552], [442335.54, 7194094.239], [442144.708, 7193834.808], [442667.33, 7193524.14], [447198.763, 7185761.643], [446637.653, 7185607.771], [445383.118, 7186907.282], [445620.562, 7187234.492], [445386.793, 7187555.681], [444519.351, 7187367.943], [444123.769, 7187429.344], [443546.24, 7187308.11], [443421.94, 7187634.156], [443174.505, 7187233.633], [443334.793, 7186854.713], [444150.067, 7187150.846], [444714.513, 7187014.911], [446877.828, 7184877.676], [447081.722, 7185157.294], [447485.415, 7185259.291], [452067.264, 7177393.754], [450828.917, 7176675.778], [452394.372, 7173984.081], [450146.725, 7171080.342], [449103.854, 7169736.852], [458252.749, 7162548.499], [457121.429, 7161098.095], [457450.166, 7160845.3], [456863.654, 7160163.334], [455773.633, 7161005.771], [455206.871, 7160054.659], [453603.28, 7160912.731], [452316.221, 7162050.94], [451409.886, 7160874.61], [450275.357, 7161750.766], [451542.341, 7163383.652], [451142.808, 7163402.81], [451020.677, 7163787.127], [450722.405, 7163834.569], [450521.727, 7164167.831], [450267.14, 7164075.088], [449478.493, 7164312.677], [448890.707, 7163530.105], [447838.076, 7164348.928], [448398.158, 7164833.748], [448136.343, 7165057.832], [448156.385, 7165496.382], [447919.367, 7165637.492], [447547.258, 7166044.129], [447171.306, 7165484.684], [446868.66, 7165907.493], [447031.142, 7166242.482], [447049.248, 7166719.752], [446547.932, 7167037.149], [445962.01, 7167303.434], [445542.703, 7167654.54], [445052.843, 7167787.09], [444613.197, 7168101.23], [444197.027, 7168314.142], [443969.656, 7168582.061], [443573.702, 7168563.908], [442329.908, 7170193.697], [442181.564, 7170062.761], [441563.211, 7170643.739], [441555.621, 7170949.927], [441225.755, 7171163.734], [440595.916, 7171403.574], [436269.05, 7167581.282], [436873.929, 7167791.167], [437630.676, 7167544.06], [437901.767, 7167982.905], [438220.936, 7167773.293], [438064.587, 7167619.884], [439700.775, 7166978.622], [439537.43, 7166560.395], [439080.588, 7166176.445], [439644.237, 7165579.812], [439222.223, 7165081.026], [439584.708, 7165036.503], [439956.656, 7165361.136], [440147.368, 7165121.044], [439773.794, 7164786.113], [439925.378, 7164519.999], [439586.076, 7164214.208], [439712.478, 7163725.631], [440207.444, 7163411.28], [439917.232, 7163145.538], [438980.185, 7162550.155], [438513.233, 7162911.109], [439061.554, 7163403.513], [438744.48, 7163861.375], [439040.874, 7164128.172], [438916.04, 7164552.066], [438603.063, 7164943.195], [438202.78, 7164781.744], [437764.111, 7165106.64], [437555.316, 7165681.538], [437673.413, 7165970.499], [437245.761, 7165782.021], [436842.049, 7166127.356], [436030.445, 7166381.362], [435916.408, 7166622.307], [435437.433, 7167062.535], [434924.626, 7167371.682], [434859.525, 7167515.856], [434968.701, 7167616.204], [434076.495, 7167775.031], [434247.645, 7167399.967], [434119.506, 7166766.209], [433735.846, 7166207.043], [433467.853, 7166790.336], [433657.77, 7167350.849], [433486.117, 7167882.68], [432659.211, 7168021.288], [432516.172, 7167653.266], [432153.802, 7167575.178], [431908.873, 7168161.204], [430334.388, 7174202.806], [428546.164, 7176629.556], [429412.836, 7177358.785], [429822.748, 7179205.98], [429420.136, 7179042.382], [429316.921, 7179437.34], [429643.466, 7179507.324], [429704.379, 7180197.482], [430279.332, 7180088.187], [430271.555, 7179388.337], [431339.337, 7179312.941], [432018.778, 7179067.88], [432263.129, 7178872.138], [432548.317, 7178970.313], [432660.387, 7178541.389], [433690.692, 7178700.047], [433477.701, 7179314.342], [433632.368, 7180511.624], [432017.139, 7185676.308], [431800.396, 7185111.024], [431352.319, 7185458.657], [431452.45, 7185794.665], [431937.705, 7185944.349], [431830.334, 7186519.7], [431494.889, 7187130.44], [430979.087, 7186715.076], [429498.851, 7187876.267], [429659.98, 7188246.185], [430081.27, 7187732.078], [430318.471, 7188798.123], [430295.178, 7189344.059], [431744.024, 7188971.85], [431853.529, 7189396.728], [430870.37, 7189577.897], [431391.035, 7190803.573], [431577.269, 7190768.915], [431760.105, 7191284.834], [430790.805, 7191988.669], [431165.599, 7192479.234], [431325.486, 7192284.297], [431494.369, 7192393.78], [432658.919, 7191727.399], [432727.568, 7192047.491], [433847.015, 7191627.856], [433960.389, 7192115.759], [434669.573, 7191858.349], [435115.25, 7191830.112], [435235.839, 7191654.739], [435656.934, 7191684.974], [436231.204, 7192063.566], [436196.13, 7192290.351], [439204.069, 7197562.745], [439819.994, 7198411.25], [440372.786, 7197460.702]]]}}, {\\\"id\\\": \\\"4\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siikainen\\\", \\\"elakelaisten_osuus\\\": 41.9, \\\"freshwarea\\\": 28.02, \\\"gml_id\\\": 1601100521, \\\"landarea\\\": 463.29, \\\"namefin\\\": \\\"Siikainen\\\", \\\"nameswe\\\": \\\"Siikainen\\\", \\\"natcode\\\": \\\"747\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 491.31}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[236801.933, 6882124.138], [236897.467, 6879387.39], [237047.308, 6878978.76], [237365.378, 6878989.949], [238242.343, 6876940.779], [242738.497, 6875436.609], [244656.662, 6872188.992], [245098.428, 6871537.786], [246466.189, 6870105.136], [244142.652, 6867718.005], [244652.974, 6867353.269], [242548.493, 6866327.658], [240715.686, 6866123.581], [238454.466, 6862380.77], [241042.32, 6859759.356], [240817.593, 6858942.275], [240044.205, 6858523.641], [239455.984, 6858478.339], [238230.858, 6855951.77], [235043.787, 6858477.361], [231655.348, 6858683.093], [226884.686, 6857279.844], [221808.002, 6857384.242], [219842.221, 6865149.052], [221130.561, 6871412.635], [222758.819, 6871542.319], [224521.152, 6878170.413], [224763.833, 6878131.636], [225346.628, 6887071.612], [236801.933, 6882124.138]]]}}, {\\\"id\\\": \\\"5\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Keitele\\\", \\\"elakelaisten_osuus\\\": 41.8, \\\"freshwarea\\\": 95.39, \\\"gml_id\\\": 1601100401, \\\"landarea\\\": 482.91, \\\"namefin\\\": \\\"Keitele\\\", \\\"nameswe\\\": \\\"Keitele\\\", \\\"natcode\\\": \\\"239\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 578.3}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[465986.445, 7023688.687], [465665.504, 7020106.898], [466336.531, 7019284.364], [467160.883, 7019232.168], [469144.225, 7017346.139], [470408.713, 7015591.471], [470846.145, 7014733.361], [470765.557, 7014193.089], [471163.848, 7013845.147], [471020.996, 7013398.967], [471656.724, 7009249.643], [472982.817, 7005226.325], [472898.302, 7003263.217], [472616.43, 7003071.744], [473529.025, 7001661.141], [474439.419, 6998182.904], [480114.214, 6990337.464], [480904.221, 6987909.067], [476882.933, 6985539.054], [475433.865, 6984772.006], [473815.855, 6986724.259], [467254.785, 6989706.3], [466320.21, 6989673.188], [466088.266, 6990545.334], [464760.626, 6991231.596], [463873.038, 6992141.201], [462095.686, 6993306.522], [461785.333, 6993699.555], [461831.317, 6994161.022], [460684.115, 6995532.969], [460559.19, 6995814.834], [460641.066, 6996155.147], [460458.111, 6996447.503], [460267.908, 6996562.365], [460268.331, 6997007.19], [460024.958, 6997314.793], [460021.93, 6998166.958], [459768.844, 6998480.163], [459286.173, 6999085.392], [459074.029, 6999229.576], [458977.646, 6999987.567], [459242.826, 7000494.399], [457843.939, 7002246.838], [457141.634, 7009276.441], [459013.652, 7009603.22], [458600.908, 7012749.306], [458378.495, 7012885.682], [458397.887, 7013210.974], [456944.478, 7016484.555], [456372.244, 7022676.481], [454305.846, 7025328.552], [453493.984, 7025455.896], [456080.03, 7031129.764], [458926.46, 7034751.371], [460022.611, 7035242.768], [465986.445, 7023688.687]]]}}, {\\\"id\\\": \\\"6\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Masku\\\", \\\"elakelaisten_osuus\\\": 21.3, \\\"freshwarea\\\": 1.17, \\\"gml_id\\\": 1601100156, \\\"landarea\\\": 174.75, \\\"namefin\\\": \\\"Masku\\\", \\\"nameswe\\\": \\\"Masku\\\", \\\"natcode\\\": \\\"481\\\", \\\"seawarea\\\": 28.09, \\\"totalarea\\\": 204.01}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[240730.172, 6733240.591], [240846.328, 6732915.201], [241213.81, 6732550.218], [241278.359, 6732400.636], [240716.944, 6732538.198], [240143.44, 6731614.483], [239688.003, 6731394.397], [239371.667, 6731678.987], [239677.811, 6732531.799], [240325.913, 6733245.318], [240730.172, 6733240.591]]], [[[247230.068, 6738232.614], [244908.882, 6736272.14], [243709.331, 6735398.724], [243397.56, 6736082.221], [244474.933, 6737078.488], [245139.829, 6737034.406], [245539.754, 6737254.385], [245380.87, 6737457.472], [245022.848, 6737335.197], [244902.339, 6737470.818], [248820.721, 6741084.805], [250110.717, 6742255.941], [247230.068, 6738232.614]]], [[[247002.795, 6742308.512], [247491.614, 6741082.34], [247439.622, 6740754.706], [247189.82, 6740193.301], [246904.169, 6741014.688], [246413.692, 6740822.634], [245416.085, 6741988.415], [246797.013, 6742473.879], [247002.795, 6742308.512]]], [[[238261.155, 6730253.268], [238132.365, 6730077.84], [237966.451, 6730200.965], [237739.155, 6729922.582], [238138.388, 6729791.972], [238050.58, 6729129.155], [237680.78, 6729237.52], [237426.886, 6728888.411], [237627.055, 6728742.048], [237983.956, 6728778.245], [238020.747, 6728172.343], [237807.737, 6727878.114], [237803.37, 6727309.803], [237783.639, 6727106.648], [238151.842, 6727052.079], [238006.628, 6726547.95], [237793.53, 6726147.712], [237754.212, 6725583.851], [237288.056, 6724956.928], [236874.82, 6724725.158], [236527.634, 6723919.15], [236088.898, 6724075.872], [235695.126, 6723266.63], [235824.324, 6723135.847], [234532.975, 6721474.227], [234218.548, 6721263.963], [233684.64, 6720534.296], [233641.175, 6720243.662], [232449.699, 6719681.379], [231838.288, 6719410.016], [232047.144, 6718436.723], [231813.44, 6718394.52], [231432.346, 6719221.529], [230299.548, 6718842.165], [229222.228, 6718744.638], [229329.751, 6718497.834], [227942.206, 6718041.726], [226840.298, 6717728.306], [226503.52, 6717984.744], [226425.797, 6717608.291], [226067.459, 6717326.551], [226108.258, 6716514.079], [226425.659, 6716001.766], [225518.294, 6715245.698], [224969.253, 6715404.941], [224600.522, 6716354.963], [224291.95, 6716710.128], [223993.953, 6716848.608], [223220.476, 6716213.93], [222668.953, 6716797.078], [222068.043, 6716812.246], [221784.181, 6717062.411], [221277.387, 6716924.233], [220890.714, 6717250.501], [220643.823, 6718091.578], [220693.96, 6718790.38], [221190.623, 6719246.801], [220809.825, 6720182.538], [220363.283, 6720151.551], [220054.069, 6719934.094], [219852.224, 6719632.751], [219647.97, 6719757.941], [219240.266, 6719420.246], [219086.463, 6719751.116], [218253.119, 6719700.01], [216599.045, 6719761.778], [215429.819, 6719711.561], [214634.917, 6719503.675], [214087.684, 6719498.749], [214230.514, 6720145.005], [214528.441, 6720697.793], [214577.92, 6720831.455], [214640.195, 6720968.01], [214665.476, 6721026.874], [214698.878, 6721104.647], [214797.831, 6721335.05], [214844.586, 6721378.805], [215116.349, 6721633.135], [215155.067, 6721903.175], [215181.584, 6722097.633], [215234.762, 6722487.617], [215302.359, 6722983.309], [215336.795, 6723204.646], [215157.497, 6723775.283], [215266.993, 6724215.947], [215135.324, 6724409.346], [214867.692, 6724763.287], [214543.966, 6725191.59], [214200.438, 6724859.907], [213876.098, 6724546.863], [213838.526, 6725252.75], [216812.833, 6728284.115], [218330.687, 6727542.367], [219031.072, 6727662.931], [219232.917, 6727086.224], [219486.322, 6726942.395], [219774.628, 6727270.398], [219663.096, 6727909.513], [219839.239, 6728367.315], [220172.966, 6727873.096], [220457.886, 6727889.002], [221142.584, 6728143.92], [221887.687, 6728162.348], [222128.468, 6729102.305], [222406.589, 6729193.856], [223261.984, 6730002.466], [223861.228, 6730154.694], [224103.94, 6729981.013], [223736.899, 6729652.412], [223755.39, 6729401.034], [224480.304, 6729790.118], [224809.007, 6730032.395], [225039.142, 6729798.131], [225364.27, 6730101.313], [225590.913, 6729543.134], [226198.756, 6728803.795], [226431.747, 6728845.683], [226500.884, 6726669.14], [226459.284, 6725878.959], [227171.619, 6726251.093], [227588.497, 6726198.708], [227606.72, 6725868.164], [228363.554, 6725983.442], [228409.355, 6725828.025], [227886.956, 6725412.79], [228271.614, 6724502.485], [229025.249, 6724682.14], [228956.852, 6724952.333], [228462.299, 6724789.424], [228450.596, 6725074.604], [229667.022, 6725541.493], [229931.659, 6725391.984], [230076.229, 6726097.314], [230345.644, 6726284.734], [230795.019, 6726292.264], [231060.675, 6726739.522], [231283.038, 6726705.46], [231341.847, 6725943.021], [233005.104, 6726976.1], [233668.459, 6727198.936], [234371.997, 6727352.742], [234802.524, 6727058.424], [234918.401, 6727794.668], [235462.007, 6727855.397], [235415.837, 6728119.909], [236020.921, 6728527.591], [236306.435, 6728774.167], [236788.603, 6729126.526], [237537.962, 6729528.443], [237307.454, 6729862.806], [237906.849, 6730554.857], [238261.155, 6730253.268]]]]}}, {\\\"id\\\": \\\"7\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Liminka\\\", \\\"elakelaisten_osuus\\\": 12.6, \\\"freshwarea\\\": 5.37, \\\"gml_id\\\": 1601100662, \\\"landarea\\\": 637.31, \\\"namefin\\\": \\\"Liminka\\\", \\\"nameswe\\\": \\\"Limingo\\\", \\\"natcode\\\": \\\"425\\\", \\\"seawarea\\\": 9.03, \\\"totalarea\\\": 651.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[426861.943, 7196873.546], [427244.4, 7196946.35], [427551.769, 7196734.489], [427685.054, 7196393.942], [427639.798, 7196168.853], [428168.936, 7195555.679], [428061.891, 7194854.602], [428478.902, 7194468.784], [429085.411, 7194342.518], [430017.755, 7194316.509], [430559.788, 7193536.526], [431116.938, 7193247.659], [431010.451, 7192923.102], [431317.272, 7192754.537], [431494.369, 7192393.78], [431325.486, 7192284.297], [431165.599, 7192479.234], [430790.805, 7191988.669], [431760.105, 7191284.834], [431577.269, 7190768.915], [431391.035, 7190803.573], [430870.37, 7189577.897], [431853.529, 7189396.728], [431744.024, 7188971.85], [430295.178, 7189344.059], [430318.471, 7188798.123], [430081.27, 7187732.078], [429659.98, 7188246.185], [429498.851, 7187876.267], [430979.087, 7186715.076], [431494.889, 7187130.44], [431830.334, 7186519.7], [431937.705, 7185944.349], [431452.45, 7185794.665], [431352.319, 7185458.657], [431800.396, 7185111.024], [432017.139, 7185676.308], [433632.368, 7180511.624], [433477.701, 7179314.342], [433690.692, 7178700.047], [432660.387, 7178541.389], [432548.317, 7178970.313], [432263.129, 7178872.138], [432018.778, 7179067.88], [431339.337, 7179312.941], [430271.555, 7179388.337], [430279.332, 7180088.187], [429704.379, 7180197.482], [429643.466, 7179507.324], [429316.921, 7179437.34], [429420.136, 7179042.382], [429822.748, 7179205.98], [429412.836, 7177358.785], [428546.164, 7176629.556], [430334.388, 7174202.806], [431908.873, 7168161.204], [432153.802, 7167575.178], [432516.172, 7167653.266], [432659.211, 7168021.288], [433486.117, 7167882.68], [433657.77, 7167350.849], [433467.853, 7166790.336], [433735.846, 7166207.043], [434119.506, 7166766.209], [434247.645, 7167399.967], [434076.495, 7167775.031], [434968.701, 7167616.204], [434859.525, 7167515.856], [434924.626, 7167371.682], [435437.433, 7167062.535], [435916.408, 7166622.307], [436030.445, 7166381.362], [436842.049, 7166127.356], [437245.761, 7165782.021], [437673.413, 7165970.499], [437555.316, 7165681.538], [437764.111, 7165106.64], [438202.78, 7164781.744], [438603.063, 7164943.195], [438916.04, 7164552.066], [439040.874, 7164128.172], [438744.48, 7163861.375], [439061.554, 7163403.513], [438513.233, 7162911.109], [438980.185, 7162550.155], [439917.232, 7163145.538], [440207.444, 7163411.28], [439712.478, 7163725.631], [439586.076, 7164214.208], [439925.378, 7164519.999], [439773.794, 7164786.113], [440147.368, 7165121.044], [439956.656, 7165361.136], [439584.708, 7165036.503], [439222.223, 7165081.026], [439644.237, 7165579.812], [439080.588, 7166176.445], [439537.43, 7166560.395], [439700.775, 7166978.622], [438064.587, 7167619.884], [438220.936, 7167773.293], [437901.767, 7167982.905], [437630.676, 7167544.06], [436873.929, 7167791.167], [436269.05, 7167581.282], [440595.916, 7171403.574], [441225.755, 7171163.734], [441555.621, 7170949.927], [441563.211, 7170643.739], [442181.564, 7170062.761], [442329.908, 7170193.697], [443573.702, 7168563.908], [443969.656, 7168582.061], [444197.027, 7168314.142], [444613.197, 7168101.23], [445052.843, 7167787.09], [445542.703, 7167654.54], [445962.01, 7167303.434], [446547.932, 7167037.149], [447049.248, 7166719.752], [447031.142, 7166242.482], [446868.66, 7165907.493], [447171.306, 7165484.684], [447547.258, 7166044.129], [447919.367, 7165637.492], [448156.385, 7165496.382], [448136.343, 7165057.832], [448398.158, 7164833.748], [447838.076, 7164348.928], [448890.707, 7163530.105], [449478.493, 7164312.677], [450267.14, 7164075.088], [450521.727, 7164167.831], [450722.405, 7163834.569], [451020.677, 7163787.127], [451142.808, 7163402.81], [451542.341, 7163383.652], [450275.357, 7161750.766], [451409.886, 7160874.61], [452316.221, 7162050.94], [453603.28, 7160912.731], [455206.871, 7160054.659], [455773.633, 7161005.771], [456863.654, 7160163.334], [457450.166, 7160845.3], [457121.429, 7161098.095], [458252.749, 7162548.499], [449103.854, 7169736.852], [450146.725, 7171080.342], [460177.576, 7163264.791], [461347.983, 7161266.402], [461084.665, 7160696.266], [460370.263, 7161159.321], [459948.927, 7160687.425], [461205.699, 7160030.506], [461432.029, 7160084.914], [461191.867, 7160556.81], [461705.066, 7160648.768], [465653.13, 7153899.931], [465921.867, 7150589.585], [464549.54, 7149280.512], [462321.252, 7148806.18], [448539.905, 7159514.905], [445466.2, 7155537.221], [444551.397, 7156468.143], [443722.135, 7157287.389], [442833.377, 7158835.212], [442180.607, 7158739.112], [441531.592, 7159066.216], [441366.398, 7158767.705], [441155.496, 7159062.516], [440713.661, 7158644.107], [441525.511, 7158017.46], [439513.348, 7155303.517], [438848.783, 7156006.923], [437715.304, 7158066.377], [437444.732, 7158312.799], [437619.716, 7158849.768], [437351.51, 7159064.997], [437187.63, 7159422.794], [436872.249, 7159608.408], [433830.793, 7165105.402], [431897.75, 7166463.678], [429259.375, 7167927.441], [420381.774, 7172517.5], [419805.875, 7173300.101], [418789.999, 7174092.083], [419021.416, 7174277.218], [419752.112, 7173788.375], [419973.536, 7174052.416], [418391.302, 7174868.258], [418872.652, 7175376.409], [418294.864, 7175778.667], [417846.452, 7174999.858], [417599.491, 7175103.672], [417960.861, 7175970.273], [418030.937, 7176323.531], [417716.272, 7176605.045], [417471.512, 7176530.737], [417593.225, 7176247.576], [417372.041, 7175591.868], [416967.364, 7175958.76], [416929.572, 7176750.551], [416674.091, 7176231.788], [413260.624, 7179728.339], [412772.128, 7180091.469], [418219.879, 7188914.111], [420782.008, 7196394.278], [423581.433, 7195557.463], [424311.252, 7196521.252], [426230.992, 7196134.158], [426386.798, 7197366.2], [426861.943, 7196873.546]]]}}, {\\\"id\\\": \\\"8\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Savonlinna\\\", \\\"elakelaisten_osuus\\\": 36.2, \\\"freshwarea\\\": 1359.6, \\\"gml_id\\\": 1601100511, \\\"landarea\\\": 2238.09, \\\"namefin\\\": \\\"Savonlinna\\\", \\\"nameswe\\\": \\\"Nyslott\\\", \\\"natcode\\\": \\\"740\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3597.69}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[617168.754, 6921653.408], [618711.242, 6919371.21], [619516.589, 6913557.644], [622960.253, 6907154.988], [624342.554, 6904369.474], [626271.814, 6902900.183], [625230.644, 6898987.177], [626445.571, 6894193.259], [628425.304, 6886302.137], [628458.24, 6885658.01], [628963.409, 6885115.301], [629753.474, 6882978.749], [630085.335, 6882507.293], [630409.129, 6882220.079], [631243.588, 6880984.983], [631481.922, 6881156.918], [633105.098, 6880639.799], [633881.244, 6880519.399], [634579.396, 6880205.069], [634288.533, 6879602.465], [635835.704, 6878362.882], [636908.78, 6876762.035], [639420.601, 6874464.818], [637292.456, 6869786.78], [637321.821, 6867290.204], [638146.805, 6866699.62], [638232.128, 6866159.579], [641850.718, 6862018.777], [640241.788, 6860913.261], [641527.646, 6859027.668], [641733.531, 6858267.698], [641672.678, 6857092.908], [641081.744, 6853884.046], [639246.316, 6850340.19], [638020.68, 6849771.589], [635785.532, 6847461.808], [635242.406, 6845880.073], [634839.303, 6842296.256], [634302.975, 6841586.113], [632517.477, 6840604.555], [630140.5, 6839765.866], [627331.158, 6837973.341], [621766.329, 6831432.381], [621776.811, 6831346.093], [621425.457, 6830874.223], [620548.754, 6828224.691], [620151.114, 6827002.29], [617951.047, 6827182.424], [610697.076, 6824648.54], [608945.766, 6823948.263], [607543.852, 6824001.872], [606818.159, 6824234.436], [604875.308, 6824099.292], [603980.674, 6824572.057], [603189.434, 6824870.647], [602617.762, 6825021.538], [601794.581, 6825409.88], [601124.9, 6825607.088], [600677.44, 6825974.952], [600207.502, 6826183.205], [598821.074, 6827254.708], [598384.79, 6827171.081], [597404.378, 6827658.561], [597192.748, 6828461.972], [597619.8, 6828645.344], [597940.423, 6829208.426], [598533.421, 6829144.652], [599307.567, 6829455.968], [599241.086, 6829990.462], [598745.625, 6830730.874], [599227.439, 6831146.244], [598618.328, 6831627.659], [597505.819, 6831469.189], [595617.233, 6831851.773], [595744.224, 6832068.957], [595452.44, 6832789.965], [595048.802, 6833545.281], [594777.368, 6833733.909], [594443.507, 6833696.3], [594302.583, 6834050.464], [593760.326, 6833995.264], [593234.68, 6834183.751], [592269.497, 6833254.819], [591888.926, 6833882.028], [591330.327, 6834387.747], [590992.797, 6835136.22], [590690.235, 6834915.923], [588371.796, 6834849.04], [587907.779, 6835183.09], [585808.047, 6835501.285], [586226.732, 6836547.557], [585505.73, 6837137.831], [585243.391, 6837605.558], [585848.52, 6838514.172], [585683.497, 6838833.284], [585672.466, 6840005.076], [586014.405, 6840074.388], [586606.364, 6840652.376], [586864.438, 6841335.645], [585601.548, 6841869.583], [584710.723, 6841188.944], [584199.803, 6841838.929], [584460.462, 6842858.541], [584161.911, 6843449.375], [582394.833, 6845036.051], [582066.02, 6846002.735], [583612.384, 6847307.347], [584629.018, 6847549.209], [584268.17, 6849070.799], [584348.251, 6850064.972], [583556.609, 6852186.287], [584009.397, 6853432.433], [582749.534, 6854104.132], [582587.374, 6854590.476], [582053.076, 6855096.052], [581915.595, 6855542.005], [581561.015, 6855432.359], [581500.695, 6855171.999], [580462.632, 6855405.232], [580353.34, 6855718.407], [579392.448, 6856223.265], [579123.274, 6857126.366], [578792.378, 6856946.138], [578542.674, 6857368.964], [578607.844, 6857763.004], [578238.59, 6857970.916], [578087.577, 6858608.223], [577579.692, 6858291.87], [577070.452, 6858768.382], [577690.969, 6859027.608], [576786.161, 6859344.045], [576588.838, 6859605.037], [577402.966, 6860082.385], [574849.124, 6860992.758], [574348.622, 6861391.991], [574682.579, 6862212.461], [574342.413, 6862559.617], [574906.976, 6863589.304], [574259.232, 6864085.096], [573455.45, 6864577.089], [573303.502, 6865558.489], [572562.287, 6866049.4], [571941.44, 6866547.775], [572459.725, 6867160.331], [573055.79, 6866725.313], [573711.432, 6866159.649], [574198.334, 6866355.374], [575157.357, 6865410.566], [575528.304, 6865853.39], [575788.401, 6865647.176], [576304.194, 6865603.498], [577706.518, 6866817.418], [577654.337, 6867025.633], [578733.716, 6867655.208], [579237.68, 6867282.452], [579683.838, 6867400.798], [580305.185, 6866919.142], [580054.604, 6867440.911], [580404.363, 6867728.928], [580504.45, 6868052.31], [580922.506, 6868543.229], [580683.053, 6868976.026], [580807.196, 6869150.279], [581639.77, 6868683.337], [581817.76, 6868897.776], [580998.768, 6869474.11], [581237.585, 6869754.137], [582145.489, 6869228.648], [582360.759, 6869422.829], [582833.256, 6869009.112], [583001.161, 6869408.418], [583631.897, 6869585.692], [584065.093, 6869174.373], [585191.582, 6869152.684], [585258.297, 6868572.776], [585695.654, 6867909.143], [585502.755, 6867752.973], [586150.649, 6867473.55], [587873.581, 6867234.803], [588046.025, 6867632.421], [587258.29, 6868072.246], [587799.535, 6869432.751], [587815.282, 6869942.591], [589560.183, 6870451.04], [590242.401, 6870729.177], [591178.033, 6872219.382], [588731.706, 6872874.024], [588259.997, 6872048.684], [587646.156, 6871844.552], [586791.364, 6872949.66], [586772.587, 6873948.086], [587957.279, 6874681.976], [587387.794, 6875073.117], [587034.263, 6874945.18], [586552.783, 6875445.663], [588151.542, 6876035.107], [588014.88, 6876810.63], [586715.373, 6876801.925], [585198.226, 6877286.095], [586471.488, 6878592.39], [585400.855, 6881160.144], [584321.59, 6881428.596], [584885.173, 6883751.874], [584212.136, 6884689.074], [583551.588, 6884904.596], [583167.512, 6886596.132], [582811.916, 6886599.644], [581463.085, 6887277.647], [580218.097, 6888476.674], [578952.397, 6889164.997], [578423.635, 6888585.021], [577773.764, 6888530.074], [576991.587, 6888950.347], [576537.076, 6888611.817], [575189.738, 6888964.557], [574844.872, 6888912.239], [574011.605, 6888136.158], [573711.419, 6888945.229], [574018.891, 6889429.637], [573424.726, 6889907.94], [573499.694, 6890145.144], [572825.862, 6890575.466], [572407.725, 6891108.249], [573582.74, 6892415.227], [573001.371, 6892831.255], [572168.705, 6893011.178], [572032.048, 6894442.298], [572308.63, 6895139.418], [572390.887, 6896305.646], [573005.139, 6896377.221], [573472.447, 6896765.367], [573145.575, 6897241.472], [573392.071, 6897690.092], [572240.425, 6898837.522], [575272.311, 6898072.148], [576521.513, 6897469.199], [578274.261, 6897539.476], [579019.719, 6896221.716], [579050.822, 6896196.194], [579034.89, 6896194.896], [579310.086, 6895708.428], [580189.111, 6896275.529], [580868.756, 6895759.96], [581374.259, 6894141.672], [582304.399, 6893854.453], [582588.03, 6893618.326], [582520.981, 6893197.332], [584253.633, 6890939.409], [584631.09, 6891136.022], [584040.289, 6892824.633], [585012.721, 6892678.663], [584742.603, 6893961.945], [584979.064, 6894111.0], [585884.866, 6893796.331], [586161.654, 6893979.978], [585504.669, 6894755.692], [585545.237, 6895560.131], [585960.522, 6896574.876], [584925.668, 6897037.561], [585014.321, 6897458.661], [584782.655, 6897640.055], [584864.057, 6898603.896], [585580.921, 6898037.013], [586269.922, 6897984.796], [586279.404, 6898809.814], [585905.795, 6901046.669], [586255.473, 6901934.997], [588474.989, 6900270.072], [588909.078, 6900766.84], [588737.246, 6900989.336], [588766.648, 6901317.732], [589169.839, 6901596.014], [590109.837, 6900263.92], [590376.916, 6899571.399], [592579.054, 6898281.328], [593308.936, 6898932.266], [591708.226, 6901604.331], [590719.665, 6903621.69], [590669.451, 6904611.474], [590881.388, 6905304.296], [590890.457, 6906406.456], [591288.03, 6906636.355], [591281.377, 6907080.634], [590932.573, 6907098.973], [590936.648, 6907357.79], [592289.706, 6908130.639], [592625.815, 6907353.45], [592905.561, 6906415.375], [594187.255, 6905332.276], [595348.621, 6905318.597], [595927.682, 6904998.276], [596589.617, 6903739.484], [596961.627, 6903930.018], [598055.181, 6904986.29], [599640.93, 6904441.281], [599895.119, 6903886.845], [600211.888, 6904115.278], [600317.407, 6904777.746], [600685.993, 6905778.115], [601243.225, 6906545.713], [600391.455, 6907544.063], [601026.758, 6908263.057], [601761.099, 6907553.248], [602293.542, 6908110.351], [601193.338, 6909039.881], [600254.493, 6908663.442], [601603.144, 6910192.73], [602910.696, 6910362.572], [603880.838, 6912267.078], [603838.969, 6912774.996], [604477.528, 6912537.573], [605757.718, 6911626.959], [606820.185, 6912634.7], [606686.682, 6912965.819], [608193.916, 6914136.811], [609156.826, 6913486.666], [609522.29, 6912616.673], [610061.359, 6912362.89], [611088.831, 6912872.824], [612313.37, 6913054.212], [612174.122, 6913547.465], [611689.128, 6913781.463], [611633.985, 6914099.06], [611813.406, 6914275.291], [612301.601, 6915338.254], [611773.839, 6915693.888], [611875.448, 6916105.383], [612281.45, 6916194.189], [612470.235, 6916505.098], [612994.501, 6916505.676], [612795.189, 6916971.681], [612969.094, 6917159.583], [612569.223, 6917693.335], [612018.017, 6919096.63], [612163.317, 6919551.828], [611682.145, 6920380.801], [611859.168, 6920812.636], [612342.095, 6921457.937], [612545.462, 6921224.958], [612976.709, 6921191.487], [613650.869, 6920896.829], [613965.636, 6921162.962], [614426.258, 6921976.043], [615224.056, 6922708.652], [617168.754, 6921653.408]], [[595524.696, 6904086.598], [596082.087, 6903375.284], [596486.176, 6903489.355], [597138.102, 6902984.723], [597490.036, 6903290.879], [597811.516, 6903400.549], [598592.449, 6903354.599], [599634.351, 6903532.391], [599721.984, 6903138.256], [599559.91, 6901518.826], [599438.513, 6900733.411], [598684.571, 6901045.631], [598796.643, 6900415.651], [598603.792, 6900082.442], [599369.426, 6899288.56], [599448.996, 6898234.868], [601222.508, 6898110.954], [601772.416, 6898733.377], [602480.251, 6898110.022], [603609.099, 6897827.623], [603629.128, 6896778.147], [604452.747, 6896314.238], [605140.645, 6896197.97], [605418.454, 6895714.803], [605374.086, 6895501.784], [605104.948, 6895300.33], [604925.06, 6895101.906], [604851.931, 6894984.9], [604991.439, 6894659.758], [605112.866, 6894312.634], [604925.547, 6893348.852], [605733.047, 6893079.437], [606429.468, 6892438.488], [608402.441, 6891131.121], [609289.989, 6890028.444], [609175.667, 6889392.826], [608872.0, 6888994.225], [608899.536, 6888719.103], [608642.008, 6888007.9], [608240.311, 6887321.891], [608344.426, 6886975.8], [609169.448, 6886814.43], [609112.66, 6887074.946], [609697.733, 6887334.453], [610110.478, 6887339.639], [610594.1, 6887204.064], [610975.544, 6886871.678], [610492.702, 6884517.676], [610902.915, 6884224.026], [610523.108, 6883655.804], [611441.179, 6883154.272], [610534.767, 6882187.186], [609112.36, 6882797.472], [608682.265, 6882692.671], [608727.391, 6882335.616], [609190.44, 6881782.499], [609398.372, 6880974.336], [609755.342, 6880702.087], [609799.11, 6880289.032], [609386.165, 6880279.973], [609178.17, 6879983.116], [609218.132, 6879678.789], [609379.934, 6879359.911], [609679.575, 6878983.809], [610019.033, 6878795.86], [609032.451, 6876694.183], [608651.203, 6877476.85], [608066.491, 6877778.497], [606619.031, 6878531.136], [606436.184, 6878292.303], [605890.125, 6878129.436], [604806.56, 6878738.942], [604566.275, 6878431.194], [604295.973, 6877799.53], [604172.715, 6877246.429], [604559.606, 6877012.779], [603624.528, 6875870.959], [602652.062, 6876626.895], [602986.917, 6877016.075], [602396.023, 6877492.275], [601982.622, 6877450.234], [601783.791, 6877238.668], [601320.697, 6877441.097], [600821.376, 6877212.763], [601075.408, 6876617.48], [600534.017, 6876467.434], [601138.034, 6876005.074], [600610.556, 6875620.637], [600832.592, 6875482.9], [600341.481, 6875229.57], [599771.221, 6875320.202], [599080.439, 6875633.316], [598384.483, 6875848.885], [597609.013, 6876609.074], [597954.869, 6877070.264], [598221.983, 6876844.394], [598629.028, 6876984.022], [598022.274, 6877470.621], [597917.537, 6878085.933], [596416.381, 6878698.854], [595799.085, 6879075.1], [595399.847, 6878696.434], [594674.936, 6878808.487], [593890.272, 6878197.808], [593633.579, 6877671.298], [593336.732, 6877971.715], [593418.571, 6879058.255], [591756.27, 6879357.367], [592298.969, 6880176.076], [590926.347, 6880900.69], [590251.782, 6881394.932], [590516.156, 6881513.924], [591712.598, 6881186.268], [592574.669, 6881894.059], [593137.518, 6882482.905], [593927.534, 6882024.044], [594741.004, 6881787.641], [595036.913, 6881551.326], [595335.982, 6881570.902], [595445.81, 6881933.923], [595737.068, 6881805.885], [595996.082, 6882883.375], [592949.0, 6884760.443], [592265.387, 6885745.175], [592380.466, 6886299.34], [592876.699, 6886729.817], [592356.575, 6887722.457], [592005.936, 6888707.235], [591261.233, 6889514.441], [590806.526, 6889466.092], [589708.543, 6890241.979], [588196.756, 6888684.988], [587891.477, 6889228.539], [586981.163, 6889651.393], [586737.1, 6890031.36], [585745.667, 6890753.662], [585588.294, 6891104.921], [585830.764, 6891374.835], [585297.362, 6891885.192], [585996.806, 6892221.782], [585893.742, 6892758.743], [586333.921, 6893078.356], [586730.774, 6893487.813], [586067.196, 6894522.54], [585838.1, 6894800.43], [586196.374, 6895707.738], [586983.668, 6895529.335], [587144.353, 6896201.351], [587150.585, 6896585.01], [586883.423, 6896878.04], [586081.723, 6897004.091], [586445.064, 6897237.199], [586973.718, 6898050.143], [587358.859, 6898039.452], [587106.374, 6898301.195], [587671.537, 6898669.979], [586635.569, 6899087.288], [586299.9, 6899473.76], [586801.14, 6900237.28], [587420.551, 6899727.694], [587919.109, 6899971.856], [588266.04, 6899528.609], [589549.593, 6900345.589], [589848.288, 6900086.787], [590010.275, 6899462.437], [592145.221, 6898063.286], [591895.015, 6897766.277], [592477.905, 6897395.98], [593595.261, 6898464.754], [593795.079, 6899348.636], [593406.229, 6899431.84], [593353.204, 6899669.991], [593020.241, 6900279.965], [592306.756, 6901101.491], [592297.047, 6901362.471], [593042.621, 6901836.116], [592876.184, 6902145.226], [592346.006, 6902448.375], [592448.14, 6902756.307], [593181.751, 6902902.737], [593038.971, 6903255.112], [592711.909, 6903301.203], [592303.146, 6903966.214], [591876.358, 6903946.46], [591612.083, 6904218.034], [591412.145, 6904650.681], [591649.668, 6905031.913], [591546.62, 6905527.494], [591795.078, 6905738.013], [591649.293, 6906014.778], [592206.77, 6906014.811], [592983.742, 6905823.212], [593712.023, 6905316.66], [593948.679, 6904646.346], [594811.999, 6904742.188], [595524.696, 6904086.598]]]}}, {\\\"id\\\": \\\"9\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Br\\\\u00e4nd\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 35.9, \\\"freshwarea\\\": 0.28, \\\"gml_id\\\": 1601100054, \\\"landarea\\\": 108.17, \\\"namefin\\\": \\\"Br\\\\u00e4nd\\\\u00f6\\\", \\\"nameswe\\\": \\\"Br\\\\u00e4nd\\\\u00f6\\\", \\\"natcode\\\": \\\"035\\\", \\\"seawarea\\\": 1534.76, \\\"totalarea\\\": 1643.21}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[158291.161, 6748278.94], [171236.502, 6745919.169], [175482.858, 6737239.366], [177411.693, 6731630.97], [179054.524, 6726682.221], [179095.408, 6725644.63], [179052.698, 6723104.0], [178985.102, 6721226.62], [178778.019, 6720746.968], [177347.626, 6716920.445], [175697.142, 6708678.879], [175811.453, 6706801.338], [175225.004, 6702610.378], [173346.017, 6695594.488], [173474.272, 6694160.65], [172356.227, 6688592.108], [170464.773, 6688053.02], [168214.52, 6680237.598], [161898.989, 6685455.012], [162698.187, 6696875.176], [162720.353, 6696983.512], [163766.399, 6697700.057], [163976.997, 6700158.105], [165740.504, 6700166.92], [165821.178, 6700301.695], [165782.108, 6701735.084], [168428.782, 6705486.325], [167349.537, 6708255.199], [166936.468, 6709814.579], [165147.236, 6711211.154], [164414.003, 6711265.378], [163932.781, 6711227.336], [163020.403, 6710881.917], [161737.54, 6710755.912], [159345.37, 6711369.005], [158635.245, 6715627.489], [156256.469, 6718700.771], [150150.036, 6721068.668], [145221.864, 6720274.746], [143398.803, 6720017.357], [141619.126, 6722542.66], [141855.79, 6724833.279], [141904.572, 6725552.657], [143329.159, 6741792.854], [130489.45, 6759966.542], [140852.31, 6767208.508], [158291.161, 6748278.94]]]}}, {\\\"id\\\": \\\"10\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Korsn\\\\u00e4s\\\", \\\"elakelaisten_osuus\\\": 30.6, \\\"freshwarea\\\": 3.79, \\\"gml_id\\\": 1601100461, \\\"landarea\\\": 236.0, \\\"namefin\\\": \\\"Korsn\\\\u00e4s\\\", \\\"nameswe\\\": \\\"Korsn\\\\u00e4s\\\", \\\"natcode\\\": \\\"280\\\", \\\"seawarea\\\": 1184.91, \\\"totalarea\\\": 1424.7}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[188964.666, 6993360.359], [207929.756, 6991941.097], [211362.421, 6985320.612], [211463.829, 6985242.096], [211518.954, 6985101.118], [211614.156, 6984980.81], [211901.302, 6984714.569], [211703.607, 6984624.119], [213576.758, 6979833.739], [213107.832, 6978860.755], [213243.911, 6978801.705], [212788.814, 6978202.379], [212480.482, 6980265.259], [212076.72, 6980290.345], [211952.749, 6980535.894], [212418.842, 6980512.114], [212423.366, 6980502.445], [212443.567, 6980508.295], [212097.03, 6982800.176], [211384.056, 6982557.919], [211761.258, 6980635.402], [211524.372, 6979534.361], [211310.873, 6979108.339], [211418.027, 6979063.447], [211387.727, 6978801.671], [211192.692, 6978943.918], [210577.112, 6978197.479], [210290.578, 6978386.569], [210243.979, 6978326.707], [210907.292, 6977773.265], [209812.632, 6977271.893], [210923.76, 6975562.38], [211699.911, 6973745.012], [212945.705, 6972207.385], [212960.376, 6971155.43], [212945.489, 6970117.193], [211342.133, 6969221.706], [211747.403, 6968498.363], [212057.982, 6968825.915], [212900.027, 6967883.301], [211840.708, 6966978.485], [211356.009, 6966713.72], [210776.759, 6967190.005], [210228.17, 6966476.101], [210137.175, 6966195.735], [209963.537, 6963446.786], [209243.561, 6963642.885], [209337.541, 6963129.215], [208988.654, 6962794.684], [208463.25, 6963197.29], [208119.84, 6961636.346], [207564.2, 6961622.67], [207666.866, 6961981.637], [207029.228, 6962611.7], [206751.967, 6963204.098], [206232.34, 6963404.521], [205059.947, 6963192.806], [204441.356, 6962338.016], [203929.582, 6962300.586], [204013.334, 6963814.176], [202472.924, 6964448.347], [201873.557, 6964380.894], [201572.233, 6964639.084], [198369.421, 6963987.223], [196943.302, 6963832.484], [196738.526, 6964268.011], [165571.9, 6964248.198], [163916.635, 6972123.066], [163762.083, 6972943.272], [160597.62, 6993385.341], [160279.808, 6995507.005], [188964.666, 6993360.359]]]}}, {\\\"id\\\": \\\"11\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Haapaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 30.1, \\\"freshwarea\\\": 22.93, \\\"gml_id\\\": 1601100108, \\\"landarea\\\": 766.19, \\\"namefin\\\": \\\"Haapaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Haapaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"069\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 789.12}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[404713.93, 7067951.36], [404899.143, 7068199.265], [405577.833, 7067691.095], [404636.193, 7066662.826], [404260.3, 7067202.146], [404531.902, 7067424.486], [404269.734, 7067678.253], [404004.276, 7067569.56], [403827.46, 7067826.28], [404019.677, 7068074.543], [403768.422, 7068345.63], [403962.631, 7068579.026], [404713.93, 7067951.36]]], [[[421489.823, 7090674.493], [421899.65, 7089957.4], [428100.788, 7089104.381], [431776.632, 7088599.14], [433612.181, 7080054.875], [434271.819, 7076962.283], [434376.058, 7076510.066], [434089.189, 7075393.087], [432217.305, 7067992.693], [433449.921, 7068659.957], [433608.488, 7068857.743], [433682.151, 7068499.054], [433051.332, 7068113.759], [433528.523, 7067652.573], [433236.228, 7067254.267], [432720.56, 7067144.178], [432158.656, 7067716.452], [430669.37, 7061831.369], [428750.955, 7058267.187], [421096.89, 7055672.607], [417999.767, 7051437.468], [413282.133, 7054997.821], [412982.72, 7054781.153], [412321.577, 7055698.715], [413151.118, 7056735.373], [413101.212, 7057274.888], [413627.8, 7057246.097], [413205.377, 7057847.259], [412733.309, 7057537.184], [412087.739, 7058445.592], [412626.643, 7058893.788], [412510.55, 7059106.793], [411730.979, 7059315.922], [411617.589, 7059751.508], [412261.232, 7059937.798], [412036.997, 7060394.735], [411571.319, 7060348.785], [411307.598, 7060145.806], [411340.281, 7060620.229], [410881.037, 7061777.96], [410484.467, 7061759.534], [410546.542, 7062374.1], [410332.849, 7062647.402], [410797.436, 7063215.181], [410652.149, 7063553.71], [409263.006, 7064375.245], [408911.117, 7064491.545], [409137.936, 7064653.964], [410047.51, 7064925.544], [409367.791, 7065462.568], [408742.1, 7065701.829], [408877.152, 7066247.035], [409642.429, 7067107.224], [409656.252, 7067595.437], [409536.879, 7067739.631], [409199.816, 7067708.582], [409355.501, 7067277.841], [409041.152, 7066948.29], [409017.747, 7067196.34], [408476.117, 7067165.432], [408589.61, 7066563.033], [408555.479, 7066273.134], [408252.135, 7066087.42], [407993.512, 7066422.911], [407503.513, 7066435.975], [407254.409, 7066688.361], [407052.113, 7067331.05], [406497.714, 7067265.547], [406546.368, 7067664.027], [406872.32, 7067754.169], [406892.445, 7067970.528], [406698.212, 7068232.278], [406557.795, 7068613.364], [406036.303, 7069089.489], [406267.167, 7069478.074], [405959.33, 7069904.897], [406372.229, 7070198.322], [406277.927, 7070869.142], [406550.481, 7071631.232], [406387.545, 7071758.781], [405677.328, 7070842.391], [406026.243, 7070483.217], [405366.243, 7069689.757], [405808.43, 7069404.76], [405349.819, 7068795.945], [403539.708, 7070152.711], [403774.699, 7070415.486], [402925.18, 7071093.19], [402135.964, 7069761.974], [401564.872, 7070691.202], [399710.4, 7071681.336], [399151.964, 7071604.938], [399885.271, 7076388.236], [400177.647, 7076822.285], [400358.469, 7076413.627], [400775.199, 7077005.682], [400388.457, 7077578.697], [400291.869, 7077955.018], [400732.828, 7078209.335], [400767.072, 7077786.483], [401306.411, 7078346.689], [401566.572, 7078085.001], [401917.0, 7078461.884], [401708.039, 7078671.582], [402630.848, 7079703.481], [402779.413, 7079438.759], [402674.889, 7079017.902], [402640.26, 7078442.206], [402245.921, 7077981.178], [402036.017, 7078157.736], [401745.096, 7077840.361], [402034.806, 7077586.607], [402193.632, 7077208.976], [401104.678, 7075899.949], [401513.698, 7075572.464], [401302.158, 7074792.444], [401490.433, 7074152.26], [401137.52, 7074058.722], [400696.224, 7074333.473], [400635.832, 7074148.499], [400866.899, 7073774.739], [401175.352, 7073384.291], [401704.369, 7072939.824], [401969.716, 7072896.756], [402102.784, 7073743.079], [401870.691, 7074062.799], [402146.815, 7074402.628], [401605.894, 7074722.459], [401783.123, 7075402.214], [402210.064, 7075647.829], [402556.635, 7075485.117], [403219.85, 7076031.388], [403762.07, 7076238.82], [404142.546, 7076769.263], [405022.438, 7076854.284], [405132.689, 7076531.792], [404789.889, 7076126.075], [405110.403, 7074211.201], [405405.261, 7073880.057], [405659.317, 7074256.556], [407886.749, 7072601.48], [407914.115, 7072018.809], [408458.155, 7072019.046], [408713.533, 7072335.775], [408490.652, 7072709.498], [410496.984, 7075102.166], [409101.001, 7075419.036], [408257.623, 7075305.542], [408118.418, 7074975.451], [407916.596, 7075261.657], [407639.163, 7075215.199], [407621.704, 7073938.274], [407431.431, 7073536.432], [407007.357, 7074116.141], [407413.988, 7075640.355], [407824.304, 7075756.954], [409031.436, 7078475.134], [407444.567, 7079308.231], [406905.546, 7079112.965], [405937.906, 7079142.823], [405744.857, 7079855.79], [405290.839, 7080332.491], [405062.079, 7081329.262], [404793.148, 7081308.088], [404609.217, 7081761.005], [404782.767, 7081992.238], [405388.511, 7081862.573], [405829.575, 7080735.444], [406444.336, 7081019.872], [406714.469, 7080762.122], [406932.182, 7081001.408], [407140.407, 7080809.136], [406267.643, 7079380.958], [406829.657, 7079361.124], [407517.296, 7079592.544], [409117.389, 7078726.387], [409277.451, 7079122.565], [409565.726, 7079225.77], [410154.647, 7080151.669], [411611.515, 7081667.319], [414213.275, 7084367.63], [414004.609, 7084624.17], [413124.945, 7083966.119], [413719.111, 7086036.375], [413399.394, 7086214.709], [413274.394, 7086803.69], [413821.191, 7086388.723], [415019.832, 7090620.611], [415370.708, 7090286.735], [415736.044, 7090900.859], [419904.813, 7090244.14], [421624.632, 7089997.264], [420783.659, 7090739.358], [421236.256, 7090993.911], [421489.823, 7090674.493]], [[418701.443, 7055306.898], [418485.792, 7054001.707], [417581.224, 7053873.772], [417362.019, 7055296.974], [418235.255, 7056066.626], [418701.443, 7055306.898]], [[405043.635, 7073454.897], [404858.867, 7073060.044], [404427.764, 7072635.765], [404472.013, 7071929.164], [404006.997, 7072193.633], [403724.234, 7071705.817], [404138.666, 7071155.707], [404223.09, 7070845.862], [403821.295, 7071063.138], [403474.216, 7071448.715], [403312.837, 7071674.73], [403811.242, 7072356.267], [403479.644, 7072899.507], [403572.882, 7073129.729], [404211.383, 7072795.469], [404568.424, 7073079.784], [404504.384, 7074074.974], [404695.369, 7074409.123], [405043.635, 7073454.897]]]]}}, {\\\"id\\\": \\\"12\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hausj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 25.1, \\\"freshwarea\\\": 9.41, \\\"gml_id\\\": 1601100135, \\\"landarea\\\": 389.36, \\\"namefin\\\": \\\"Hausj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Hausj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"086\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 398.77}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[394102.316, 6756313.412], [396647.61, 6755267.619], [396795.45, 6753278.804], [397113.617, 6750986.658], [397251.575, 6749240.891], [396700.777, 6749265.014], [396199.855, 6748822.072], [395900.385, 6748189.16], [395563.445, 6746410.355], [396257.43, 6744498.892], [396877.678, 6744551.379], [397258.069, 6744059.536], [396745.352, 6743091.568], [399519.499, 6739515.226], [399355.782, 6738403.414], [395971.924, 6737895.136], [395807.399, 6736903.431], [394084.197, 6733721.417], [394576.094, 6732544.186], [395952.615, 6734129.618], [397192.501, 6735340.434], [397446.714, 6736041.627], [398860.168, 6734306.427], [401427.038, 6733484.123], [398844.389, 6732634.254], [395415.295, 6730809.505], [396881.264, 6726690.999], [396836.372, 6726576.903], [394096.887, 6727510.1], [393672.688, 6728679.497], [393132.974, 6728795.219], [392674.162, 6729306.24], [392330.658, 6728967.769], [391756.354, 6729090.876], [389552.355, 6728855.209], [387050.189, 6728218.131], [386940.094, 6727784.682], [386433.836, 6727552.456], [386372.16, 6727041.281], [384957.056, 6727214.05], [384903.493, 6726773.311], [381699.598, 6726787.923], [381696.299, 6727565.336], [381688.188, 6729294.2], [380749.542, 6731055.025], [380125.805, 6731601.53], [380687.954, 6732372.137], [381462.243, 6732725.878], [381524.265, 6733021.276], [381207.372, 6733483.126], [381590.828, 6734411.79], [382475.85, 6735219.284], [382340.484, 6735875.234], [381758.677, 6736807.905], [382300.014, 6737194.031], [381924.081, 6737705.12], [381322.075, 6737641.349], [382104.263, 6739113.776], [382173.614, 6739788.296], [381721.563, 6739526.994], [380906.846, 6739890.416], [381035.184, 6740207.176], [379117.283, 6740767.647], [378229.843, 6741504.382], [377883.485, 6741513.21], [376693.216, 6742123.692], [376340.832, 6742165.228], [376310.277, 6742687.545], [376025.755, 6742671.284], [375985.623, 6742322.285], [375619.809, 6742282.469], [375556.39, 6742491.036], [375720.805, 6743201.798], [376212.279, 6744342.235], [376787.363, 6746590.588], [377595.446, 6746710.917], [379621.449, 6746898.93], [380009.375, 6746073.235], [380185.421, 6746280.497], [380235.693, 6747555.818], [380664.827, 6748054.807], [380976.248, 6748608.393], [381042.701, 6750156.68], [383010.524, 6749772.808], [382858.784, 6749163.532], [383329.832, 6748383.803], [383723.292, 6748245.25], [384688.652, 6747601.889], [385093.775, 6747119.483], [385491.09, 6746566.133], [385921.916, 6746793.672], [386264.402, 6746792.44], [386636.26, 6747124.063], [386746.525, 6747497.414], [387407.725, 6747200.556], [387673.056, 6747493.55], [388121.993, 6747459.986], [388767.714, 6749581.075], [388267.049, 6751520.239], [387942.203, 6752342.139], [389557.061, 6751831.292], [389523.704, 6752433.973], [391118.12, 6753297.792], [390462.576, 6754177.542], [390652.398, 6754291.249], [390773.765, 6754363.655], [391085.898, 6754545.974], [391393.184, 6754024.755], [391862.438, 6754304.598], [392068.652, 6754424.497], [392285.957, 6754555.794], [392298.898, 6754676.908], [392633.876, 6754644.76], [392626.171, 6754572.658], [392894.326, 6754544.207], [392909.335, 6754619.871], [392898.579, 6754723.321], [392911.994, 6754746.501], [392837.513, 6754808.972], [392784.356, 6754868.477], [392804.956, 6754916.935], [393499.674, 6755137.672], [393432.192, 6755201.166], [393336.445, 6755319.091], [393241.116, 6755301.219], [393148.26, 6755433.733], [393142.062, 6755500.189], [393088.122, 6755596.428], [393045.361, 6755806.097], [393182.282, 6755878.24], [393344.879, 6756010.145], [393186.881, 6756222.594], [393094.362, 6756355.691], [394102.316, 6756313.412]]]}}, {\\\"id\\\": \\\"13\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Luum\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 38.2, \\\"freshwarea\\\": 109.78, \\\"gml_id\\\": 1601100047, \\\"landarea\\\": 750.06, \\\"namefin\\\": \\\"Luum\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Luum\\\\u00e4ki\\\", \\\"natcode\\\": \\\"441\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 859.84}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[519645.127, 6774135.687], [519976.721, 6770687.886], [521244.113, 6770391.816], [522322.29, 6769071.36], [522930.07, 6766315.783], [524672.179, 6765093.691], [525197.762, 6765695.351], [526569.904, 6766359.091], [527149.77, 6766399.579], [527332.398, 6766164.176], [527369.786, 6765852.802], [527537.022, 6765529.635], [529019.825, 6765491.261], [530962.248, 6764893.317], [531577.6, 6764803.659], [532271.916, 6764998.088], [533688.143, 6764560.78], [534092.181, 6764284.996], [534243.522, 6764003.312], [535294.001, 6763332.396], [536057.292, 6763093.601], [536596.77, 6763458.858], [536238.408, 6764279.721], [537181.822, 6764532.329], [538113.145, 6764332.02], [538103.454, 6763785.442], [538374.247, 6763374.511], [539317.869, 6762665.009], [540181.718, 6762616.538], [541987.779, 6763061.877], [544435.285, 6763257.62], [545059.435, 6762856.889], [545466.773, 6762437.263], [546389.998, 6762395.088], [547079.918, 6762426.081], [547765.137, 6762759.051], [547912.775, 6763003.553], [547806.215, 6763468.563], [548112.489, 6763660.188], [548739.337, 6763218.372], [549138.984, 6761967.984], [548602.918, 6759955.899], [548926.591, 6759323.659], [548484.99, 6757138.345], [548819.263, 6756172.54], [548923.831, 6755075.186], [548499.517, 6753757.116], [548344.188, 6752964.236], [548900.68, 6750991.342], [549685.665, 6750501.248], [550588.001, 6750244.661], [550665.574, 6749706.28], [550254.353, 6748572.536], [549522.762, 6747313.94], [549132.524, 6747062.438], [549190.803, 6746780.953], [549153.421, 6746434.193], [548969.299, 6746170.099], [548707.605, 6746182.691], [548299.242, 6746583.463], [548129.58, 6747772.117], [547983.181, 6748113.301], [548934.485, 6749057.227], [548563.022, 6750519.43], [547961.376, 6749534.724], [547330.836, 6749215.348], [546443.714, 6747498.835], [547613.55, 6746242.156], [546038.188, 6744754.174], [545503.729, 6744065.217], [545984.238, 6743561.027], [544873.092, 6743337.606], [541373.51, 6743448.025], [541691.374, 6744512.196], [540435.683, 6744263.384], [540563.741, 6742937.724], [540838.433, 6742555.282], [539427.603, 6742589.654], [539021.866, 6742674.415], [539113.733, 6742055.867], [539105.583, 6740732.412], [538858.65, 6740202.117], [538283.682, 6740269.784], [536909.932, 6740884.321], [536144.442, 6740827.036], [533539.991, 6741280.526], [532977.917, 6741313.207], [532012.909, 6741095.286], [529917.56, 6740394.849], [527469.948, 6740530.869], [524630.075, 6742888.895], [523282.6, 6745336.095], [521260.396, 6747745.906], [520959.512, 6748504.497], [520230.1, 6749366.643], [519048.471, 6750045.86], [518399.63, 6750327.242], [517167.724, 6750607.32], [516535.076, 6750975.267], [515033.378, 6751323.315], [513601.545, 6751574.91], [511567.171, 6752118.872], [509994.189, 6754423.729], [508709.098, 6755740.188], [507372.925, 6757364.722], [506555.544, 6758785.742], [507007.859, 6759106.814], [507520.854, 6758726.77], [507694.189, 6758127.314], [508264.863, 6757575.341], [509124.014, 6757690.199], [509438.09, 6757313.653], [510013.857, 6757328.05], [510232.566, 6757559.458], [510572.929, 6757452.003], [511497.752, 6757863.84], [512028.333, 6758383.332], [512699.358, 6758714.301], [513085.502, 6758743.791], [513443.35, 6759506.184], [513081.494, 6759824.753], [511865.79, 6759443.801], [511506.827, 6760424.102], [511546.767, 6761109.919], [511772.076, 6761350.446], [511283.371, 6761946.395], [511207.832, 6762772.65], [510434.034, 6763656.185], [510310.987, 6763265.942], [509373.972, 6762575.318], [509017.815, 6762770.437], [508744.221, 6763317.014], [507631.866, 6763970.443], [507664.749, 6764433.656], [508000.507, 6765164.96], [508325.074, 6765363.382], [508620.45, 6765887.47], [508143.328, 6767705.53], [507931.81, 6768132.456], [508169.604, 6769334.17], [508078.633, 6770304.276], [508250.36, 6770683.023], [508715.271, 6770768.291], [509379.696, 6771518.39], [509979.247, 6772385.842], [511453.147, 6772797.284], [512322.995, 6772856.064], [513524.409, 6772956.23], [513971.425, 6773356.271], [515145.252, 6773230.728], [515266.699, 6773710.435], [515540.631, 6774107.247], [516643.211, 6774594.16], [517674.249, 6774280.507], [518308.164, 6774695.854], [519645.127, 6774135.687]]]}}, {\\\"id\\\": \\\"14\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pertunmaa\\\", \\\"elakelaisten_osuus\\\": 42.0, \\\"freshwarea\\\": 79.74, \\\"gml_id\\\": 1601100263, \\\"landarea\\\": 374.46, \\\"namefin\\\": \\\"Pertunmaa\\\", \\\"nameswe\\\": \\\"Pertunmaa\\\", \\\"natcode\\\": \\\"588\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 454.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[469230.019, 6835388.211], [470605.068, 6834230.99], [472460.919, 6833469.712], [473837.175, 6832779.338], [474311.498, 6832730.575], [474306.706, 6832530.138], [473940.725, 6832396.158], [475134.054, 6830320.108], [475767.0, 6829576.714], [476011.363, 6828869.551], [476476.415, 6828628.505], [476260.002, 6827931.381], [476560.54, 6827431.591], [477019.038, 6827238.11], [477022.984, 6826661.526], [477392.468, 6826098.548], [478584.167, 6826469.795], [478185.436, 6825472.995], [478759.814, 6822624.445], [479150.991, 6822592.462], [479004.744, 6826593.347], [480064.87, 6825471.009], [479723.971, 6825318.377], [479557.276, 6825664.127], [479263.919, 6825711.749], [479591.739, 6824399.318], [480885.446, 6823691.034], [480161.232, 6823355.334], [479944.789, 6823088.561], [480081.957, 6822875.607], [481405.903, 6823167.127], [481477.031, 6822732.082], [480226.758, 6822544.082], [481441.23, 6822111.476], [481686.051, 6821223.184], [480635.219, 6821216.754], [480990.713, 6820908.142], [480915.616, 6820537.119], [479931.592, 6820827.677], [479912.88, 6820320.634], [480365.195, 6819801.085], [481132.473, 6819113.588], [481340.391, 6818638.082], [481280.618, 6818121.89], [480273.498, 6818002.858], [479651.085, 6817759.426], [479739.292, 6816707.12], [477897.408, 6816286.511], [477268.826, 6815399.854], [476423.92, 6814483.432], [476562.878, 6811889.462], [476749.907, 6811169.478], [476931.338, 6810727.305], [476884.871, 6809980.834], [477109.656, 6809372.583], [477499.511, 6809508.556], [477219.531, 6808543.945], [476467.242, 6807835.927], [474818.77, 6807144.297], [474202.578, 6805962.172], [475903.721, 6805667.052], [475944.574, 6804826.943], [474791.623, 6803786.633], [473925.457, 6804950.324], [473815.343, 6804668.694], [473899.113, 6804014.159], [473519.272, 6803358.723], [473576.864, 6800740.285], [471350.164, 6802116.109], [471160.185, 6802608.584], [470597.462, 6803658.877], [470785.679, 6804629.185], [468518.206, 6804366.969], [467980.827, 6804086.378], [467289.206, 6804566.377], [466923.656, 6804404.938], [466262.524, 6804657.13], [465014.233, 6804642.823], [463557.53, 6804291.851], [462589.725, 6804144.401], [461910.804, 6803800.034], [461784.758, 6804007.952], [461869.214, 6804910.484], [462197.579, 6805150.69], [462573.721, 6805903.189], [463353.098, 6806666.787], [463668.865, 6807388.997], [460772.728, 6810440.832], [459668.964, 6812750.586], [462334.665, 6814715.016], [462003.488, 6816674.719], [461697.513, 6816764.979], [461534.076, 6817342.844], [461294.077, 6817497.606], [460747.0, 6818727.46], [459330.487, 6819700.768], [459318.504, 6819942.511], [460505.237, 6819312.73], [460788.601, 6819327.269], [460732.979, 6819618.318], [460412.44, 6819740.821], [460412.722, 6820345.143], [460940.924, 6820270.533], [461093.244, 6819255.164], [463444.197, 6819069.23], [463761.148, 6819440.814], [464530.944, 6818888.147], [464555.238, 6818309.981], [464832.024, 6818397.848], [464894.316, 6818961.55], [465301.367, 6819144.386], [465145.663, 6819791.397], [464829.535, 6819997.546], [464535.738, 6819677.927], [463914.291, 6819722.903], [464164.044, 6820383.058], [463787.646, 6821422.006], [463336.58, 6821414.916], [463497.038, 6819986.1], [463245.966, 6819355.088], [462452.539, 6819592.21], [461899.222, 6819394.258], [461426.691, 6819659.945], [461395.135, 6820246.214], [461090.232, 6821379.804], [462365.927, 6821469.421], [462759.436, 6823700.982], [462309.718, 6823880.006], [461926.858, 6824648.012], [461957.79, 6825483.531], [462122.378, 6826174.381], [461932.086, 6826528.482], [461481.999, 6827157.305], [460774.416, 6827602.194], [462903.65, 6827425.984], [463867.152, 6826687.506], [463593.465, 6829915.996], [463664.516, 6830753.345], [464199.598, 6830754.149], [464408.608, 6831448.77], [464881.717, 6831202.773], [465788.022, 6832233.159], [465703.58, 6833040.21], [465509.217, 6833059.181], [465488.762, 6833626.389], [465892.6, 6834075.027], [466484.144, 6834020.246], [466571.701, 6834993.652], [467084.991, 6835290.536], [467013.913, 6836218.059], [469230.019, 6835388.211]]]}}, {\\\"id\\\": \\\"15\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Harjavalta\\\", \\\"elakelaisten_osuus\\\": 36.3, \\\"freshwarea\\\": 4.28, \\\"gml_id\\\": 1601100127, \\\"landarea\\\": 123.46, \\\"namefin\\\": \\\"Harjavalta\\\", \\\"nameswe\\\": \\\"Harjavalta\\\", \\\"natcode\\\": \\\"079\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 127.74}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[242615.492, 6819904.237], [243557.511, 6818637.787], [243646.133, 6818153.648], [244149.578, 6817574.745], [244627.987, 6817099.047], [243747.259, 6816498.866], [244812.718, 6814694.687], [245406.169, 6813520.646], [246125.599, 6813001.728], [246167.082, 6812506.022], [246445.529, 6812417.922], [247259.045, 6810958.771], [246684.208, 6810684.98], [247010.391, 6810307.934], [246503.759, 6810017.019], [245688.606, 6809924.623], [245212.673, 6809408.404], [245339.557, 6808975.792], [245679.363, 6809006.975], [245530.933, 6808224.243], [245277.843, 6807615.157], [244336.218, 6807415.127], [244321.937, 6806904.356], [244099.204, 6806169.888], [243441.158, 6804942.157], [244472.782, 6804355.056], [244226.689, 6803166.506], [243698.638, 6802836.576], [243876.903, 6803399.199], [243284.861, 6803458.087], [243240.898, 6803122.737], [240678.433, 6804285.356], [238676.334, 6804822.362], [238188.062, 6803039.945], [238940.819, 6802705.332], [238966.13, 6802053.866], [236238.88, 6803287.985], [235989.293, 6802827.588], [235290.058, 6802798.909], [234311.88, 6803114.678], [233394.317, 6805753.473], [232617.285, 6807931.558], [233500.552, 6808192.746], [235301.15, 6808261.888], [236822.296, 6808826.994], [236374.885, 6809231.085], [237122.207, 6809510.526], [237606.857, 6809119.709], [238975.168, 6810055.049], [238423.304, 6810593.775], [237369.472, 6810497.411], [236480.534, 6810752.991], [236183.252, 6811797.216], [239081.692, 6816384.633], [242061.019, 6817512.722], [241199.626, 6820529.969], [242615.492, 6819904.237]]]}}, {\\\"id\\\": \\\"16\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pello\\\", \\\"elakelaisten_osuus\\\": 45.9, \\\"freshwarea\\\": 126.02, \\\"gml_id\\\": 1601100608, \\\"landarea\\\": 1738.64, \\\"namefin\\\": \\\"Pello\\\", \\\"nameswe\\\": \\\"Pello\\\", \\\"natcode\\\": \\\"854\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1864.66}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[369532.563, 7435182.57], [370760.922, 7434986.159], [371102.52, 7435062.427], [371271.796, 7434832.887], [371504.242, 7435527.34], [371727.693, 7435593.904], [371882.613, 7435430.812], [371637.312, 7435187.429], [371841.62, 7434986.899], [372145.77, 7435304.273], [376198.326, 7435268.207], [378048.544, 7433167.916], [406913.773, 7426046.917], [408258.283, 7419674.536], [408565.452, 7420135.889], [408848.759, 7420090.103], [408640.436, 7419672.575], [408560.891, 7418204.463], [409580.035, 7417959.226], [409423.99, 7417331.926], [408763.358, 7417278.326], [410215.922, 7410585.533], [410405.207, 7411672.258], [410719.948, 7411626.776], [410673.665, 7409834.931], [410393.861, 7409755.931], [410822.204, 7407720.82], [410325.318, 7407457.559], [410269.597, 7407273.587], [410555.001, 7406972.236], [410941.021, 7407214.327], [411402.469, 7405428.684], [410432.901, 7405428.723], [410784.179, 7404046.064], [411208.144, 7403204.607], [410897.513, 7403092.245], [410673.947, 7403504.99], [409805.286, 7403492.33], [409704.07, 7402589.309], [409370.786, 7402666.986], [408933.338, 7403421.081], [409180.963, 7404460.313], [410312.023, 7404169.581], [409669.99, 7405466.501], [409019.912, 7405514.707], [407131.878, 7405982.74], [407141.236, 7406338.065], [405195.844, 7406900.603], [400930.796, 7405995.146], [400910.044, 7405130.897], [400509.669, 7405082.137], [400429.647, 7405554.3], [400571.998, 7406233.458], [400384.722, 7406761.881], [399962.238, 7406563.692], [399323.12, 7404872.413], [398215.928, 7403790.346], [398231.193, 7402574.683], [399016.23, 7400527.224], [398139.564, 7398444.578], [396887.983, 7400847.966], [396697.937, 7401010.873], [396363.795, 7400669.71], [396415.857, 7400204.099], [395959.526, 7400320.459], [395451.998, 7399891.508], [394573.685, 7399441.837], [394865.4, 7398595.81], [393982.613, 7398307.446], [394421.55, 7398085.78], [394626.454, 7397675.495], [395191.322, 7397666.614], [394927.067, 7396548.116], [394577.366, 7396498.411], [392396.412, 7396859.745], [392291.068, 7396323.983], [391885.833, 7396659.402], [391714.807, 7395992.905], [392366.034, 7394468.287], [391311.903, 7394819.072], [391123.418, 7394240.863], [390770.706, 7394365.657], [390340.125, 7393946.418], [390534.912, 7392093.582], [387918.462, 7393185.221], [387811.585, 7391577.251], [386995.896, 7391658.872], [386882.255, 7390815.436], [385770.577, 7390951.547], [384452.725, 7389319.337], [383252.605, 7388847.673], [381942.642, 7389349.549], [381388.299, 7389101.684], [381303.081, 7387578.83], [379595.512, 7386018.158], [380182.229, 7384404.137], [380123.289, 7383810.828], [379548.425, 7383864.17], [378964.329, 7383455.164], [377639.935, 7383307.282], [376373.798, 7384164.594], [375610.252, 7385913.433], [374630.127, 7385773.148], [374375.017, 7386491.0], [373979.822, 7386366.384], [374311.468, 7385569.834], [375540.193, 7385256.254], [376190.216, 7383319.552], [376808.319, 7383341.428], [376816.007, 7382186.719], [374507.15, 7380477.581], [374999.359, 7380042.714], [374880.006, 7379860.34], [372871.049, 7379467.226], [372619.566, 7379730.511], [372024.946, 7381366.52], [370354.787, 7380930.152], [370856.99, 7378554.661], [363936.462, 7375115.105], [361471.629, 7378187.813], [359656.999, 7378966.417], [358764.992, 7379662.425], [358370.344, 7381426.173], [357653.477, 7381647.716], [357679.894, 7381813.57], [357670.717, 7381876.108], [357598.318, 7382003.693], [357493.46, 7382122.765], [357441.346, 7382211.318], [357418.52, 7382282.514], [357396.851, 7382509.968], [357173.002, 7382965.17], [357166.772, 7383091.697], [357247.519, 7383364.472], [357368.782, 7383471.087], [357628.54, 7383491.145], [357691.091, 7383542.36], [357925.897, 7383806.034], [358077.029, 7383907.231], [358197.436, 7383951.761], [358410.75, 7384096.186], [358525.489, 7384279.249], [358580.313, 7384336.809], [358698.557, 7384421.52], [358869.159, 7384509.8], [359090.987, 7384665.866], [359412.282, 7385107.857], [359597.55, 7385253.589], [359694.572, 7385313.23], [359775.768, 7385333.509], [360036.302, 7385327.451], [360222.085, 7385352.926], [360401.836, 7385422.771], [360522.833, 7385523.369], [360564.644, 7385603.578], [360593.593, 7385840.683], [360665.921, 7385973.601], [360721.426, 7386133.348], [360774.293, 7386541.664], [360829.277, 7386733.496], [360894.852, 7386850.677], [361242.043, 7387245.374], [361278.673, 7387343.865], [361372.675, 7387511.847], [361403.192, 7387608.624], [361422.967, 7387820.093], [361495.296, 7387953.009], [361544.657, 7388241.259], [361603.966, 7388352.725], [361608.116, 7388486.782], [361591.224, 7388555.696], [361502.499, 7388720.106], [361482.885, 7388817.192], [361520.346, 7388933.699], [361546.46, 7389108.793], [361550.486, 7389545.436], [361639.881, 7389918.022], [361599.736, 7390266.515], [361610.402, 7390483.316], [361646.154, 7390685.133], [361816.085, 7390993.744], [362021.897, 7391528.274], [362060.355, 7391691.683], [362090.852, 7391948.224], [362081.436, 7392047.49], [362047.091, 7392161.043], [361814.513, 7392446.671], [361785.968, 7392511.456], [361702.862, 7393079.383], [361601.833, 7393373.582], [361524.854, 7393482.824], [361496.948, 7393577.677], [361472.574, 7393804.895], [361476.905, 7393969.266], [361556.846, 7394261.672], [361561.491, 7394659.118], [361673.329, 7395017.041], [361659.831, 7395092.573], [361561.29, 7395300.149], [361525.511, 7395466.059], [361418.929, 7395788.858], [361399.301, 7396116.104], [361404.738, 7396384.904], [361420.905, 7396431.717], [361563.875, 7396616.079], [361601.908, 7396751.41], [361604.344, 7396940.061], [361751.124, 7397168.309], [361793.403, 7397283.179], [361781.054, 7397601.751], [361806.355, 7397798.462], [361937.458, 7398214.937], [361980.998, 7398275.424], [362066.996, 7398338.193], [362353.47, 7398437.66], [362437.815, 7398504.597], [362493.182, 7398608.245], [362547.716, 7398908.873], [362495.387, 7399413.81], [362526.214, 7399581.899], [362587.329, 7399705.144], [362615.207, 7399839.337], [362648.558, 7400173.996], [362618.623, 7400471.601], [362629.405, 7400603.316], [362682.663, 7400859.154], [362780.11, 7400998.442], [362836.286, 7401194.017], [362928.14, 7401341.612], [362999.477, 7401636.592], [363022.532, 7401811.797], [363164.899, 7402044.991], [363153.027, 7402125.778], [363082.784, 7402203.591], [363052.584, 7402279.302], [363051.788, 7402575.996], [363088.787, 7402632.215], [363205.872, 7402724.401], [363266.265, 7402845.556], [363392.472, 7403231.937], [363459.737, 7403330.696], [363599.883, 7403481.791], [363676.21, 7403678.302], [363674.223, 7403756.597], [363635.493, 7403900.915], [363473.386, 7404219.986], [363300.697, 7404724.019], [363158.273, 7405036.062], [362964.126, 7405707.57], [362935.135, 7406001.713], [362961.982, 7406094.558], [362966.481, 7406220.599], [362952.736, 7406265.392], [362970.89, 7406384.735], [362967.95, 7406561.306], [362920.633, 7406850.377], [362856.558, 7407008.054], [362773.958, 7407118.554], [362562.563, 7407259.772], [362503.208, 7407314.941], [362475.791, 7407366.497], [362477.816, 7407522.729], [362529.903, 7407716.48], [362644.494, 7407876.938], [362671.858, 7407979.771], [362684.117, 7408101.392], [362651.613, 7408365.675], [362666.703, 7408425.018], [362735.981, 7408601.852], [362822.45, 7408683.582], [362911.719, 7408703.04], [362984.419, 7408751.378], [363051.794, 7408930.302], [363082.287, 7408976.859], [363153.605, 7409037.307], [363345.139, 7409133.626], [363535.127, 7409199.979], [363703.183, 7409191.299], [363966.944, 7409131.564], [364109.91, 7409142.219], [364216.41, 7409184.798], [364304.94, 7409306.514], [364342.374, 7409527.081], [364329.147, 7409776.32], [364336.878, 7410004.439], [364289.364, 7410351.697], [364195.522, 7410741.866], [364201.578, 7411066.174], [364114.014, 7411247.748], [364072.084, 7411523.794], [364079.058, 7411763.944], [364153.29, 7411871.325], [364232.077, 7411938.498], [364362.467, 7411989.703], [364428.99, 7411997.212], [364576.884, 7411979.666], [364787.348, 7411917.683], [364934.928, 7411838.017], [365044.042, 7411749.772], [365135.949, 7411630.157], [365262.495, 7411308.874], [365312.521, 7411250.895], [365686.726, 7410950.383], [365955.327, 7410563.698], [366040.257, 7410472.366], [366171.888, 7410395.316], [366257.563, 7410378.073], [366600.549, 7410371.221], [366741.465, 7410381.959], [366848.874, 7410410.007], [367020.453, 7410489.714], [367246.865, 7410693.575], [367340.874, 7410846.312], [367369.907, 7410979.433], [367370.089, 7411091.605], [367312.527, 7411324.159], [367109.187, 7411900.731], [367102.606, 7411939.022], [367129.343, 7412118.312], [367213.186, 7412213.321], [367577.158, 7412500.176], [367625.587, 7412560.463], [367741.316, 7413295.331], [367685.022, 7413561.869], [367737.922, 7413742.208], [367904.78, 7414018.388], [367955.823, 7414202.805], [368029.806, 7414356.26], [368070.115, 7414629.216], [368037.929, 7414842.767], [367926.086, 7415073.331], [367557.05, 7416156.95], [367405.154, 7416443.116], [367239.646, 7416633.627], [367160.46, 7416770.85], [367146.807, 7416835.475], [367165.085, 7416948.959], [367112.96, 7417219.374], [367124.029, 7417569.526], [367097.152, 7417816.965], [367061.411, 7417934.498], [366999.516, 7418051.012], [366825.456, 7418496.26], [366717.935, 7418734.705], [366651.65, 7418841.366], [366455.634, 7419343.559], [366442.536, 7419476.288], [366452.033, 7419784.432], [366439.284, 7419818.965], [366053.825, 7420453.035], [366032.416, 7420570.565], [366098.018, 7420735.217], [366099.926, 7420839.378], [366068.75, 7420961.441], [365975.707, 7421161.243], [365821.541, 7421697.378], [365645.144, 7421913.951], [365507.451, 7421963.905], [365264.73, 7422003.844], [365071.102, 7422059.021], [364944.938, 7422170.484], [364838.997, 7422354.972], [364814.451, 7422452.625], [364778.442, 7422877.716], [364749.661, 7422971.603], [364393.358, 7423695.719], [364085.584, 7424108.267], [363933.18, 7424393.671], [363850.251, 7424488.654], [363673.402, 7424627.064], [363594.126, 7424715.804], [363551.617, 7424780.386], [363464.616, 7425050.032], [363188.173, 7425308.434], [363002.898, 7425545.599], [362883.357, 7425772.998], [362856.628, 7425973.027], [362852.227, 7426177.781], [362876.858, 7426433.03], [362879.518, 7426902.062], [362933.478, 7427073.403], [363019.039, 7427271.025], [363044.32, 7427432.012], [363123.7, 7427662.054], [363093.905, 7427737.961], [363015.366, 7427804.596], [362957.901, 7427888.073], [362969.765, 7428095.924], [362898.074, 7428282.507], [362856.255, 7428499.426], [362854.203, 7428850.441], [362935.721, 7429012.204], [362974.886, 7429170.349], [362978.107, 7429332.591], [362944.529, 7429482.881], [362974.583, 7429587.446], [362963.031, 7429736.456], [362388.873, 7430354.328], [362270.677, 7430397.486], [361976.421, 7430358.32], [361811.663, 7430393.742], [361634.324, 7430491.447], [361521.03, 7430623.8], [361477.261, 7430780.482], [361504.187, 7431021.591], [361498.762, 7431332.575], [361301.475, 7431732.018], [361158.222, 7431942.156], [361127.786, 7432047.993], [361129.875, 7432162.15], [361188.816, 7432475.698], [361172.91, 7432590.815], [361120.416, 7432659.757], [361089.264, 7432677.475], [361021.573, 7432687.124], [360915.395, 7432652.723], [360827.258, 7432655.439], [360798.117, 7432673.043], [360768.361, 7432716.732], [360741.197, 7432846.486], [360711.74, 7432896.176], [360483.615, 7433056.718], [360411.231, 7433128.773], [360363.794, 7433217.504], [360350.836, 7433312.393], [360402.012, 7433443.974], [360506.396, 7433594.699], [360526.138, 7433663.821], [360510.624, 7433748.837], [360270.036, 7434126.554], [360200.272, 7434284.64], [360155.022, 7434339.202], [360060.537, 7434410.397], [359881.192, 7434620.481], [359824.759, 7434659.799], [359578.098, 7435379.826], [368743.458, 7435322.348], [368350.029, 7435823.008], [368979.937, 7436211.462], [369532.563, 7435182.57]]]}}, {\\\"id\\\": \\\"17\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kaustinen\\\", \\\"elakelaisten_osuus\\\": 25.6, \\\"freshwarea\\\": 7.2, \\\"gml_id\\\": 1601100397, \\\"landarea\\\": 353.92, \\\"namefin\\\": \\\"Kaustinen\\\", \\\"nameswe\\\": \\\"Kaustby\\\", \\\"natcode\\\": \\\"236\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 361.12}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[340855.74, 7063295.99], [343619.399, 7062277.44], [348181.099, 7059859.886], [349345.832, 7058857.682], [348783.199, 7058670.386], [350662.676, 7055031.222], [352998.076, 7053684.524], [353971.17, 7052391.166], [354000.351, 7052961.844], [354166.053, 7053167.571], [354753.386, 7052693.054], [355234.123, 7053010.949], [355095.879, 7053200.511], [355555.922, 7053529.154], [355999.493, 7053151.35], [354665.976, 7051593.978], [354208.134, 7051862.952], [353432.667, 7050443.076], [353961.746, 7049692.385], [353776.885, 7049560.067], [353508.522, 7048401.236], [353367.545, 7048485.754], [353073.37, 7047984.33], [352920.95, 7047856.85], [352980.019, 7047769.599], [352760.876, 7047634.99], [352645.633, 7047644.051], [352507.231, 7047470.066], [352748.026, 7047233.904], [352789.636, 7047383.2], [352964.543, 7047350.3], [352918.254, 7047105.757], [352829.619, 7047102.871], [352812.718, 7047129.635], [351926.993, 7046892.101], [347840.168, 7044696.36], [346318.951, 7046763.956], [345408.414, 7046129.192], [344901.417, 7046127.144], [344601.802, 7047031.675], [345597.382, 7047744.429], [344977.616, 7048586.201], [343850.803, 7048650.267], [343276.982, 7049332.033], [342693.784, 7048721.573], [342644.203, 7048360.656], [338878.267, 7046765.863], [338746.497, 7046812.896], [338506.426, 7046716.246], [338509.436, 7046591.828], [338225.537, 7046462.149], [337970.702, 7046904.436], [337826.804, 7046897.99], [337865.866, 7046749.578], [337718.876, 7046707.224], [337726.499, 7046583.47], [337549.152, 7046466.442], [337453.455, 7046227.383], [337220.336, 7046144.572], [333567.123, 7043747.806], [333511.413, 7049104.027], [330048.196, 7051796.216], [330505.135, 7052318.143], [329919.754, 7052880.098], [330288.525, 7053176.113], [330117.7, 7053663.605], [329010.342, 7053435.068], [329044.917, 7054532.602], [329488.815, 7054221.312], [330054.905, 7054772.204], [329876.717, 7055049.447], [330167.681, 7055524.439], [329808.909, 7055773.017], [329689.804, 7056775.221], [329586.652, 7057072.159], [329258.998, 7057500.569], [328872.451, 7056975.044], [328348.451, 7057109.247], [327740.45, 7056046.106], [326772.708, 7056566.966], [326642.998, 7056123.089], [326166.776, 7056154.334], [325898.683, 7055701.029], [322684.58, 7059188.11], [323249.655, 7059332.708], [324201.634, 7058549.327], [324397.56, 7058447.331], [324527.743, 7058699.894], [324243.484, 7058969.512], [324769.167, 7059100.098], [324925.453, 7059544.041], [324431.884, 7060307.208], [324291.708, 7060555.341], [325926.953, 7061683.339], [325692.42, 7063391.251], [325264.099, 7064134.802], [326702.412, 7063484.011], [326832.996, 7063304.619], [326913.888, 7062558.894], [327506.187, 7061821.083], [328227.139, 7060897.697], [328936.369, 7060821.321], [330352.027, 7061777.576], [332213.217, 7062495.019], [334271.841, 7064707.527], [336906.316, 7062947.037], [338953.924, 7064950.882], [340855.74, 7063295.99]], [[326402.468, 7058215.614], [326971.092, 7058301.574], [327080.648, 7057735.383], [326763.158, 7057965.663], [326551.978, 7057560.865], [326703.142, 7057210.065], [326104.255, 7057407.028], [325532.798, 7057673.873], [325107.334, 7057878.341], [325017.643, 7058232.471], [325251.749, 7058481.009], [326402.468, 7058215.614]]]}}, {\\\"id\\\": \\\"18\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Keuruu\\\", \\\"elakelaisten_osuus\\\": 38.2, \\\"freshwarea\\\": 172.6, \\\"gml_id\\\": 1601100103, \\\"landarea\\\": 1257.97, \\\"namefin\\\": \\\"Keuruu\\\", \\\"nameswe\\\": \\\"Keuruu\\\", \\\"natcode\\\": \\\"249\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1430.57}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[372218.326, 6935135.598], [372926.096, 6935477.746], [374847.499, 6931101.398], [375469.069, 6927104.392], [373217.855, 6927114.746], [374668.373, 6925225.006], [376687.732, 6926554.051], [376826.6, 6926347.979], [377248.605, 6926402.991], [377210.478, 6926689.508], [378499.362, 6926862.409], [379454.742, 6926122.718], [375515.091, 6924192.629], [376198.3, 6923361.368], [380402.15, 6926078.927], [380875.85, 6925268.462], [380143.067, 6925507.298], [376482.758, 6923015.269], [377355.533, 6921947.367], [379224.73, 6923161.678], [379449.46, 6922939.945], [377552.867, 6921705.915], [377923.958, 6921251.864], [378143.806, 6921006.114], [378050.218, 6920623.404], [378155.388, 6920210.903], [378443.07, 6919792.938], [378365.027, 6919483.563], [378765.531, 6919147.369], [378749.151, 6918557.132], [379227.436, 6918557.194], [379439.117, 6918203.743], [381142.491, 6918563.86], [381285.029, 6917543.368], [381539.893, 6917589.746], [381693.279, 6915890.013], [382557.748, 6915943.054], [382968.969, 6916261.585], [383710.43, 6915910.756], [383898.706, 6916221.578], [384711.358, 6916118.082], [383004.765, 6912698.609], [386320.597, 6914063.098], [386951.494, 6913487.278], [387693.37, 6913735.74], [387535.785, 6914642.56], [389767.938, 6914972.405], [390459.528, 6914156.477], [389233.613, 6912769.978], [391015.217, 6911836.824], [391277.737, 6911128.563], [392455.231, 6911148.069], [394266.286, 6911524.329], [396388.29, 6911952.989], [399970.949, 6912665.932], [398730.031, 6908729.441], [397892.171, 6903484.783], [399808.415, 6902188.866], [397921.212, 6898837.623], [394359.983, 6899320.787], [392183.079, 6897094.918], [386726.012, 6888613.35], [389079.739, 6882556.808], [381259.133, 6878840.604], [379937.168, 6881504.273], [379201.603, 6881686.702], [378675.807, 6881952.619], [378090.986, 6881872.049], [378170.299, 6886338.911], [378639.592, 6889208.579], [378635.147, 6889220.43], [376079.118, 6890696.812], [375622.692, 6891614.555], [374979.752, 6892020.508], [373009.646, 6897253.956], [369899.841, 6899481.624], [369833.795, 6898652.126], [366021.274, 6896110.715], [366162.156, 6895374.285], [366491.486, 6895432.852], [366668.922, 6894420.74], [365958.247, 6893853.113], [365006.984, 6894481.373], [365526.887, 6894835.041], [365023.787, 6895762.506], [364936.019, 6894951.516], [364473.547, 6895084.276], [364624.779, 6896018.317], [364227.643, 6896154.213], [364024.992, 6895458.903], [362517.825, 6895281.64], [361261.513, 6895753.215], [361387.52, 6896053.702], [359167.866, 6898883.99], [358082.311, 6906176.708], [357328.096, 6905317.17], [355176.866, 6905410.076], [351709.824, 6905580.695], [348523.117, 6908389.531], [348370.354, 6910688.402], [347884.878, 6911249.475], [347148.85, 6911272.219], [346935.619, 6910860.52], [345809.974, 6912634.291], [345455.368, 6918226.112], [346809.505, 6920085.301], [350233.547, 6923119.684], [349972.567, 6923649.061], [355768.028, 6931075.644], [361807.394, 6926920.543], [362797.078, 6928629.543], [363038.414, 6928736.444], [362746.296, 6929459.528], [362504.795, 6929363.334], [361942.061, 6930776.119], [362711.194, 6931135.257], [362483.209, 6931740.306], [364786.11, 6932843.729], [365005.786, 6931897.527], [365668.543, 6932589.881], [366246.345, 6932750.553], [366352.819, 6932365.981], [365776.553, 6932199.31], [365851.934, 6931938.683], [366428.199, 6932105.355], [367232.015, 6929567.187], [368683.893, 6930774.065], [368884.285, 6931755.923], [370410.905, 6931947.235], [370494.994, 6932246.918], [371036.517, 6932014.307], [371944.61, 6932698.537], [371640.843, 6933095.55], [371680.354, 6933362.602], [371559.621, 6934149.749], [371729.058, 6935540.595], [371944.111, 6935657.861], [372218.326, 6935135.598]]]}}, {\\\"id\\\": \\\"19\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"H\\\\u00e4meenkyr\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 28.6, \\\"freshwarea\\\": 41.19, \\\"gml_id\\\": 1601100175, \\\"landarea\\\": 463.91, \\\"namefin\\\": \\\"H\\\\u00e4meenkyr\\\\u00f6\\\", \\\"nameswe\\\": \\\"Tavastkyro\\\", \\\"natcode\\\": \\\"108\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 505.1}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[299420.004, 6850770.354], [299858.417, 6850425.95], [300266.32, 6849598.41], [299981.439, 6848115.673], [300093.121, 6847168.958], [300513.738, 6846614.545], [299241.439, 6841628.914], [300004.596, 6842344.802], [301935.602, 6842602.016], [304643.033, 6842528.681], [304709.0, 6841239.413], [305349.708, 6839839.446], [305853.626, 6839216.358], [307984.308, 6841905.84], [308580.538, 6842517.022], [310086.087, 6844492.211], [311036.347, 6843906.982], [311373.106, 6842724.475], [312015.772, 6842699.842], [314955.55, 6845505.774], [313935.993, 6843341.248], [314209.98, 6840142.191], [313425.666, 6837757.058], [313807.862, 6835681.123], [313875.13, 6833059.91], [313466.916, 6832629.575], [311109.061, 6831687.279], [310320.578, 6829369.752], [308203.925, 6826970.481], [307564.707, 6825931.139], [306781.232, 6826148.349], [306858.584, 6826604.127], [306595.263, 6826698.904], [305493.287, 6826239.593], [305179.992, 6826498.246], [304599.092, 6826418.492], [304340.391, 6826640.883], [301755.028, 6826223.003], [297708.422, 6828597.687], [296575.524, 6828954.943], [293962.356, 6829479.405], [292694.158, 6829465.937], [291405.441, 6829696.794], [290982.526, 6831333.114], [290476.904, 6832296.812], [291936.694, 6834189.859], [291273.225, 6834911.684], [289257.447, 6836126.045], [288106.989, 6835569.413], [287064.918, 6834366.587], [286778.37, 6834309.846], [286298.281, 6834962.156], [285818.348, 6834851.058], [285642.413, 6835525.584], [284530.866, 6834895.12], [282269.024, 6837584.376], [280215.313, 6839376.199], [279990.099, 6839987.823], [279792.466, 6840641.314], [279169.002, 6843356.211], [279058.358, 6845083.295], [279903.756, 6847102.769], [281041.449, 6846513.224], [283831.162, 6847779.755], [287088.625, 6847447.417], [288322.139, 6846824.974], [289214.339, 6846081.962], [290205.675, 6845736.344], [290129.734, 6847119.355], [292096.026, 6847789.9], [293046.747, 6848091.924], [293203.967, 6848691.468], [294010.688, 6849378.869], [294358.921, 6849967.302], [294345.549, 6850241.412], [294495.274, 6850353.399], [294715.674, 6850088.543], [294944.507, 6849379.918], [295695.119, 6849531.258], [296105.206, 6849943.63], [296582.829, 6850003.497], [297001.217, 6849489.723], [297610.079, 6849432.687], [298033.668, 6848877.628], [298362.964, 6848689.433], [298658.113, 6849255.868], [298652.736, 6850184.768], [299121.128, 6850780.345], [299420.004, 6850770.354]]]}}, {\\\"id\\\": \\\"20\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Naantali\\\", \\\"elakelaisten_osuus\\\": 29.3, \\\"freshwarea\\\": 3.93, \\\"gml_id\\\": 1601100333, \\\"landarea\\\": 312.46, \\\"namefin\\\": \\\"Naantali\\\", \\\"nameswe\\\": \\\"N\\\\u00e5dendal\\\", \\\"natcode\\\": \\\"529\\\", \\\"seawarea\\\": 371.6, \\\"totalarea\\\": 687.99}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[213829.192, 6725561.012], [213661.102, 6725071.921], [213838.526, 6725252.75], [213876.098, 6724546.863], [214200.438, 6724859.907], [214543.966, 6725191.59], [214867.692, 6724763.287], [215135.324, 6724409.346], [215266.993, 6724215.947], [215157.497, 6723775.283], [215336.795, 6723204.646], [215302.359, 6722983.309], [215234.762, 6722487.617], [215181.584, 6722097.633], [215155.067, 6721903.175], [215116.349, 6721633.135], [214844.586, 6721378.805], [214797.831, 6721335.05], [214698.878, 6721104.647], [214665.476, 6721026.874], [214640.195, 6720968.01], [214577.92, 6720831.455], [214528.441, 6720697.793], [214230.514, 6720145.005], [214087.684, 6719498.749], [214634.917, 6719503.675], [215429.819, 6719711.561], [216599.045, 6719761.778], [218253.119, 6719700.01], [219086.463, 6719751.116], [219240.266, 6719420.246], [219647.97, 6719757.941], [219852.224, 6719632.751], [220054.069, 6719934.094], [220363.283, 6720151.551], [220809.825, 6720182.538], [221190.623, 6719246.801], [220693.96, 6718790.38], [220643.823, 6718091.578], [220890.714, 6717250.501], [221277.387, 6716924.233], [221784.181, 6717062.411], [222068.043, 6716812.246], [222668.953, 6716797.078], [223220.476, 6716213.93], [223993.953, 6716848.608], [224291.95, 6716710.128], [224600.522, 6716354.963], [224969.253, 6715404.941], [225518.294, 6715245.698], [226425.659, 6716001.766], [226108.258, 6716514.079], [226067.459, 6717326.551], [226425.797, 6717608.291], [226503.52, 6717984.744], [226840.298, 6717728.306], [227942.206, 6718041.726], [229329.751, 6718497.834], [229222.228, 6718744.638], [230299.548, 6718842.165], [230673.238, 6717304.81], [230067.829, 6717171.967], [230058.337, 6716745.867], [229782.415, 6716334.403], [229248.494, 6715975.862], [229179.204, 6715206.87], [229191.27, 6714874.245], [229246.922, 6714869.872], [229259.79, 6714803.236], [229014.096, 6714709.555], [229516.969, 6713864.285], [229254.67, 6713787.415], [229589.11, 6712650.956], [230509.85, 6711699.204], [230992.164, 6711298.417], [230780.77, 6710476.329], [229751.474, 6710366.715], [229303.005, 6709852.733], [229072.472, 6709282.223], [229216.712, 6708422.847], [229470.172, 6708168.048], [229590.134, 6705435.827], [228858.24, 6703886.203], [228348.717, 6703323.663], [228185.398, 6702828.43], [228155.912, 6702439.352], [228011.532, 6702274.564], [228284.797, 6701799.795], [228333.285, 6701715.552], [228691.925, 6701676.26], [229188.53, 6701412.634], [228253.615, 6700171.949], [228193.083, 6699615.667], [227792.948, 6698615.937], [226916.101, 6696420.888], [226297.424, 6694335.234], [224521.111, 6693052.248], [222873.11, 6692976.464], [220965.074, 6691634.205], [217665.069, 6691300.089], [215538.797, 6693707.137], [214557.038, 6694143.533], [214576.964, 6694548.751], [214314.243, 6694924.87], [214832.461, 6695340.857], [215055.74, 6695765.069], [214246.981, 6696330.288], [213460.961, 6696600.861], [212936.633, 6696405.094], [212496.388, 6696219.182], [211728.219, 6695806.303], [211668.861, 6695727.741], [211352.099, 6694951.753], [210129.898, 6695288.121], [208849.996, 6693802.315], [207027.919, 6694865.842], [206493.673, 6697411.293], [204505.562, 6697220.412], [203926.596, 6700343.523], [202087.844, 6702233.877], [201459.584, 6704052.32], [202416.079, 6705973.116], [200422.541, 6707091.431], [198336.176, 6705803.473], [197854.925, 6706736.992], [198507.546, 6708470.296], [198928.357, 6708887.955], [197649.599, 6710433.514], [198381.306, 6711944.119], [199883.428, 6712104.533], [199787.494, 6713076.908], [200014.48, 6714121.905], [199729.771, 6715828.949], [203663.663, 6715607.006], [204900.481, 6716119.568], [206231.228, 6717947.675], [206825.9, 6717720.804], [207715.057, 6717548.731], [208419.783, 6717493.374], [208229.426, 6717701.334], [207944.572, 6718048.583], [207866.453, 6718885.384], [207778.093, 6719110.198], [208027.195, 6719299.329], [208360.244, 6719094.54], [208558.563, 6719051.384], [208486.602, 6719331.368], [208477.544, 6719570.733], [208866.164, 6719773.628], [208986.515, 6720127.157], [208735.315, 6721366.326], [208586.659, 6721440.512], [209381.041, 6723213.336], [209622.708, 6724425.277], [209751.23, 6724719.66], [210611.713, 6724453.203], [210800.714, 6724257.575], [211129.99, 6723891.315], [211468.966, 6723983.186], [211863.904, 6724213.416], [212267.27, 6724810.316], [212666.578, 6725094.901], [213020.784, 6724988.746], [213829.192, 6725561.012]], [[211887.792, 6701645.598], [212419.222, 6701693.127], [211742.24, 6699582.572], [210864.557, 6699002.17], [210622.052, 6700109.849], [211063.349, 6701755.139], [211887.792, 6701645.598]]]}}, {\\\"id\\\": \\\"21\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Huittinen\\\", \\\"elakelaisten_osuus\\\": 33.4, \\\"freshwarea\\\": 6.95, \\\"gml_id\\\": 1601100160, \\\"landarea\\\": 532.64, \\\"namefin\\\": \\\"Huittinen\\\", \\\"nameswe\\\": \\\"Huittinen\\\", \\\"natcode\\\": \\\"102\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 539.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[264807.819, 6804306.108], [265336.518, 6803152.676], [266037.315, 6800566.392], [266329.427, 6800128.687], [265481.475, 6799810.81], [265999.846, 6799373.47], [266252.788, 6798694.306], [266428.884, 6798044.509], [266836.777, 6797785.92], [267709.741, 6797790.94], [268451.747, 6797942.93], [268854.779, 6797729.033], [269445.303, 6797788.933], [269478.477, 6797139.966], [269892.904, 6797253.724], [269839.516, 6797756.623], [272987.479, 6797581.89], [274585.086, 6796929.362], [275577.231, 6796315.678], [275568.07, 6795559.752], [276051.106, 6795755.649], [275911.884, 6796121.768], [277028.406, 6795428.499], [277639.413, 6796110.485], [278967.265, 6794937.031], [278407.536, 6794586.992], [281615.645, 6792413.385], [282591.859, 6789184.159], [280405.736, 6789563.086], [280639.54, 6785440.994], [281520.333, 6784788.142], [281499.02, 6783427.186], [282730.952, 6782899.625], [283028.074, 6782373.781], [280564.708, 6780119.242], [279796.938, 6779300.946], [280812.362, 6777713.99], [284104.602, 6779172.354], [284595.879, 6777710.317], [284299.649, 6777254.653], [281989.973, 6776068.675], [282345.246, 6774309.421], [281854.099, 6774673.529], [281328.103, 6774419.726], [280586.879, 6774590.816], [280229.793, 6774999.512], [280428.268, 6775311.529], [280152.535, 6775747.097], [279706.988, 6775419.412], [279415.25, 6775687.155], [278573.301, 6775864.744], [278154.907, 6776087.149], [277814.511, 6776495.121], [277308.152, 6779151.894], [274959.606, 6781270.399], [274390.899, 6778778.428], [275428.343, 6777632.396], [275333.035, 6776639.634], [274628.928, 6775778.569], [274731.774, 6775041.26], [274526.321, 6774665.245], [273633.567, 6774623.592], [274479.942, 6772934.131], [274472.51, 6771497.022], [273760.975, 6769282.367], [272984.656, 6769738.991], [272558.459, 6770135.186], [271813.852, 6769496.828], [267926.313, 6768451.73], [267534.562, 6768963.192], [264478.663, 6770969.105], [264179.474, 6770470.666], [263680.23, 6770884.356], [263142.9, 6771414.672], [263133.068, 6771846.568], [262130.106, 6772503.933], [261070.704, 6777636.777], [261628.054, 6777951.94], [258775.105, 6786546.675], [257857.082, 6787773.348], [256997.76, 6790195.252], [259279.988, 6793089.133], [258174.839, 6793955.76], [258955.778, 6794452.525], [259011.851, 6795243.666], [260447.953, 6794135.422], [260517.096, 6794468.61], [260977.567, 6794749.789], [261186.609, 6795011.854], [261236.8, 6796008.788], [261614.126, 6796475.47], [261921.493, 6797169.814], [261042.989, 6798083.878], [261215.647, 6798409.508], [261823.927, 6798138.535], [262979.515, 6799631.995], [264680.039, 6800779.63], [264692.351, 6801683.504], [263766.103, 6804151.454], [264362.048, 6804367.733], [264807.819, 6804306.108]]]}}, {\\\"id\\\": \\\"22\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Yp\\\\u00e4j\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 32.6, \\\"freshwarea\\\": 0.49, \\\"gml_id\\\": 1601100191, \\\"landarea\\\": 182.76, \\\"namefin\\\": \\\"Yp\\\\u00e4j\\\\u00e4\\\", \\\"nameswe\\\": \\\"Yp\\\\u00e4j\\\\u00e4\\\", \\\"natcode\\\": \\\"981\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 183.25}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[297451.456, 6756204.328], [297931.884, 6755403.995], [299361.869, 6754184.491], [300509.591, 6752744.301], [301425.997, 6749406.197], [301971.182, 6747926.84], [302378.007, 6747424.962], [302708.357, 6747538.716], [302000.587, 6744994.053], [302366.744, 6744514.121], [302940.981, 6744322.009], [303484.017, 6743917.414], [304237.405, 6739157.851], [300009.447, 6736955.048], [297095.812, 6738030.047], [296901.865, 6736363.869], [295788.771, 6738326.977], [291982.254, 6741912.91], [290626.556, 6743768.628], [293070.053, 6748007.071], [295059.644, 6749230.72], [294609.897, 6749724.339], [291799.465, 6750489.39], [291469.115, 6750947.219], [291135.676, 6750674.748], [290386.608, 6750853.006], [290129.304, 6751233.0], [290172.784, 6752274.014], [290311.611, 6755994.397], [290933.69, 6756744.368], [291432.64, 6756923.15], [297451.456, 6756204.328]]]}}, {\\\"id\\\": \\\"23\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kokkola\\\", \\\"elakelaisten_osuus\\\": 25.6, \\\"freshwarea\\\": 41.99, \\\"gml_id\\\": 1601100448, \\\"landarea\\\": 1445.44, \\\"namefin\\\": \\\"Kokkola\\\", \\\"nameswe\\\": \\\"Karleby\\\", \\\"natcode\\\": \\\"272\\\", \\\"seawarea\\\": 1243.37, \\\"totalarea\\\": 2730.8}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[353998.891, 7110725.101], [354053.497, 7110689.86], [354268.007, 7109974.503], [352930.657, 7106827.52], [351894.437, 7107882.928], [352245.381, 7108887.683], [351822.165, 7109127.617], [352365.044, 7111142.042], [353998.891, 7110725.101]]], [[[329149.423, 7113662.138], [329762.186, 7112237.981], [335973.546, 7105699.832], [339081.286, 7098673.058], [339837.41, 7099518.146], [340750.179, 7098151.94], [341379.792, 7097210.048], [340983.369, 7096912.228], [342492.297, 7095255.626], [341668.474, 7094609.544], [341095.197, 7094632.929], [340092.691, 7093574.718], [340168.184, 7092993.865], [340109.731, 7092592.844], [339185.469, 7091751.412], [338591.821, 7091928.309], [338300.288, 7092415.653], [337981.286, 7093198.735], [336970.342, 7093984.856], [336457.668, 7094098.858], [336265.842, 7093904.584], [336435.249, 7093521.597], [336776.151, 7093553.162], [337320.782, 7092973.289], [336259.608, 7092247.084], [336189.334, 7091923.442], [336700.556, 7092163.051], [337025.392, 7091877.223], [336524.154, 7091245.615], [339146.659, 7088293.018], [338699.614, 7087844.275], [339341.91, 7087500.534], [339803.384, 7087014.822], [340550.515, 7087411.457], [340330.033, 7087694.684], [339785.777, 7087628.6], [339318.322, 7088071.653], [339678.371, 7088317.923], [339449.961, 7088875.853], [339751.391, 7089178.49], [338959.641, 7090583.641], [340249.967, 7091530.636], [340880.961, 7090723.55], [341086.711, 7090745.133], [341289.323, 7090409.835], [340654.694, 7090099.457], [341429.26, 7089332.458], [340829.375, 7088871.932], [341279.515, 7088523.921], [341200.553, 7088270.046], [341834.648, 7088057.19], [343186.243, 7085914.396], [342487.806, 7085411.567], [341953.596, 7085999.462], [342213.142, 7086322.589], [341504.196, 7086839.53], [341035.531, 7087645.473], [340789.113, 7087241.848], [340967.292, 7086931.48], [340724.166, 7086625.602], [340146.743, 7086198.627], [339599.596, 7085347.763], [339129.948, 7085954.726], [338680.093, 7085265.266], [340332.938, 7084862.48], [340619.855, 7085291.715], [340875.272, 7085274.806], [340852.183, 7084735.25], [342728.908, 7084276.4], [343063.132, 7083912.23], [342630.684, 7083477.715], [342889.818, 7083232.395], [343287.438, 7083647.927], [343513.103, 7084068.043], [343890.377, 7083997.745], [345722.833, 7079136.526], [347453.496, 7077830.35], [347092.372, 7077477.563], [347593.95, 7076951.289], [347186.357, 7076561.748], [347491.633, 7076241.797], [347899.622, 7076631.985], [348151.837, 7076368.617], [348460.668, 7076663.102], [351298.905, 7073363.513], [359478.022, 7063876.663], [360611.099, 7063021.249], [362726.85, 7060697.021], [361831.441, 7059842.605], [364539.532, 7056846.879], [364642.616, 7056512.058], [364123.423, 7056043.226], [364320.52, 7055825.039], [363611.719, 7055184.089], [363600.898, 7054727.796], [364155.185, 7054892.655], [364689.502, 7054297.312], [365066.24, 7054638.952], [365452.915, 7054213.527], [366131.198, 7054589.954], [366624.328, 7055038.96], [366929.68, 7054703.574], [367615.541, 7055326.944], [371310.62, 7051260.955], [372000.551, 7050495.081], [372366.465, 7050892.728], [375370.463, 7048084.477], [374026.326, 7046622.371], [372978.266, 7045479.255], [370959.148, 7047641.992], [368584.366, 7045298.537], [367291.436, 7045895.014], [366713.141, 7045822.86], [366483.128, 7046098.7], [366394.242, 7045682.928], [367054.39, 7045437.739], [367346.154, 7045368.174], [367574.977, 7045514.404], [368361.798, 7045084.633], [367673.776, 7044400.547], [367400.966, 7044688.69], [366662.923, 7043990.815], [362395.677, 7047666.317], [362555.475, 7047780.68], [362814.762, 7047863.404], [362792.097, 7048218.522], [363587.214, 7048897.567], [363193.361, 7049847.635], [363043.621, 7049840.926], [362978.199, 7049290.843], [363040.234, 7048776.159], [361992.935, 7048013.702], [355999.493, 7053151.35], [355555.922, 7053529.154], [355095.879, 7053200.511], [355234.123, 7053010.949], [354753.386, 7052693.054], [354166.053, 7053167.571], [354000.351, 7052961.844], [353971.17, 7052391.166], [352998.076, 7053684.524], [350662.676, 7055031.222], [348783.199, 7058670.386], [349345.832, 7058857.682], [348181.099, 7059859.886], [343619.399, 7062277.44], [340855.74, 7063295.99], [338953.924, 7064950.882], [336237.61, 7067749.705], [333027.085, 7070397.809], [332046.553, 7071358.332], [331240.761, 7072458.508], [326421.797, 7077190.967], [325213.974, 7075280.634], [325216.489, 7073068.132], [324522.137, 7072617.613], [323479.033, 7074466.543], [322655.938, 7074189.391], [322073.108, 7075220.166], [321500.39, 7075188.224], [320962.029, 7075627.377], [320693.229, 7075512.175], [320539.87, 7075055.313], [319350.795, 7075595.701], [317098.858, 7074870.674], [316589.966, 7074396.325], [316664.381, 7074058.36], [316507.043, 7073878.05], [316236.263, 7074065.869], [315735.4, 7073594.868], [315677.761, 7073088.416], [315551.871, 7072650.646], [314832.381, 7071410.855], [314727.342, 7070911.836], [314096.476, 7070968.9], [313541.075, 7071187.623], [313115.078, 7071689.876], [312416.297, 7072431.102], [311760.674, 7072838.133], [311193.13, 7073513.129], [311318.356, 7073767.683], [311591.596, 7073472.546], [311946.395, 7073513.712], [311691.634, 7074187.754], [311028.805, 7074056.564], [310837.425, 7073823.976], [306539.074, 7077742.32], [304434.679, 7079507.56], [303549.675, 7079942.708], [302407.634, 7079594.368], [302416.55, 7079106.889], [301248.92, 7078745.212], [301112.326, 7079187.337], [299553.595, 7078696.979], [299494.166, 7078263.467], [299694.209, 7077891.041], [299399.036, 7077481.529], [299255.144, 7078039.314], [299015.297, 7078375.488], [299315.016, 7078590.46], [299168.969, 7078795.357], [298918.854, 7078786.958], [297403.704, 7079236.489], [297297.234, 7079120.232], [297181.061, 7079155.977], [297122.559, 7079319.902], [296048.421, 7079638.589], [296771.245, 7081578.462], [297574.143, 7082650.797], [296912.295, 7084548.425], [296965.458, 7085083.322], [296784.793, 7085450.62], [295613.005, 7088597.752], [295613.176, 7088597.811], [295771.153, 7088651.754], [295547.431, 7089121.056], [295407.502, 7089166.136], [295350.159, 7089325.653], [295341.074, 7090096.11], [295048.765, 7090201.471], [294820.461, 7090893.349], [294814.535, 7090891.257], [294685.523, 7090845.724], [294625.992, 7090960.817], [294467.242, 7091024.318], [294288.648, 7091147.349], [294292.616, 7091679.163], [294511.641, 7091683.074], [294514.867, 7091683.132], [291807.56, 7098121.415], [269757.326, 7106576.967], [272839.905, 7110397.907], [273507.435, 7111158.895], [274194.063, 7111873.74], [275093.025, 7112720.642], [276027.459, 7113507.995], [276801.211, 7114097.417], [278585.47, 7115370.967], [282850.86, 7118174.901], [283716.695, 7118694.823], [284594.745, 7119169.654], [285776.955, 7119731.965], [294973.677, 7123760.451], [329149.423, 7113662.138]]]]}}, {\\\"id\\\": \\\"24\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Myn\\\\u00e4m\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 30.6, \\\"freshwarea\\\": 2.52, \\\"gml_id\\\": 1601100235, \\\"landarea\\\": 519.8, \\\"namefin\\\": \\\"Myn\\\\u00e4m\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Myn\\\\u00e4m\\\\u00e4ki\\\", \\\"natcode\\\": \\\"503\\\", \\\"seawarea\\\": 13.77, \\\"totalarea\\\": 536.09}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[237353.515, 6758229.25], [240181.567, 6750860.31], [241448.51, 6749770.306], [241378.984, 6749380.186], [241430.103, 6748976.892], [241605.691, 6748979.851], [241979.368, 6749312.976], [250110.717, 6742255.941], [247977.626, 6743542.751], [232273.868, 6737930.348], [228234.449, 6734016.495], [227283.908, 6733606.723], [226866.94, 6733274.029], [226260.677, 6733167.953], [226233.872, 6733580.708], [226050.54, 6733718.055], [225788.011, 6733485.343], [225832.68, 6733078.948], [225408.917, 6732872.713], [225525.804, 6732260.921], [225537.864, 6731983.545], [225325.999, 6731505.884], [224989.034, 6731132.692], [224623.126, 6731555.67], [224225.733, 6731180.778], [223878.064, 6730815.329], [222735.96, 6730009.524], [222422.247, 6729859.558], [222239.72, 6729485.544], [222406.589, 6729193.856], [222128.468, 6729102.305], [221887.687, 6728162.348], [221142.584, 6728143.92], [220457.886, 6727889.002], [220172.966, 6727873.096], [219839.239, 6728367.315], [219663.096, 6727909.513], [219774.628, 6727270.398], [219486.322, 6726942.395], [219232.917, 6727086.224], [219031.072, 6727662.931], [218330.687, 6727542.367], [216812.833, 6728284.115], [213838.526, 6725252.75], [213661.102, 6725071.921], [213829.192, 6725561.012], [214247.914, 6726375.842], [215307.883, 6728448.182], [214670.494, 6730954.385], [214102.614, 6731574.56], [214052.214, 6732507.26], [214397.682, 6732266.342], [215008.996, 6732401.98], [215236.813, 6732893.191], [215029.506, 6733170.96], [215391.116, 6733377.895], [215472.418, 6733801.782], [215809.634, 6733823.628], [216008.341, 6734373.009], [215775.222, 6734872.012], [215742.297, 6735258.537], [216332.378, 6735969.405], [216410.642, 6736154.744], [216351.445, 6737105.625], [216765.475, 6736758.745], [216853.485, 6736847.54], [216496.165, 6737664.367], [216814.916, 6737991.75], [216859.702, 6738332.962], [215894.062, 6741003.229], [216402.162, 6744543.511], [216583.581, 6744890.601], [216986.432, 6745157.51], [218583.733, 6746517.55], [220079.665, 6749217.69], [221256.67, 6749980.281], [221705.817, 6749337.675], [221808.962, 6749399.166], [221542.303, 6750160.126], [224330.069, 6751881.107], [225517.022, 6753464.127], [227866.024, 6755671.553], [230380.491, 6758842.746], [232568.306, 6757830.857], [231976.774, 6759876.199], [235893.98, 6761936.978], [237353.515, 6758229.25]]]}}, {\\\"id\\\": \\\"25\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kauniainen\\\", \\\"elakelaisten_osuus\\\": 23.3, \\\"freshwarea\\\": 0.11, \\\"gml_id\\\": 1601100395, \\\"landarea\\\": 5.89, \\\"namefin\\\": \\\"Kauniainen\\\", \\\"nameswe\\\": \\\"Grankulla\\\", \\\"natcode\\\": \\\"235\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 6.0}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[373643.389, 6678350.981], [374498.137, 6678531.289], [374739.341, 6677929.854], [375218.776, 6678162.518], [375394.434, 6677836.238], [374928.974, 6677524.158], [374701.187, 6676622.637], [374065.216, 6676540.905], [373742.583, 6676148.814], [373400.053, 6676334.469], [373616.495, 6676726.034], [373303.101, 6676983.835], [372923.119, 6676562.166], [371987.124, 6676674.555], [371177.525, 6677182.199], [371315.675, 6677663.925], [372245.692, 6678153.252], [372947.689, 6678678.058], [373427.01, 6678717.314], [373643.389, 6678350.981]]]}}, {\\\"id\\\": \\\"26\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Karvia\\\", \\\"elakelaisten_osuus\\\": 38.2, \\\"freshwarea\\\": 17.72, \\\"gml_id\\\": 1601100385, \\\"landarea\\\": 502.18, \\\"namefin\\\": \\\"Karvia\\\", \\\"nameswe\\\": \\\"Karvia\\\", \\\"natcode\\\": \\\"230\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 519.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[273716.601, 6915336.617], [279278.626, 6911886.275], [283701.696, 6911326.951], [283403.351, 6910509.331], [283762.358, 6909688.478], [283518.208, 6909603.087], [283567.028, 6909286.087], [283105.171, 6907642.375], [283923.159, 6907759.119], [284029.158, 6907503.804], [283858.852, 6906225.5], [283972.17, 6905004.74], [284204.897, 6904466.86], [283929.311, 6904362.077], [284420.523, 6903162.065], [284026.338, 6903029.016], [283629.204, 6901946.889], [284173.085, 6901215.432], [284575.913, 6900287.774], [283056.388, 6899309.256], [282948.014, 6899373.35], [282888.481, 6899218.773], [282491.403, 6899164.528], [282330.985, 6899664.929], [279725.49, 6898572.869], [279291.257, 6897176.927], [279532.37, 6888121.838], [275055.77, 6887314.384], [274445.337, 6887671.762], [273668.704, 6886339.63], [273251.424, 6886577.759], [273731.978, 6887419.275], [270056.732, 6886111.32], [268316.86, 6884072.023], [267868.558, 6883316.302], [266498.242, 6882295.559], [265534.528, 6882446.651], [265604.691, 6882061.381], [264818.96, 6882333.148], [265093.673, 6883618.284], [261260.917, 6883400.983], [261164.991, 6883400.22], [261083.355, 6883857.928], [260863.338, 6885128.863], [260511.617, 6885068.787], [260163.143, 6885006.008], [258549.357, 6884740.859], [258270.536, 6885959.272], [260695.613, 6886193.617], [260624.806, 6885932.712], [262063.695, 6886068.222], [261789.327, 6886516.076], [259078.599, 6887321.389], [259219.741, 6887801.018], [261384.989, 6887174.083], [260680.17, 6888321.307], [260468.263, 6892222.22], [260675.499, 6892977.026], [261314.752, 6892901.289], [262440.877, 6894735.128], [262229.369, 6895069.253], [261644.721, 6894869.422], [261456.923, 6894594.099], [261200.188, 6894651.629], [260977.204, 6895195.371], [261004.241, 6895727.392], [261066.342, 6896769.351], [260466.555, 6897648.97], [260274.745, 6896582.426], [260707.496, 6894021.414], [260465.972, 6893510.509], [259633.774, 6898202.566], [259316.036, 6898123.585], [259071.23, 6898318.3], [258966.185, 6898659.253], [263397.842, 6904604.612], [266365.824, 6906075.511], [267352.98, 6905639.789], [267649.982, 6906300.152], [267361.558, 6906568.563], [267970.149, 6906871.158], [271593.882, 6916626.569], [273716.601, 6915336.617]]]}}, {\\\"id\\\": \\\"27\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"K\\\\u00e4rk\\\\u00f6l\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 31.4, \\\"freshwarea\\\": 2.8, \\\"gml_id\\\": 1601100340, \\\"landarea\\\": 256.51, \\\"namefin\\\": \\\"K\\\\u00e4rk\\\\u00f6l\\\\u00e4\\\", \\\"nameswe\\\": \\\"K\\\\u00e4rk\\\\u00f6l\\\\u00e4\\\", \\\"natcode\\\": \\\"316\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 259.31}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[407315.494, 6761033.957], [408107.605, 6758837.889], [408592.381, 6757777.079], [408437.982, 6757432.009], [408830.458, 6756435.15], [408363.888, 6755384.121], [408668.008, 6754598.233], [409312.154, 6754073.095], [408790.841, 6752914.767], [409042.77, 6752005.803], [409442.778, 6751426.658], [411517.833, 6750514.234], [412331.475, 6748658.903], [413193.162, 6747622.577], [412780.92, 6746821.153], [414556.407, 6745100.191], [415651.984, 6742677.817], [415311.005, 6741424.122], [414724.928, 6741021.646], [414607.88, 6740484.35], [411827.672, 6736406.795], [408411.192, 6737335.581], [407242.505, 6736361.608], [406583.601, 6739083.464], [403206.296, 6742272.2], [402662.436, 6746389.445], [401949.902, 6746283.263], [401997.66, 6745908.099], [401508.06, 6745710.041], [401265.756, 6744671.507], [401521.187, 6744135.529], [400590.046, 6744077.191], [397796.926, 6743800.499], [397258.069, 6744059.536], [396877.678, 6744551.379], [396257.43, 6744498.892], [395563.445, 6746410.355], [395900.385, 6748189.16], [396199.855, 6748822.072], [396700.777, 6749265.014], [397251.575, 6749240.891], [397829.515, 6749094.95], [398175.228, 6750003.38], [398212.152, 6751531.909], [398758.104, 6753653.565], [400802.833, 6755954.164], [401836.526, 6758676.956], [403192.993, 6760161.556], [403858.465, 6760772.82], [405116.726, 6760911.913], [405921.92, 6761994.718], [407315.494, 6761033.957]]]}}, {\\\"id\\\": \\\"28\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kauhava\\\", \\\"elakelaisten_osuus\\\": 32.8, \\\"freshwarea\\\": 14.59, \\\"gml_id\\\": 1601100392, \\\"landarea\\\": 1313.79, \\\"namefin\\\": \\\"Kauhava\\\", \\\"nameswe\\\": \\\"Kauhava\\\", \\\"natcode\\\": \\\"233\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1328.38}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[321696.369, 7015476.648], [322079.757, 7014768.243], [322466.176, 7012850.812], [322157.021, 7012609.221], [321710.938, 7014683.061], [321380.113, 7014964.156], [321119.741, 7015440.983], [321244.573, 7015908.62], [321696.369, 7015476.648]]], [[[313319.127, 7031902.534], [313337.128, 7031692.674], [313872.712, 7031735.141], [314029.969, 7030951.741], [313294.001, 7031108.65], [312368.12, 7030521.26], [312398.865, 7031964.581], [312217.498, 7032330.622], [312044.813, 7032679.14], [312541.25, 7033022.73], [313319.127, 7031902.534]]], [[[311673.285, 7033441.071], [311704.816, 7033038.309], [310172.688, 7033619.634], [310533.972, 7032258.676], [310802.709, 7033109.951], [312047.102, 7031906.974], [311692.01, 7031558.066], [311550.216, 7031840.984], [311196.969, 7031670.44], [311258.666, 7031525.411], [311141.073, 7029353.937], [314887.339, 7025161.865], [315473.945, 7025486.039], [317466.505, 7026486.197], [321266.343, 7023033.368], [321659.111, 7021930.732], [320731.937, 7021329.375], [320898.551, 7020287.146], [319666.692, 7020111.371], [319926.9, 7019120.913], [318909.529, 7019110.19], [318730.382, 7018692.378], [318310.529, 7018200.536], [318520.738, 7017198.035], [318132.296, 7017216.067], [317833.743, 7014973.548], [318522.861, 7015350.087], [318784.08, 7013433.938], [317878.381, 7013645.802], [317623.797, 7014729.836], [313550.84, 7015078.575], [312991.227, 7013892.555], [313382.524, 7014037.225], [314856.432, 7013700.739], [318668.162, 7010423.032], [320840.72, 7005904.414], [321776.334, 6998205.464], [320884.326, 6997585.179], [318794.809, 6996132.785], [317609.81, 6996671.826], [317509.407, 6996379.458], [318611.672, 6996005.494], [315535.978, 6993865.284], [313414.244, 6994715.809], [311346.656, 6994471.209], [311126.421, 6994576.486], [310618.29, 6993559.44], [309925.672, 6994249.243], [309861.427, 6994639.555], [309963.283, 6995119.524], [308100.836, 6995990.242], [300323.748, 6995032.444], [293658.286, 6999179.516], [293691.011, 6999683.181], [293256.779, 6999925.654], [293251.134, 7000716.396], [292839.955, 7000923.559], [292795.352, 7000398.811], [288245.149, 6999374.962], [286845.149, 6996808.744], [285642.222, 6998326.3], [285915.857, 6998613.575], [285590.897, 6998750.341], [285483.068, 6999174.552], [285144.34, 6998958.797], [284920.802, 6999240.168], [284603.275, 6998992.79], [284260.866, 6999205.027], [283451.968, 6999530.273], [283131.267, 6999553.57], [282344.223, 7000025.176], [282163.956, 7001187.502], [282264.002, 7001469.298], [282151.418, 7001746.166], [281740.866, 7002280.853], [281286.726, 7002639.756], [279414.726, 7002867.063], [278499.438, 7002846.968], [278425.717, 7003550.03], [279372.208, 7003680.078], [279630.013, 7004441.65], [280511.162, 7004769.324], [280400.653, 7006862.139], [279724.695, 7006835.774], [279706.992, 7007407.249], [281013.785, 7007542.321], [281203.037, 7007823.64], [281171.761, 7008103.341], [280658.335, 7008009.105], [280654.179, 7008023.016], [280651.174, 7008476.91], [281020.303, 7008557.153], [280773.501, 7009334.944], [280308.955, 7009215.732], [280254.973, 7009447.669], [280966.276, 7010093.664], [280845.576, 7010265.913], [280430.58, 7010142.291], [280296.003, 7010760.389], [279578.232, 7010508.537], [279493.163, 7010865.855], [280252.036, 7011466.506], [279988.438, 7011803.789], [280185.419, 7011997.896], [280402.047, 7011811.624], [280757.763, 7011973.929], [280852.199, 7012317.487], [280436.672, 7012183.032], [280245.068, 7012550.456], [279846.023, 7012374.095], [279478.794, 7012877.157], [279703.668, 7012994.708], [279538.342, 7013867.625], [279180.35, 7013799.667], [278858.545, 7014120.863], [277228.533, 7013258.264], [278459.142, 7015629.28], [280292.406, 7016464.128], [279461.972, 7018545.49], [278962.869, 7018545.719], [278802.647, 7018753.471], [279319.718, 7018894.667], [279125.485, 7019374.398], [279605.213, 7019630.154], [278494.928, 7020099.503], [278644.377, 7020453.851], [277254.575, 7021067.984], [277047.991, 7021758.195], [277252.012, 7022908.176], [279218.741, 7024817.955], [279732.947, 7024235.19], [280240.272, 7024528.828], [283166.464, 7026079.565], [281940.629, 7028295.596], [283848.391, 7029053.269], [285663.885, 7030376.428], [285970.932, 7029788.155], [287627.128, 7030654.004], [287502.62, 7031033.184], [286850.811, 7030934.264], [286852.677, 7031153.64], [287175.958, 7031129.984], [286859.233, 7032165.546], [285560.654, 7031501.084], [285837.999, 7032278.843], [286772.013, 7032681.629], [287297.676, 7032625.38], [287512.528, 7032480.282], [287296.212, 7032059.871], [287998.375, 7032203.577], [287791.511, 7032624.169], [288312.194, 7032435.278], [288695.212, 7032146.746], [288887.35, 7031434.47], [289616.56, 7031520.853], [289279.213, 7031893.882], [290337.988, 7031587.486], [290807.21, 7031305.785], [291426.61, 7031245.23], [291368.449, 7030923.731], [293609.5, 7030813.883], [293575.528, 7031180.803], [293000.242, 7031366.54], [292920.231, 7031704.714], [293587.669, 7031483.356], [293297.33, 7032604.695], [293423.04, 7032753.487], [294150.251, 7032440.588], [294891.074, 7032016.892], [294851.981, 7031840.248], [294070.348, 7032109.139], [293907.49, 7031609.773], [295239.211, 7031252.041], [298815.058, 7028711.443], [298653.251, 7033398.214], [299975.652, 7033122.158], [299869.889, 7033967.646], [301303.997, 7034144.764], [301566.966, 7032047.259], [301567.475, 7032043.192], [302026.007, 7032045.514], [303091.9, 7032263.78], [303046.951, 7032531.013], [303905.415, 7032729.782], [304332.257, 7031730.027], [304724.202, 7031913.46], [305489.581, 7030847.461], [305230.708, 7030660.617], [305543.67, 7030183.999], [310586.421, 7035650.362], [311673.285, 7033441.071]]]]}}, {\\\"id\\\": \\\"29\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sievi\\\", \\\"elakelaisten_osuus\\\": 23.8, \\\"freshwarea\\\": 13.42, \\\"gml_id\\\": 1601100519, \\\"landarea\\\": 786.98, \\\"namefin\\\": \\\"Sievi\\\", \\\"nameswe\\\": \\\"Sievi\\\", \\\"natcode\\\": \\\"746\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 800.4}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[369843.234, 7102555.754], [370443.5, 7102605.316], [370391.731, 7103008.08], [370801.907, 7103059.226], [371521.023, 7100705.638], [371617.899, 7101088.605], [372074.148, 7100884.425], [371713.343, 7100167.957], [371989.764, 7099580.978], [372078.336, 7098871.456], [377271.779, 7095868.673], [382933.31, 7092789.5], [383104.343, 7093060.032], [384323.357, 7093223.3], [384771.36, 7092959.291], [384932.82, 7092432.464], [385950.696, 7092589.928], [385974.682, 7091905.449], [385652.962, 7091853.317], [385327.078, 7091473.462], [386290.914, 7090974.035], [387148.592, 7090495.362], [388882.532, 7090384.636], [390589.06, 7087859.448], [391145.53, 7087145.829], [393070.283, 7085650.653], [393152.903, 7084984.342], [392992.647, 7084475.403], [393244.735, 7084280.997], [392573.535, 7084164.03], [392648.207, 7083888.379], [392978.179, 7083860.351], [393060.503, 7083536.667], [393673.62, 7083719.718], [393830.344, 7084191.857], [394553.484, 7084072.689], [395099.752, 7083618.715], [395307.709, 7083895.069], [397529.352, 7082069.143], [398346.315, 7080353.96], [397902.835, 7079716.611], [398488.0, 7079192.189], [398801.026, 7078602.058], [399100.843, 7078770.502], [399903.684, 7077060.139], [399661.117, 7076499.012], [399885.271, 7076388.236], [399151.964, 7071604.938], [397897.74, 7063511.032], [397628.898, 7063521.442], [397784.538, 7064248.101], [397123.47, 7065056.144], [397467.158, 7065285.512], [397023.242, 7065544.031], [396468.89, 7065168.543], [396302.796, 7065765.531], [395939.935, 7065333.838], [395667.932, 7065647.804], [395203.356, 7065827.809], [395107.458, 7065699.103], [395785.178, 7065035.54], [396318.042, 7064771.779], [396828.944, 7064995.382], [396925.723, 7064253.882], [397421.014, 7064018.072], [397124.355, 7063757.215], [396743.194, 7063587.272], [397107.482, 7063224.888], [397676.71, 7063185.945], [397258.568, 7061945.667], [395724.234, 7062689.163], [389161.497, 7066283.394], [388902.338, 7066713.881], [388144.807, 7066976.413], [388181.098, 7066578.281], [385366.498, 7063566.582], [384967.969, 7063800.25], [384888.834, 7064229.273], [384479.572, 7064840.283], [384012.991, 7064847.849], [383826.376, 7065142.315], [383114.849, 7066095.15], [382835.103, 7066292.478], [382700.634, 7066947.351], [382461.436, 7066771.926], [382644.532, 7066065.687], [383416.175, 7065152.83], [384044.296, 7064559.518], [384512.039, 7064353.708], [384495.951, 7063814.001], [385214.342, 7063404.681], [384488.109, 7062662.534], [383899.512, 7063387.13], [382598.281, 7064210.307], [382528.059, 7064157.977], [383242.41, 7063430.535], [384316.07, 7062468.734], [382516.652, 7060212.749], [382441.533, 7060047.087], [382095.705, 7060308.614], [381923.367, 7060577.08], [379448.13, 7064635.839], [377495.558, 7069660.278], [373383.552, 7081747.121], [366522.022, 7084521.521], [364807.017, 7086218.885], [364064.173, 7090031.491], [363657.325, 7090492.21], [363923.635, 7090761.419], [363590.022, 7092515.935], [361789.55, 7093196.538], [359428.975, 7098263.923], [364196.794, 7098958.172], [363957.886, 7099346.721], [364022.399, 7099511.812], [364189.6, 7099648.203], [364308.693, 7099620.42], [364607.651, 7099251.249], [367971.401, 7102180.091], [368395.877, 7102260.559], [368795.291, 7101681.398], [369735.507, 7103092.438], [369843.234, 7102555.754]], [[389116.555, 7071632.1], [389374.26, 7070643.179], [389688.93, 7070238.472], [389610.528, 7069940.564], [389372.326, 7069854.524], [389091.691, 7069936.651], [388812.242, 7071310.981], [388079.034, 7071246.667], [387655.765, 7072185.048], [387873.911, 7072207.187], [388212.335, 7071840.756], [388838.687, 7071634.967], [388643.78, 7072242.091], [388625.724, 7072707.16], [388749.673, 7072774.295], [389116.555, 7071632.1]]]}}, {\\\"id\\\": \\\"30\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Muhos\\\", \\\"elakelaisten_osuus\\\": 22.6, \\\"freshwarea\\\": 13.52, \\\"gml_id\\\": 1601100199, \\\"landarea\\\": 783.75, \\\"namefin\\\": \\\"Muhos\\\", \\\"nameswe\\\": \\\"Muhos\\\", \\\"natcode\\\": \\\"494\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 797.27}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[451503.348, 7206341.315], [451427.707, 7205440.645], [451810.65, 7205605.707], [451995.151, 7205404.68], [451684.555, 7205071.094], [452122.336, 7204716.322], [454641.581, 7206075.817], [454714.217, 7205860.802], [455212.025, 7206321.527], [455529.293, 7205782.716], [455978.988, 7205906.259], [456711.415, 7205505.653], [457297.009, 7205506.559], [456537.913, 7202678.222], [456943.54, 7202633.036], [457347.665, 7202938.655], [457900.404, 7203272.079], [458368.205, 7202915.259], [458772.98, 7202668.908], [459394.531, 7202481.919], [460129.584, 7202765.132], [461042.318, 7202643.953], [461248.766, 7202429.007], [461758.819, 7203136.159], [462538.155, 7202085.092], [461715.217, 7201434.652], [461881.169, 7200984.877], [461925.943, 7200131.506], [462729.928, 7199409.936], [463371.362, 7199430.183], [464965.35, 7198854.76], [465608.498, 7198169.996], [463264.563, 7195279.722], [464482.338, 7194784.938], [465324.897, 7194508.701], [466030.856, 7194487.016], [466514.166, 7195027.249], [467640.636, 7194076.758], [467213.815, 7193549.533], [466489.155, 7194123.819], [466357.378, 7194024.956], [466166.644, 7193795.914], [465801.081, 7193004.18], [468269.004, 7191446.634], [468923.148, 7192193.4], [469737.871, 7191545.615], [470190.148, 7192104.154], [471272.134, 7191252.664], [473045.926, 7189856.211], [473687.66, 7189156.271], [473659.109, 7188508.431], [473656.558, 7187499.15], [470216.607, 7185639.942], [467314.872, 7187412.374], [464841.681, 7188947.466], [463520.031, 7194441.414], [462947.131, 7194764.728], [463264.563, 7195279.722], [461365.022, 7197437.859], [460206.842, 7196405.444], [460003.547, 7195533.694], [459557.909, 7195637.101], [459312.283, 7195356.884], [460237.259, 7195191.222], [460563.103, 7196159.869], [461022.072, 7196536.98], [461373.295, 7196641.359], [461659.305, 7195917.362], [462224.392, 7195745.166], [462810.965, 7194848.949], [462829.27, 7193724.661], [463060.869, 7190446.759], [463503.205, 7188751.08], [463237.637, 7188584.687], [462534.294, 7190590.399], [461686.824, 7191417.27], [461479.948, 7191223.943], [461823.564, 7190800.14], [461034.372, 7189144.095], [461226.595, 7188410.596], [463954.676, 7185057.206], [465995.842, 7181389.843], [465686.337, 7181178.706], [466277.657, 7180696.208], [464620.357, 7179517.124], [466037.038, 7177332.289], [468112.209, 7178680.869], [468370.747, 7178189.653], [467867.503, 7177675.419], [468202.037, 7176974.399], [468950.294, 7177085.603], [469245.28, 7176525.222], [468872.17, 7176305.068], [469203.0, 7175745.238], [468601.716, 7175371.825], [468865.418, 7175106.651], [468332.96, 7174581.547], [469120.167, 7173284.538], [469709.911, 7173664.702], [470352.418, 7172572.258], [469407.889, 7171863.177], [469858.548, 7170941.258], [469763.065, 7170883.168], [469821.212, 7170707.893], [470306.648, 7170912.177], [470786.788, 7170620.528], [469489.989, 7167397.191], [468293.703, 7169893.212], [467667.242, 7169556.767], [467207.465, 7170215.28], [466964.458, 7170315.65], [466846.059, 7169940.324], [466383.882, 7169599.523], [466650.515, 7169239.177], [466460.305, 7169039.266], [465983.396, 7168871.254], [465733.756, 7168650.02], [465120.806, 7168630.459], [465118.927, 7169251.468], [463047.385, 7169362.018], [462780.742, 7168758.54], [462915.231, 7168679.616], [463092.506, 7168920.878], [463331.609, 7168981.124], [463395.602, 7168786.904], [463627.425, 7168667.688], [463646.389, 7168423.369], [465105.115, 7167918.815], [465999.288, 7166485.63], [466398.709, 7166159.485], [467551.989, 7165595.179], [467647.747, 7165235.653], [467054.933, 7165174.334], [466902.765, 7164851.987], [466772.021, 7164961.864], [466169.802, 7164624.752], [466193.75, 7164480.778], [465761.184, 7164335.216], [465798.452, 7163835.736], [467246.674, 7163505.034], [468114.877, 7162515.844], [468658.698, 7163153.925], [468468.528, 7163255.847], [468384.798, 7163191.643], [467855.664, 7163509.835], [467186.653, 7163955.698], [467418.046, 7164113.353], [468560.945, 7163552.17], [468689.875, 7163854.185], [468888.467, 7163736.56], [469073.119, 7164089.414], [469572.745, 7163869.16], [469551.772, 7163376.701], [470109.763, 7163405.618], [470062.755, 7162988.921], [470858.516, 7162937.522], [470940.414, 7163141.293], [471645.124, 7163361.222], [471879.671, 7165129.04], [473944.152, 7166435.128], [475383.906, 7164128.048], [473110.332, 7162762.344], [473272.345, 7162238.886], [474871.223, 7163205.616], [475055.189, 7163019.841], [475223.66, 7163333.654], [475005.007, 7163568.085], [475534.651, 7163886.813], [476290.362, 7162663.67], [475345.693, 7162261.737], [473543.827, 7161375.485], [473929.984, 7160143.503], [474198.204, 7160091.45], [469333.395, 7154537.054], [468833.655, 7154411.889], [468786.093, 7154663.327], [468472.957, 7154875.14], [468687.354, 7153794.948], [467087.992, 7153512.539], [467542.16, 7152485.193], [465921.867, 7150589.585], [465653.13, 7153899.931], [461705.066, 7160648.768], [461191.867, 7160556.81], [461432.029, 7160084.914], [461205.699, 7160030.506], [459948.927, 7160687.425], [460370.263, 7161159.321], [461084.665, 7160696.266], [461347.983, 7161266.402], [460177.576, 7163264.791], [450146.725, 7171080.342], [452394.372, 7173984.081], [450828.917, 7176675.778], [452067.264, 7177393.754], [447485.415, 7185259.291], [447081.722, 7185157.294], [446877.828, 7184877.676], [444714.513, 7187014.911], [444150.067, 7187150.846], [443334.793, 7186854.713], [443174.505, 7187233.633], [443421.94, 7187634.156], [443546.24, 7187308.11], [444123.769, 7187429.344], [444519.351, 7187367.943], [445386.793, 7187555.681], [445620.562, 7187234.492], [445383.118, 7186907.282], [446637.653, 7185607.771], [447198.763, 7185761.643], [442667.33, 7193524.14], [442144.708, 7193834.808], [442335.54, 7194094.239], [441619.044, 7195182.552], [441416.879, 7194904.382], [441112.556, 7195487.279], [441281.21, 7195919.457], [440834.202, 7196667.966], [441195.26, 7196612.329], [441351.033, 7196378.233], [441414.527, 7195826.948], [441801.28, 7196696.349], [441822.183, 7196944.258], [442969.099, 7197253.45], [443233.471, 7196945.75], [444038.434, 7197449.583], [444188.545, 7197272.937], [444433.001, 7196804.384], [444628.921, 7197009.975], [444894.902, 7196609.982], [445124.977, 7196769.367], [445082.473, 7197035.875], [452514.718, 7203826.126], [451859.703, 7204575.974], [451692.431, 7204372.934], [451400.904, 7204981.831], [450090.16, 7203731.282], [449922.61, 7203902.173], [451298.365, 7206372.952], [451503.348, 7206341.315]]]}}, {\\\"id\\\": \\\"31\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Soini\\\", \\\"elakelaisten_osuus\\\": 35.2, \\\"freshwarea\\\": 22.27, \\\"gml_id\\\": 1601100537, \\\"landarea\\\": 551.95, \\\"namefin\\\": \\\"Soini\\\", \\\"nameswe\\\": \\\"Soini\\\", \\\"natcode\\\": \\\"759\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 574.22}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[357682.314, 6989617.482], [357253.221, 6989560.736], [357053.687, 6988910.385], [359557.119, 6989160.018], [359571.896, 6988496.19], [359796.862, 6988410.936], [359773.526, 6987491.382], [359440.518, 6987288.841], [361103.642, 6986962.139], [363260.793, 6987161.698], [363722.06, 6985907.039], [364930.083, 6986491.736], [365544.861, 6984345.116], [365541.96, 6984316.807], [365064.47, 6979207.831], [367606.853, 6978929.195], [369641.31, 6977920.938], [370238.793, 6976578.848], [370211.515, 6973788.01], [365848.291, 6972910.792], [365587.729, 6974440.92], [364378.617, 6971320.847], [365065.203, 6971485.266], [365748.569, 6971945.262], [367438.411, 6968979.448], [366556.375, 6968421.446], [367911.702, 6967422.015], [368551.308, 6966076.979], [368987.302, 6966145.298], [368883.746, 6965582.868], [371530.387, 6959152.232], [372356.168, 6955798.067], [373036.311, 6953044.961], [372885.83, 6952868.862], [372286.902, 6953381.793], [371713.314, 6952728.003], [372133.887, 6952309.675], [370577.486, 6951977.75], [369653.826, 6953825.444], [368410.318, 6953528.435], [367642.238, 6955313.487], [365643.369, 6955069.913], [365428.641, 6956812.475], [362251.699, 6957997.644], [361895.352, 6958857.803], [361496.586, 6958289.877], [360582.188, 6958944.795], [360416.74, 6959780.367], [361299.033, 6960996.085], [361105.043, 6961695.986], [358605.026, 6961232.517], [357636.362, 6959575.281], [360798.19, 6957289.0], [358224.611, 6953625.812], [356329.977, 6955531.371], [356744.96, 6956131.807], [356787.609, 6957445.651], [357177.61, 6957484.111], [356963.607, 6958464.126], [354330.276, 6957373.177], [354881.771, 6954754.83], [352602.241, 6954957.813], [352199.941, 6957628.171], [350670.224, 6957398.553], [349503.653, 6958611.741], [349451.161, 6958886.724], [348320.016, 6960219.487], [349136.945, 6963885.313], [349445.746, 6964368.88], [349920.736, 6964407.767], [349811.276, 6964741.203], [350006.155, 6965169.686], [350346.715, 6964906.287], [350562.24, 6965076.074], [350556.548, 6965661.156], [350929.932, 6966078.164], [350979.315, 6966989.288], [351184.705, 6967755.287], [351733.58, 6968428.665], [351435.555, 6969068.457], [351756.852, 6969272.238], [352148.04, 6968787.232], [352396.032, 6968940.423], [352228.488, 6969780.842], [353146.369, 6969710.866], [354508.004, 6970011.824], [354149.024, 6971727.655], [352076.711, 6971476.667], [352208.717, 6971788.105], [346951.941, 6973669.696], [347587.579, 6977285.136], [347855.045, 6977136.532], [349403.004, 6985932.989], [350032.603, 6986093.496], [350277.72, 6985726.684], [350769.665, 6985436.95], [350779.113, 6985839.506], [349571.794, 6986826.104], [349574.585, 6986831.945], [349712.132, 6986959.375], [350083.086, 6986744.5], [351486.828, 6985842.647], [352599.116, 6984860.202], [352596.223, 6985774.006], [352735.097, 6986606.128], [353148.988, 6986588.102], [353201.238, 6987021.497], [354491.878, 6986932.962], [354474.733, 6986533.071], [355544.694, 6987206.679], [357028.645, 6987355.834], [356823.062, 6987754.571], [356374.199, 6989501.815], [356521.54, 6989872.16], [357374.742, 6990194.169], [357682.314, 6989617.482]], [[350749.549, 6962519.423], [350536.485, 6961614.012], [350233.376, 6961683.594], [349992.204, 6960528.208], [350258.812, 6960460.931], [350201.856, 6960216.284], [349567.129, 6960347.228], [349203.997, 6960722.272], [349310.587, 6960973.341], [349208.47, 6961217.275], [349142.025, 6961920.27], [349576.326, 6961814.522], [349721.332, 6962463.856], [349266.381, 6962569.566], [349292.83, 6962826.886], [350749.549, 6962519.423]]]}}, {\\\"id\\\": \\\"32\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sein\\\\u00e4joki\\\", \\\"elakelaisten_osuus\\\": 23.3, \\\"freshwarea\\\": 37.46, \\\"gml_id\\\": 1601100515, \\\"landarea\\\": 1431.75, \\\"namefin\\\": \\\"Sein\\\\u00e4joki\\\", \\\"nameswe\\\": \\\"Sein\\\\u00e4joki\\\", \\\"natcode\\\": \\\"743\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1469.21}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[278411.117, 7001413.384], [279317.752, 7001690.275], [279386.128, 7002479.587], [281740.866, 7002280.853], [282151.418, 7001746.166], [282264.002, 7001469.298], [282163.956, 7001187.502], [282344.223, 7000025.176], [283131.267, 6999553.57], [283451.968, 6999530.273], [284260.866, 6999205.027], [284603.275, 6998992.79], [284920.802, 6999240.168], [285144.34, 6998958.797], [285483.068, 6999174.552], [285590.897, 6998750.341], [285915.857, 6998613.575], [285642.222, 6998326.3], [286845.149, 6996808.744], [287490.565, 6992762.894], [287239.678, 6991275.32], [288536.724, 6985739.94], [288449.96, 6984117.552], [288784.501, 6983286.169], [288388.578, 6983003.988], [288216.872, 6979776.952], [287336.625, 6978128.122], [293793.282, 6978071.798], [294087.376, 6978011.32], [294596.996, 6978382.513], [294898.888, 6978228.867], [302288.271, 6975938.655], [297610.294, 6970735.983], [305867.191, 6970888.752], [306266.263, 6970339.552], [306623.758, 6968672.938], [307768.97, 6966994.044], [310144.482, 6965973.224], [309502.375, 6961659.038], [305928.066, 6960568.844], [303353.32, 6953056.359], [304108.694, 6952390.184], [304801.391, 6952433.625], [305067.438, 6951724.96], [304015.335, 6951251.343], [303593.23, 6951285.105], [303550.398, 6950988.663], [304057.745, 6950611.752], [303919.651, 6949630.066], [304388.415, 6949688.94], [304455.041, 6949171.152], [305662.96, 6947449.885], [306223.29, 6947615.627], [306423.074, 6947357.431], [306746.125, 6947348.439], [306748.228, 6947769.5], [308275.332, 6948212.811], [308838.593, 6946354.772], [308501.246, 6945565.677], [308852.498, 6945637.446], [308600.077, 6944322.406], [309087.807, 6944038.128], [309113.928, 6944526.454], [309706.159, 6944663.686], [310341.131, 6943643.056], [309283.497, 6943243.457], [308398.22, 6942546.218], [307771.855, 6941459.912], [307820.816, 6940814.321], [307274.03, 6940542.78], [307158.112, 6939967.57], [306963.875, 6939661.121], [307683.341, 6938559.904], [307481.623, 6938239.216], [307781.686, 6937641.316], [308438.805, 6936885.361], [310091.824, 6934992.412], [309338.433, 6934611.508], [309971.004, 6932918.64], [310858.264, 6931240.306], [311809.243, 6929713.694], [312534.219, 6927715.967], [310933.466, 6926894.948], [307589.854, 6925168.085], [306092.343, 6921653.445], [306336.852, 6921033.314], [306949.593, 6921221.147], [306670.641, 6920199.306], [306810.359, 6919850.312], [305991.684, 6919496.622], [305848.285, 6919848.181], [305248.121, 6919752.177], [305006.473, 6919039.782], [304771.39, 6919350.96], [304443.81, 6919329.209], [304582.831, 6919024.121], [304557.424, 6918599.408], [303722.172, 6917387.209], [304153.954, 6917135.548], [300261.951, 6915694.297], [298534.947, 6923365.721], [300092.937, 6923176.336], [299554.672, 6925835.031], [299036.378, 6926371.59], [299007.047, 6925537.6], [298676.216, 6926249.658], [298748.939, 6926951.089], [298448.671, 6927564.723], [298464.079, 6928646.245], [298086.393, 6928582.599], [297991.182, 6928099.864], [297553.418, 6928154.541], [296942.161, 6932051.504], [296042.136, 6932626.226], [292461.51, 6942057.848], [290966.962, 6941974.086], [290423.475, 6946701.972], [289974.872, 6947656.87], [288066.916, 6946905.956], [287927.946, 6947471.685], [287666.496, 6951654.805], [288436.657, 6951723.95], [286617.683, 6953752.373], [286844.821, 6953952.313], [287379.632, 6953350.057], [287804.874, 6953746.028], [288326.554, 6953841.244], [287574.773, 6954694.179], [287789.558, 6955340.255], [288001.141, 6955128.675], [288198.946, 6955347.537], [287751.944, 6955860.196], [287678.771, 6956695.766], [289023.13, 6956906.454], [286903.348, 6961102.961], [282392.879, 6966042.001], [279978.322, 6967912.053], [280866.387, 6968750.152], [281466.588, 6969309.395], [281544.598, 6969975.164], [281038.592, 6970324.089], [281389.341, 6970983.631], [281237.632, 6971295.268], [281240.476, 6971840.5], [281584.334, 6972210.734], [281828.75, 6972697.449], [282306.825, 6973467.72], [282802.191, 6973884.279], [283396.441, 6974255.747], [283601.814, 6974771.328], [283947.038, 6974994.482], [284086.938, 6975434.866], [284586.114, 6975794.181], [284530.277, 6975905.285], [284315.584, 6975923.023], [283876.019, 6975704.121], [283527.959, 6976327.287], [283488.399, 6976733.321], [283664.485, 6977700.784], [283232.335, 6978432.002], [282122.97, 6978693.309], [282008.251, 6978737.198], [281068.5, 6979090.525], [276025.641, 6975899.362], [266153.558, 6972084.328], [263569.078, 6972182.969], [260555.946, 6971497.385], [263374.212, 6976417.658], [264056.731, 6976841.09], [264323.86, 6977146.057], [264736.546, 6977436.002], [265253.958, 6977993.13], [265602.342, 6978514.811], [265908.685, 6978487.884], [266522.011, 6978806.995], [266362.723, 6979607.137], [266353.342, 6980364.795], [266234.051, 6981201.381], [265799.976, 6982335.728], [266042.089, 6983108.41], [266200.126, 6983728.823], [266585.751, 6984262.652], [266785.711, 6984229.161], [266931.601, 6984931.871], [266996.948, 6985298.653], [267252.967, 6985970.552], [267666.027, 6986597.449], [267926.138, 6987194.838], [268040.859, 6987629.728], [267643.189, 6988541.706], [268699.341, 6989159.458], [268493.124, 6989468.457], [268833.182, 6989764.517], [270120.677, 6991289.591], [270577.301, 6992073.799], [270583.441, 6992948.686], [270680.475, 6994333.108], [272963.449, 6997751.378], [273214.541, 6997504.453], [273662.388, 6998232.861], [273332.03, 6998373.254], [273697.651, 6998990.335], [274241.492, 6998168.155], [274450.772, 6998691.439], [274827.595, 6999350.173], [275171.006, 6998657.986], [275558.596, 6998991.457], [274914.073, 7000105.868], [274511.976, 6999991.396], [274362.056, 7000649.615], [277637.692, 7002609.333], [278411.117, 7001413.384]]]}}, {\\\"id\\\": \\\"33\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"P\\\\u00e4lk\\\\u00e4ne\\\", \\\"elakelaisten_osuus\\\": 33.7, \\\"freshwarea\\\": 177.42, \\\"gml_id\\\": 1601100596, \\\"landarea\\\": 560.72, \\\"namefin\\\": \\\"P\\\\u00e4lk\\\\u00e4ne\\\", \\\"nameswe\\\": \\\"P\\\\u00e4lk\\\\u00e4ne\\\", \\\"natcode\\\": \\\"635\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 738.14}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[384208.593, 6818312.233], [385359.184, 6818010.547], [386004.133, 6817676.616], [385742.49, 6816954.87], [386067.469, 6815673.161], [385870.677, 6814943.999], [386268.65, 6814679.956], [386754.669, 6814022.98], [386765.327, 6813331.706], [388582.926, 6810889.311], [387510.303, 6808183.703], [388080.117, 6807878.177], [387750.625, 6806310.796], [387130.995, 6804231.441], [388021.012, 6801184.476], [388341.3, 6800758.633], [386365.641, 6797799.791], [386995.347, 6796629.09], [384455.903, 6795604.587], [384242.724, 6795249.091], [383440.364, 6795461.565], [382468.829, 6795140.558], [380451.314, 6794645.894], [379962.18, 6796077.706], [378562.461, 6800257.078], [377857.217, 6798183.037], [377707.129, 6796528.417], [377624.284, 6796051.948], [377133.035, 6795284.15], [376825.565, 6795291.737], [376058.471, 6796167.403], [375132.766, 6796062.161], [374904.465, 6795841.098], [371128.194, 6797603.855], [370837.117, 6797290.822], [370539.554, 6798309.679], [370046.948, 6799056.205], [367129.662, 6797700.019], [365648.235, 6796764.528], [364609.01, 6795991.131], [363620.37, 6795241.797], [363150.582, 6795503.691], [362193.528, 6794836.738], [361934.73, 6794151.115], [361210.46, 6794154.761], [360691.173, 6793790.577], [360463.855, 6793064.363], [359778.217, 6793401.43], [358381.447, 6792690.502], [355196.889, 6791753.407], [354164.609, 6792565.666], [352014.268, 6794029.846], [350748.82, 6795128.24], [349818.576, 6795183.317], [348077.724, 6795534.013], [344813.241, 6798477.744], [344003.072, 6798693.03], [343864.58, 6799108.9], [343887.731, 6799580.416], [344070.176, 6800357.842], [344847.475, 6801602.593], [343703.273, 6803095.608], [343822.592, 6803860.785], [345105.468, 6805006.119], [344654.413, 6806062.14], [345779.778, 6806415.291], [347503.524, 6807242.147], [350298.853, 6807693.022], [351819.686, 6808517.02], [351857.86, 6808904.399], [352335.789, 6808991.735], [352485.252, 6809478.995], [353179.594, 6809712.334], [353630.096, 6809544.48], [354350.296, 6810628.191], [354993.075, 6809882.105], [355552.201, 6809907.119], [355899.84, 6810180.345], [355135.749, 6810364.444], [355175.389, 6812245.673], [355052.202, 6814610.488], [355945.051, 6814767.981], [357305.008, 6814050.903], [357815.618, 6813310.362], [358928.208, 6813249.359], [360463.435, 6812902.672], [363378.352, 6811924.454], [363858.73, 6811612.349], [372946.076, 6813155.849], [373165.868, 6812859.172], [373735.627, 6814263.852], [376840.814, 6814903.722], [378918.742, 6814558.267], [378824.872, 6815874.059], [378764.536, 6816892.835], [378575.707, 6817836.404], [379318.645, 6817426.572], [380104.324, 6817315.682], [380113.172, 6816525.56], [382158.68, 6816207.393], [381899.242, 6819489.188], [384208.593, 6818312.233]]]}}, {\\\"id\\\": \\\"34\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Juupajoki\\\", \\\"elakelaisten_osuus\\\": 35.8, \\\"freshwarea\\\": 16.45, \\\"gml_id\\\": 1601100299, \\\"landarea\\\": 258.5, \\\"namefin\\\": \\\"Juupajoki\\\", \\\"nameswe\\\": \\\"Juupajoki\\\", \\\"natcode\\\": \\\"177\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 274.95}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[369007.005, 6868138.442], [369984.957, 6866558.109], [371431.611, 6866831.23], [372848.11, 6865017.808], [374551.642, 6863913.868], [377255.891, 6861121.622], [375412.064, 6859390.747], [374671.618, 6857878.047], [374932.57, 6856056.273], [372918.682, 6852068.225], [371824.5, 6848977.368], [370787.517, 6844919.426], [370271.418, 6845102.575], [369488.116, 6846599.525], [369293.616, 6846921.014], [368941.866, 6847160.741], [367475.054, 6847526.29], [367053.209, 6847244.338], [366223.012, 6847337.782], [365981.078, 6847628.843], [364574.357, 6847483.503], [363548.488, 6847647.663], [362564.896, 6848511.669], [360586.748, 6852061.46], [360123.818, 6851848.623], [358294.6, 6855917.973], [356604.825, 6855143.234], [353977.939, 6857778.959], [356912.783, 6860331.778], [358535.554, 6860844.886], [361287.214, 6862377.66], [363795.749, 6861227.621], [364076.592, 6861744.2], [363137.237, 6862453.019], [364529.906, 6865031.296], [365647.195, 6864617.84], [366148.922, 6864709.746], [365474.477, 6866870.594], [365332.71, 6867324.808], [368823.439, 6868732.879], [369007.005, 6868138.442]]]}}, {\\\"id\\\": \\\"35\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Inkoo\\\", \\\"elakelaisten_osuus\\\": 28.2, \\\"freshwarea\\\": 8.11, \\\"gml_id\\\": 1601100245, \\\"landarea\\\": 349.89, \\\"namefin\\\": \\\"Inkoo\\\", \\\"nameswe\\\": \\\"Ing\\\\u00e5\\\", \\\"natcode\\\": \\\"149\\\", \\\"seawarea\\\": 596.02, \\\"totalarea\\\": 954.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[338020.923, 6671051.837], [338920.767, 6670846.283], [339890.622, 6669856.813], [340671.985, 6669430.235], [340836.33, 6667267.659], [341668.934, 6667854.539], [343031.474, 6669309.0], [343317.057, 6669366.688], [344553.647, 6668990.316], [345520.67, 6667738.645], [345984.802, 6666953.49], [346190.188, 6666410.305], [345827.574, 6665798.332], [346860.197, 6664434.118], [347393.918, 6663520.466], [347506.13, 6662354.912], [347781.151, 6661591.74], [348541.821, 6660998.491], [349371.915, 6658952.571], [350437.45, 6656951.381], [348907.918, 6655503.817], [347664.16, 6649540.705], [347448.843, 6631327.115], [343175.698, 6630628.083], [330687.224, 6627606.382], [323279.758, 6646208.529], [323317.232, 6646374.655], [322544.102, 6646525.422], [322357.557, 6646561.8], [321738.624, 6646431.57], [321165.389, 6646881.943], [321238.049, 6647536.575], [322281.457, 6647854.84], [322195.304, 6648095.567], [322000.012, 6648109.272], [321592.052, 6648137.901], [321478.601, 6648580.638], [322379.242, 6649678.044], [321713.123, 6651408.696], [323238.685, 6652366.138], [323076.333, 6652732.268], [323609.869, 6653512.147], [321072.44, 6655921.313], [320035.929, 6655835.709], [319231.14, 6656527.212], [319064.593, 6658816.515], [319467.233, 6660137.711], [320371.048, 6660787.886], [323378.525, 6660618.908], [325963.981, 6660836.459], [324253.966, 6663218.919], [324255.584, 6664499.635], [323681.501, 6664962.25], [323306.74, 6666443.252], [323273.406, 6668139.58], [323062.736, 6669532.653], [325911.889, 6670810.19], [327621.841, 6670234.291], [328650.512, 6669753.119], [330160.479, 6669763.78], [330821.842, 6669801.593], [332317.643, 6670155.027], [333527.226, 6669946.107], [334911.515, 6670348.246], [336005.637, 6671797.73], [338020.923, 6671051.837]]]}}, {\\\"id\\\": \\\"36\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Iisalmi\\\", \\\"elakelaisten_osuus\\\": 31.3, \\\"freshwarea\\\": 109.18, \\\"gml_id\\\": 1601100225, \\\"landarea\\\": 763.02, \\\"namefin\\\": \\\"Iisalmi\\\", \\\"nameswe\\\": \\\"Idensalmi\\\", \\\"natcode\\\": \\\"140\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 872.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[512602.738, 7062258.102], [512905.775, 7062367.74], [513259.901, 7062359.21], [513568.192, 7062251.608], [513790.441, 7061649.197], [514163.036, 7061228.63], [514296.358, 7061011.425], [514648.9, 7061035.364], [515521.391, 7060619.682], [516010.453, 7059907.165], [516298.591, 7059432.261], [516449.712, 7059056.542], [516419.838, 7058845.893], [516749.927, 7058232.378], [516806.093, 7057781.068], [516706.465, 7057127.616], [517269.061, 7056482.233], [517880.809, 7056151.165], [518216.52, 7055627.326], [518336.512, 7055307.693], [518261.549, 7054881.637], [520243.917, 7055957.984], [520381.274, 7055303.63], [520844.593, 7054119.629], [521401.015, 7053930.859], [521743.533, 7053636.728], [521741.276, 7053244.06], [521911.34, 7052652.872], [522067.416, 7052405.978], [522257.338, 7052406.427], [522571.707, 7052712.105], [522831.799, 7052924.021], [523284.916, 7052909.329], [523282.321, 7052469.906], [523392.38, 7051854.815], [526910.578, 7050972.008], [526699.369, 7050328.355], [526387.486, 7050229.226], [526431.719, 7049624.824], [526863.342, 7049999.763], [528140.702, 7047664.469], [528312.038, 7047149.278], [529125.511, 7046802.022], [531500.713, 7043639.966], [531582.372, 7043185.312], [531865.821, 7043067.188], [531881.895, 7042836.204], [531302.612, 7042513.674], [530853.838, 7042021.394], [531121.155, 7041726.879], [531560.592, 7041127.216], [532183.135, 7040739.383], [532388.476, 7040919.904], [533120.011, 7040502.824], [533256.506, 7040123.337], [532858.886, 7039894.993], [532998.819, 7039339.652], [528365.096, 7039498.565], [528395.973, 7040500.161], [527327.225, 7040406.868], [527034.323, 7040645.895], [527234.327, 7042132.896], [526526.378, 7041684.889], [526608.62, 7041471.887], [526094.597, 7041117.454], [525884.723, 7041393.983], [525259.668, 7041524.453], [524835.2, 7042462.276], [524990.32, 7042825.559], [524722.341, 7043918.66], [524262.084, 7044094.388], [523816.894, 7043859.083], [522898.297, 7038969.836], [522795.839, 7038906.361], [522380.001, 7039599.28], [521382.746, 7042662.731], [520848.294, 7043132.853], [520722.951, 7042184.032], [518584.522, 7040402.83], [518590.124, 7039687.716], [518274.359, 7038541.773], [516420.551, 7036859.067], [516051.563, 7036935.4], [515436.781, 7036197.35], [514993.163, 7036318.829], [515038.765, 7035981.79], [515697.114, 7035680.704], [515563.972, 7034956.796], [515633.548, 7034476.29], [515491.409, 7033982.789], [514850.066, 7034036.862], [514567.003, 7034539.754], [514151.969, 7034583.314], [514036.785, 7035192.589], [514232.908, 7035654.8], [513983.413, 7036099.57], [513742.706, 7035398.989], [513177.534, 7034719.874], [512897.546, 7034740.064], [511774.926, 7035162.747], [510899.708, 7035912.224], [510252.106, 7035313.812], [510472.833, 7034573.827], [509533.594, 7034253.447], [509368.265, 7033694.166], [509582.888, 7033430.068], [509736.534, 7032880.738], [509791.458, 7032346.351], [509630.703, 7032122.007], [509570.406, 7031662.904], [508781.583, 7031226.298], [508702.224, 7030556.858], [508538.754, 7030243.307], [508269.443, 7030481.068], [507924.03, 7030288.718], [507621.946, 7030315.393], [507119.286, 7030151.149], [506940.875, 7029786.521], [507611.911, 7028907.181], [507893.062, 7028355.332], [508281.409, 7028206.243], [508081.973, 7027448.8], [507791.955, 7026849.915], [507513.734, 7026349.03], [507418.61, 7025953.473], [506938.916, 7026293.151], [506711.706, 7026639.472], [505955.992, 7026731.548], [506713.33, 7025067.085], [507017.977, 7025038.14], [507266.255, 7024337.727], [507925.787, 7023803.141], [508530.349, 7023908.726], [508706.736, 7023482.243], [509139.435, 7023009.574], [509161.972, 7022394.746], [508756.458, 7023137.825], [508270.567, 7022901.362], [506669.038, 7021648.505], [506862.461, 7021387.212], [505541.102, 7021310.687], [505449.129, 7021560.032], [504977.618, 7021653.491], [504816.286, 7021268.746], [505198.635, 7020779.046], [505044.606, 7020500.48], [504267.711, 7020631.299], [503245.042, 7019529.87], [502631.876, 7018936.613], [502523.822, 7019390.889], [502932.232, 7020688.424], [502437.377, 7023255.317], [502202.324, 7023371.701], [501889.136, 7023162.798], [502012.263, 7022751.599], [501422.044, 7022565.296], [500792.183, 7023104.829], [500859.759, 7024219.824], [500550.126, 7025411.879], [500624.639, 7026257.1], [501161.826, 7026596.463], [499943.904, 7027502.992], [499414.63, 7027681.726], [498581.755, 7027261.496], [497818.749, 7027377.798], [497618.928, 7029134.115], [498027.554, 7030362.222], [497767.357, 7030643.607], [497762.055, 7031167.595], [497239.963, 7031452.976], [497240.86, 7031931.782], [496821.646, 7032224.671], [496750.734, 7033325.333], [496993.086, 7033480.909], [496901.057, 7034161.579], [496703.112, 7035235.345], [496716.122, 7035708.373], [496559.307, 7036188.153], [496168.86, 7036383.476], [495751.711, 7036693.546], [492593.288, 7037654.537], [492606.779, 7038324.968], [492337.776, 7039003.966], [492109.506, 7039677.674], [492126.025, 7040010.198], [491955.965, 7040498.691], [492114.762, 7040757.752], [492118.271, 7041200.701], [491881.15, 7041570.772], [491847.412, 7042014.912], [491612.121, 7042241.665], [491270.491, 7043139.937], [491235.695, 7043899.1], [491022.298, 7044400.72], [491136.885, 7044745.924], [491360.42, 7045002.209], [491075.011, 7045498.186], [491413.957, 7045997.191], [491413.487, 7046320.179], [490674.988, 7047116.009], [490277.872, 7047411.17], [490240.747, 7047594.201], [490474.985, 7047819.663], [489775.334, 7050469.515], [489988.55, 7050584.315], [490220.858, 7050440.375], [490695.636, 7050973.814], [490695.863, 7051262.696], [490585.671, 7051642.858], [490742.126, 7052284.625], [491268.474, 7051914.45], [491446.521, 7052157.073], [491252.084, 7052680.033], [491017.262, 7052957.051], [490829.78, 7053515.673], [490406.508, 7054053.044], [490685.905, 7054833.255], [490526.724, 7055406.658], [490495.792, 7056017.199], [490273.752, 7056172.399], [490149.486, 7056709.302], [490543.274, 7057144.481], [491205.655, 7057266.457], [490869.276, 7058041.893], [490996.152, 7058375.423], [490903.187, 7058654.1], [491046.142, 7059213.867], [491481.232, 7059345.416], [491527.006, 7059898.865], [493816.635, 7058481.74], [493576.462, 7057749.572], [495208.815, 7056324.661], [495124.941, 7057481.195], [495324.858, 7057977.498], [495960.118, 7057314.264], [496111.154, 7056154.039], [496972.006, 7056428.737], [497099.161, 7055482.818], [497461.319, 7054945.938], [497584.468, 7053613.729], [499525.192, 7054521.329], [499588.262, 7055204.355], [500042.953, 7054911.859], [500114.911, 7054443.38], [500459.663, 7054170.466], [500759.898, 7054278.439], [500493.792, 7054764.691], [500872.315, 7055253.552], [500108.162, 7056292.961], [503110.929, 7057891.209], [502995.362, 7060025.352], [503182.184, 7060467.576], [503854.019, 7059603.229], [504267.155, 7059345.935], [504760.661, 7058625.626], [505222.801, 7058393.942], [506052.868, 7058303.687], [506677.692, 7058406.829], [506901.903, 7058157.83], [507521.751, 7058258.393], [507636.458, 7057832.953], [509717.458, 7058555.284], [510347.007, 7058177.84], [510551.227, 7058234.803], [510420.725, 7059073.932], [510617.747, 7059282.358], [510678.481, 7060130.342], [510815.967, 7060301.087], [510665.005, 7061046.886], [511744.741, 7061220.504], [511977.39, 7061733.999], [512076.651, 7062411.842], [512602.738, 7062258.102]]]}}, {\\\"id\\\": \\\"37\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hamina\\\", \\\"elakelaisten_osuus\\\": 34.6, \\\"freshwarea\\\": 24.01, \\\"gml_id\\\": 1601100119, \\\"landarea\\\": 609.8, \\\"namefin\\\": \\\"Hamina\\\", \\\"nameswe\\\": \\\"Fredrikshamn\\\", \\\"natcode\\\": \\\"075\\\", \\\"seawarea\\\": 521.34, \\\"totalarea\\\": 1155.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[523012.229, 6742615.395], [523100.302, 6741519.039], [523460.569, 6739928.686], [523457.074, 6739355.418], [523569.434, 6738701.883], [524114.427, 6737079.244], [524367.738, 6735330.853], [523979.913, 6732841.059], [523784.195, 6732351.856], [523346.985, 6730604.96], [523027.419, 6729875.352], [523834.601, 6728777.402], [524224.549, 6727980.327], [524994.356, 6725200.354], [524759.444, 6723926.125], [524868.521, 6722898.181], [523134.227, 6721455.648], [521257.299, 6718540.708], [520522.006, 6716725.834], [519769.007, 6714602.161], [519552.214, 6713696.147], [520622.4, 6711009.539], [520873.202, 6710352.203], [521842.515, 6709124.799], [521869.73, 6708463.052], [522051.836, 6707424.777], [522354.125, 6705382.677], [521882.893, 6704353.956], [523999.107, 6702711.317], [527499.361, 6701906.215], [529428.661, 6700522.936], [528762.732, 6699897.507], [528670.1, 6698756.278], [529368.513, 6697249.292], [530702.194, 6694690.109], [533133.806, 6692476.121], [535867.756, 6689985.432], [527934.8, 6679878.0], [525826.092, 6677065.617], [523329.668, 6680336.538], [523328.492, 6680338.08], [514664.655, 6691691.173], [513725.034, 6691391.285], [506526.058, 6696685.697], [506574.973, 6697559.389], [506709.824, 6697775.616], [506593.573, 6697984.867], [506595.898, 6698194.119], [506667.974, 6698380.12], [506594.181, 6698563.575], [506342.6, 6699796.134], [506499.313, 6699923.859], [506273.715, 6700114.079], [506140.957, 6700756.399], [503446.53, 6704270.279], [501602.792, 6709129.429], [501436.923, 6709499.984], [500509.266, 6712616.621], [500388.816, 6713481.656], [501145.113, 6714192.191], [501104.527, 6714655.804], [501294.438, 6716892.204], [501560.721, 6718737.862], [495742.236, 6723645.134], [502280.186, 6727068.909], [502774.254, 6726131.31], [503493.539, 6726653.889], [503702.205, 6726229.196], [504554.073, 6726573.228], [505632.233, 6727767.256], [506001.177, 6729139.605], [506099.515, 6729452.007], [506129.947, 6729593.141], [506164.978, 6729659.968], [506497.591, 6730755.482], [507248.225, 6731241.845], [506713.89, 6732123.21], [506829.211, 6732543.328], [506391.816, 6733355.516], [506034.096, 6733820.047], [507038.377, 6734714.202], [506765.805, 6735178.959], [506915.992, 6735642.833], [506589.729, 6735994.927], [506412.945, 6736525.914], [507039.468, 6736871.018], [506684.696, 6737393.253], [506789.099, 6737940.158], [507155.652, 6737848.998], [511067.689, 6736128.226], [512275.726, 6736120.852], [512268.524, 6736482.851], [512644.807, 6737216.011], [512657.381, 6737810.754], [513002.196, 6737655.083], [513503.382, 6738014.356], [514567.092, 6738109.072], [514850.344, 6739092.161], [514693.504, 6739538.879], [514231.986, 6739970.001], [514221.986, 6740633.433], [514782.157, 6740990.493], [515916.386, 6742996.792], [516871.402, 6742843.462], [518198.469, 6742438.568], [518871.015, 6742507.525], [518980.951, 6743342.939], [519482.079, 6743731.272], [519266.828, 6744016.503], [520544.407, 6744854.672], [523282.6, 6745336.095], [523012.229, 6742615.395]]]}}, {\\\"id\\\": \\\"38\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Raisio\\\", \\\"elakelaisten_osuus\\\": 26.8, \\\"freshwarea\\\": 0.6, \\\"gml_id\\\": 1601100413, \\\"landarea\\\": 48.76, \\\"namefin\\\": \\\"Raisio\\\", \\\"nameswe\\\": \\\"Reso\\\", \\\"natcode\\\": \\\"680\\\", \\\"seawarea\\\": 0.7, \\\"totalarea\\\": 50.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[235463.543, 6719123.509], [235644.148, 6718838.122], [236436.744, 6718228.914], [236249.119, 6717856.375], [236275.907, 6717589.017], [236626.841, 6717432.035], [239031.602, 6717088.129], [239212.053, 6716883.621], [237999.991, 6715302.327], [237925.619, 6715645.233], [236800.025, 6714774.117], [236744.25, 6713917.739], [236433.342, 6714042.766], [236077.69, 6713302.323], [235719.426, 6712962.695], [235620.049, 6712433.718], [234312.124, 6712653.628], [233881.452, 6712612.212], [233676.802, 6712936.049], [232691.064, 6713037.804], [231867.009, 6712835.119], [231342.832, 6711884.384], [231097.55, 6712047.676], [230992.164, 6711298.417], [230509.85, 6711699.204], [229589.11, 6712650.956], [229254.67, 6713787.415], [229516.969, 6713864.285], [229014.096, 6714709.555], [229259.79, 6714803.236], [229246.922, 6714869.872], [229191.27, 6714874.245], [229179.204, 6715206.87], [229248.494, 6715975.862], [229782.415, 6716334.403], [230058.337, 6716745.867], [230067.829, 6717171.967], [230673.238, 6717304.81], [230299.548, 6718842.165], [231432.346, 6719221.529], [231813.44, 6718394.52], [232047.144, 6718436.723], [231838.288, 6719410.016], [232449.699, 6719681.379], [233641.175, 6720243.662], [235463.543, 6719123.509]]]}}, {\\\"id\\\": \\\"39\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Espoo\\\", \\\"elakelaisten_osuus\\\": 16.8, \\\"freshwarea\\\": 17.91, \\\"gml_id\\\": 1601100151, \\\"landarea\\\": 312.32, \\\"namefin\\\": \\\"Espoo\\\", \\\"nameswe\\\": \\\"Esbo\\\", \\\"natcode\\\": \\\"049\\\", \\\"seawarea\\\": 197.8, \\\"totalarea\\\": 528.03}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[371992.429, 6693568.406], [372701.704, 6693445.11], [373315.774, 6692906.008], [375773.698, 6691596.517], [375531.318, 6689430.332], [376354.195, 6689748.032], [376856.143, 6686816.984], [376371.406, 6683713.235], [376500.033, 6682866.332], [376822.62, 6682157.378], [377355.891, 6680366.179], [379983.85, 6681677.614], [380227.204, 6679742.437], [380445.725, 6678000.761], [380776.843, 6677700.102], [380640.369, 6677115.115], [380656.966, 6676048.243], [380402.06, 6675166.845], [380394.723, 6672659.046], [380381.881, 6671804.412], [380148.339, 6670916.41], [380148.339, 6670615.249], [380148.339, 6670198.605], [380050.19, 6670115.488], [379768.621, 6667904.746], [376718.723, 6664611.807], [384970.135, 6644566.77], [384276.96, 6644460.266], [378708.759, 6642381.577], [374291.085, 6654447.058], [370918.596, 6659436.164], [369008.343, 6664006.643], [369511.307, 6664951.673], [369624.923, 6665548.81], [369014.905, 6667969.252], [368827.362, 6668560.415], [369024.123, 6668858.872], [368662.779, 6669079.204], [368242.629, 6670403.578], [367525.556, 6671157.064], [366767.419, 6671638.43], [366385.661, 6671650.774], [366143.883, 6672265.576], [365540.027, 6672116.941], [365022.882, 6672599.145], [365314.502, 6673111.62], [365108.457, 6673407.561], [365162.244, 6673862.205], [364338.397, 6674422.046], [363017.28, 6675707.949], [363412.641, 6675840.156], [363457.769, 6676740.111], [362814.249, 6676852.943], [361652.114, 6677734.396], [362477.208, 6679221.87], [362957.958, 6679709.508], [363001.768, 6681442.419], [361894.255, 6682470.534], [361979.124, 6684547.048], [362624.151, 6685325.923], [362569.982, 6685740.984], [361751.588, 6686061.341], [362472.847, 6686495.759], [361962.88, 6690367.147], [365362.86, 6688879.345], [367225.249, 6689936.88], [367946.035, 6691143.146], [368572.913, 6692805.761], [369134.568, 6693775.377], [369586.719, 6693654.252], [371189.604, 6694095.302], [371992.429, 6693568.406]], [[372947.689, 6678678.058], [373427.01, 6678717.314], [373643.389, 6678350.981], [374498.137, 6678531.289], [374739.341, 6677929.854], [375218.776, 6678162.518], [375394.434, 6677836.238], [374928.974, 6677524.158], [374701.187, 6676622.637], [374065.216, 6676540.905], [373742.583, 6676148.814], [373400.053, 6676334.469], [373616.495, 6676726.034], [373303.101, 6676983.835], [372923.119, 6676562.166], [371987.124, 6676674.555], [371177.525, 6677182.199], [371315.675, 6677663.925], [372245.692, 6678153.252], [372947.689, 6678678.058]]]}}, {\\\"id\\\": \\\"40\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hammarland\\\", \\\"elakelaisten_osuus\\\": 22.4, \\\"freshwarea\\\": 1.74, \\\"gml_id\\\": 1601100252, \\\"landarea\\\": 138.56, \\\"namefin\\\": \\\"Hammarland\\\", \\\"nameswe\\\": \\\"Hammarland\\\", \\\"natcode\\\": \\\"076\\\", \\\"seawarea\\\": 1083.87, \\\"totalarea\\\": 1224.17}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[85515.452, 6711413.438], [80644.32, 6710966.426], [79484.308, 6712455.886], [80994.169, 6715620.987], [85515.452, 6711413.438]]], [[[76918.718, 6710048.243], [83390.452, 6704564.518], [80181.728, 6699153.428], [83166.492, 6697972.381], [83521.387, 6693605.895], [75712.828, 6689167.087], [69127.278, 6685754.306], [61685.886, 6699098.02], [63342.886, 6703795.346], [65835.844, 6710856.339], [67730.48, 6718328.312], [68416.736, 6718890.031], [76918.718, 6710048.243]]], [[[97442.838, 6721018.08], [98498.918, 6720318.464], [99045.613, 6719238.081], [99174.988, 6719054.675], [99429.869, 6717866.463], [99429.953, 6717865.373], [99451.828, 6717578.607], [99452.09, 6717575.173], [99255.609, 6715117.836], [99256.564, 6715115.484], [98890.413, 6714262.955], [98506.551, 6712886.023], [97515.21, 6712535.632], [97541.477, 6711267.874], [97541.568, 6711267.949], [98760.077, 6712268.169], [100239.99, 6711728.863], [101302.112, 6710596.97], [103471.305, 6709256.637], [103532.766, 6707941.478], [102793.219, 6707516.58], [102093.85, 6704005.086], [101362.572, 6702744.511], [101649.971, 6701844.556], [101852.986, 6700445.464], [101758.278, 6699026.894], [101876.436, 6698701.843], [102716.152, 6698582.952], [102917.857, 6698368.942], [102355.206, 6697912.854], [102314.614, 6697617.986], [101850.107, 6697620.159], [102090.319, 6696408.858], [102837.803, 6696218.15], [103095.183, 6695770.081], [103088.007, 6695496.399], [102908.842, 6695014.154], [103109.222, 6694643.393], [103479.536, 6694384.842], [103485.322, 6693846.502], [103625.707, 6693417.765], [103571.878, 6692917.047], [103785.433, 6692421.699], [103529.419, 6692244.433], [101015.517, 6692137.396], [101452.852, 6689753.272], [98775.755, 6689207.373], [98374.195, 6689026.231], [96185.421, 6687925.85], [95660.257, 6687447.264], [95086.904, 6687454.901], [94806.373, 6686995.636], [77470.352, 6670793.378], [72884.215, 6679017.315], [89039.646, 6687535.706], [89134.548, 6689568.716], [92644.554, 6690008.785], [93412.789, 6690836.509], [93416.893, 6692182.381], [93885.433, 6693325.265], [94150.571, 6694283.447], [94527.585, 6694459.538], [94284.098, 6694924.571], [94470.465, 6695430.531], [94858.211, 6695850.928], [94876.082, 6697024.16], [94745.045, 6697469.378], [94664.572, 6698877.268], [94993.499, 6699371.516], [94279.228, 6699973.874], [93748.214, 6700234.962], [93505.632, 6700781.29], [93590.629, 6701490.806], [93852.158, 6701794.185], [94164.171, 6702356.349], [94266.922, 6703176.477], [93726.539, 6704616.734], [93155.706, 6704632.264], [92816.435, 6705790.166], [92508.364, 6706547.46], [92854.539, 6707083.669], [93583.134, 6707584.03], [93438.553, 6707832.178], [93355.411, 6708463.322], [93733.514, 6709122.724], [93911.437, 6709800.328], [93035.798, 6710891.118], [93788.885, 6712042.118], [95235.616, 6713868.975], [95033.121, 6715842.384], [93585.731, 6717887.263], [90259.114, 6718352.615], [82008.282, 6723672.551], [74774.854, 6744728.818], [89255.764, 6749132.339], [97442.838, 6721018.08]], [[98781.919, 6709867.93], [99298.719, 6709236.539], [98534.684, 6707996.855], [97744.937, 6708702.591], [97291.148, 6708624.175], [96771.483, 6708143.966], [95979.303, 6709749.158], [96921.617, 6709993.462], [97401.693, 6710409.03], [97468.908, 6710674.947], [97932.603, 6710585.857], [98622.442, 6710941.343], [98781.919, 6709867.93]]]]}}, {\\\"id\\\": \\\"41\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Porvoo\\\", \\\"elakelaisten_osuus\\\": 24.2, \\\"freshwarea\\\": 10.08, \\\"gml_id\\\": 1601100350, \\\"landarea\\\": 654.54, \\\"namefin\\\": \\\"Porvoo\\\", \\\"nameswe\\\": \\\"Borg\\\\u00e5\\\", \\\"natcode\\\": \\\"638\\\", \\\"seawarea\\\": 1475.19, \\\"totalarea\\\": 2139.81}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[435590.55, 6713100.484], [435528.188, 6711744.437], [434110.318, 6706238.575], [434968.786, 6704726.724], [437034.762, 6702573.302], [437792.767, 6701253.251], [439819.249, 6700574.842], [440678.905, 6699988.086], [441981.101, 6697323.176], [442126.961, 6695025.907], [440777.546, 6691475.931], [440543.013, 6690608.187], [440534.558, 6689133.388], [440362.369, 6687478.534], [440238.037, 6686802.754], [440226.512, 6684222.574], [440658.466, 6683325.345], [440842.256, 6682561.233], [440949.28, 6681567.622], [441521.511, 6681243.678], [441817.277, 6680604.124], [442432.056, 6680416.591], [442518.68, 6680108.353], [441572.478, 6679538.348], [441429.493, 6679562.513], [441291.42, 6679509.325], [440492.119, 6679423.986], [440360.598, 6679483.631], [440424.946, 6679137.026], [440618.595, 6679041.443], [440653.091, 6679024.416], [440770.826, 6678581.0], [441244.53, 6678687.873], [442751.498, 6678392.262], [443818.541, 6678652.876], [443700.526, 6679352.018], [447733.414, 6680764.178], [459410.026, 6656612.165], [454792.563, 6655945.057], [448432.079, 6653337.146], [445150.428, 6649233.591], [420777.911, 6644262.748], [414558.996, 6644748.454], [406641.156, 6645584.736], [408589.052, 6664019.377], [410558.993, 6671362.474], [415467.249, 6677205.501], [416468.479, 6678378.37], [416330.067, 6679130.905], [418498.101, 6681862.818], [415198.668, 6685186.889], [412341.632, 6689906.852], [409854.62, 6694354.312], [409951.03, 6696943.21], [409843.854, 6697758.511], [412449.0, 6698268.84], [414618.849, 6698913.891], [416939.36, 6700119.668], [418012.334, 6701318.942], [417449.445, 6702898.098], [416495.765, 6703678.83], [413795.168, 6706224.109], [415506.072, 6706184.414], [419229.404, 6706780.453], [419684.896, 6706394.097], [420729.97, 6706689.307], [420629.886, 6706995.56], [422144.086, 6707229.575], [422418.882, 6707848.004], [423421.791, 6704555.878], [425989.811, 6708046.772], [426408.432, 6707172.144], [427186.936, 6706665.046], [427801.294, 6705852.483], [428493.138, 6705954.208], [429283.592, 6705551.068], [429744.182, 6705662.097], [430051.859, 6706552.402], [430607.018, 6707685.448], [430371.524, 6708120.676], [431262.367, 6709379.296], [431604.214, 6709778.054], [431939.038, 6709597.233], [432388.881, 6710744.22], [432165.201, 6711425.044], [431908.326, 6711836.67], [431838.508, 6712416.556], [435459.201, 6713354.279], [435590.55, 6713100.484]]]}}, {\\\"id\\\": \\\"42\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuortane\\\", \\\"elakelaisten_osuus\\\": 36.2, \\\"freshwarea\\\": 22.72, \\\"gml_id\\\": 1601100056, \\\"landarea\\\": 462.17, \\\"namefin\\\": \\\"Kuortane\\\", \\\"nameswe\\\": \\\"Kuortane\\\", \\\"natcode\\\": \\\"300\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 484.89}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[323281.486, 6981415.652], [323928.781, 6981069.822], [324159.201, 6981217.003], [324693.63, 6980808.208], [325181.946, 6980624.328], [325329.616, 6980289.04], [325846.0, 6979874.279], [328845.615, 6976651.359], [331925.547, 6970644.883], [333911.129, 6968504.392], [332837.085, 6967908.395], [331365.767, 6967087.545], [331760.705, 6965064.996], [333282.127, 6963623.411], [333567.256, 6964156.475], [334399.356, 6964903.1], [335880.418, 6964356.705], [336830.159, 6965327.371], [339046.709, 6963078.849], [334934.682, 6960968.688], [335000.176, 6961317.194], [334811.974, 6961409.526], [334489.89, 6960615.783], [333982.673, 6961494.346], [331466.168, 6960120.355], [331150.218, 6960738.689], [329822.445, 6962332.912], [329315.002, 6961337.605], [330796.351, 6960551.665], [330074.423, 6959529.009], [329520.577, 6958319.412], [329032.056, 6958529.781], [328693.011, 6957876.482], [327736.201, 6957370.973], [325033.504, 6953215.666], [324202.239, 6952871.764], [324162.099, 6952342.846], [324376.584, 6951998.031], [324145.051, 6951598.086], [323132.857, 6951459.805], [322536.634, 6952029.83], [321638.768, 6952029.479], [321599.127, 6952377.891], [321201.474, 6953037.382], [319871.993, 6953244.527], [319615.918, 6953072.451], [318889.984, 6952408.898], [319163.802, 6951555.654], [318876.088, 6951484.556], [318513.322, 6952112.996], [318058.915, 6951716.892], [315249.01, 6955225.01], [315250.706, 6955693.082], [315519.734, 6956046.452], [315520.201, 6957178.656], [315182.096, 6957508.842], [314376.799, 6956330.322], [313593.169, 6957329.577], [313440.917, 6958332.437], [309502.375, 6961659.038], [310144.482, 6965973.224], [310434.857, 6966397.154], [311266.077, 6969928.572], [313487.953, 6971769.623], [313617.307, 6972716.735], [315787.777, 6977065.865], [315841.886, 6977362.373], [316093.924, 6977645.335], [316433.436, 6978326.15], [316057.644, 6979006.882], [316442.142, 6979144.586], [316626.766, 6978965.299], [317296.653, 6979547.545], [319758.372, 6980616.904], [320351.263, 6980239.0], [321007.331, 6980442.953], [321599.856, 6980405.616], [321791.616, 6980654.096], [322159.68, 6980735.29], [322273.401, 6981065.417], [322579.776, 6981080.36], [323011.251, 6981430.73], [323281.486, 6981415.652]]]}}, {\\\"id\\\": \\\"43\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kristiinankaupunki\\\", \\\"elakelaisten_osuus\\\": 39.6, \\\"freshwarea\\\": 14.5, \\\"gml_id\\\": 1601100470, \\\"landarea\\\": 683.04, \\\"namefin\\\": \\\"Kristiinankaupunki\\\", \\\"nameswe\\\": \\\"Kristinestad\\\", \\\"natcode\\\": \\\"287\\\", \\\"seawarea\\\": 981.44, \\\"totalarea\\\": 1678.98}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[219000.159, 6933062.97], [218707.443, 6931647.397], [218962.582, 6931422.913], [218770.84, 6931057.236], [218501.355, 6930941.002], [218572.718, 6930195.211], [216976.293, 6928462.479], [218093.547, 6927685.11], [218046.269, 6927149.566], [218436.99, 6926891.426], [218593.415, 6925888.223], [218955.365, 6925730.881], [220029.246, 6925930.535], [220176.156, 6925571.195], [220556.156, 6925612.214], [220473.577, 6926013.739], [221916.423, 6926284.112], [221718.688, 6925671.973], [222267.203, 6925770.216], [222158.918, 6926330.964], [223397.689, 6926552.538], [223826.055, 6925757.535], [224426.972, 6925681.659], [225167.371, 6925052.695], [225256.384, 6924650.712], [225201.122, 6924188.49], [224950.128, 6923642.274], [225011.905, 6923315.604], [224114.019, 6922909.18], [223712.47, 6922239.417], [223950.667, 6922049.032], [224207.702, 6922197.404], [224488.237, 6922000.135], [224215.351, 6921629.329], [224659.862, 6921051.008], [223915.927, 6916978.482], [223474.936, 6916382.241], [223760.954, 6915847.111], [223586.714, 6914542.365], [224296.246, 6914596.383], [224821.679, 6915201.47], [225315.526, 6914891.255], [225014.052, 6914546.209], [226231.269, 6914035.293], [226856.354, 6914006.684], [227281.822, 6913428.553], [227132.621, 6912942.509], [226903.183, 6912491.273], [227232.29, 6912460.38], [226954.213, 6912158.064], [227140.227, 6911587.763], [227581.819, 6911175.92], [227572.087, 6910641.65], [227743.462, 6910173.046], [228152.922, 6909981.352], [228071.129, 6909811.776], [227207.345, 6909689.491], [225163.871, 6909648.633], [225119.667, 6909119.52], [222606.082, 6906388.024], [224367.82, 6904027.344], [223708.692, 6901517.61], [222826.449, 6900965.132], [223300.344, 6901573.528], [223144.816, 6902013.071], [222639.866, 6901935.83], [222290.181, 6901278.795], [220952.133, 6902377.43], [220672.425, 6898182.983], [219644.377, 6896875.884], [220598.229, 6892319.177], [219915.284, 6891632.822], [219279.874, 6890304.411], [220077.099, 6887919.971], [213658.47, 6889017.4], [208432.048, 6887784.308], [204486.251, 6882577.493], [200249.249, 6881206.518], [176308.291, 6880855.366], [176071.862, 6888197.318], [174060.771, 6912686.247], [196226.57, 6914506.107], [202884.344, 6918063.091], [206220.164, 6921394.958], [206331.241, 6921854.239], [206795.065, 6921916.981], [206946.501, 6922330.874], [207363.251, 6922635.02], [211146.583, 6924964.769], [215136.367, 6928430.564], [218977.094, 6933299.884], [219000.159, 6933062.97]]]}}, {\\\"id\\\": \\\"44\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kolari\\\", \\\"elakelaisten_osuus\\\": 31.1, \\\"freshwarea\\\": 58.53, \\\"gml_id\\\": 1601100045, \\\"landarea\\\": 2559.34, \\\"namefin\\\": \\\"Kolari\\\", \\\"nameswe\\\": \\\"Kolari\\\", \\\"natcode\\\": \\\"273\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2617.87}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[379679.052, 7504517.657], [384193.776, 7503812.015], [386371.183, 7487852.355], [389146.266, 7478374.415], [388684.011, 7478392.66], [388674.902, 7478221.186], [388964.38, 7478103.18], [389105.098, 7477747.804], [389450.491, 7477308.961], [390932.096, 7472226.897], [400217.583, 7453588.209], [400701.02, 7453792.787], [400979.012, 7454378.048], [401136.004, 7454261.706], [400956.601, 7453590.992], [400821.416, 7452367.021], [401952.851, 7450100.357], [402450.905, 7447167.556], [402848.86, 7446709.413], [402638.583, 7446197.379], [402746.625, 7445638.082], [403275.76, 7445311.71], [403173.487, 7445078.796], [402830.611, 7445148.327], [406113.615, 7429785.127], [406495.398, 7429223.069], [406318.284, 7428850.514], [406913.773, 7426046.917], [378048.544, 7433167.916], [376198.326, 7435268.207], [372145.77, 7435304.273], [371841.62, 7434986.899], [371637.312, 7435187.429], [371882.613, 7435430.812], [371727.693, 7435593.904], [371504.242, 7435527.34], [371271.796, 7434832.887], [371102.52, 7435062.427], [370760.922, 7434986.159], [369532.563, 7435182.57], [368979.937, 7436211.462], [368350.029, 7435823.008], [368743.458, 7435322.348], [359578.098, 7435379.826], [359824.759, 7434659.799], [359479.277, 7434870.554], [359268.209, 7435050.261], [359158.905, 7435182.407], [358843.41, 7435622.315], [358703.395, 7435892.413], [358611.308, 7436196.033], [358558.205, 7436291.095], [358378.512, 7436569.336], [357952.816, 7437087.309], [357839.028, 7437360.03], [357744.484, 7437729.937], [357655.572, 7437905.122], [357555.073, 7438313.408], [357561.931, 7438441.356], [357549.117, 7438502.165], [357418.575, 7438649.507], [357357.393, 7438855.26], [357269.929, 7438908.058], [357066.754, 7438973.099], [357030.561, 7439009.115], [357027.883, 7439071.41], [357086.682, 7439232.623], [357078.46, 7439341.309], [356993.2, 7439696.691], [356991.0, 7439843.16], [357018.125, 7440012.073], [357003.453, 7440075.029], [356906.459, 7440174.437], [356717.963, 7440176.557], [356655.437, 7440207.977], [356621.364, 7440245.892], [356548.485, 7440458.281], [356509.926, 7440801.203], [356436.492, 7440971.326], [356368.148, 7441085.09], [356219.173, 7441269.153], [356002.874, 7441508.823], [355837.955, 7441655.643], [355625.024, 7441999.356], [355498.08, 7442298.528], [355345.658, 7442570.976], [355286.251, 7442702.302], [355267.479, 7442959.809], [355187.221, 7443463.002], [355090.985, 7443658.372], [355049.417, 7443862.945], [355041.7, 7444023.681], [355078.649, 7444272.282], [355122.454, 7444382.252], [355233.402, 7444548.85], [355239.016, 7444618.709], [355178.004, 7444796.25], [355181.527, 7444864.206], [355099.925, 7445303.333], [355018.376, 7445471.898], [355029.016, 7445715.841], [354955.108, 7446070.414], [354912.839, 7446455.384], [354843.188, 7446621.341], [354845.808, 7446749.465], [354829.244, 7446816.48], [354768.588, 7446923.841], [354593.57, 7447069.182], [354411.838, 7447279.018], [354327.807, 7447399.61], [354090.53, 7447660.409], [353968.087, 7447891.23], [353783.554, 7448163.361], [353655.055, 7448470.642], [353583.117, 7448708.854], [353524.681, 7449090.689], [353524.663, 7449206.928], [353475.06, 7449371.84], [353310.421, 7449679.015], [353121.81, 7449794.998], [353003.006, 7449941.467], [352836.168, 7450477.236], [352629.388, 7450706.426], [352479.662, 7450942.067], [352372.67, 7451372.274], [352329.843, 7451478.613], [352242.851, 7451625.254], [352157.33, 7451841.973], [352042.573, 7452276.547], [352012.157, 7452310.154], [351845.849, 7452394.649], [351807.796, 7452436.659], [351679.235, 7452795.791], [351550.914, 7453038.704], [351348.933, 7453373.471], [351189.777, 7453601.894], [351079.49, 7453803.815], [350957.276, 7453968.295], [350863.66, 7454183.387], [350745.413, 7454628.187], [350834.902, 7454814.047], [350988.424, 7455036.8], [351026.822, 7455485.731], [351042.937, 7455527.011], [351146.337, 7455710.176], [351331.496, 7455883.204], [351545.32, 7456148.982], [351606.031, 7456200.022], [351680.681, 7456248.362], [352089.247, 7456396.133], [352294.609, 7456532.078], [352409.848, 7456630.494], [352452.957, 7456690.418], [352494.808, 7456886.697], [352496.912, 7456968.745], [352371.858, 7457397.849], [352376.117, 7457563.965], [352657.824, 7458185.024], [352824.455, 7458348.955], [352890.155, 7458499.943], [352900.054, 7458577.589], [352870.115, 7458701.346], [352789.157, 7458807.6], [352352.874, 7459150.191], [352253.802, 7459255.371], [352098.553, 7459681.992], [351907.167, 7460028.298], [351699.034, 7460279.238], [351633.69, 7460336.63], [351471.598, 7460424.941], [351341.305, 7460467.589], [351085.676, 7460450.423], [351022.254, 7460465.629], [350906.17, 7460551.614], [350865.929, 7460629.805], [350899.231, 7460774.424], [350972.55, 7460901.76], [351303.251, 7461302.819], [351420.684, 7461525.322], [351542.233, 7461669.463], [351591.633, 7461775.181], [351631.975, 7461939.451], [351636.962, 7462039.37], [351612.175, 7462104.721], [351511.156, 7462250.034], [351382.433, 7462522.985], [351351.039, 7462696.872], [351346.343, 7462843.374], [351241.016, 7463063.026], [351223.028, 7463144.078], [351235.046, 7463183.565], [351287.366, 7463226.995], [351405.471, 7463263.13], [351795.965, 7463331.636], [351864.286, 7463374.276], [352021.348, 7463546.703], [352036.351, 7463606.038], [352024.256, 7463684.81], [351913.352, 7463952.832], [351883.037, 7464068.578], [351777.237, 7464318.322], [351736.127, 7464378.498], [351716.756, 7464471.631], [351721.443, 7464565.548], [351810.083, 7464733.383], [351991.748, 7464876.521], [352055.645, 7464951.429], [352083.067, 7465018.175], [352264.221, 7465191.376], [352328.238, 7465308.353], [352383.366, 7465367.7], [352786.284, 7465603.871], [352883.006, 7465613.007], [352997.735, 7465581.212], [353093.86, 7465578.373], [353309.409, 7465677.713], [353456.433, 7465690.334], [353530.238, 7465722.678], [353681.888, 7465867.317], [353802.112, 7465905.344], [353946.857, 7465912.068], [354024.663, 7465864.072], [354182.078, 7465683.863], [354277.289, 7465622.958], [354349.104, 7465615.352], [354549.564, 7465653.342], [354884.021, 7465764.713], [354978.965, 7465818.037], [355158.316, 7465955.276], [355366.954, 7466157.11], [355505.087, 7466232.307], [355642.714, 7466257.423], [355862.177, 7466354.584], [356049.316, 7466367.183], [356240.569, 7466421.658], [356398.393, 7466409.692], [356625.123, 7466492.459], [356801.977, 7466659.834], [356964.014, 7466712.72], [357287.113, 7466719.209], [357403.118, 7466789.083], [357529.6, 7466830.309], [357627.443, 7466823.0], [357799.527, 7466705.389], [358093.17, 7466649.312], [358208.94, 7466602.928], [358435.324, 7466600.661], [358529.383, 7466523.381], [358572.938, 7466512.997], [358674.11, 7466567.622], [358801.308, 7466584.773], [358851.472, 7466660.211], [358836.902, 7466799.306], [358875.132, 7466951.577], [359037.583, 7467065.024], [359152.886, 7467233.15], [359244.256, 7467478.742], [359447.197, 7467934.781], [359485.648, 7468091.038], [359505.199, 7468416.708], [359637.898, 7468648.039], [359652.598, 7468883.793], [359725.203, 7469078.287], [359754.966, 7469259.058], [359886.907, 7469364.141], [359959.818, 7469551.951], [359941.706, 7469803.235], [359961.718, 7469882.362], [360081.365, 7470108.713], [360155.406, 7470305.321], [360155.043, 7470457.59], [360182.858, 7470612.012], [360159.946, 7470833.661], [360176.877, 7470931.015], [360233.303, 7470976.258], [360304.551, 7470996.691], [360434.965, 7470998.088], [360485.195, 7471039.607], [360513.337, 7471120.358], [360515.794, 7471208.428], [360478.176, 7471456.895], [360486.811, 7471588.744], [360519.151, 7471633.21], [360622.899, 7471702.108], [360743.402, 7471824.272], [360930.83, 7472041.24], [361247.534, 7472315.783], [361305.914, 7472479.185], [361370.054, 7472598.183], [361407.044, 7472774.717], [361384.063, 7472835.996], [361252.488, 7472970.968], [361205.805, 7473039.487], [361136.901, 7473263.501], [361026.781, 7473347.272], [360934.527, 7473466.222], [360883.176, 7473601.118], [360863.228, 7473762.477], [360817.862, 7473856.987], [360742.868, 7473961.024], [360678.974, 7473966.305], [360169.89, 7473853.877], [360051.579, 7473893.98], [360003.279, 7473930.51], [359930.295, 7474034.436], [359884.252, 7474195.132], [359871.837, 7474426.288], [359900.808, 7474523.034], [359982.451, 7474591.045], [360006.888, 7474637.903], [360040.74, 7474792.525], [360033.098, 7474879.108], [359980.55, 7475070.203], [359793.133, 7475370.394], [359775.464, 7475457.475], [359766.207, 7475750.6], [359634.315, 7476078.027], [359621.244, 7476176.922], [359742.688, 7476834.217], [359790.571, 7476948.03], [359905.787, 7477124.6], [359927.336, 7477273.826], [359889.985, 7477367.923], [359754.09, 7477497.128], [359622.045, 7477662.198], [359384.567, 7477884.758], [359212.499, 7478011.779], [359184.903, 7478061.31], [359183.866, 7478159.568], [359278.732, 7478489.488], [359296.429, 7478681.03], [359393.446, 7478854.481], [359686.393, 7478975.879], [359831.582, 7479070.731], [359950.101, 7479233.058], [360028.807, 7479441.534], [360086.196, 7479544.859], [360264.257, 7479774.309], [360391.97, 7479960.235], [360445.558, 7480067.742], [360698.142, 7480343.535], [360798.192, 7480495.875], [360843.789, 7480605.824], [360853.564, 7480681.459], [360833.39, 7481001.034], [360826.286, 7481622.476], [360865.451, 7481844.889], [361027.149, 7482111.321], [361079.841, 7482242.936], [361431.375, 7482576.02], [361453.967, 7482626.987], [361465.139, 7482730.596], [361433.885, 7482908.455], [361355.971, 7483074.628], [361331.119, 7483220.144], [361276.084, 7483363.111], [361139.336, 7483476.116], [361056.584, 7483586.434], [360883.329, 7483691.261], [360698.388, 7483722.513], [360639.453, 7483747.511], [360477.581, 7483879.79], [360340.544, 7483946.732], [360023.717, 7484229.025], [359832.051, 7484366.805], [359704.381, 7484501.405], [359378.572, 7484683.943], [359230.118, 7484803.561], [359129.269, 7484832.627], [358816.508, 7484834.216], [358649.341, 7484780.426], [358379.396, 7484595.565], [358148.138, 7484502.918], [357935.889, 7484469.409], [357701.426, 7484513.159], [357598.283, 7484576.423], [357422.729, 7484595.212], [357371.914, 7484621.773], [357248.842, 7484848.311], [357180.579, 7484927.855], [356995.228, 7485031.28], [356453.24, 7485102.4], [355941.554, 7485338.318], [355489.667, 7485607.314], [355322.683, 7485677.761], [355133.217, 7485699.249], [355032.802, 7485736.294], [354856.223, 7485855.31], [354689.844, 7485937.767], [354560.187, 7485952.238], [354361.35, 7485906.066], [354258.907, 7485903.167], [353822.833, 7486007.07], [353689.475, 7486067.828], [353488.634, 7486223.188], [353371.888, 7486337.247], [353254.221, 7486513.487], [353026.171, 7486689.23], [352594.283, 7486803.061], [352370.632, 7486906.474], [352172.912, 7486926.394], [352081.969, 7486903.763], [352073.744, 7487075.113], [359795.101, 7493001.799], [361887.139, 7491645.558], [361891.647, 7491861.658], [360282.991, 7493092.772], [360235.071, 7493341.848], [372201.996, 7502656.03], [372116.262, 7503033.984], [372423.529, 7503073.219], [372473.55, 7502858.74], [375438.982, 7505181.063], [379241.63, 7504585.859], [378777.925, 7505202.139], [379009.565, 7505384.475], [379679.052, 7504517.657]]]}}, {\\\"id\\\": \\\"45\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Karstula\\\", \\\"elakelaisten_osuus\\\": 38.6, \\\"freshwarea\\\": 76.13, \\\"gml_id\\\": 1601100379, \\\"landarea\\\": 887.07, \\\"namefin\\\": \\\"Karstula\\\", \\\"nameswe\\\": \\\"Karstula\\\", \\\"natcode\\\": \\\"226\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 963.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[393293.146, 6991026.531], [396408.544, 6991135.367], [397320.986, 6991049.415], [397962.149, 6991186.929], [398271.071, 6992115.202], [400224.392, 6992283.04], [401391.256, 6987961.64], [401708.207, 6986713.68], [400888.617, 6986385.028], [401101.201, 6985208.603], [401742.123, 6985067.321], [401867.378, 6984652.809], [401207.748, 6984618.205], [401355.968, 6983788.623], [401655.33, 6983806.582], [401825.15, 6982116.74], [402034.602, 6981239.752], [401860.868, 6980949.763], [403193.776, 6980022.935], [403937.371, 6979363.514], [404969.451, 6979415.331], [405294.952, 6979660.529], [408039.325, 6978522.909], [407419.485, 6974255.929], [407599.548, 6973674.134], [407443.602, 6973074.489], [407835.449, 6972680.015], [408991.617, 6970849.583], [409108.895, 6970791.966], [409118.224, 6970641.344], [409347.51, 6970422.294], [409691.55, 6970426.245], [410187.993, 6970026.829], [410457.636, 6969536.532], [411045.109, 6969293.649], [411641.837, 6969234.66], [411863.286, 6968895.861], [412572.862, 6968626.633], [413088.494, 6968106.42], [413254.134, 6967846.516], [413003.782, 6967037.373], [413384.497, 6966506.166], [413355.656, 6965786.865], [406827.238, 6964481.634], [406358.817, 6965863.256], [405708.232, 6966540.728], [404581.339, 6967318.02], [404070.015, 6967705.737], [403470.24, 6967892.058], [403099.317, 6968502.28], [402749.504, 6969170.585], [402519.209, 6969863.259], [402486.194, 6970102.848], [402354.786, 6970321.027], [402085.948, 6970570.56], [401659.166, 6970900.67], [401464.645, 6970746.982], [400683.538, 6971397.951], [400093.761, 6971771.032], [391551.333, 6965752.723], [392414.49, 6963359.535], [393315.369, 6962786.825], [393740.409, 6963317.455], [394404.258, 6963281.52], [394646.093, 6964006.633], [394898.159, 6963966.964], [395308.741, 6963387.582], [395098.265, 6962872.589], [395570.461, 6962611.101], [394193.567, 6960067.267], [393574.348, 6960388.876], [393383.68, 6960289.673], [393794.442, 6959953.479], [395020.243, 6959530.37], [394174.544, 6958027.296], [391568.968, 6959398.309], [391125.421, 6959364.477], [390881.407, 6960057.207], [390624.68, 6960285.968], [390555.24, 6960635.358], [390604.739, 6961331.646], [390448.728, 6961962.114], [390478.029, 6962641.765], [390219.018, 6963748.402], [389676.242, 6963845.389], [389285.192, 6964843.749], [388929.975, 6964100.211], [388107.994, 6963612.81], [387950.744, 6963038.152], [387721.245, 6962949.586], [387043.452, 6963242.999], [386909.075, 6963092.513], [386958.623, 6961909.718], [386491.09, 6962328.391], [386125.19, 6962072.993], [385971.904, 6962477.151], [386160.078, 6962680.333], [385305.346, 6963448.709], [384170.332, 6961656.664], [384373.053, 6961522.212], [383041.896, 6959580.079], [380224.213, 6959740.96], [379344.012, 6958432.097], [376702.724, 6960169.175], [375379.589, 6957482.924], [374207.491, 6957389.042], [374473.468, 6956451.377], [372356.168, 6955798.067], [371530.387, 6959152.232], [368883.746, 6965582.868], [368987.302, 6966145.298], [368551.308, 6966076.979], [367911.702, 6967422.015], [366556.375, 6968421.446], [367438.411, 6968979.448], [365748.569, 6971945.262], [365065.203, 6971485.266], [364378.617, 6971320.847], [365587.729, 6974440.92], [365848.291, 6972910.792], [370211.515, 6973788.01], [370238.793, 6976578.848], [369641.31, 6977920.938], [367606.853, 6978929.195], [365064.47, 6979207.831], [365541.96, 6984316.807], [370479.529, 6983800.297], [372207.177, 6980426.019], [374672.274, 6981626.807], [373620.306, 6983481.983], [375187.66, 6983308.504], [378689.622, 6987616.264], [379683.288, 6987071.163], [380366.815, 6988318.226], [381664.814, 6988014.952], [380963.13, 6986557.765], [381305.033, 6986418.696], [381450.344, 6986725.817], [383215.366, 6985974.508], [383913.867, 6985880.679], [384047.116, 6986525.328], [384272.962, 6986791.723], [385931.12, 6987943.049], [385393.848, 6988902.17], [389548.311, 6991970.373], [389844.021, 6991566.121], [390972.196, 6992394.961], [392882.821, 6992449.832], [393293.146, 6991026.531]]]}}, {\\\"id\\\": \\\"46\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Parikkala\\\", \\\"elakelaisten_osuus\\\": 45.2, \\\"freshwarea\\\": 168.7, \\\"gml_id\\\": 1601100517, \\\"landarea\\\": 592.01, \\\"namefin\\\": \\\"Parikkala\\\", \\\"nameswe\\\": \\\"Parikkala\\\", \\\"natcode\\\": \\\"580\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 760.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[664812.979, 6863038.915], [665420.369, 6861728.461], [661959.6, 6857819.5], [661849.0, 6857862.0], [661777.2, 6857830.9], [660749.3, 6852690.8], [660308.3, 6851791.4], [659775.8, 6851134.5], [659698.3, 6851039.0], [659403.1, 6850674.8], [659093.4, 6850342.4], [657694.9, 6848838.6], [655897.2, 6846840.5], [655864.7, 6846720.7], [655761.8, 6846690.4], [655261.5, 6846135.4], [653306.308, 6843877.158], [651753.6, 6842105.9], [651675.8, 6841896.9], [651612.7, 6841837.7], [651576.9, 6841562.6], [651430.0, 6841537.9], [651464.0, 6840813.0], [650611.188, 6840773.252], [649267.5, 6838999.4], [649217.1, 6838509.4], [649118.8, 6838271.0], [649022.7, 6837946.8], [649033.5, 6837741.5], [649064.3, 6837610.9], [649040.9, 6837498.7], [648990.4, 6837408.5], [649005.6, 6837224.1], [648958.9, 6837153.6], [648950.7, 6837113.4], [648970.1, 6836981.3], [648933.4, 6836946.1], [648939.2, 6836884.6], [648917.4, 6836796.6], [648816.9, 6836821.5], [648702.8, 6836817.5], [648545.1, 6836716.8], [648079.0, 6835795.7], [647859.7, 6835626.8], [647062.6, 6834356.1], [646123.081, 6833057.221], [645908.4, 6831758.2], [645868.1, 6830826.6], [645503.5, 6829981.5], [644006.8, 6828197.1], [642862.2, 6827232.4], [640562.4, 6824239.4], [640697.0, 6823582.4], [638843.0, 6821582.2], [638726.4, 6821393.8], [638767.6, 6821301.0], [638651.4, 6821345.0], [638414.3, 6821262.0], [638327.3, 6821031.9], [638121.7, 6820928.7], [638099.3, 6820826.5], [637958.1, 6820730.4], [637287.2, 6820738.5], [636183.871, 6820299.987], [632895.9, 6820123.9], [633391.6, 6816728.6], [630932.1, 6813256.5], [630413.055, 6812512.125], [630185.616, 6812732.092], [630185.607, 6812732.1], [630185.142, 6812732.55], [630272.903, 6812827.132], [630626.35, 6813208.045], [630624.12, 6813209.471], [629717.134, 6813789.529], [629263.017, 6813466.27], [628476.781, 6814481.072], [627131.104, 6815588.713], [627049.123, 6816525.931], [626045.338, 6819111.325], [625892.02, 6819723.983], [625471.324, 6819492.432], [624532.978, 6820369.687], [623612.32, 6819945.87], [623268.2, 6820457.357], [622285.382, 6820785.794], [622539.434, 6821971.355], [622639.586, 6822660.992], [621125.106, 6822530.853], [620956.825, 6821823.99], [618959.17, 6822774.405], [618961.202, 6822781.622], [618976.698, 6822775.013], [620151.114, 6827002.29], [620548.754, 6828224.691], [621425.457, 6830874.223], [621776.811, 6831346.093], [621766.329, 6831432.381], [627331.158, 6837973.341], [630140.5, 6839765.866], [632517.477, 6840604.555], [634302.975, 6841586.113], [634839.303, 6842296.256], [635242.406, 6845880.073], [656016.403, 6857881.629], [656504.524, 6857800.869], [657039.853, 6858531.507], [662181.473, 6861675.648], [663398.838, 6862341.339], [663398.964, 6862341.408], [663817.628, 6862548.561], [663817.638, 6862548.566], [664812.171, 6863040.658], [664812.979, 6863038.915]]]}}, {\\\"id\\\": \\\"47\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sottunga\\\", \\\"elakelaisten_osuus\\\": 39.6, \\\"freshwarea\\\": 0.02, \\\"gml_id\\\": 1601100548, \\\"landarea\\\": 28.03, \\\"namefin\\\": \\\"Sottunga\\\", \\\"nameswe\\\": \\\"Sottunga\\\", \\\"natcode\\\": \\\"766\\\", \\\"seawarea\\\": 314.39, \\\"totalarea\\\": 342.44}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[144951.168, 6691887.873], [147407.192, 6688488.081], [150098.228, 6686450.522], [150914.268, 6683806.331], [153066.557, 6683484.428], [154016.708, 6681906.006], [155620.581, 6680556.934], [156306.44, 6679495.896], [159927.243, 6679907.453], [158717.552, 6681545.473], [160352.753, 6682702.22], [160363.511, 6682700.76], [161898.989, 6685455.012], [168214.52, 6680237.598], [170185.666, 6677823.73], [159977.1, 6672068.394], [157041.536, 6672621.379], [155895.65, 6673202.687], [154848.253, 6672553.746], [152284.008, 6666717.923], [151992.085, 6657754.958], [147801.365, 6664277.693], [146367.24, 6667244.39], [147457.037, 6674028.643], [146485.122, 6675695.505], [145735.02, 6681943.916], [144262.818, 6682855.287], [143334.989, 6683112.872], [140587.388, 6685460.726], [140761.833, 6686139.095], [141286.857, 6686588.354], [138894.675, 6690310.516], [141029.635, 6691859.312], [142597.847, 6694122.714], [144951.168, 6691887.873]]]}}, {\\\"id\\\": \\\"48\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Evij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 32.4, \\\"freshwarea\\\": 36.56, \\\"gml_id\\\": 1601100074, \\\"landarea\\\": 354.15, \\\"namefin\\\": \\\"Evij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Evij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"052\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 390.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[321710.698, 7044242.138], [322132.327, 7044594.452], [322203.986, 7044573.717], [322425.792, 7044331.883], [322574.575, 7044129.598], [322660.378, 7043976.115], [323128.898, 7043925.217], [323389.73, 7043715.074], [323422.701, 7043624.934], [323531.703, 7043563.964], [323494.299, 7043508.379], [323649.544, 7043375.123], [323927.026, 7043390.941], [324010.547, 7043430.194], [324276.543, 7043754.98], [326193.207, 7042536.619], [326432.111, 7042394.681], [326482.883, 7042259.655], [326402.959, 7042224.615], [326626.683, 7041894.341], [327173.91, 7042602.158], [327400.389, 7042357.493], [327811.153, 7042330.427], [327873.142, 7041878.205], [328735.559, 7040236.049], [328681.417, 7040022.656], [328578.079, 7039964.307], [328641.76, 7039623.596], [328212.792, 7039548.574], [329173.695, 7038138.838], [329368.077, 7038305.926], [330271.236, 7037213.1], [330060.982, 7036830.836], [331474.916, 7034711.75], [334107.289, 7032815.091], [334155.426, 7032882.085], [334429.162, 7032704.914], [334429.535, 7032581.422], [334929.075, 7032219.92], [334990.189, 7032062.987], [333288.859, 7030482.837], [333656.238, 7029937.78], [334271.412, 7030047.344], [334728.221, 7029605.109], [335277.05, 7029358.667], [335926.973, 7028087.83], [335476.666, 7027915.227], [334959.588, 7028919.661], [334534.4, 7028636.642], [335981.742, 7026496.518], [335202.889, 7026028.765], [334511.181, 7025431.274], [335328.091, 7024162.012], [333908.433, 7023491.887], [333167.948, 7024978.74], [332206.254, 7024598.559], [331327.963, 7024707.695], [331315.981, 7023595.571], [330990.19, 7023433.797], [330919.65, 7023823.775], [331025.502, 7024745.899], [330482.09, 7025761.893], [328852.333, 7024963.155], [329025.927, 7024365.838], [329602.955, 7023770.371], [330023.019, 7023559.594], [330010.884, 7023322.98], [328823.44, 7022503.901], [327057.447, 7025404.755], [325278.462, 7024262.246], [326017.331, 7023917.44], [326030.645, 7023526.73], [325087.914, 7024145.199], [323380.112, 7023047.126], [324060.86, 7022085.435], [323488.809, 7021697.989], [322891.191, 7022732.876], [321985.98, 7022021.905], [322609.933, 7020622.497], [323329.513, 7020012.104], [323240.731, 7019817.339], [322760.609, 7019928.068], [321870.067, 7021060.078], [321659.111, 7021930.732], [321266.343, 7023033.368], [317466.505, 7026486.197], [315473.945, 7025486.039], [314887.339, 7025161.865], [311141.073, 7029353.937], [311258.666, 7031525.411], [311196.969, 7031670.44], [311550.216, 7031840.984], [311692.01, 7031558.066], [312047.102, 7031906.974], [310802.709, 7033109.951], [310533.972, 7032258.676], [310172.688, 7033619.634], [311704.816, 7033038.309], [311673.285, 7033441.071], [310586.421, 7035650.362], [311977.39, 7038865.608], [311577.038, 7039987.781], [311863.774, 7040329.487], [312128.836, 7039948.799], [312123.965, 7039204.525], [312630.256, 7040386.849], [312414.077, 7040931.797], [312763.518, 7041390.607], [313017.524, 7041286.911], [313922.262, 7043392.788], [314614.668, 7043683.354], [316136.27, 7044336.51], [318228.989, 7045198.225], [320481.677, 7046141.494], [321710.698, 7044242.138]], [[313319.127, 7031902.534], [313337.128, 7031692.674], [313872.712, 7031735.141], [314029.969, 7030951.741], [313294.001, 7031108.65], [312368.12, 7030521.26], [312398.865, 7031964.581], [312217.498, 7032330.622], [312044.813, 7032679.14], [312541.25, 7033022.73], [313319.127, 7031902.534]]]}}, {\\\"id\\\": \\\"49\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"M\\\\u00e4ntt\\\\u00e4-Vilppula\\\", \\\"elakelaisten_osuus\\\": 39.9, \\\"freshwarea\\\": 122.23, \\\"gml_id\\\": 1601100123, \\\"landarea\\\": 534.85, \\\"namefin\\\": \\\"M\\\\u00e4ntt\\\\u00e4-Vilppula\\\", \\\"nameswe\\\": \\\"M\\\\u00e4ntt\\\\u00e4-Vilppula\\\", \\\"natcode\\\": \\\"508\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 657.08}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[359167.866, 6898883.99], [361387.52, 6896053.702], [361261.513, 6895753.215], [362517.825, 6895281.64], [364024.992, 6895458.903], [364227.643, 6896154.213], [364624.779, 6896018.317], [364473.547, 6895084.276], [364936.019, 6894951.516], [365023.787, 6895762.506], [365526.887, 6894835.041], [365006.984, 6894481.373], [365958.247, 6893853.113], [366668.922, 6894420.74], [366491.486, 6895432.852], [366162.156, 6895374.285], [366021.274, 6896110.715], [369833.795, 6898652.126], [369899.841, 6899481.624], [373009.646, 6897253.956], [374979.752, 6892020.508], [375622.692, 6891614.555], [376079.118, 6890696.812], [378635.147, 6889220.43], [378639.592, 6889208.579], [378170.299, 6886338.911], [378090.986, 6881872.049], [378675.807, 6881952.619], [379201.603, 6881686.702], [379937.168, 6881504.273], [381259.133, 6878840.604], [378854.957, 6876669.718], [378158.968, 6876592.019], [377805.496, 6876213.731], [377334.841, 6876223.901], [377140.199, 6875804.333], [376244.924, 6876305.022], [375397.616, 6875632.581], [374214.18, 6872285.809], [373248.856, 6871152.844], [371925.457, 6871183.601], [371945.79, 6870705.723], [371593.385, 6870608.442], [371971.745, 6870241.597], [371935.277, 6869930.722], [371018.369, 6870175.709], [370958.477, 6869788.211], [371052.307, 6869333.994], [369984.957, 6866558.109], [369007.005, 6868138.442], [368823.439, 6868732.879], [365332.71, 6867324.808], [365474.477, 6866870.594], [363830.782, 6866433.244], [363256.764, 6868776.169], [364141.679, 6869203.928], [362869.972, 6871791.642], [362536.175, 6871428.398], [361481.534, 6871898.645], [360541.834, 6872686.168], [360305.353, 6873062.105], [360295.413, 6873634.649], [359348.674, 6876129.066], [359922.221, 6876148.97], [360162.761, 6876295.908], [360276.654, 6876528.613], [360095.286, 6876839.472], [359648.414, 6876858.491], [359114.666, 6877255.579], [358547.681, 6877459.092], [357710.709, 6878543.261], [357865.454, 6878944.97], [358643.767, 6879386.032], [359453.237, 6878776.153], [359871.494, 6878875.815], [359330.034, 6880419.594], [357422.386, 6881534.596], [359234.076, 6882073.871], [358743.551, 6883359.812], [358121.187, 6883365.565], [358179.304, 6885800.183], [355815.53, 6885768.59], [354997.826, 6887994.15], [353996.454, 6886674.655], [352972.799, 6888020.344], [350673.888, 6886533.412], [349185.14, 6887653.811], [349391.931, 6887870.463], [349493.517, 6888432.292], [349064.717, 6888888.667], [348580.778, 6889983.743], [346889.38, 6890126.146], [345382.816, 6891191.697], [345587.855, 6893890.194], [346283.029, 6895601.541], [347012.654, 6896938.241], [347575.537, 6896591.378], [348167.618, 6897357.202], [349083.798, 6897118.844], [349233.748, 6897682.944], [349750.549, 6898215.699], [350263.748, 6897887.729], [350416.262, 6897414.976], [350809.28, 6897231.949], [351121.105, 6897886.046], [351575.436, 6898333.39], [352411.331, 6899986.972], [351897.633, 6900118.666], [351814.901, 6900400.466], [352004.437, 6901207.282], [352365.202, 6901393.548], [353787.088, 6901304.659], [352935.972, 6903045.425], [353155.041, 6903263.672], [355008.868, 6902437.442], [354845.451, 6903201.325], [355427.217, 6903740.57], [356104.218, 6903369.404], [356360.623, 6903931.432], [356116.354, 6904183.48], [355890.153, 6904007.804], [355159.141, 6904226.449], [355176.866, 6905410.076], [357328.096, 6905317.17], [358082.311, 6906176.708], [359167.866, 6898883.99]]]}}, {\\\"id\\\": \\\"50\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hirvensalmi\\\", \\\"elakelaisten_osuus\\\": 42.4, \\\"freshwarea\\\": 281.31, \\\"gml_id\\\": 1601100149, \\\"landarea\\\": 465.28, \\\"namefin\\\": \\\"Hirvensalmi\\\", \\\"nameswe\\\": \\\"Hirvensalmi\\\", \\\"natcode\\\": \\\"097\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 746.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[491083.087, 6858841.764], [491168.661, 6857515.602], [490900.576, 6856569.983], [490908.079, 6855597.278], [491641.104, 6852180.967], [492144.203, 6851645.288], [492796.436, 6851863.405], [492549.244, 6850480.864], [494236.555, 6850516.363], [494165.586, 6850168.704], [494171.39, 6848908.415], [493875.62, 6848092.705], [494274.462, 6846080.564], [493865.734, 6844951.219], [494301.898, 6844579.945], [494902.713, 6844459.327], [495434.995, 6844656.151], [495511.662, 6845070.184], [496248.516, 6845005.275], [496083.752, 6844725.864], [496292.866, 6843738.077], [496565.438, 6843488.092], [496608.824, 6843029.221], [496400.212, 6842368.588], [496437.452, 6842078.412], [496640.618, 6841669.573], [496519.869, 6841217.556], [496835.744, 6840531.137], [496972.391, 6839958.97], [497145.52, 6839907.593], [497330.743, 6840306.049], [498168.815, 6840864.117], [498204.606, 6841240.707], [499060.835, 6840837.128], [498729.372, 6840374.614], [498754.866, 6839570.141], [497472.79, 6839137.808], [497731.191, 6838059.747], [498403.518, 6837888.221], [498536.266, 6837493.382], [499403.217, 6836994.489], [499571.153, 6836484.296], [499758.882, 6835621.346], [499216.407, 6834844.657], [499460.444, 6834188.414], [500009.293, 6833544.687], [500367.853, 6832655.149], [499750.047, 6832532.693], [499324.371, 6833526.79], [498950.522, 6833566.272], [498799.787, 6832788.186], [498413.945, 6832580.168], [498503.464, 6831383.712], [497690.144, 6831900.338], [497442.151, 6830848.061], [498032.3, 6829176.566], [498435.626, 6829203.017], [498307.009, 6829952.983], [499136.666, 6830146.455], [499424.652, 6829654.856], [499591.389, 6828918.554], [499279.017, 6828584.488], [499801.715, 6827003.929], [500107.482, 6826470.678], [500185.566, 6825916.471], [501032.721, 6826056.219], [501289.522, 6825279.035], [501318.15, 6823435.759], [501076.919, 6823044.735], [500393.398, 6822943.873], [499854.719, 6822633.496], [499617.919, 6822011.445], [499442.898, 6820857.11], [498666.514, 6820836.413], [498423.817, 6820280.736], [498287.679, 6819192.574], [498066.771, 6818863.905], [497452.718, 6819389.589], [497296.529, 6820016.575], [496707.212, 6821110.488], [496332.065, 6820998.531], [496010.584, 6819932.404], [495797.391, 6819787.516], [495869.557, 6820451.348], [493838.087, 6820239.22], [493713.554, 6820255.408], [493572.606, 6820350.324], [493569.884, 6820485.96], [493473.713, 6820567.706], [493284.21, 6821131.714], [492359.34, 6821103.364], [491272.186, 6821039.772], [491625.059, 6821458.048], [491529.782, 6821883.112], [490913.121, 6821977.771], [490689.051, 6823456.398], [489755.23, 6823727.082], [489496.365, 6824521.709], [489491.225, 6825748.864], [488530.409, 6826950.072], [488468.131, 6827507.146], [487842.679, 6827490.778], [487787.91, 6827178.874], [487083.636, 6826727.688], [486683.46, 6825805.955], [486627.795, 6825353.503], [486295.131, 6825297.024], [486292.329, 6825735.047], [485996.141, 6826058.677], [485538.118, 6825793.039], [485252.949, 6826319.503], [484413.283, 6827618.073], [483822.821, 6828106.171], [483625.98, 6827964.38], [481403.041, 6827906.297], [480595.899, 6828081.644], [480551.7, 6828767.368], [480451.924, 6829071.188], [480033.358, 6829596.94], [479366.903, 6829692.161], [478783.56, 6830093.662], [479004.744, 6826593.347], [479150.991, 6822592.462], [478759.814, 6822624.445], [478185.436, 6825472.995], [478584.167, 6826469.795], [477392.468, 6826098.548], [477022.984, 6826661.526], [477019.038, 6827238.11], [476560.54, 6827431.591], [476260.002, 6827931.381], [476476.415, 6828628.505], [476011.363, 6828869.551], [475767.0, 6829576.714], [475134.054, 6830320.108], [473940.725, 6832396.158], [474306.706, 6832530.138], [474311.498, 6832730.575], [474328.644, 6833366.637], [474684.246, 6833832.948], [474599.694, 6834241.122], [474732.572, 6834516.619], [474636.626, 6834962.447], [474345.184, 6834519.289], [474345.907, 6835635.435], [474592.586, 6836128.763], [474336.298, 6836517.815], [474385.255, 6836952.475], [474903.804, 6836831.767], [474847.251, 6838119.344], [475332.61, 6839882.934], [474990.739, 6841361.132], [474035.456, 6843416.178], [474190.648, 6843828.427], [473673.234, 6844207.22], [473076.889, 6845494.244], [472764.665, 6846514.494], [471626.142, 6848619.739], [470355.284, 6850290.599], [469723.416, 6851621.01], [468270.268, 6852508.207], [466646.517, 6852939.703], [467152.875, 6853575.549], [467105.409, 6854258.507], [467297.163, 6854605.62], [467026.881, 6855174.354], [467130.019, 6855732.681], [467487.79, 6856041.929], [467281.67, 6856588.306], [467223.19, 6857187.763], [467850.329, 6858083.904], [469375.514, 6857336.718], [470223.676, 6856464.578], [470893.204, 6856342.632], [471388.2, 6856808.347], [472447.37, 6856745.38], [473096.503, 6857264.474], [473953.253, 6857549.765], [474367.782, 6857971.697], [475532.309, 6858056.471], [475263.126, 6856876.047], [474721.135, 6856126.832], [475420.64, 6855510.609], [476368.686, 6855408.95], [476891.571, 6855907.252], [477522.816, 6855652.959], [477701.042, 6855950.64], [477393.852, 6858126.856], [477930.03, 6858722.618], [479269.288, 6858484.524], [480313.573, 6857053.911], [481768.692, 6855586.916], [480284.814, 6852639.9], [480461.646, 6852057.937], [480940.553, 6851775.955], [481308.611, 6850687.898], [483435.316, 6855450.983], [484817.659, 6854791.46], [486110.53, 6855277.673], [486422.797, 6856256.978], [487282.051, 6855789.274], [488004.156, 6856010.289], [488259.949, 6856473.204], [489055.325, 6856661.033], [489857.596, 6857058.478], [490603.679, 6859256.992], [491083.087, 6858841.764]]]}}, {\\\"id\\\": \\\"51\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Joroinen\\\", \\\"elakelaisten_osuus\\\": 35.3, \\\"freshwarea\\\": 136.63, \\\"gml_id\\\": 1601100290, \\\"landarea\\\": 575.13, \\\"namefin\\\": \\\"Joroinen\\\", \\\"nameswe\\\": \\\"Jorois\\\", \\\"natcode\\\": \\\"171\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 711.76}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[539220.287, 6915339.175], [539876.568, 6914468.605], [538046.313, 6912439.876], [538366.594, 6910397.707], [538747.638, 6910593.53], [540847.892, 6909154.228], [541535.26, 6908285.396], [542498.032, 6907101.472], [542491.517, 6906537.087], [543234.046, 6905450.447], [543759.897, 6905264.121], [544058.106, 6905912.765], [544515.617, 6906323.902], [544913.856, 6906247.536], [545310.973, 6905720.662], [546027.566, 6905265.301], [546579.722, 6905691.287], [546209.941, 6906101.189], [546268.241, 6906808.407], [546949.928, 6906488.753], [547861.061, 6905775.648], [548731.247, 6904333.403], [550208.376, 6903197.985], [552826.871, 6901750.415], [552683.634, 6901264.211], [554199.723, 6900446.553], [554513.792, 6900833.998], [555558.171, 6900263.037], [556736.708, 6898421.692], [556805.285, 6897921.495], [556610.766, 6897680.592], [553425.966, 6897475.152], [553936.263, 6896929.077], [554242.838, 6896967.764], [554475.042, 6896623.135], [554413.167, 6896322.686], [553934.571, 6896222.763], [553653.889, 6895827.222], [554259.048, 6895186.886], [554194.079, 6894731.97], [553481.163, 6893584.51], [556354.164, 6887621.067], [554361.48, 6887211.019], [554447.563, 6886285.708], [554971.966, 6886263.892], [554728.644, 6885749.914], [553725.61, 6886489.964], [553133.891, 6886090.065], [553302.569, 6885876.357], [552973.862, 6885447.924], [551281.044, 6886298.867], [550855.522, 6885778.775], [551724.376, 6884961.512], [552154.408, 6884170.336], [551697.843, 6882976.38], [552645.767, 6882172.561], [552200.414, 6881431.046], [550541.877, 6882833.866], [550110.335, 6883908.467], [549443.011, 6884360.739], [548420.613, 6883700.346], [548864.17, 6881888.137], [549385.665, 6881071.772], [548843.109, 6880161.769], [549009.391, 6879708.097], [547788.313, 6880365.548], [547578.325, 6879907.844], [547008.327, 6879990.796], [546726.239, 6880293.271], [546478.94, 6879901.329], [546806.917, 6878885.442], [545711.06, 6878602.848], [545338.107, 6878987.191], [545054.922, 6878834.65], [546400.205, 6876160.54], [545654.414, 6875206.721], [544568.842, 6876069.964], [543752.579, 6875095.752], [541582.97, 6873070.756], [540266.215, 6874603.801], [539658.552, 6874757.177], [539506.694, 6874273.455], [539018.986, 6874787.344], [536645.735, 6875330.708], [535043.715, 6876740.861], [534937.549, 6876940.414], [534175.036, 6877445.242], [534402.546, 6877665.815], [533465.195, 6878632.77], [533683.384, 6878843.886], [533479.957, 6879055.518], [533144.458, 6878589.504], [532728.549, 6878782.84], [532836.93, 6879319.374], [532199.282, 6879964.704], [532437.997, 6880258.383], [532509.253, 6880464.205], [533396.753, 6881511.176], [532940.204, 6881940.726], [532697.751, 6881907.383], [532084.149, 6882835.227], [532379.697, 6883052.614], [532435.007, 6883282.345], [533051.248, 6883782.642], [533247.478, 6883656.867], [533388.109, 6884049.854], [533728.749, 6884152.911], [533237.914, 6884987.313], [532635.254, 6885796.451], [533454.62, 6886325.842], [532588.86, 6887225.572], [533340.354, 6888140.306], [532907.212, 6888507.764], [533148.227, 6888942.779], [533069.157, 6889236.559], [532465.309, 6889950.333], [532027.171, 6889694.167], [531904.017, 6890293.023], [532090.542, 6890463.955], [532233.285, 6890320.114], [532883.421, 6891073.612], [531346.044, 6891823.902], [530758.966, 6891709.222], [530369.525, 6891537.109], [529510.269, 6890756.743], [529311.429, 6891216.735], [529063.144, 6892230.92], [528534.976, 6893457.965], [528372.009, 6894308.272], [528418.684, 6895470.201], [527767.84, 6896252.779], [526062.923, 6900324.109], [526491.984, 6900492.606], [526967.073, 6900229.621], [527694.983, 6899568.075], [528133.881, 6899973.768], [528461.249, 6899495.666], [529295.509, 6899861.024], [528777.818, 6900429.288], [528972.938, 6900715.173], [528563.503, 6901271.943], [528126.98, 6901664.48], [527267.728, 6902678.66], [526211.243, 6904373.655], [525626.562, 6904890.354], [526526.563, 6905486.27], [526723.448, 6905302.548], [527020.729, 6905733.192], [526910.288, 6906326.468], [527580.555, 6905916.051], [527805.631, 6905471.856], [528517.046, 6905858.278], [528870.916, 6905179.563], [529142.712, 6905837.95], [529523.603, 6905937.144], [530508.999, 6906671.462], [531444.721, 6905350.907], [532788.792, 6905863.228], [533292.893, 6905321.037], [533721.303, 6905695.083], [532804.565, 6906629.898], [532555.466, 6906506.646], [531974.602, 6907105.497], [532893.872, 6907771.43], [532501.981, 6908279.106], [533568.831, 6910060.24], [535897.899, 6911473.723], [534969.05, 6913593.58], [535755.819, 6915394.953], [535793.999, 6916121.358], [539220.287, 6915339.175]]]}}, {\\\"id\\\": \\\"52\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kittil\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 25.6, \\\"freshwarea\\\": 168.17, \\\"gml_id\\\": 1601100433, \\\"landarea\\\": 8094.83, \\\"namefin\\\": \\\"Kittil\\\\u00e4\\\", \\\"nameswe\\\": \\\"Kittil\\\\u00e4\\\", \\\"natcode\\\": \\\"261\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 8263.0}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[439160.589, 7578248.588], [457691.128, 7574162.963], [453310.7, 7554143.617], [458414.887, 7536374.369], [446195.831, 7492281.41], [446932.896, 7480310.392], [440262.56, 7471311.434], [439353.674, 7470839.848], [439523.26, 7470314.48], [434799.407, 7466042.47], [428510.971, 7449194.171], [428225.465, 7449190.611], [407471.426, 7452716.507], [401952.851, 7450100.357], [400821.416, 7452367.021], [400956.601, 7453590.992], [401136.004, 7454261.706], [400979.012, 7454378.048], [400701.02, 7453792.787], [400217.583, 7453588.209], [390932.096, 7472226.897], [389450.491, 7477308.961], [389105.098, 7477747.804], [388964.38, 7478103.18], [388674.902, 7478221.186], [388684.011, 7478392.66], [389146.266, 7478374.415], [386371.183, 7487852.355], [384193.776, 7503812.015], [385399.515, 7503625.564], [383443.489, 7515066.04], [382714.601, 7519149.066], [382449.333, 7520723.918], [381919.688, 7524538.962], [380811.905, 7532636.628], [380314.128, 7536469.729], [380288.908, 7536873.792], [380564.244, 7537118.985], [381452.654, 7537931.685], [381306.226, 7538763.711], [380827.34, 7540054.562], [380542.073, 7540227.834], [380424.342, 7540591.727], [380630.408, 7540867.148], [380829.963, 7540868.011], [380660.778, 7541695.805], [382444.682, 7542078.784], [383085.19, 7544452.224], [383050.239, 7545746.393], [383301.227, 7545991.44], [383322.917, 7546306.567], [383569.929, 7546609.318], [383767.499, 7548115.783], [381885.608, 7549851.053], [382196.687, 7551453.718], [383362.01, 7554116.119], [382081.429, 7556040.319], [380642.156, 7555502.766], [379319.781, 7556014.079], [379350.678, 7556280.78], [379273.568, 7556547.971], [379044.904, 7556949.247], [379097.468, 7557794.67], [380640.947, 7560054.727], [380520.913, 7560256.536], [380159.571, 7560355.615], [379979.483, 7560798.847], [379813.189, 7561172.107], [381943.253, 7561966.502], [394718.448, 7580790.26], [397306.862, 7582384.246], [398732.691, 7583234.635], [399583.4, 7583755.166], [400107.768, 7584070.386], [401534.885, 7584928.284], [402562.307, 7585537.697], [405397.163, 7587244.1], [418947.929, 7588234.057], [439160.589, 7578248.588]]]}}, {\\\"id\\\": \\\"53\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Valkeakoski\\\", \\\"elakelaisten_osuus\\\": 30.7, \\\"freshwarea\\\": 99.99, \\\"gml_id\\\": 1601100313, \\\"landarea\\\": 272.04, \\\"namefin\\\": \\\"Valkeakoski\\\", \\\"nameswe\\\": \\\"Valkeakoski\\\", \\\"natcode\\\": \\\"908\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 372.03}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[340558.652, 6803209.251], [340645.4, 6801601.514], [342672.261, 6804215.259], [343703.273, 6803095.608], [344847.475, 6801602.593], [344070.176, 6800357.842], [343887.731, 6799580.416], [343864.58, 6799108.9], [344003.072, 6798693.03], [344813.241, 6798477.744], [348077.724, 6795534.013], [349818.576, 6795183.317], [350748.82, 6795128.24], [352014.268, 6794029.846], [354164.609, 6792565.666], [354082.071, 6792429.585], [352746.008, 6790185.798], [353116.351, 6789104.767], [354730.834, 6787129.876], [351222.859, 6782799.339], [348333.479, 6782214.452], [345989.535, 6782107.874], [345714.036, 6781569.922], [345843.492, 6780850.757], [346211.674, 6780137.222], [346053.799, 6779868.307], [344416.945, 6780513.189], [341840.976, 6780026.581], [341703.17, 6779586.654], [341227.645, 6779799.543], [340916.594, 6780243.915], [340421.126, 6780308.139], [339722.983, 6780009.856], [339807.335, 6779745.554], [336054.713, 6777952.0], [335752.229, 6778271.54], [335370.812, 6778073.463], [334782.552, 6778623.666], [335283.864, 6778918.678], [334167.366, 6780035.654], [335318.616, 6781242.754], [334991.936, 6781335.098], [334455.719, 6780887.976], [334202.592, 6781268.489], [335376.785, 6782440.274], [334814.401, 6782781.996], [335490.703, 6783964.018], [335862.776, 6783725.251], [336351.045, 6784452.362], [335740.676, 6784462.935], [335667.477, 6784981.32], [336002.039, 6785229.774], [336439.544, 6785860.289], [336519.806, 6787100.617], [335403.46, 6787249.865], [334688.198, 6789286.972], [333757.917, 6789759.788], [332526.816, 6789277.214], [329135.321, 6790976.884], [328743.14, 6790628.314], [328029.104, 6791170.049], [328128.002, 6792265.337], [328844.117, 6792661.711], [330371.372, 6793839.079], [333299.183, 6796909.661], [334831.925, 6798988.563], [337509.613, 6801883.496], [336421.911, 6802631.684], [337216.54, 6803488.529], [338049.756, 6803159.054], [337667.404, 6802673.768], [337878.13, 6802335.515], [339510.521, 6804397.634], [340558.652, 6803209.251]]]}}, {\\\"id\\\": \\\"54\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pelkosenniemi\\\", \\\"elakelaisten_osuus\\\": 43.0, \\\"freshwarea\\\": 45.4, \\\"gml_id\\\": 1601100539, \\\"landarea\\\": 1836.14, \\\"namefin\\\": \\\"Pelkosenniemi\\\", \\\"nameswe\\\": \\\"Pelkosenniemi\\\", \\\"natcode\\\": \\\"583\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1881.54}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[518621.653, 7473682.906], [518560.162, 7473419.541], [519210.187, 7473355.515], [528669.08, 7467994.474], [528617.033, 7468487.238], [533148.707, 7465518.432], [535885.704, 7459163.185], [536305.776, 7459228.818], [536314.636, 7458866.071], [535977.975, 7458949.387], [536573.179, 7457570.242], [536861.351, 7457902.307], [538056.718, 7456859.236], [537269.345, 7455972.184], [538222.882, 7453765.788], [538454.415, 7453657.92], [538598.124, 7453395.22], [538242.166, 7453184.812], [537908.944, 7451205.434], [538542.516, 7451098.721], [541615.945, 7451120.981], [541746.293, 7451259.921], [545054.425, 7450928.096], [547911.111, 7448223.763], [547920.534, 7448048.94], [548197.936, 7447347.103], [548466.512, 7447476.611], [548268.155, 7447959.284], [559024.553, 7444077.628], [547210.414, 7436158.377], [544714.597, 7435811.311], [541652.828, 7434993.63], [540033.755, 7426437.513], [539703.088, 7426618.836], [539466.605, 7426306.568], [539962.068, 7426059.145], [538619.006, 7418935.014], [529735.999, 7427968.457], [529899.708, 7429190.254], [528805.85, 7428943.637], [525481.596, 7432297.638], [517580.329, 7432568.225], [517644.683, 7432289.593], [517347.158, 7432225.369], [516804.252, 7433612.667], [515597.389, 7434221.591], [515255.017, 7435135.171], [514602.317, 7436216.001], [510805.641, 7432907.66], [510845.099, 7432804.215], [506457.122, 7432927.822], [478933.385, 7425099.02], [483410.376, 7430204.143], [483794.347, 7430061.432], [484212.905, 7430603.639], [484018.817, 7430895.424], [489595.754, 7437233.431], [490227.536, 7436305.393], [489867.458, 7435934.454], [490351.971, 7435470.979], [490711.171, 7435876.072], [491326.08, 7434877.667], [491085.465, 7434628.166], [491481.467, 7434262.025], [491888.925, 7434695.2], [491540.313, 7435246.548], [491147.248, 7435846.262], [490234.723, 7436973.261], [490862.618, 7438624.517], [500863.602, 7450001.159], [500385.071, 7450269.981], [501778.152, 7452713.326], [501922.576, 7453962.37], [501327.108, 7454167.94], [501472.01, 7454515.686], [501961.576, 7454258.882], [502244.176, 7456626.462], [502620.29, 7456562.709], [502863.727, 7457091.907], [502575.047, 7457549.732], [502337.747, 7457420.3], [503718.163, 7469030.608], [504804.134, 7470521.582], [510853.322, 7471890.308], [511200.661, 7474003.165], [511167.143, 7475247.097], [509506.022, 7478809.643], [518621.653, 7473682.906]]]}}, {\\\"id\\\": \\\"55\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Loimaa\\\", \\\"elakelaisten_osuus\\\": 34.7, \\\"freshwarea\\\": 3.8, \\\"gml_id\\\": 1601100670, \\\"landarea\\\": 848.13, \\\"namefin\\\": \\\"Loimaa\\\", \\\"nameswe\\\": \\\"Loimaa\\\", \\\"natcode\\\": \\\"430\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 851.93}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[277308.152, 6779151.894], [277814.511, 6776495.121], [278154.907, 6776087.149], [278573.301, 6775864.744], [279415.25, 6775687.155], [279706.988, 6775419.412], [280152.535, 6775747.097], [280428.268, 6775311.529], [280229.793, 6774999.512], [280586.879, 6774590.816], [281328.103, 6774419.726], [281854.099, 6774673.529], [282345.246, 6774309.421], [284781.081, 6771831.81], [286947.939, 6772659.639], [289778.014, 6772814.292], [291954.503, 6772407.834], [292441.396, 6771461.048], [292701.025, 6769465.517], [294311.243, 6768899.488], [295192.437, 6767412.362], [297313.565, 6764512.086], [299342.652, 6763417.689], [299409.838, 6762880.414], [299025.625, 6761930.405], [299511.644, 6761508.394], [299492.785, 6761259.641], [299124.512, 6761180.318], [299032.893, 6760787.027], [298765.779, 6760189.446], [298989.0, 6759904.166], [298970.778, 6759335.116], [297850.937, 6759367.064], [297267.752, 6759756.007], [296908.443, 6759624.339], [297451.456, 6756204.328], [291432.64, 6756923.15], [290933.69, 6756744.368], [290311.611, 6755994.397], [290172.784, 6752274.014], [290129.304, 6751233.0], [290386.608, 6750853.006], [291135.676, 6750674.748], [291469.115, 6750947.219], [291799.465, 6750489.39], [294609.897, 6749724.339], [295059.644, 6749230.72], [293070.053, 6748007.071], [290626.556, 6743768.628], [287986.377, 6740740.086], [287489.901, 6740336.498], [287196.503, 6739209.58], [283433.029, 6735783.936], [279891.021, 6737345.31], [278463.501, 6737971.342], [273540.925, 6743749.107], [273258.18, 6743623.892], [272907.361, 6744453.565], [271519.485, 6746038.621], [269681.115, 6748884.588], [269852.709, 6749169.242], [269332.746, 6749678.537], [272536.435, 6749239.962], [271244.907, 6750496.837], [270297.624, 6753790.496], [270825.138, 6755416.674], [270827.408, 6760961.345], [270756.745, 6761666.39], [270234.312, 6761390.084], [270251.786, 6763214.648], [269720.298, 6763195.854], [269719.065, 6761118.296], [267905.994, 6760155.556], [264370.494, 6759954.756], [264131.843, 6761149.175], [263175.389, 6760872.689], [262926.268, 6761713.269], [262536.479, 6761148.167], [261728.108, 6762641.748], [260943.87, 6764023.99], [260797.574, 6764229.146], [261542.276, 6764518.83], [261906.975, 6766296.309], [260273.288, 6766640.709], [260453.834, 6766992.793], [260228.214, 6767544.723], [261547.886, 6767805.953], [262864.135, 6769538.468], [267534.562, 6768963.192], [267926.313, 6768451.73], [271813.852, 6769496.828], [272558.459, 6770135.186], [272984.656, 6769738.991], [273760.975, 6769282.367], [274472.51, 6771497.022], [274479.942, 6772934.131], [273633.567, 6774623.592], [274526.321, 6774665.245], [274731.774, 6775041.26], [274628.928, 6775778.569], [275333.035, 6776639.634], [275428.343, 6777632.396], [274390.899, 6778778.428], [274959.606, 6781270.399], [277308.152, 6779151.894]]]}}, {\\\"id\\\": \\\"56\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Utaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 37.4, \\\"freshwarea\\\": 65.57, \\\"gml_id\\\": 1601100079, \\\"landarea\\\": 1671.15, \\\"namefin\\\": \\\"Utaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Utaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"889\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1736.72}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[467213.815, 7193549.533], [468376.402, 7192628.189], [468815.623, 7193188.223], [470190.148, 7192104.154], [469737.871, 7191545.615], [468923.148, 7192193.4], [468269.004, 7191446.634], [465801.081, 7193004.18], [466166.644, 7193795.914], [466357.378, 7194024.956], [466489.155, 7194123.819], [467213.815, 7193549.533]]], [[[484067.512, 7201371.061], [484119.141, 7200252.672], [484350.559, 7200179.941], [484576.93, 7199904.956], [483877.178, 7199918.456], [483850.869, 7198905.421], [482977.729, 7199140.003], [483328.194, 7201498.637], [483859.673, 7201626.338], [484067.512, 7201371.061]]], [[[483960.445, 7203194.991], [484976.406, 7203438.889], [485412.04, 7202933.429], [485418.887, 7202411.019], [484746.387, 7202503.742], [485058.026, 7202811.502], [484736.278, 7202974.075], [483736.809, 7202623.376], [483447.245, 7202688.878], [483375.2, 7202801.8], [483649.685, 7203102.423], [483568.932, 7203462.987], [483960.445, 7203194.991]]], [[[503488.449, 7220113.921], [509507.524, 7218968.144], [515503.419, 7218599.02], [512366.127, 7211527.24], [514968.394, 7208139.192], [515212.558, 7207157.508], [516054.102, 7206745.027], [518218.533, 7203942.415], [518601.067, 7202443.564], [517810.522, 7201975.067], [518887.991, 7201332.921], [519169.724, 7199968.623], [517507.176, 7196237.904], [519089.725, 7192382.917], [518648.894, 7191427.506], [518328.386, 7191517.877], [517118.804, 7191004.398], [517550.028, 7189707.345], [517799.928, 7189652.096], [516827.553, 7187548.477], [510130.064, 7189328.663], [509956.969, 7188971.666], [509520.2, 7189056.111], [508762.594, 7189690.243], [507390.372, 7190073.213], [507026.469, 7190106.11], [495636.004, 7181609.164], [494779.158, 7178785.437], [495611.171, 7178262.452], [495764.261, 7178011.049], [495221.191, 7177327.857], [494779.852, 7177248.446], [494939.723, 7176125.05], [494780.254, 7175685.944], [495292.368, 7175495.244], [495417.572, 7175094.301], [495239.252, 7174599.693], [494483.957, 7174872.469], [494218.593, 7174129.23], [494712.061, 7173733.126], [494626.518, 7173444.279], [493321.999, 7173929.834], [492385.043, 7170782.047], [490881.138, 7170436.117], [488315.344, 7169468.94], [487632.484, 7168825.967], [487224.936, 7169655.551], [485964.922, 7169035.1], [486142.545, 7168674.106], [485120.461, 7167934.256], [485852.776, 7167369.231], [485402.749, 7167034.514], [484050.228, 7168604.826], [485162.909, 7169249.053], [484973.379, 7169817.951], [484315.453, 7169263.125], [483809.833, 7169301.474], [483402.288, 7170057.579], [482512.004, 7169167.236], [483398.655, 7168338.623], [483616.229, 7167460.841], [483181.516, 7167163.492], [483436.276, 7166807.934], [481448.606, 7165206.899], [481022.674, 7165374.021], [479568.712, 7162804.243], [479771.851, 7161286.833], [480041.233, 7160983.233], [479858.072, 7160504.241], [478780.585, 7161143.28], [478911.122, 7161438.733], [478654.459, 7161688.066], [477543.531, 7161173.183], [478316.314, 7159553.34], [478262.57, 7159295.134], [474198.204, 7160091.45], [473929.984, 7160143.503], [473543.827, 7161375.485], [475345.693, 7162261.737], [476290.362, 7162663.67], [475534.651, 7163886.813], [475005.007, 7163568.085], [475223.66, 7163333.654], [475055.189, 7163019.841], [474871.223, 7163205.616], [473272.345, 7162238.886], [473110.332, 7162762.344], [475383.906, 7164128.048], [473944.152, 7166435.128], [471879.671, 7165129.04], [471645.124, 7163361.222], [470940.414, 7163141.293], [470858.516, 7162937.522], [470062.755, 7162988.921], [470109.763, 7163405.618], [469551.772, 7163376.701], [469572.745, 7163869.16], [469073.119, 7164089.414], [468888.467, 7163736.56], [468689.875, 7163854.185], [468560.945, 7163552.17], [467418.046, 7164113.353], [467186.653, 7163955.698], [467855.664, 7163509.835], [468384.798, 7163191.643], [468468.528, 7163255.847], [468658.698, 7163153.925], [468114.877, 7162515.844], [467246.674, 7163505.034], [465798.452, 7163835.736], [465761.184, 7164335.216], [466193.75, 7164480.778], [466169.802, 7164624.752], [466772.021, 7164961.864], [466902.765, 7164851.987], [467054.933, 7165174.334], [467647.747, 7165235.653], [467551.989, 7165595.179], [466398.709, 7166159.485], [465999.288, 7166485.63], [465105.115, 7167918.815], [463646.389, 7168423.369], [463627.425, 7168667.688], [463395.602, 7168786.904], [463331.609, 7168981.124], [463092.506, 7168920.878], [462915.231, 7168679.616], [462780.742, 7168758.54], [463047.385, 7169362.018], [465118.927, 7169251.468], [465120.806, 7168630.459], [465733.756, 7168650.02], [465983.396, 7168871.254], [466460.305, 7169039.266], [466650.515, 7169239.177], [466383.882, 7169599.523], [466846.059, 7169940.324], [466964.458, 7170315.65], [467207.465, 7170215.28], [467667.242, 7169556.767], [468293.703, 7169893.212], [469489.989, 7167397.191], [470786.788, 7170620.528], [470306.648, 7170912.177], [469821.212, 7170707.893], [469763.065, 7170883.168], [469858.548, 7170941.258], [469407.889, 7171863.177], [470352.418, 7172572.258], [469709.911, 7173664.702], [469120.167, 7173284.538], [468332.96, 7174581.547], [468865.418, 7175106.651], [468601.716, 7175371.825], [469203.0, 7175745.238], [468872.17, 7176305.068], [469245.28, 7176525.222], [468950.294, 7177085.603], [468202.037, 7176974.399], [467867.503, 7177675.419], [468370.747, 7178189.653], [468112.209, 7178680.869], [466037.038, 7177332.289], [464620.357, 7179517.124], [466277.657, 7180696.208], [465686.337, 7181178.706], [465995.842, 7181389.843], [463954.676, 7185057.206], [461226.595, 7188410.596], [461034.372, 7189144.095], [461823.564, 7190800.14], [461479.948, 7191223.943], [461686.824, 7191417.27], [462534.294, 7190590.399], [463237.637, 7188584.687], [463503.205, 7188751.08], [463060.869, 7190446.759], [462829.27, 7193724.661], [462810.965, 7194848.949], [462224.392, 7195745.166], [461659.305, 7195917.362], [461373.295, 7196641.359], [461022.072, 7196536.98], [460563.103, 7196159.869], [460237.259, 7195191.222], [459312.283, 7195356.884], [459557.909, 7195637.101], [460003.547, 7195533.694], [460206.842, 7196405.444], [461365.022, 7197437.859], [463264.563, 7195279.722], [462947.131, 7194764.728], [463520.031, 7194441.414], [464841.681, 7188947.466], [467314.872, 7187412.374], [470216.607, 7185639.942], [473656.558, 7187499.15], [473659.109, 7188508.431], [473687.66, 7189156.271], [473045.926, 7189856.211], [471272.134, 7191252.664], [471893.398, 7193557.487], [471302.173, 7194051.805], [470825.235, 7194914.815], [470553.5, 7195327.617], [470667.816, 7195480.533], [470992.982, 7195373.86], [471179.627, 7194844.033], [471748.255, 7193931.586], [472900.206, 7193073.71], [472836.461, 7192794.205], [474318.697, 7192016.92], [474792.617, 7193751.726], [475245.356, 7193985.954], [475630.272, 7193848.165], [475723.81, 7193335.32], [476284.444, 7192886.745], [476055.556, 7192040.503], [477094.633, 7191754.258], [477842.145, 7193155.706], [479200.446, 7198155.58], [479907.349, 7198014.411], [480084.818, 7197558.095], [480318.462, 7197616.784], [480974.68, 7197269.048], [481043.445, 7197523.488], [481471.919, 7197407.787], [481549.587, 7197095.068], [482570.677, 7196524.689], [483975.656, 7196420.516], [484724.666, 7199129.238], [484634.194, 7199386.685], [484699.471, 7199822.089], [484863.342, 7199956.938], [485030.403, 7199847.128], [484991.917, 7199525.36], [485062.106, 7199180.203], [489060.395, 7203209.791], [488905.238, 7203393.428], [489185.771, 7203676.045], [488875.547, 7203985.017], [489212.055, 7204161.91], [488615.371, 7204851.929], [487687.552, 7207375.227], [485310.087, 7206136.857], [484869.946, 7207406.204], [485520.896, 7208147.746], [484671.702, 7208103.549], [484698.533, 7208266.135], [485848.322, 7208527.126], [486526.606, 7209301.121], [486108.712, 7210049.838], [485547.498, 7209948.22], [484909.749, 7210070.683], [484484.313, 7209919.485], [483946.324, 7210095.09], [481673.172, 7214525.888], [482498.577, 7216433.498], [482433.139, 7216885.53], [482511.559, 7217793.069], [482451.614, 7218233.329], [483177.126, 7218273.313], [483051.779, 7218599.301], [482511.286, 7218447.031], [482550.406, 7219321.807], [495227.937, 7218716.364], [500220.485, 7220360.008], [503488.449, 7220113.921]]]]}}, {\\\"id\\\": \\\"57\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ruovesi\\\", \\\"elakelaisten_osuus\\\": 41.7, \\\"freshwarea\\\": 173.18, \\\"gml_id\\\": 1601100445, \\\"landarea\\\": 776.98, \\\"namefin\\\": \\\"Ruovesi\\\", \\\"nameswe\\\": \\\"Ruovesi\\\", \\\"natcode\\\": \\\"702\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 950.16}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[335851.273, 6898435.948], [336410.226, 6897371.766], [337233.164, 6895617.757], [337458.771, 6895964.05], [338069.907, 6895869.608], [338880.069, 6894510.952], [339400.132, 6894159.091], [342499.175, 6893025.99], [345382.816, 6891191.697], [346889.38, 6890126.146], [348580.778, 6889983.743], [349064.717, 6888888.667], [349493.517, 6888432.292], [349391.931, 6887870.463], [349185.14, 6887653.811], [350673.888, 6886533.412], [352972.799, 6888020.344], [353996.454, 6886674.655], [354997.826, 6887994.15], [355815.53, 6885768.59], [358179.304, 6885800.183], [358121.187, 6883365.565], [358743.551, 6883359.812], [359234.076, 6882073.871], [357422.386, 6881534.596], [359330.034, 6880419.594], [359871.494, 6878875.815], [359453.237, 6878776.153], [358643.767, 6879386.032], [357865.454, 6878944.97], [357710.709, 6878543.261], [358547.681, 6877459.092], [359114.666, 6877255.579], [359648.414, 6876858.491], [360095.286, 6876839.472], [360276.654, 6876528.613], [360162.761, 6876295.908], [359922.221, 6876148.97], [359348.674, 6876129.066], [360295.413, 6873634.649], [360305.353, 6873062.105], [360541.834, 6872686.168], [361481.534, 6871898.645], [362536.175, 6871428.398], [362869.972, 6871791.642], [364141.679, 6869203.928], [363256.764, 6868776.169], [363830.782, 6866433.244], [365474.477, 6866870.594], [366148.922, 6864709.746], [365647.195, 6864617.84], [364529.906, 6865031.296], [363137.237, 6862453.019], [364076.592, 6861744.2], [363795.749, 6861227.621], [361287.214, 6862377.66], [358535.554, 6860844.886], [356912.783, 6860331.778], [353977.939, 6857778.959], [347999.011, 6856975.794], [346626.256, 6854536.218], [345820.889, 6854665.704], [341807.049, 6854120.846], [336661.298, 6857626.5], [334465.339, 6859985.051], [333635.516, 6859974.828], [333534.832, 6860020.984], [333489.016, 6860123.517], [333362.883, 6860238.188], [333450.61, 6860252.862], [333492.174, 6860319.582], [333511.168, 6860481.333], [333473.286, 6860574.76], [333392.324, 6860647.88], [333399.63, 6860750.889], [333385.062, 6860843.35], [335413.736, 6862438.794], [336186.401, 6863327.992], [335978.108, 6864735.523], [335334.055, 6865909.718], [334979.358, 6866573.508], [334244.239, 6870678.845], [334488.264, 6872577.906], [332941.285, 6875024.524], [331396.14, 6874640.307], [331123.206, 6878392.423], [330891.696, 6878759.652], [330767.873, 6878737.852], [330433.296, 6879280.674], [330524.098, 6879326.954], [330375.138, 6879499.419], [328866.188, 6882142.386], [327262.562, 6882065.73], [327028.599, 6887263.14], [326732.219, 6887251.882], [326675.837, 6888024.827], [328341.363, 6888940.497], [330297.41, 6887580.743], [330622.887, 6887822.548], [331076.893, 6887900.327], [331609.344, 6888155.42], [332205.534, 6888237.195], [332297.748, 6888568.876], [332274.053, 6888999.717], [332427.01, 6889306.606], [332853.741, 6890729.143], [333625.22, 6891345.126], [334889.439, 6891252.703], [336586.275, 6892485.493], [334426.904, 6897386.605], [334884.316, 6898502.558], [335851.273, 6898435.948]]]}}, {\\\"id\\\": \\\"58\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lahti\\\", \\\"elakelaisten_osuus\\\": 28.2, \\\"freshwarea\\\": 58.14, \\\"gml_id\\\": 1601100612, \\\"landarea\\\": 459.5, \\\"namefin\\\": \\\"Lahti\\\", \\\"nameswe\\\": \\\"Lahtis\\\", \\\"natcode\\\": \\\"398\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 517.64}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[440997.904, 6772118.9], [441862.853, 6771933.286], [442627.871, 6771152.621], [445626.315, 6772778.394], [446535.754, 6771133.373], [447598.506, 6773765.925], [448838.598, 6774406.185], [448550.461, 6773623.866], [451835.294, 6771641.149], [451672.807, 6768825.894], [451553.733, 6768545.944], [452481.207, 6768239.995], [452343.708, 6767809.405], [452531.368, 6767244.204], [453144.291, 6766188.173], [452478.774, 6763996.748], [452204.899, 6761389.198], [449989.709, 6759953.244], [449472.457, 6760199.114], [449251.573, 6760789.862], [449480.745, 6761169.363], [449254.752, 6761528.176], [448466.122, 6761247.198], [448568.524, 6760574.34], [448153.855, 6760150.536], [449069.101, 6756033.111], [454954.81, 6755206.326], [454465.813, 6754038.089], [453348.47, 6752760.689], [452400.055, 6752871.232], [451298.191, 6750671.083], [450385.083, 6751074.825], [450282.973, 6751562.577], [448535.187, 6751852.781], [446556.038, 6752524.285], [444554.774, 6754732.653], [443880.837, 6754964.956], [443608.411, 6755274.271], [443090.809, 6755286.53], [442765.48, 6753629.484], [441307.732, 6750645.811], [439026.879, 6751331.536], [436316.515, 6751884.39], [435739.649, 6751785.921], [433665.497, 6751270.299], [433900.044, 6754371.239], [433739.951, 6754884.043], [432032.652, 6753845.736], [431728.972, 6754385.914], [431080.766, 6756166.942], [430197.954, 6754643.909], [429679.533, 6754117.629], [429323.472, 6754291.859], [427513.404, 6752972.506], [427239.046, 6753149.144], [427180.355, 6753111.791], [426430.649, 6753580.911], [426791.589, 6754013.117], [426036.481, 6754514.319], [425370.392, 6755812.455], [424615.26, 6755663.279], [424478.691, 6756125.745], [424246.021, 6756064.071], [424042.136, 6755390.856], [422808.404, 6755884.524], [422919.781, 6756302.144], [422574.274, 6756511.431], [422224.907, 6756052.941], [421760.237, 6756264.151], [422065.988, 6757075.317], [421892.348, 6757431.476], [422122.357, 6758258.946], [422622.087, 6759122.276], [422096.438, 6759326.524], [422254.57, 6759670.294], [421613.033, 6760999.187], [421051.555, 6763473.657], [422830.833, 6763827.972], [423450.379, 6765148.488], [423065.411, 6765648.562], [423122.179, 6765975.909], [424080.586, 6766492.918], [424280.986, 6766915.822], [423869.148, 6767090.014], [423924.086, 6767421.372], [423571.505, 6767953.906], [424213.487, 6768012.657], [424345.896, 6767384.381], [425337.251, 6767700.947], [425563.006, 6767245.938], [426061.69, 6767078.327], [426474.579, 6767440.579], [426614.543, 6766572.986], [427228.407, 6766893.336], [427874.5, 6766427.948], [428550.014, 6766895.166], [428955.376, 6766488.344], [429658.53, 6767530.428], [430516.623, 6766807.887], [432532.963, 6766959.261], [433369.04, 6767026.151], [435614.594, 6767948.94], [436402.693, 6769081.163], [431479.291, 6770761.925], [430993.792, 6770806.644], [432361.32, 6772943.559], [432707.078, 6773276.029], [434407.88, 6774122.311], [438438.634, 6774760.005], [440997.904, 6772118.9]]]}}, {\\\"id\\\": \\\"59\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Oulainen\\\", \\\"elakelaisten_osuus\\\": 30.7, \\\"freshwarea\\\": 9.72, \\\"gml_id\\\": 1601100213, \\\"landarea\\\": 587.82, \\\"namefin\\\": \\\"Oulainen\\\", \\\"nameswe\\\": \\\"Oulainen\\\", \\\"natcode\\\": \\\"563\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 597.54}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[387724.863, 7140084.26], [388316.346, 7140809.257], [388806.172, 7139966.393], [388436.176, 7139855.003], [387869.239, 7139325.387], [387419.924, 7139470.277], [386225.342, 7139159.085], [385701.487, 7139305.76], [385688.611, 7139667.125], [385421.215, 7139956.309], [385346.611, 7140328.59], [385963.016, 7140202.344], [386263.267, 7140645.522], [386861.714, 7140775.299], [386693.361, 7141215.378], [386849.447, 7141294.418], [387724.863, 7140084.26]]], [[[395453.152, 7141526.964], [396860.288, 7141532.662], [398198.206, 7141785.062], [398781.784, 7141120.708], [398656.908, 7141012.165], [398867.273, 7140773.444], [399053.803, 7140809.485], [399322.919, 7140505.428], [399250.298, 7140440.951], [399433.396, 7140230.394], [399509.762, 7140293.474], [402326.205, 7137080.61], [403166.928, 7137057.82], [403297.782, 7137297.318], [403650.411, 7137017.99], [403842.465, 7136988.727], [403965.624, 7137137.434], [404079.282, 7137144.526], [404374.974, 7137262.275], [404504.114, 7137257.956], [404614.942, 7137293.068], [404615.755, 7137448.477], [404665.802, 7137565.963], [404795.801, 7137540.465], [404818.848, 7136996.35], [404995.346, 7136858.538], [405118.088, 7136865.856], [405300.142, 7136811.699], [405368.518, 7136749.323], [408110.315, 7136306.538], [408288.977, 7136195.48], [410794.93, 7134244.453], [412986.623, 7134009.983], [412011.279, 7133411.913], [412256.298, 7133061.933], [413153.288, 7133717.67], [413338.867, 7133532.386], [413085.589, 7132979.09], [412602.992, 7132689.943], [412943.368, 7132543.933], [412832.492, 7132206.416], [412467.457, 7132457.35], [412287.083, 7131826.121], [412342.829, 7131597.129], [412559.132, 7131636.641], [413145.304, 7131236.787], [413280.051, 7131299.822], [413197.95, 7131891.125], [413364.233, 7131985.017], [414785.77, 7131309.562], [415404.57, 7131350.946], [415612.426, 7129754.505], [415758.456, 7129465.787], [415751.492, 7128973.014], [414592.667, 7128845.686], [414585.358, 7128431.228], [413739.047, 7128351.639], [414201.491, 7128832.205], [414337.419, 7129328.392], [413525.4, 7129640.172], [413621.721, 7129987.953], [413178.911, 7130205.15], [413393.48, 7130751.39], [412800.27, 7130590.981], [412412.839, 7130076.675], [412109.654, 7129860.303], [411722.078, 7129410.705], [411959.816, 7129233.028], [411614.184, 7129077.795], [411653.612, 7127865.561], [411390.819, 7126018.226], [411286.587, 7125807.483], [411261.048, 7125188.48], [410287.658, 7124669.043], [410560.796, 7124034.406], [409454.033, 7123127.446], [408707.787, 7123265.156], [408630.496, 7123090.345], [408956.066, 7122719.884], [407189.441, 7121468.34], [407083.916, 7121277.406], [406742.102, 7121456.401], [406585.189, 7121178.323], [406958.581, 7120982.531], [405409.09, 7117751.303], [400352.008, 7113773.541], [399467.364, 7115428.934], [398965.831, 7115149.903], [397625.775, 7115847.214], [396150.24, 7115313.066], [396558.298, 7113452.457], [396757.38, 7113148.424], [397706.921, 7114349.107], [398573.792, 7112876.047], [398547.342, 7112354.515], [398753.47, 7111889.69], [398706.949, 7111260.53], [398010.991, 7110887.267], [397308.226, 7111227.548], [392464.69, 7113564.625], [390810.116, 7114726.253], [389481.676, 7116257.847], [389658.143, 7116387.387], [389139.995, 7116991.372], [388950.576, 7116906.794], [387793.687, 7118269.548], [385273.397, 7118697.454], [382899.505, 7119849.311], [382543.364, 7120022.976], [383437.403, 7121969.216], [382835.682, 7123069.109], [383112.163, 7123236.59], [383085.433, 7123797.891], [383477.143, 7123704.016], [383470.816, 7124007.431], [383149.835, 7124529.478], [382533.228, 7124646.444], [381794.718, 7124157.384], [381350.203, 7124206.099], [381375.488, 7124746.594], [381707.302, 7124536.945], [381958.554, 7124655.961], [381402.658, 7125666.142], [381665.42, 7126750.935], [380391.303, 7128512.533], [380835.556, 7130247.002], [382735.947, 7130178.663], [382741.419, 7130949.214], [382908.332, 7131018.138], [383086.519, 7130844.901], [383174.579, 7130617.675], [383799.841, 7131105.705], [384368.003, 7130807.78], [384705.995, 7129693.643], [387111.716, 7131206.026], [386586.568, 7133455.816], [387120.741, 7134144.81], [386903.325, 7134619.119], [387052.434, 7134882.43], [387396.9, 7134503.554], [388986.396, 7136551.184], [388556.972, 7136928.296], [388579.489, 7137242.57], [388993.814, 7137699.516], [389383.641, 7137860.028], [389582.0, 7137694.731], [389016.164, 7136987.62], [389149.881, 7136760.159], [390965.747, 7139070.177], [391053.732, 7139254.63], [395589.135, 7140143.869], [395509.596, 7140945.884], [393746.123, 7140314.3], [393726.336, 7140926.876], [393695.258, 7141396.773], [393910.602, 7141565.258], [394215.475, 7142086.455], [394483.839, 7142467.758], [394731.54, 7142223.694], [395348.722, 7142588.983], [395453.152, 7141526.964]], [[388288.333, 7123824.356], [387683.683, 7123366.242], [387017.8, 7123333.295], [386789.544, 7123909.575], [386844.265, 7124606.67], [387156.331, 7124900.108], [386735.737, 7125288.343], [386843.369, 7125635.489], [387152.879, 7125443.912], [387214.778, 7125768.843], [387522.528, 7125953.539], [388288.333, 7123824.356]]]]}}, {\\\"id\\\": \\\"60\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kouvola\\\", \\\"elakelaisten_osuus\\\": 32.9, \\\"freshwarea\\\": 325.62, \\\"gml_id\\\": 1601100468, \\\"landarea\\\": 2557.67, \\\"namefin\\\": \\\"Kouvola\\\", \\\"nameswe\\\": \\\"Kouvola\\\", \\\"natcode\\\": \\\"286\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2883.29}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[480796.742, 6794311.385], [481228.794, 6792286.561], [482131.206, 6790934.765], [482347.689, 6789964.483], [480120.975, 6787463.909], [481801.4, 6785877.967], [486331.738, 6788397.578], [486618.817, 6789015.229], [487146.898, 6789500.836], [487328.018, 6790493.833], [487841.802, 6791606.684], [487768.626, 6792454.838], [488300.007, 6792880.069], [492083.258, 6794395.281], [493633.327, 6794561.122], [493460.602, 6793775.142], [494457.122, 6789980.394], [494140.351, 6789797.867], [494598.87, 6788985.101], [495744.612, 6787935.336], [495777.403, 6787284.701], [496065.187, 6787116.471], [496213.633, 6786184.652], [495275.032, 6783192.165], [496588.704, 6782277.246], [498212.85, 6781650.712], [500163.065, 6780579.361], [501232.334, 6780196.324], [501677.656, 6779725.218], [502998.421, 6779674.447], [504518.1, 6780163.157], [505183.83, 6780093.989], [506001.296, 6780384.176], [506504.587, 6781106.384], [507084.654, 6780734.539], [507918.613, 6780974.946], [508971.588, 6780730.852], [511075.037, 6780901.795], [511270.26, 6780739.262], [511167.175, 6780126.015], [511753.683, 6778711.194], [510068.582, 6776287.065], [509992.52, 6775260.88], [509524.513, 6774712.099], [509861.339, 6774329.548], [510253.522, 6774117.043], [510877.666, 6774673.322], [511507.114, 6774308.073], [511983.826, 6773705.919], [512322.995, 6772856.064], [511453.147, 6772797.284], [509979.247, 6772385.842], [509379.696, 6771518.39], [508715.271, 6770768.291], [508250.36, 6770683.023], [508078.633, 6770304.276], [508169.604, 6769334.17], [507931.81, 6768132.456], [508143.328, 6767705.53], [508620.45, 6765887.47], [508325.074, 6765363.382], [508000.507, 6765164.96], [507664.749, 6764433.656], [507631.866, 6763970.443], [508744.221, 6763317.014], [509017.815, 6762770.437], [509373.972, 6762575.318], [510310.987, 6763265.942], [510434.034, 6763656.185], [511207.832, 6762772.65], [511283.371, 6761946.395], [511772.076, 6761350.446], [511546.767, 6761109.919], [511506.827, 6760424.102], [511865.79, 6759443.801], [513081.494, 6759824.753], [513443.35, 6759506.184], [513085.502, 6758743.791], [512699.358, 6758714.301], [512028.333, 6758383.332], [511497.752, 6757863.84], [510572.929, 6757452.003], [510232.566, 6757559.458], [510013.857, 6757328.05], [509438.09, 6757313.653], [509124.014, 6757690.199], [508264.863, 6757575.341], [507694.189, 6758127.314], [507520.854, 6758726.77], [507007.859, 6759106.814], [506555.544, 6758785.742], [507372.925, 6757364.722], [508709.098, 6755740.188], [509994.189, 6754423.729], [511567.171, 6752118.872], [513601.545, 6751574.91], [515033.378, 6751323.315], [516535.076, 6750975.267], [517167.724, 6750607.32], [518399.63, 6750327.242], [519048.471, 6750045.86], [520230.1, 6749366.643], [520959.512, 6748504.497], [521260.396, 6747745.906], [523282.6, 6745336.095], [520544.407, 6744854.672], [519266.828, 6744016.503], [519482.079, 6743731.272], [518980.951, 6743342.939], [518871.015, 6742507.525], [518198.469, 6742438.568], [516871.402, 6742843.462], [515916.386, 6742996.792], [514782.157, 6740990.493], [514221.986, 6740633.433], [514231.986, 6739970.001], [514693.504, 6739538.879], [514850.344, 6739092.161], [514567.092, 6738109.072], [513503.382, 6738014.356], [513002.196, 6737655.083], [512657.381, 6737810.754], [512644.807, 6737216.011], [512268.524, 6736482.851], [512275.726, 6736120.852], [511067.689, 6736128.226], [507155.652, 6737848.998], [506789.099, 6737940.158], [506684.696, 6737393.253], [507039.468, 6736871.018], [506412.945, 6736525.914], [506589.729, 6735994.927], [506915.992, 6735642.833], [506765.805, 6735178.959], [507038.377, 6734714.202], [506034.096, 6733820.047], [506391.816, 6733355.516], [506829.211, 6732543.328], [506713.89, 6732123.21], [507248.225, 6731241.845], [506497.591, 6730755.482], [506164.978, 6729659.968], [506129.947, 6729593.141], [506099.515, 6729452.007], [506001.177, 6729139.605], [505632.233, 6727767.256], [504554.073, 6726573.228], [503702.205, 6726229.196], [503493.539, 6726653.889], [502774.254, 6726131.31], [502280.186, 6727068.909], [495742.236, 6723645.134], [494211.758, 6722580.35], [493550.526, 6722289.161], [492534.735, 6722489.773], [491969.862, 6722869.814], [491265.349, 6722591.92], [490627.206, 6722725.561], [490560.53, 6723234.255], [491310.925, 6723488.859], [491303.424, 6724081.42], [490525.142, 6723661.083], [489240.454, 6725152.07], [488819.02, 6725893.868], [488066.921, 6726441.34], [487551.129, 6726674.642], [486715.567, 6726592.766], [486365.31, 6726358.658], [486651.099, 6725652.346], [486481.57, 6725238.112], [485847.931, 6724530.092], [486556.547, 6723986.817], [486429.602, 6723463.285], [486588.578, 6723027.473], [486845.937, 6722755.616], [486861.733, 6722371.271], [486329.352, 6721683.244], [486581.353, 6721171.752], [487126.234, 6720867.48], [487377.086, 6720566.538], [488044.166, 6720310.012], [488171.819, 6719447.961], [488320.063, 6718757.141], [487991.3, 6718143.685], [488190.821, 6717765.64], [488121.751, 6717246.576], [487718.517, 6716997.245], [487787.393, 6716351.506], [487152.854, 6715625.993], [486511.377, 6715554.71], [486508.294, 6715561.273], [482653.225, 6723766.967], [480813.865, 6724119.206], [478291.188, 6723244.933], [477973.473, 6722914.56], [477933.466, 6722243.963], [477789.978, 6721786.969], [477799.487, 6721389.445], [477150.218, 6720959.217], [476977.992, 6719981.479], [476262.645, 6719264.126], [474886.715, 6715538.614], [474758.328, 6717759.786], [474731.373, 6717785.985], [473286.842, 6718220.613], [471708.858, 6717995.3], [471636.296, 6719934.103], [470378.484, 6722709.768], [468908.569, 6723888.276], [467343.597, 6724342.132], [464312.711, 6725246.074], [465138.786, 6726002.731], [463855.781, 6726862.312], [463148.947, 6729190.057], [463515.285, 6730882.573], [461845.446, 6733023.196], [461849.399, 6735056.552], [462123.921, 6735514.3], [465911.79, 6736341.409], [465591.364, 6737198.931], [467154.579, 6738367.91], [466285.812, 6740873.678], [466200.093, 6741287.426], [467242.312, 6741907.138], [468020.549, 6742041.189], [468927.897, 6742464.818], [469346.412, 6742887.586], [470231.717, 6742485.492], [471327.172, 6743280.385], [470952.551, 6743807.487], [472105.668, 6744017.877], [473441.11, 6745133.465], [470677.405, 6748823.155], [470888.288, 6749233.451], [471204.223, 6749223.624], [471467.482, 6749045.473], [472362.524, 6748798.791], [472657.557, 6748780.772], [472823.446, 6748706.482], [473034.053, 6748743.988], [474679.123, 6748600.897], [474945.368, 6748602.566], [475299.528, 6749932.349], [474942.337, 6755214.215], [474822.522, 6755929.995], [475134.653, 6756121.851], [474114.992, 6757342.122], [473734.364, 6757955.521], [473955.913, 6758492.584], [473791.312, 6759904.596], [473364.59, 6759954.864], [473207.48, 6760355.137], [472702.897, 6761851.318], [473201.22, 6763979.869], [470818.041, 6764492.036], [470413.303, 6764845.289], [468807.256, 6764268.008], [467832.85, 6764751.403], [467632.831, 6765181.927], [466839.051, 6766033.176], [466245.392, 6766072.754], [466153.13, 6765816.957], [465145.039, 6765472.887], [464639.057, 6763016.282], [464240.506, 6763286.482], [464142.075, 6762916.549], [463817.09, 6762980.13], [463463.845, 6763552.382], [463068.213, 6763248.589], [462919.849, 6763877.362], [462430.144, 6763377.659], [461383.968, 6764434.971], [460305.906, 6764308.612], [459438.244, 6767467.524], [460459.918, 6770786.289], [462858.51, 6774862.664], [461269.325, 6774930.211], [460751.983, 6774599.446], [460403.768, 6774765.026], [459920.876, 6774748.233], [459860.465, 6775512.088], [458825.647, 6777491.653], [458764.596, 6777509.207], [460650.401, 6779663.392], [460749.756, 6781163.186], [464915.473, 6782309.266], [466960.144, 6783898.544], [467575.586, 6786743.196], [469471.648, 6789352.951], [469375.013, 6790419.76], [469145.508, 6790937.15], [469646.027, 6791385.544], [470148.17, 6791472.946], [470177.082, 6792185.906], [471431.322, 6792215.237], [472321.193, 6792427.136], [473473.461, 6792950.611], [473923.367, 6793440.746], [474163.556, 6793167.891], [474912.594, 6793200.371], [475058.303, 6793576.698], [475851.116, 6793726.835], [476496.82, 6793001.94], [479477.555, 6794821.737], [480126.503, 6795433.237], [480335.594, 6794872.001], [480796.742, 6794311.385]]]}}, {\\\"id\\\": \\\"61\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Raahe\\\", \\\"elakelaisten_osuus\\\": 29.8, \\\"freshwarea\\\": 12.82, \\\"gml_id\\\": 1601100411, \\\"landarea\\\": 1015.43, \\\"namefin\\\": \\\"Raahe\\\", \\\"nameswe\\\": \\\"Brahestad\\\", \\\"natcode\\\": \\\"678\\\", \\\"seawarea\\\": 860.72, \\\"totalarea\\\": 1888.97}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[384247.443, 7186595.85], [385300.806, 7185653.948], [386047.625, 7185881.966], [386163.973, 7186239.966], [386899.716, 7186656.658], [387378.528, 7186635.993], [387801.466, 7186547.979], [387906.439, 7186308.874], [387544.828, 7186138.757], [388180.414, 7185927.426], [388441.546, 7185741.264], [388890.819, 7184942.223], [388639.567, 7184823.207], [388322.195, 7185319.106], [388142.829, 7185078.539], [388726.942, 7184041.171], [388851.793, 7184271.679], [389184.314, 7184030.8], [389027.914, 7183762.075], [389353.656, 7182846.225], [389572.125, 7183178.061], [391400.128, 7180444.756], [390853.335, 7180262.423], [391853.25, 7178473.526], [392055.432, 7178013.385], [393417.96, 7174222.454], [393205.314, 7174103.317], [393318.202, 7173664.498], [393896.044, 7173675.406], [394417.346, 7173756.007], [395007.282, 7173390.811], [394590.353, 7172853.289], [394843.521, 7172689.518], [395022.106, 7172922.986], [395393.432, 7172654.781], [394417.617, 7171373.578], [391626.297, 7164350.758], [396418.168, 7161922.903], [398336.735, 7160934.169], [400714.759, 7160678.18], [403595.649, 7159409.427], [407944.738, 7156167.948], [410703.73, 7152332.094], [411291.109, 7152531.0], [410889.439, 7152064.504], [411413.917, 7151340.041], [411800.775, 7151100.125], [415252.818, 7150181.06], [415463.09, 7150056.432], [415918.611, 7150188.174], [415817.208, 7149837.336], [416149.933, 7149631.461], [416742.271, 7150131.639], [417107.603, 7149914.032], [417202.672, 7149655.746], [416808.96, 7149206.607], [423743.472, 7144896.278], [423888.317, 7144446.071], [424122.588, 7144634.584], [424470.4, 7144319.003], [423921.136, 7144295.5], [425799.694, 7138315.664], [424749.226, 7139462.176], [423658.044, 7139590.133], [416123.35, 7133707.455], [415004.996, 7133796.942], [415047.572, 7133366.955], [414439.604, 7133144.261], [414161.154, 7133009.405], [414119.822, 7133232.117], [414182.958, 7133400.057], [414379.192, 7133331.011], [414604.498, 7133456.383], [414500.93, 7133756.186], [414249.635, 7133698.992], [414061.779, 7134187.282], [413847.312, 7133920.912], [412986.623, 7134009.983], [410794.93, 7134244.453], [408288.977, 7136195.48], [408110.315, 7136306.538], [405368.518, 7136749.323], [405300.142, 7136811.699], [405118.088, 7136865.856], [404995.346, 7136858.538], [404818.848, 7136996.35], [404795.801, 7137540.465], [404665.802, 7137565.963], [404615.755, 7137448.477], [404614.942, 7137293.068], [404504.114, 7137257.956], [404374.974, 7137262.275], [404079.282, 7137144.526], [403965.624, 7137137.434], [403842.465, 7136988.727], [403650.411, 7137017.99], [403297.782, 7137297.318], [403166.928, 7137057.82], [402326.205, 7137080.61], [399509.762, 7140293.474], [399433.396, 7140230.394], [399250.298, 7140440.951], [399322.919, 7140505.428], [399053.803, 7140809.485], [398867.273, 7140773.444], [398656.908, 7141012.165], [398781.784, 7141120.708], [398198.206, 7141785.062], [397674.958, 7142382.101], [394794.906, 7147092.35], [394539.466, 7147361.864], [393531.722, 7148421.584], [391343.425, 7150731.837], [390826.488, 7150672.896], [390689.697, 7151231.353], [390357.663, 7151147.18], [390452.17, 7151663.887], [389835.358, 7152313.764], [389498.93, 7152667.248], [389040.91, 7152411.399], [389180.991, 7152811.575], [388572.573, 7152863.668], [388403.031, 7152412.397], [388116.469, 7152812.495], [387547.384, 7152951.969], [384681.508, 7153191.646], [383492.515, 7153288.977], [378434.164, 7155243.487], [378176.447, 7154992.307], [377733.239, 7155081.979], [377749.852, 7155506.183], [374927.178, 7156598.412], [374198.207, 7156873.707], [372354.853, 7157665.648], [372434.018, 7158129.626], [372392.352, 7158391.415], [372071.989, 7158397.524], [371948.675, 7158613.373], [371436.648, 7158639.452], [371190.892, 7158433.986], [371201.078, 7158159.342], [341837.983, 7171207.978], [348972.143, 7174943.735], [350566.49, 7181198.816], [350905.179, 7182387.516], [355123.285, 7195769.413], [384247.443, 7186595.85]]]}}, {\\\"id\\\": \\\"62\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Askola\\\", \\\"elakelaisten_osuus\\\": 22.8, \\\"freshwarea\\\": 5.59, \\\"gml_id\\\": 1601100031, \\\"landarea\\\": 212.44, \\\"namefin\\\": \\\"Askola\\\", \\\"nameswe\\\": \\\"Askola\\\", \\\"natcode\\\": \\\"018\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 218.03}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[422872.343, 6720002.775], [423144.654, 6719809.079], [425751.505, 6719513.81], [426146.633, 6720102.343], [426631.036, 6720528.076], [428821.749, 6719098.472], [429272.666, 6719177.545], [432565.266, 6717622.634], [434572.646, 6715095.659], [435459.201, 6713354.279], [431838.508, 6712416.556], [431908.326, 6711836.67], [432165.201, 6711425.044], [432388.881, 6710744.22], [431939.038, 6709597.233], [431604.214, 6709778.054], [431262.367, 6709379.296], [430371.524, 6708120.676], [430607.018, 6707685.448], [430051.859, 6706552.402], [429744.182, 6705662.097], [429283.592, 6705551.068], [428493.138, 6705954.208], [427801.294, 6705852.483], [427186.936, 6706665.046], [426408.432, 6707172.144], [425989.811, 6708046.772], [423421.791, 6704555.878], [422418.882, 6707848.004], [422144.086, 6707229.575], [420629.886, 6706995.56], [420729.97, 6706689.307], [419684.896, 6706394.097], [419229.404, 6706780.453], [415506.072, 6706184.414], [413795.168, 6706224.109], [413954.616, 6708224.21], [413760.794, 6709312.742], [413346.511, 6710052.277], [412974.561, 6711425.238], [413073.963, 6712770.878], [415987.033, 6713740.297], [416517.649, 6713739.6], [417853.345, 6714376.312], [418695.893, 6716908.78], [419313.936, 6717446.665], [418744.492, 6718053.809], [418641.797, 6718426.824], [419902.082, 6718897.076], [420133.479, 6719753.626], [420878.774, 6719934.759], [421003.833, 6718940.268], [422338.78, 6720086.712], [422033.203, 6720617.096], [422977.319, 6720633.199], [422872.343, 6720002.775]]]}}, {\\\"id\\\": \\\"63\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kotka\\\", \\\"elakelaisten_osuus\\\": 31.6, \\\"freshwarea\\\": 5.82, \\\"gml_id\\\": 1601100466, \\\"landarea\\\": 271.95, \\\"namefin\\\": \\\"Kotka\\\", \\\"nameswe\\\": \\\"Kotka\\\", \\\"natcode\\\": \\\"285\\\", \\\"seawarea\\\": 671.99, \\\"totalarea\\\": 949.76}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[488066.921, 6726441.34], [488819.02, 6725893.868], [489240.454, 6725152.07], [490525.142, 6723661.083], [491303.424, 6724081.42], [491310.925, 6723488.859], [490560.53, 6723234.255], [490627.206, 6722725.561], [491265.349, 6722591.92], [491969.862, 6722869.814], [492534.735, 6722489.773], [493550.526, 6722289.161], [494211.758, 6722580.35], [495742.236, 6723645.134], [501560.721, 6718737.862], [501294.438, 6716892.204], [501104.527, 6714655.804], [501145.113, 6714192.191], [500388.816, 6713481.656], [500509.266, 6712616.621], [501436.923, 6709499.984], [501602.792, 6709129.429], [503446.53, 6704270.279], [506140.957, 6700756.399], [506273.715, 6700114.079], [506499.313, 6699923.859], [506342.6, 6699796.134], [506594.181, 6698563.575], [506667.974, 6698380.12], [506595.898, 6698194.119], [506593.573, 6697984.867], [506709.824, 6697775.616], [506574.973, 6697559.389], [506526.058, 6696685.697], [513725.034, 6691391.285], [514664.655, 6691691.173], [523328.492, 6680338.08], [523329.668, 6680336.538], [525826.092, 6677065.617], [525299.2, 6676362.9], [516250.531, 6673744.753], [516244.839, 6673744.728], [493088.51, 6673729.015], [491398.609, 6700870.421], [491241.972, 6701099.185], [491365.343, 6701428.397], [491186.214, 6704307.832], [490323.991, 6706636.797], [486254.226, 6715441.911], [486511.377, 6715554.71], [487152.854, 6715625.993], [487787.393, 6716351.506], [487718.517, 6716997.245], [488121.751, 6717246.576], [488190.821, 6717765.64], [487991.3, 6718143.685], [488320.063, 6718757.141], [488171.819, 6719447.961], [488044.166, 6720310.012], [487377.086, 6720566.538], [487126.234, 6720867.48], [486581.353, 6721171.752], [486329.352, 6721683.244], [486861.733, 6722371.271], [486845.937, 6722755.616], [486588.578, 6723027.473], [486429.602, 6723463.285], [486556.547, 6723986.817], [485847.931, 6724530.092], [486481.57, 6725238.112], [486651.099, 6725652.346], [486365.31, 6726358.658], [486715.567, 6726592.766], [487551.129, 6726674.642], [488066.921, 6726441.34]]]}}, {\\\"id\\\": \\\"64\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuhmoinen\\\", \\\"elakelaisten_osuus\\\": 48.8, \\\"freshwarea\\\": 275.76, \\\"gml_id\\\": 1601100479, \\\"landarea\\\": 660.92, \\\"namefin\\\": \\\"Kuhmoinen\\\", \\\"nameswe\\\": \\\"Kuhmoinen\\\", \\\"natcode\\\": \\\"291\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 936.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[402296.075, 6846500.266], [403028.676, 6846334.808], [403584.889, 6846272.445], [403839.581, 6846139.968], [404379.54, 6845367.213], [405229.428, 6845884.996], [405897.511, 6846140.972], [406764.975, 6844964.332], [407269.7, 6845117.57], [407845.748, 6846003.235], [408300.149, 6846351.928], [408521.34, 6846079.435], [408328.954, 6844931.096], [410283.619, 6844794.272], [413202.984, 6844044.747], [413979.945, 6843292.71], [415096.055, 6844360.878], [415886.186, 6846288.651], [415296.408, 6846800.896], [416178.333, 6847939.183], [422729.752, 6850493.619], [420875.219, 6848689.333], [420522.909, 6842187.355], [420643.476, 6840114.592], [420678.769, 6839096.004], [420849.832, 6834306.836], [416789.253, 6818020.26], [413145.502, 6817748.821], [408166.307, 6817487.311], [407094.355, 6816685.901], [403231.682, 6817419.279], [401279.595, 6815341.562], [400669.546, 6816252.386], [399743.645, 6816920.095], [399173.093, 6816764.684], [398430.243, 6816807.595], [397647.596, 6817412.642], [397436.175, 6817365.213], [397666.369, 6816267.577], [392785.961, 6814784.461], [391802.732, 6814673.992], [391425.504, 6815300.875], [391393.307, 6815343.435], [389735.851, 6818049.666], [389646.462, 6820789.095], [390777.874, 6824551.546], [387200.555, 6825346.016], [389328.425, 6827551.193], [389443.041, 6830216.791], [387990.36, 6831152.808], [386497.317, 6830213.239], [385709.498, 6830188.286], [385505.84, 6827909.953], [385063.838, 6826579.342], [384108.444, 6830440.609], [382924.964, 6832142.474], [382507.388, 6834089.668], [384140.798, 6838254.77], [384986.645, 6837218.87], [385252.909, 6837100.608], [385414.913, 6837358.348], [385803.027, 6836985.17], [387458.779, 6836423.942], [388128.706, 6836701.796], [389221.624, 6835465.877], [389654.585, 6834836.836], [391889.348, 6834729.064], [391322.585, 6835905.029], [391446.233, 6836524.81], [392025.823, 6836723.259], [391738.438, 6837171.846], [392226.042, 6837809.869], [392203.595, 6838191.197], [391853.414, 6839278.17], [391138.196, 6840261.891], [390513.484, 6840821.116], [390115.536, 6841794.707], [389822.98, 6842774.463], [389835.419, 6843044.1], [389676.252, 6843251.025], [390276.024, 6844258.033], [390408.539, 6844728.99], [391398.563, 6846664.843], [391546.977, 6846627.971], [391745.862, 6847355.115], [391460.496, 6847902.346], [391440.088, 6848167.935], [392079.423, 6848643.274], [392620.216, 6847430.599], [392240.985, 6846578.649], [392534.026, 6846222.143], [392165.456, 6845608.666], [392603.636, 6845128.092], [393183.375, 6844853.733], [394520.626, 6845861.52], [394056.642, 6846687.29], [393349.722, 6848921.249], [393915.266, 6849316.118], [392467.486, 6850973.606], [392429.615, 6851381.322], [393433.93, 6852102.657], [402296.075, 6846500.266]]]}}, {\\\"id\\\": \\\"65\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Savitaipale\\\", \\\"elakelaisten_osuus\\\": 41.6, \\\"freshwarea\\\": 151.44, \\\"gml_id\\\": 1601100509, \\\"landarea\\\": 539.12, \\\"namefin\\\": \\\"Savitaipale\\\", \\\"nameswe\\\": \\\"Savitaipale\\\", \\\"natcode\\\": \\\"739\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 690.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[545772.871, 6802211.037], [549805.424, 6802171.894], [547529.874, 6800333.507], [546639.137, 6799912.273], [546420.831, 6798943.569], [545419.242, 6797799.311], [544770.409, 6797203.27], [545131.668, 6796410.098], [544863.782, 6795470.481], [545199.649, 6794968.689], [545183.658, 6794557.858], [546173.261, 6794013.088], [546583.798, 6793400.043], [545735.247, 6792457.623], [544437.072, 6792539.38], [545284.136, 6791365.067], [545251.053, 6790795.5], [544499.957, 6790811.388], [543020.547, 6792198.809], [542562.732, 6792227.793], [542060.933, 6792483.685], [541003.062, 6792378.02], [540436.79, 6792450.386], [540102.632, 6791516.365], [540173.208, 6790785.364], [540397.118, 6790453.168], [540220.093, 6790220.495], [540481.312, 6789830.259], [540889.122, 6790227.297], [541738.181, 6789957.914], [541923.107, 6789737.806], [542742.173, 6790169.336], [542833.739, 6789684.834], [542291.263, 6789059.585], [542747.982, 6788432.545], [543685.0, 6788870.674], [544209.293, 6788087.498], [543730.691, 6787513.728], [543442.312, 6786865.99], [543681.721, 6785968.159], [543255.095, 6785796.725], [543097.069, 6784286.141], [543363.916, 6783977.813], [544099.56, 6784799.539], [544140.248, 6784059.842], [543668.044, 6783449.487], [543742.316, 6783084.537], [543348.775, 6783081.935], [542709.038, 6782540.35], [542196.954, 6781271.564], [542049.516, 6780986.279], [540679.875, 6780375.317], [539728.56, 6780310.335], [538269.555, 6779667.985], [537395.109, 6779784.63], [537131.725, 6778389.697], [537272.676, 6777341.125], [538184.425, 6775032.872], [538206.571, 6774453.702], [537923.139, 6774058.766], [537236.019, 6773876.634], [537036.498, 6774127.63], [535125.681, 6773175.299], [534308.419, 6772574.235], [534032.936, 6772082.031], [534260.151, 6771247.872], [534797.833, 6771092.941], [534531.247, 6770502.978], [534052.84, 6770738.277], [533313.246, 6770086.234], [534912.108, 6768693.916], [535055.268, 6766688.631], [534408.131, 6766746.001], [534507.584, 6767477.905], [534159.123, 6767786.476], [533767.881, 6767860.442], [533758.19, 6767364.943], [533581.664, 6767074.359], [533160.438, 6766850.145], [532078.777, 6766939.398], [531608.272, 6766507.568], [530962.248, 6764893.317], [529019.825, 6765491.261], [527537.022, 6765529.635], [527369.786, 6765852.802], [527332.398, 6766164.176], [527149.77, 6766399.579], [526569.904, 6766359.091], [525197.762, 6765695.351], [524672.179, 6765093.691], [522930.07, 6766315.783], [522322.29, 6769071.36], [521244.113, 6770391.816], [519976.721, 6770687.886], [519645.127, 6774135.687], [518308.164, 6774695.854], [517674.249, 6774280.507], [516643.211, 6774594.16], [515540.631, 6774107.247], [515266.699, 6773710.435], [515145.252, 6773230.728], [513971.425, 6773356.271], [513524.409, 6772956.23], [512322.995, 6772856.064], [511983.826, 6773705.919], [511507.114, 6774308.073], [510877.666, 6774673.322], [510253.522, 6774117.043], [509861.339, 6774329.548], [509524.513, 6774712.099], [509992.52, 6775260.88], [510068.582, 6776287.065], [511753.683, 6778711.194], [511167.175, 6780126.015], [511270.26, 6780739.262], [511075.037, 6780901.795], [512328.427, 6781418.892], [512903.995, 6781331.131], [514478.96, 6781264.768], [516141.324, 6782319.425], [516240.837, 6782563.949], [516974.294, 6781550.982], [519122.677, 6782169.927], [519478.927, 6782835.058], [519282.398, 6783739.388], [519285.79, 6784554.955], [520842.24, 6785377.226], [520632.817, 6786551.176], [520334.347, 6786709.482], [520389.219, 6787322.132], [519699.948, 6788738.05], [519557.335, 6789502.137], [519846.614, 6790008.632], [520099.707, 6790484.939], [520893.79, 6790133.287], [521781.63, 6790328.413], [522574.91, 6790287.235], [523251.535, 6790453.971], [523461.348, 6790744.054], [523545.608, 6791368.4], [523370.675, 6791813.317], [523073.983, 6793120.781], [524818.382, 6792733.55], [527218.911, 6792945.679], [529178.633, 6791501.48], [530951.313, 6792241.092], [531973.485, 6794214.696], [531584.139, 6794548.356], [530550.157, 6794209.386], [529956.79, 6794738.365], [529091.235, 6795122.901], [529856.413, 6796728.052], [531337.628, 6795584.032], [531694.781, 6796048.145], [531304.335, 6796323.729], [531709.761, 6797554.23], [532244.95, 6797206.177], [532582.314, 6797240.966], [532862.492, 6798303.235], [532309.253, 6798563.049], [531521.828, 6798534.429], [531929.757, 6799331.507], [531972.233, 6800095.596], [531633.565, 6800592.99], [531862.069, 6801157.263], [532096.377, 6801040.013], [532883.759, 6801417.368], [533577.486, 6800893.289], [534599.948, 6801263.658], [537266.521, 6799720.606], [540382.265, 6799672.642], [542379.233, 6803375.649], [545772.871, 6802211.037]]]}}, {\\\"id\\\": \\\"66\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lumijoki\\\", \\\"elakelaisten_osuus\\\": 21.8, \\\"freshwarea\\\": 0.25, \\\"gml_id\\\": 1601100027, \\\"landarea\\\": 214.16, \\\"namefin\\\": \\\"Lumijoki\\\", \\\"nameswe\\\": \\\"Lumijoki\\\", \\\"natcode\\\": \\\"436\\\", \\\"seawarea\\\": 75.88, \\\"totalarea\\\": 290.29}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[420391.319, 7196643.734], [420929.535, 7196824.492], [420782.008, 7196394.278], [418219.879, 7188914.111], [412772.128, 7180091.469], [405630.273, 7185147.935], [402826.439, 7189072.135], [404483.163, 7192503.685], [404879.342, 7195451.674], [405688.488, 7195850.74], [405544.479, 7196139.391], [405179.934, 7196188.49], [405072.695, 7196857.605], [405590.859, 7200711.263], [405158.02, 7206221.723], [407784.854, 7208121.521], [420391.319, 7196643.734]]]}}, {\\\"id\\\": \\\"67\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Punkalaidun\\\", \\\"elakelaisten_osuus\\\": 39.1, \\\"freshwarea\\\": 2.94, \\\"gml_id\\\": 1601100321, \\\"landarea\\\": 361.08, \\\"namefin\\\": \\\"Punkalaidun\\\", \\\"nameswe\\\": \\\"Punkalaidun\\\", \\\"natcode\\\": \\\"619\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 364.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[299894.258, 6793125.238], [298836.826, 6788879.988], [301566.561, 6786740.901], [305264.715, 6782737.647], [301251.437, 6781576.494], [301137.653, 6781163.282], [299441.503, 6781002.326], [298993.601, 6780634.445], [298641.525, 6780791.058], [299038.66, 6781253.373], [298475.448, 6781606.439], [298035.598, 6781529.42], [297449.981, 6781630.821], [297121.029, 6780986.42], [296720.734, 6780661.405], [297182.195, 6780156.331], [298136.031, 6779881.462], [297914.31, 6778070.229], [298654.376, 6778016.888], [298711.587, 6777505.132], [299512.543, 6777452.579], [299708.266, 6777132.492], [299093.358, 6777099.428], [298751.001, 6776737.475], [297752.536, 6776809.122], [298067.246, 6776541.901], [296616.696, 6776641.977], [296796.581, 6775949.754], [297326.31, 6775695.096], [298521.523, 6775580.908], [298474.223, 6775088.822], [299677.521, 6774882.564], [297813.288, 6770909.189], [297912.327, 6770626.756], [298319.967, 6769946.551], [298169.87, 6769268.438], [295318.225, 6769477.243], [294311.243, 6768899.488], [292701.025, 6769465.517], [292441.396, 6771461.048], [291954.503, 6772407.834], [289778.014, 6772814.292], [286947.939, 6772659.639], [284781.081, 6771831.81], [282345.246, 6774309.421], [281989.973, 6776068.675], [284299.649, 6777254.653], [284595.879, 6777710.317], [284104.602, 6779172.354], [280812.362, 6777713.99], [279796.938, 6779300.946], [280564.708, 6780119.242], [283028.074, 6782373.781], [282730.952, 6782899.625], [281499.02, 6783427.186], [281520.333, 6784788.142], [280639.54, 6785440.994], [280405.736, 6789563.086], [282591.859, 6789184.159], [281615.645, 6792413.385], [285307.458, 6790016.681], [286885.859, 6790366.588], [286977.622, 6790746.983], [287650.863, 6790829.035], [287804.13, 6790401.505], [287620.387, 6789852.188], [287789.643, 6789527.95], [288605.925, 6789751.067], [288135.808, 6791197.017], [290744.236, 6791007.635], [292607.95, 6791628.348], [293008.194, 6791922.322], [294087.919, 6792266.578], [294145.944, 6792557.749], [297370.795, 6791707.726], [297826.825, 6791902.122], [298246.214, 6793510.993], [299894.258, 6793125.238]]]}}, {\\\"id\\\": \\\"68\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"S\\\\u00e4kyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 35.2, \\\"freshwarea\\\": 120.96, \\\"gml_id\\\": 1601100329, \\\"landarea\\\": 406.75, \\\"namefin\\\": \\\"S\\\\u00e4kyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"S\\\\u00e4kyl\\\\u00e4\\\", \\\"natcode\\\": \\\"783\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 527.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[246310.079, 6793564.282], [253803.569, 6793179.746], [256997.76, 6790195.252], [257857.082, 6787773.348], [258775.105, 6786546.675], [261628.054, 6777951.94], [261070.704, 6777636.777], [262130.106, 6772503.933], [263133.068, 6771846.568], [263142.9, 6771414.672], [263680.23, 6770884.356], [264179.474, 6770470.666], [264478.663, 6770969.105], [267534.562, 6768963.192], [262864.135, 6769538.468], [260942.911, 6769767.253], [259284.949, 6769135.523], [257779.821, 6768440.944], [260797.574, 6764229.146], [260943.87, 6764023.99], [257436.007, 6765638.903], [255917.283, 6765381.586], [252569.836, 6764715.924], [251633.004, 6764330.886], [248896.201, 6764077.797], [246365.314, 6762574.004], [245986.399, 6762519.54], [243759.88, 6763353.697], [243395.267, 6763918.679], [241789.4, 6766421.928], [243149.982, 6768481.585], [241864.449, 6783096.237], [243379.886, 6784226.958], [243522.321, 6784329.754], [242335.755, 6786050.969], [243236.926, 6787345.638], [243026.081, 6790770.652], [239703.374, 6794772.793], [239844.503, 6795212.964], [239679.014, 6795623.427], [239160.084, 6796013.57], [240490.58, 6797259.324], [241334.386, 6800405.003], [246310.079, 6793564.282]]]}}, {\\\"id\\\": \\\"69\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Karkkila\\\", \\\"elakelaisten_osuus\\\": 30.1, \\\"freshwarea\\\": 12.96, \\\"gml_id\\\": 1601100377, \\\"landarea\\\": 242.36, \\\"namefin\\\": \\\"Karkkila\\\", \\\"nameswe\\\": \\\"H\\\\u00f6gfors\\\", \\\"natcode\\\": \\\"224\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 255.32}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[338515.195, 6726577.401], [338539.595, 6726518.761], [340496.511, 6724901.414], [341629.409, 6724945.871], [343233.493, 6724226.418], [345453.734, 6724683.956], [347143.049, 6723995.425], [348814.75, 6723424.072], [348570.077, 6721581.554], [349238.384, 6720221.4], [350169.787, 6719102.849], [351205.054, 6717453.114], [352336.954, 6718035.073], [351726.814, 6719544.044], [352442.938, 6719826.442], [354830.592, 6722516.944], [356841.729, 6721419.949], [358173.253, 6720150.204], [357451.777, 6718512.487], [358726.22, 6715710.045], [360778.209, 6710231.502], [355987.583, 6708738.364], [352638.209, 6707983.574], [350939.092, 6707435.074], [350500.573, 6706895.799], [350158.251, 6707035.125], [350442.191, 6707960.156], [348708.216, 6710739.592], [347127.119, 6709676.088], [347157.647, 6709005.556], [346908.349, 6708626.508], [344726.117, 6708985.216], [344565.478, 6708737.405], [343689.743, 6711161.061], [343830.319, 6711946.476], [340873.387, 6715975.412], [337396.548, 6722934.84], [337095.663, 6722165.544], [336149.589, 6721123.568], [335614.969, 6721446.236], [335363.142, 6721764.357], [335970.914, 6722756.012], [336691.403, 6722628.462], [337329.431, 6723446.878], [336905.383, 6723911.912], [337096.257, 6724257.507], [336719.739, 6724930.643], [336222.196, 6724541.267], [334371.929, 6726306.184], [336263.847, 6726814.352], [338216.004, 6726835.9], [338515.195, 6726577.401]]]}}, {\\\"id\\\": \\\"70\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sipoo\\\", \\\"elakelaisten_osuus\\\": 19.8, \\\"freshwarea\\\": 3.01, \\\"gml_id\\\": 1601100531, \\\"landarea\\\": 339.7, \\\"namefin\\\": \\\"Sipoo\\\", \\\"nameswe\\\": \\\"Sibbo\\\", \\\"natcode\\\": \\\"753\\\", \\\"seawarea\\\": 355.89, \\\"totalarea\\\": 698.6}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[402460.677, 6708594.602], [404879.929, 6705306.499], [405444.334, 6704375.991], [406339.895, 6703376.025], [407644.735, 6701563.577], [408782.366, 6699946.592], [409843.854, 6697758.511], [409951.03, 6696943.21], [409854.62, 6694354.312], [412341.632, 6689906.852], [415198.668, 6685186.889], [418498.101, 6681862.818], [416330.067, 6679130.905], [416468.479, 6678378.37], [415467.249, 6677205.501], [410558.993, 6671362.474], [408589.052, 6664019.377], [406641.156, 6645584.736], [397724.522, 6646526.495], [397119.274, 6646433.498], [398600.997, 6663222.358], [399732.084, 6669114.856], [401345.24, 6674985.491], [400349.205, 6677070.273], [400548.902, 6678367.399], [401808.886, 6679388.548], [401623.898, 6679780.387], [401850.326, 6680029.843], [402620.314, 6680141.562], [402627.876, 6680612.858], [402458.273, 6681254.676], [401913.233, 6681807.992], [402206.313, 6681961.24], [402182.555, 6682483.79], [402360.86, 6683005.931], [402826.728, 6682979.462], [403253.471, 6683155.565], [403336.846, 6683401.992], [402893.083, 6683702.407], [402897.947, 6684431.254], [403466.148, 6684945.228], [403017.003, 6685389.467], [403516.149, 6685567.289], [403434.138, 6685818.265], [402614.625, 6685603.09], [402143.657, 6685895.131], [401634.138, 6685194.721], [400567.687, 6684841.722], [400745.666, 6684657.097], [400258.311, 6684176.97], [399936.362, 6684600.244], [400112.193, 6685327.02], [398875.337, 6687504.945], [397027.615, 6688559.041], [395227.064, 6690255.984], [396070.823, 6690272.12], [396230.376, 6690954.45], [396441.833, 6690963.399], [396672.554, 6690176.552], [397493.096, 6690202.427], [397993.38, 6690736.507], [398032.965, 6691388.805], [397048.739, 6691679.924], [398036.723, 6692854.03], [397728.124, 6694328.737], [398131.652, 6696682.563], [397953.515, 6698215.705], [398267.308, 6698291.392], [398374.228, 6699002.739], [398868.044, 6699198.763], [398323.404, 6700627.862], [398541.439, 6701378.07], [398347.951, 6702173.09], [398164.736, 6702901.474], [398206.29, 6704310.03], [398207.07, 6704408.364], [399460.778, 6709189.412], [402460.677, 6708594.602]]]}}, {\\\"id\\\": \\\"71\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hartola\\\", \\\"elakelaisten_osuus\\\": 43.6, \\\"freshwarea\\\": 132.67, \\\"gml_id\\\": 1601100129, \\\"landarea\\\": 542.71, \\\"namefin\\\": \\\"Hartola\\\", \\\"nameswe\\\": \\\"Hartola\\\", \\\"natcode\\\": \\\"081\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 675.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[441120.189, 6851806.954], [439745.442, 6848204.736], [439968.399, 6848097.527], [441767.564, 6848327.115], [442340.866, 6848493.548], [443126.909, 6850962.418], [443372.644, 6850333.753], [444461.123, 6849154.728], [446359.614, 6847818.874], [446415.344, 6847309.266], [446157.566, 6846784.553], [446150.804, 6846437.748], [446542.231, 6846332.957], [446359.337, 6846016.912], [446916.562, 6845473.268], [446799.004, 6844817.189], [447032.648, 6844393.552], [447976.807, 6843436.993], [449017.267, 6843928.483], [449344.157, 6843793.949], [449557.645, 6843991.912], [449655.002, 6844467.974], [449705.331, 6845091.532], [449947.341, 6845396.168], [450465.773, 6844546.246], [450707.9, 6843951.649], [450652.216, 6843205.31], [450443.347, 6843037.878], [450869.579, 6842202.411], [451197.115, 6842296.766], [451412.38, 6842188.716], [451444.692, 6841830.456], [451292.517, 6841115.014], [451469.0, 6840500.797], [451556.575, 6839883.764], [451465.848, 6839450.336], [451251.268, 6839025.603], [450836.985, 6838628.64], [450788.379, 6838039.882], [452586.713, 6834909.24], [453805.622, 6834141.123], [454323.072, 6833248.131], [454267.839, 6832099.924], [455502.859, 6831695.757], [457185.449, 6835460.267], [457496.01, 6835225.683], [458993.592, 6834510.286], [461163.433, 6834489.704], [461161.475, 6834507.847], [462028.369, 6836146.618], [462369.097, 6835397.181], [462936.108, 6835813.406], [463667.601, 6834237.156], [462860.602, 6832871.343], [463685.217, 6830957.649], [463664.516, 6830753.345], [463593.465, 6829915.996], [463867.152, 6826687.506], [462903.65, 6827425.984], [460774.416, 6827602.194], [461481.999, 6827157.305], [461932.086, 6826528.482], [462122.378, 6826174.381], [461957.79, 6825483.531], [461926.858, 6824648.012], [462309.718, 6823880.006], [462759.436, 6823700.982], [462365.927, 6821469.421], [461090.232, 6821379.804], [461395.135, 6820246.214], [461426.691, 6819659.945], [461899.222, 6819394.258], [462452.539, 6819592.21], [463245.966, 6819355.088], [463497.038, 6819986.1], [463336.58, 6821414.916], [463787.646, 6821422.006], [464164.044, 6820383.058], [463914.291, 6819722.903], [464535.738, 6819677.927], [464829.535, 6819997.546], [465145.663, 6819791.397], [465301.367, 6819144.386], [464894.316, 6818961.55], [464832.024, 6818397.848], [464555.238, 6818309.981], [464530.944, 6818888.147], [463761.148, 6819440.814], [463444.197, 6819069.23], [461093.244, 6819255.164], [460940.924, 6820270.533], [460412.722, 6820345.143], [460412.44, 6819740.821], [460732.979, 6819618.318], [460788.601, 6819327.269], [460505.237, 6819312.73], [459318.504, 6819942.511], [459330.487, 6819700.768], [460747.0, 6818727.46], [461294.077, 6817497.606], [461534.076, 6817342.844], [461697.513, 6816764.979], [462003.488, 6816674.719], [462334.665, 6814715.016], [459668.964, 6812750.586], [460772.728, 6810440.832], [455822.769, 6806830.846], [455356.158, 6807001.873], [454767.088, 6808685.685], [454793.575, 6809043.14], [456543.46, 6809233.18], [456292.159, 6809970.679], [454687.908, 6810777.936], [454574.653, 6811018.937], [453530.279, 6811017.528], [452840.863, 6810469.943], [452504.201, 6810406.365], [452231.153, 6810837.122], [451539.09, 6811077.384], [451628.745, 6812567.081], [451199.614, 6813590.562], [449373.925, 6816396.362], [447722.128, 6813175.196], [447553.486, 6812614.62], [445870.579, 6811751.152], [445364.086, 6811204.568], [442709.864, 6811811.99], [441932.336, 6812894.956], [441292.909, 6813471.315], [441037.395, 6814180.192], [440534.485, 6814949.433], [440282.642, 6815549.749], [439418.594, 6816055.234], [439809.134, 6816606.016], [439992.459, 6816466.674], [441016.74, 6817057.748], [440553.329, 6817306.241], [440309.974, 6817889.24], [442688.067, 6821140.667], [444814.719, 6823663.43], [441360.24, 6826192.481], [443435.579, 6828265.266], [441526.362, 6827510.752], [440545.658, 6828110.702], [439342.653, 6827387.981], [438886.896, 6833195.54], [440342.606, 6832673.963], [440701.752, 6833813.908], [440818.199, 6834525.122], [440433.852, 6834975.937], [439693.949, 6835579.388], [438443.456, 6836047.588], [435743.157, 6835908.319], [435522.034, 6837703.694], [434977.032, 6839710.96], [438323.792, 6848889.962], [438618.702, 6849354.452], [438773.207, 6849383.136], [439067.911, 6849675.954], [439659.334, 6850290.241], [439640.485, 6850872.99], [439347.228, 6851478.12], [439225.877, 6852311.217], [439110.805, 6852598.036], [441120.189, 6851806.954]], [[453215.5, 6812136.771], [453336.713, 6811921.271], [453247.991, 6811429.358], [452184.327, 6811061.996], [452038.484, 6811573.688], [452164.429, 6812141.659], [452685.814, 6812510.614], [453215.5, 6812136.771]], [[448408.67, 6839367.033], [447544.912, 6839540.324], [447172.863, 6837987.334], [446955.056, 6837863.917], [446674.116, 6838006.806], [446701.928, 6839318.959], [446889.484, 6840064.038], [448622.18, 6840140.641], [448408.67, 6839367.033]]]}}, {\\\"id\\\": \\\"72\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tervola\\\", \\\"elakelaisten_osuus\\\": 34.4, \\\"freshwarea\\\": 32.29, \\\"gml_id\\\": 1601100642, \\\"landarea\\\": 1559.73, \\\"namefin\\\": \\\"Tervola\\\", \\\"nameswe\\\": \\\"Tervola\\\", \\\"natcode\\\": \\\"845\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1592.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[411114.474, 7353361.247], [415906.354, 7350333.902], [419840.958, 7347820.19], [425254.52, 7344288.386], [434060.204, 7344049.189], [434104.01, 7344242.201], [434294.556, 7344457.067], [434485.956, 7344048.166], [444853.57, 7344279.765], [452242.297, 7340711.583], [451898.944, 7340207.1], [452351.052, 7339960.582], [452522.9, 7340575.256], [457934.233, 7337960.185], [457368.442, 7336792.211], [457544.313, 7336146.669], [444094.817, 7330386.502], [434263.655, 7333629.767], [433392.263, 7333030.11], [433965.291, 7332207.887], [432074.729, 7330901.278], [431380.098, 7331622.223], [429881.546, 7330576.368], [419356.794, 7316762.731], [414754.546, 7317165.134], [413911.771, 7316475.309], [413933.013, 7314999.202], [412751.121, 7314978.711], [412739.219, 7315680.238], [411948.162, 7315989.91], [410848.256, 7315447.43], [410967.935, 7318480.815], [403959.705, 7318059.707], [404399.755, 7318869.471], [404851.329, 7320257.645], [404400.972, 7320335.089], [404029.547, 7319749.932], [403832.364, 7318052.272], [396119.427, 7317613.838], [396217.624, 7318498.36], [395608.965, 7318617.265], [390804.334, 7323775.928], [387125.854, 7325545.337], [387117.53, 7339696.101], [387319.746, 7339764.638], [387116.986, 7342874.889], [390203.353, 7346142.255], [393313.086, 7349486.704], [394911.569, 7351277.06], [397127.815, 7353850.66], [398565.586, 7355562.83], [401100.619, 7358688.557], [401561.363, 7359275.278], [411114.474, 7353361.247]]]}}, {\\\"id\\\": \\\"73\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kerava\\\", \\\"elakelaisten_osuus\\\": 22.3, \\\"freshwarea\\\": 0.16, \\\"gml_id\\\": 1601100409, \\\"landarea\\\": 30.63, \\\"namefin\\\": \\\"Kerava\\\", \\\"nameswe\\\": \\\"Kervo\\\", \\\"natcode\\\": \\\"245\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 30.79}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[398541.439, 6701378.07], [398323.404, 6700627.862], [398868.044, 6699198.763], [398374.228, 6699002.739], [398267.308, 6698291.392], [397953.515, 6698215.705], [398131.652, 6696682.563], [397728.124, 6694328.737], [398036.723, 6692854.03], [396926.462, 6692862.656], [396034.786, 6693054.079], [396010.458, 6693625.721], [394675.378, 6693732.064], [394375.772, 6694399.69], [393916.943, 6694490.093], [393738.29, 6694727.48], [393961.205, 6695261.492], [394493.643, 6695308.597], [394248.026, 6696673.552], [394283.413, 6698915.685], [393842.583, 6699049.737], [393928.533, 6699598.525], [394296.721, 6699370.115], [394500.261, 6700394.312], [398347.951, 6702173.09], [398541.439, 6701378.07]]]}}, {\\\"id\\\": \\\"74\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nokia\\\", \\\"elakelaisten_osuus\\\": 24.3, \\\"freshwarea\\\": 59.53, \\\"gml_id\\\": 1601100169, \\\"landarea\\\": 288.3, \\\"namefin\\\": \\\"Nokia\\\", \\\"nameswe\\\": \\\"Nokia\\\", \\\"natcode\\\": \\\"536\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 347.83}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[314393.368, 6829132.139], [315654.765, 6827929.596], [316192.01, 6827073.221], [316754.117, 6825030.582], [317619.588, 6823732.921], [317263.558, 6822525.447], [318515.954, 6822464.609], [318831.891, 6821797.77], [319401.318, 6821431.059], [319633.759, 6820693.772], [318434.675, 6820315.214], [317243.86, 6820617.525], [316055.723, 6819868.519], [314312.538, 6816212.207], [313750.212, 6815802.722], [313764.52, 6815458.895], [313450.579, 6815045.484], [312823.16, 6814909.581], [312492.742, 6814427.452], [312364.696, 6813189.401], [311949.589, 6812722.478], [311934.626, 6812066.557], [311320.535, 6811163.701], [310633.693, 6810982.696], [310314.51, 6811205.887], [309802.59, 6811055.805], [309024.691, 6810453.081], [308330.028, 6810403.253], [308239.204, 6810240.996], [308836.595, 6809496.936], [307206.594, 6808297.845], [307610.528, 6807798.308], [308934.379, 6806816.059], [309664.612, 6806134.316], [310168.225, 6805496.124], [309952.892, 6805241.214], [309603.799, 6805166.429], [308726.575, 6805452.098], [308554.456, 6804528.688], [308021.115, 6804616.695], [305522.186, 6805777.932], [303526.983, 6807346.522], [300931.473, 6808129.885], [297788.894, 6805221.834], [298648.645, 6806773.796], [299890.929, 6808508.635], [299235.422, 6809198.957], [298864.569, 6810048.79], [297856.137, 6813398.414], [296718.367, 6816244.726], [296826.329, 6816739.944], [295841.127, 6817361.906], [296886.615, 6818191.077], [297819.772, 6819211.558], [297225.786, 6819763.038], [296154.651, 6819339.708], [295184.349, 6819848.613], [294219.939, 6820490.604], [294365.008, 6821017.228], [296644.043, 6821351.798], [297010.319, 6821148.72], [297805.369, 6821523.706], [298107.634, 6823759.115], [298142.816, 6826446.451], [297636.547, 6827513.561], [297708.422, 6828597.687], [301755.028, 6826223.003], [304340.391, 6826640.883], [304599.092, 6826418.492], [305179.992, 6826498.246], [305493.287, 6826239.593], [306595.263, 6826698.904], [306858.584, 6826604.127], [306781.232, 6826148.349], [307564.707, 6825931.139], [308203.925, 6826970.481], [310320.578, 6829369.752], [311109.061, 6831687.279], [314393.368, 6829132.139]]]}}, {\\\"id\\\": \\\"75\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Taivalkoski\\\", \\\"elakelaisten_osuus\\\": 36.1, \\\"freshwarea\\\": 212.82, \\\"gml_id\\\": 1601100618, \\\"landarea\\\": 2437.79, \\\"namefin\\\": \\\"Taivalkoski\\\", \\\"nameswe\\\": \\\"Taivalkoski\\\", \\\"natcode\\\": \\\"832\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2650.61}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[571645.663, 7302771.884], [573330.764, 7296142.049], [574476.051, 7293830.789], [575380.486, 7292007.532], [575416.65, 7291031.442], [575753.761, 7291071.058], [576108.407, 7290789.287], [575442.148, 7290742.522], [575918.768, 7280896.79], [576763.503, 7278715.804], [579713.477, 7277104.23], [585250.544, 7276519.878], [588882.281, 7281899.838], [593246.052, 7275640.415], [599682.567, 7269408.915], [602324.006, 7268038.776], [602704.15, 7265272.506], [601598.108, 7263985.379], [601807.325, 7263795.589], [601459.355, 7262915.473], [601324.738, 7262926.069], [601224.189, 7263582.43], [599768.382, 7261886.049], [600345.914, 7261905.79], [600687.439, 7261608.35], [600963.227, 7261599.338], [600914.546, 7261348.209], [600218.717, 7261466.765], [599590.245, 7261696.622], [598353.906, 7260272.729], [599444.706, 7260302.821], [599437.782, 7260034.712], [598101.335, 7259984.537], [594831.592, 7258751.668], [590659.529, 7259723.006], [583991.22, 7256490.235], [583678.002, 7257494.625], [583134.771, 7257341.58], [583196.96, 7256812.227], [582413.448, 7256791.434], [582425.877, 7256505.405], [583615.018, 7256330.741], [583624.765, 7256312.579], [576524.028, 7252846.658], [577047.433, 7250918.42], [575789.405, 7248864.655], [574765.204, 7244229.287], [575132.641, 7243796.944], [574808.037, 7242867.796], [575264.439, 7242016.676], [575034.507, 7241361.841], [574336.944, 7241519.897], [574191.174, 7241089.021], [569578.319, 7240192.322], [569664.274, 7239643.531], [570246.164, 7239141.101], [569800.244, 7239076.385], [569333.328, 7239407.009], [569207.34, 7240114.89], [560018.262, 7238222.794], [560149.684, 7237990.535], [559641.62, 7237616.474], [559299.671, 7237504.328], [559106.224, 7238007.101], [554298.02, 7236856.128], [553051.591, 7246493.273], [545636.248, 7253752.079], [545504.152, 7253656.689], [544295.81, 7253800.159], [544112.562, 7253347.618], [543278.524, 7253677.822], [543365.044, 7253910.199], [540211.858, 7254258.172], [539503.847, 7255253.881], [538191.121, 7256729.063], [538129.451, 7257147.978], [537767.002, 7258017.103], [538090.651, 7258206.488], [538010.915, 7258962.895], [537677.226, 7259241.407], [537946.687, 7259511.668], [537669.706, 7262243.342], [535943.053, 7265221.671], [537909.957, 7281546.95], [536961.49, 7282789.967], [534974.38, 7293910.579], [534084.889, 7294383.174], [533226.706, 7295360.36], [532616.564, 7295659.374], [533535.1, 7296872.75], [534776.431, 7300873.374], [541109.819, 7300461.152], [541259.366, 7300777.466], [541550.167, 7300814.594], [541533.649, 7300441.959], [552273.747, 7299756.158], [553138.504, 7299001.446], [555960.827, 7298229.095], [566988.618, 7303463.983], [569086.753, 7303600.565], [571645.663, 7302771.884]]]}}, {\\\"id\\\": \\\"76\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Finstr\\\\u00f6m\\\", \\\"elakelaisten_osuus\\\": 23.4, \\\"freshwarea\\\": 6.87, \\\"gml_id\\\": 1601100090, \\\"landarea\\\": 123.32, \\\"namefin\\\": \\\"Finstr\\\\u00f6m\\\", \\\"nameswe\\\": \\\"Finstr\\\\u00f6m\\\", \\\"natcode\\\": \\\"060\\\", \\\"seawarea\\\": 42.31, \\\"totalarea\\\": 172.5}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[102712.168, 6721478.264], [102259.084, 6721227.7], [101800.073, 6721160.664], [101328.556, 6721272.043], [101215.968, 6722676.021], [101172.986, 6723192.736], [102421.024, 6723514.835], [102712.168, 6721478.264]]], [[[112190.72, 6714042.077], [112496.732, 6713579.095], [113108.579, 6713790.951], [113840.842, 6713844.984], [114444.067, 6713650.172], [114262.641, 6713248.345], [114136.489, 6712395.098], [113728.929, 6711464.197], [112904.885, 6711401.642], [113184.797, 6710926.978], [113289.912, 6710075.617], [112969.712, 6710172.148], [112533.927, 6709005.893], [111928.539, 6708470.635], [111768.158, 6707772.331], [111063.284, 6707262.551], [110161.17, 6707198.652], [110162.871, 6707193.064], [109474.113, 6706706.402], [109873.937, 6704743.878], [110229.385, 6704317.96], [110514.816, 6703756.667], [111443.586, 6704037.637], [111567.574, 6704825.13], [112249.95, 6704765.62], [112231.68, 6704545.763], [111679.892, 6704057.717], [112119.437, 6703021.62], [111836.366, 6702337.741], [111870.734, 6702128.26], [112284.589, 6701847.024], [112886.586, 6701269.566], [113027.572, 6700702.43], [113531.202, 6699884.586], [113358.31, 6699381.907], [113415.45, 6698888.696], [113697.447, 6698455.102], [114005.692, 6698174.673], [114090.812, 6697520.839], [113671.422, 6696937.184], [113811.636, 6695741.061], [113530.859, 6695006.89], [113871.666, 6693990.054], [113361.246, 6693227.362], [112938.309, 6693036.685], [112671.316, 6692786.326], [112533.232, 6692568.954], [112635.599, 6692431.205], [112610.056, 6692157.812], [112324.419, 6692092.165], [112262.061, 6692201.125], [112069.137, 6692277.651], [111850.53, 6692819.984], [111725.722, 6693367.538], [111339.81, 6693686.319], [110960.99, 6693684.985], [110967.376, 6694052.54], [110934.318, 6694286.437], [110857.293, 6694485.93], [110242.904, 6694417.806], [110168.228, 6694647.456], [110101.561, 6694768.395], [110080.348, 6694799.985], [109974.425, 6694859.828], [109628.474, 6695123.981], [108942.421, 6695197.348], [108884.356, 6695635.452], [108817.096, 6695781.066], [108700.646, 6695884.607], [108517.58, 6695848.824], [108408.936, 6695849.488], [107439.114, 6695372.045], [107360.223, 6695248.567], [107307.847, 6695104.769], [107217.967, 6695097.484], [107213.713, 6694982.53], [107094.779, 6694777.884], [107073.072, 6694687.649], [106847.612, 6694636.927], [106743.968, 6694566.855], [106725.34, 6694390.147], [106631.346, 6694275.489], [106439.817, 6693906.093], [106350.914, 6693408.849], [105793.749, 6693401.563], [104753.709, 6693969.904], [103485.322, 6693846.502], [103479.536, 6694384.842], [103109.222, 6694643.393], [102908.842, 6695014.154], [103088.007, 6695496.399], [103095.183, 6695770.081], [102837.803, 6696218.15], [102090.319, 6696408.858], [101850.107, 6697620.159], [102314.614, 6697617.986], [102355.206, 6697912.854], [102917.857, 6698368.942], [102716.152, 6698582.952], [101876.436, 6698701.843], [101758.278, 6699026.894], [101852.986, 6700445.464], [101649.971, 6701844.556], [101362.572, 6702744.511], [102093.85, 6704005.086], [102793.219, 6707516.58], [103532.766, 6707941.478], [103471.305, 6709256.637], [103798.033, 6709325.939], [104458.618, 6708840.398], [105303.311, 6708398.681], [105874.208, 6708903.802], [106747.393, 6708916.679], [107589.64, 6709342.62], [108025.875, 6710533.417], [107935.808, 6710861.732], [108154.22, 6711265.533], [108188.771, 6711887.86], [108460.597, 6712346.811], [109065.23, 6712172.588], [110185.579, 6712509.434], [110954.183, 6712795.864], [111431.387, 6713312.456], [111529.815, 6714149.452], [112190.72, 6714042.077]]]]}}, {\\\"id\\\": \\\"77\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kinnula\\\", \\\"elakelaisten_osuus\\\": 39.1, \\\"freshwarea\\\": 35.53, \\\"gml_id\\\": 1601100271, \\\"landarea\\\": 460.2, \\\"namefin\\\": \\\"Kinnula\\\", \\\"nameswe\\\": \\\"Kinnula\\\", \\\"natcode\\\": \\\"256\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 495.73}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[409188.331, 7032274.613], [414039.806, 7023568.883], [416417.539, 7018339.659], [415187.249, 7017754.47], [406380.889, 7013464.827], [406100.98, 7012930.05], [404997.049, 7013443.761], [398765.11, 7012978.815], [390543.096, 7013842.652], [389814.314, 7018219.869], [388595.831, 7027489.373], [395339.008, 7035351.22], [402107.619, 7038128.976], [404408.486, 7039073.207], [409188.331, 7032274.613]]]}}, {\\\"id\\\": \\\"78\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rauma\\\", \\\"elakelaisten_osuus\\\": 29.2, \\\"freshwarea\\\": 13.71, \\\"gml_id\\\": 1601100419, \\\"landarea\\\": 496.02, \\\"namefin\\\": \\\"Rauma\\\", \\\"nameswe\\\": \\\"Raumo\\\", \\\"natcode\\\": \\\"684\\\", \\\"seawarea\\\": 600.4, \\\"totalarea\\\": 1110.13}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[198095.002, 6803699.074], [200326.504, 6802914.56], [200972.322, 6801695.954], [203975.546, 6799395.966], [204953.291, 6799040.108], [205014.723, 6798457.467], [207680.348, 6796621.233], [208115.928, 6795670.33], [208738.942, 6795234.848], [209070.403, 6795356.668], [209628.378, 6795860.778], [210361.984, 6794118.153], [210748.219, 6792849.488], [211581.514, 6791785.95], [212066.55, 6791271.757], [215022.59, 6790079.222], [215822.293, 6789914.197], [216665.606, 6789775.592], [217184.564, 6790090.058], [217513.519, 6790122.248], [218405.064, 6790550.582], [220913.893, 6790609.982], [221967.166, 6791880.81], [223873.007, 6789854.999], [225049.416, 6788110.869], [225591.522, 6786429.559], [228052.399, 6784450.895], [229966.938, 6782661.15], [231957.071, 6782911.068], [233102.792, 6781832.366], [233892.529, 6777841.179], [233925.762, 6777536.029], [231174.617, 6776392.55], [230754.905, 6776416.962], [230038.471, 6776721.823], [229531.834, 6776633.73], [229097.574, 6776079.319], [228930.647, 6775309.803], [228415.246, 6775145.786], [228150.741, 6775320.997], [227520.87, 6775127.111], [227004.413, 6775880.873], [226437.18, 6775421.918], [225582.093, 6775158.278], [223175.84, 6775316.248], [221421.513, 6774809.228], [219404.71, 6776165.007], [220619.778, 6777643.236], [217953.144, 6777848.471], [216672.581, 6777106.399], [217247.151, 6775621.35], [215425.511, 6774335.59], [214289.173, 6774219.621], [213856.409, 6774652.47], [213233.294, 6774810.807], [213147.8, 6774583.185], [211671.977, 6774130.133], [211113.686, 6774576.749], [211097.822, 6776529.702], [209781.948, 6780489.404], [209000.557, 6779364.385], [208863.61, 6778549.089], [207953.181, 6778071.221], [208642.13, 6775986.41], [208214.695, 6775891.548], [206435.889, 6776003.887], [205548.246, 6775583.225], [204310.187, 6775721.641], [201697.544, 6775310.987], [201720.532, 6775742.749], [201491.84, 6776415.871], [200197.074, 6777451.775], [199100.466, 6778656.456], [198821.076, 6781791.058], [197407.806, 6783128.043], [197472.825, 6783588.138], [196920.866, 6784170.78], [196682.383, 6784056.673], [196129.714, 6784587.862], [195400.958, 6785026.314], [195249.45, 6785543.526], [194966.83, 6785723.48], [193847.464, 6787633.763], [191458.446, 6787741.215], [164981.865, 6793621.183], [168669.946, 6810232.566], [198095.002, 6803699.074]]]}}, {\\\"id\\\": \\\"79\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Utsjoki\\\", \\\"elakelaisten_osuus\\\": 33.8, \\\"freshwarea\\\": 226.02, \\\"gml_id\\\": 1601100043, \\\"landarea\\\": 5145.98, \\\"namefin\\\": \\\"Utsjoki\\\", \\\"nameswe\\\": \\\"Utsjoki\\\", \\\"natcode\\\": \\\"890\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5372.0}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[536457.842, 7776430.911], [537194.781, 7772220.809], [537447.889, 7769320.978], [537544.848, 7767734.188], [544471.232, 7757485.69], [551640.057, 7753153.21], [551149.248, 7749613.176], [541847.919, 7728142.119], [534552.519, 7717650.877], [512337.242, 7708583.356], [509298.018, 7705016.705], [449883.728, 7671333.783], [449861.019, 7671413.01], [449816.199, 7671473.32], [449744.294, 7671556.422], [449613.024, 7671649.657], [449569.232, 7671721.18], [449546.698, 7671795.988], [449615.717, 7672023.403], [449621.763, 7672144.885], [449599.775, 7672230.636], [449602.645, 7672537.456], [449568.326, 7672612.578], [449371.383, 7672910.267], [449352.904, 7673004.648], [449444.839, 7673170.491], [449440.333, 7673259.721], [449384.703, 7673367.302], [449378.14, 7673463.417], [449329.467, 7673558.956], [449288.394, 7673788.302], [449220.053, 7673800.505], [449183.442, 7673893.25], [449188.323, 7674009.183], [449165.421, 7674166.44], [449077.99, 7674496.32], [449031.121, 7674609.885], [449019.403, 7674796.456], [448947.906, 7674951.894], [448854.455, 7675402.138], [448800.375, 7675531.927], [448727.366, 7675588.709], [448712.982, 7675654.198], [448764.236, 7675717.046], [448759.354, 7675805.521], [448705.732, 7675890.648], [448639.034, 7675951.937], [448587.281, 7676072.773], [448298.66, 7676546.872], [448234.591, 7676706.126], [448199.199, 7676852.567], [448191.876, 7677028.296], [448299.224, 7677189.438], [448316.349, 7677304.807], [448319.404, 7677411.486], [448244.351, 7677576.231], [448250.453, 7677661.655], [448302.928, 7677747.08], [448473.78, 7677731.218], [448637.223, 7677848.304], [448668.739, 7677904.161], [448672.395, 7677984.101], [448730.913, 7678088.597], [448808.406, 7678207.165], [449021.134, 7678414.792], [449038.709, 7678490.442], [448841.702, 7678882.213], [448806.357, 7679044.003], [448804.617, 7679215.196], [448767.535, 7679312.821], [448756.181, 7679449.04], [448821.265, 7679634.454], [448995.328, 7679793.38], [449057.748, 7679931.487], [449092.197, 7680040.848], [449069.493, 7680155.878], [448876.509, 7680308.746], [448775.879, 7680408.869], [448588.938, 7680662.858], [448585.896, 7680737.837], [448695.887, 7680978.936], [448726.359, 7681110.98], [448735.389, 7681223.648], [448674.301, 7681439.817], [448667.952, 7681573.13], [448691.087, 7681680.786], [448872.718, 7681859.389], [448877.447, 7682020.046], [448909.801, 7682151.507], [448769.791, 7682528.382], [448666.455, 7682689.145], [448652.71, 7682784.368], [448715.3, 7683064.182], [448691.081, 7683190.564], [448725.893, 7683319.217], [448782.653, 7683397.166], [448992.98, 7683500.451], [449137.591, 7683526.581], [449251.994, 7683511.881], [449424.418, 7683570.478], [449439.905, 7683641.387], [449431.986, 7683720.32], [449497.826, 7683839.136], [449575.02, 7683948.113], [449670.375, 7684041.199], [449783.138, 7684115.365], [449861.087, 7684340.129], [449910.95, 7684412.066], [449922.376, 7684486.976], [449896.982, 7684612.67], [449785.25, 7684977.056], [449781.62, 7685156.695], [449843.654, 7685312.242], [449941.304, 7685440.49], [450053.31, 7685494.98], [450229.644, 7685522.983], [450289.43, 7685572.931], [450356.028, 7685712.937], [450373.435, 7685787.102], [450354.06, 7685884.858], [450218.29, 7686168.517], [450191.54, 7686275.906], [450206.936, 7686408.415], [450289.305, 7686528.565], [450507.688, 7686670.769], [450552.035, 7686725.511], [450571.17, 7686779.959], [450525.546, 7687131.146], [450501.329, 7687185.633], [450463.502, 7687526.988], [450265.204, 7687697.214], [450129.32, 7687791.858], [450108.977, 7687901.724], [450127.721, 7688094.119], [450158.061, 7688179.965], [450355.342, 7688231.282], [450369.375, 7688337.142], [450404.648, 7688384.172], [450512.064, 7688441.179], [450597.938, 7688511.463], [450619.922, 7688823.321], [450591.724, 7688904.972], [450533.447, 7688969.84], [450348.769, 7689104.235], [450299.912, 7689228.001], [450233.902, 7689506.378], [450267.34, 7689589.528], [450380.523, 7690376.912], [450413.426, 7690449.364], [450572.778, 7690643.006], [450691.788, 7690753.945], [450834.496, 7690945.137], [450916.268, 7690991.618], [450985.128, 7691064.781], [450995.297, 7691183.03], [451106.852, 7691354.024], [451097.078, 7691756.265], [451179.319, 7692008.685], [451247.718, 7692027.414], [451282.732, 7692084.412], [451273.724, 7692188.096], [451180.947, 7692442.682], [451153.26, 7692811.538], [451222.284, 7692911.217], [451385.671, 7692964.672], [451529.895, 7693046.366], [451662.015, 7693148.23], [451855.159, 7693191.803], [451923.557, 7693316.386], [451973.66, 7693461.89], [451970.783, 7693603.818], [451913.145, 7693703.939], [451948.444, 7693787.648], [451939.839, 7693952.318], [451996.161, 7694103.081], [452086.628, 7694229.408], [452104.739, 7694359.267], [452195.155, 7694523.982], [452527.741, 7694636.298], [452745.204, 7694627.771], [452929.99, 7694668.06], [453085.385, 7694761.555], [453349.339, 7694842.316], [453457.246, 7694918.241], [453525.22, 7695034.482], [453529.862, 7695162.308], [453511.708, 7695310.564], [453459.262, 7695476.972], [453437.276, 7695615.856], [453450.184, 7695799.704], [453497.585, 7696013.515], [453520.33, 7696249.347], [453557.786, 7696369.042], [453491.83, 7696446.396], [453385.161, 7696469.194], [453315.133, 7696525.375], [453304.948, 7696651.916], [453367.477, 7696799.164], [453549.64, 7696973.218], [453587.911, 7697112.455], [453646.537, 7697167.012], [453777.96, 7697204.603], [453945.381, 7697331.681], [454017.844, 7697476.434], [454069.495, 7697898.245], [454049.72, 7698024.627], [454060.286, 7698149.799], [454155.858, 7698235.149], [454226.216, 7698399.312], [454315.459, 7698457.849], [454394.122, 7698550.359], [454503.566, 7698576.948], [454577.398, 7698566.189], [454645.972, 7698597.124], [454701.24, 7698704.32], [454617.874, 7699032.507], [454590.792, 7699204.528], [454454.74, 7699462.837], [454368.334, 7699583.315], [454233.672, 7699821.552], [454267.138, 7699913.184], [454147.616, 7700163.373], [454028.429, 7700227.307], [453914.113, 7700216.588], [453565.211, 7700029.632], [453448.822, 7699997.631], [453372.328, 7700021.534], [453353.248, 7700340.42], [453273.464, 7700392.813], [453257.983, 7700474.976], [453272.723, 7700578.486], [453316.331, 7700654.783], [453404.449, 7700709.56], [453722.117, 7700766.534], [453819.327, 7700823.108], [453860.76, 7700899.599], [453831.943, 7700962.009], [453779.547, 7701206.116], [453617.971, 7701365.009], [453454.458, 7701449.029], [453275.268, 7701569.964], [453057.921, 7701585.963], [452836.434, 7701553.809], [452739.979, 7701619.3], [452655.431, 7701763.383], [452731.641, 7702012.255], [452830.476, 7702144.43], [452978.135, 7702231.36], [453105.551, 7702226.598], [453220.184, 7702261.66], [453306.796, 7702362.347], [453368.718, 7702606.457], [453360.382, 7702845.802], [453306.796, 7702970.832], [453175.503, 7703071.63], [453227.011, 7703353.068], [453438.448, 7703558.468], [453539.642, 7703696.313], [453642.6, 7703875.821], [453715.238, 7704398.569], [453820.913, 7704583.936], [453943.622, 7704713.814], [454007.366, 7704840.504], [454004.976, 7705015.797], [454122.105, 7705258.818], [454161.946, 7705389.491], [454156.368, 7705595.063], [454190.63, 7705802.227], [454236.805, 7706347.868], [454320.161, 7706794.407], [454397.798, 7707003.782], [454502.975, 7707142.425], [454616.122, 7707235.649], [455085.813, 7707453.8], [455537.159, 7707720.841], [455575.264, 7707833.966], [455538.306, 7707914.552], [455504.433, 7708083.582], [455567.121, 7708381.052], [455559.142, 7708487.047], [455577.377, 7708612.416], [455469.101, 7708838.081], [455383.588, 7708934.021], [455161.799, 7709108.361], [455032.572, 7709177.714], [454962.544, 7709260.166], [454903.78, 7709369.186], [454948.229, 7709528.749], [454936.451, 7709639.688], [454897.311, 7709709.661], [455012.055, 7710113.43], [455080.44, 7710277.552], [455310.944, 7710694.598], [455381.335, 7710923.781], [455453.14, 7711004.702], [455400.711, 7711174.521], [455338.023, 7711296.471], [455325.486, 7711436.656], [455410.968, 7711570.006], [455447.063, 7711676.084], [455472.514, 7711787.695], [455457.093, 7711902.47], [455472.854, 7712040.021], [455963.748, 7712649.335], [456050.296, 7712825.216], [456150.667, 7712965.042], [456126.237, 7713170.526], [456144.864, 7713250.765], [456113.054, 7713639.76], [456133.569, 7713752.593], [456071.786, 7713859.714], [456023.068, 7713987.235], [455852.048, 7714260.908], [455715.277, 7714414.769], [455573.15, 7714607.641], [455462.819, 7714713.669], [455134.0, 7714951.575], [455020.025, 7715081.502], [454882.115, 7715168.119], [454753.322, 7715337.938], [454735.085, 7715508.896], [454838.8, 7715796.107], [454829.489, 7716232.452], [454937.955, 7716371.669], [455041.549, 7716418.721], [455426.906, 7716483.367], [455873.688, 7716432.083], [456027.555, 7716461.718], [456148.368, 7716520.985], [456304.513, 7716625.841], [456405.949, 7716734.115], [456522.205, 7716819.595], [456638.458, 7716850.369], [456774.088, 7716991.696], [456897.18, 7717041.845], [456998.618, 7717061.221], [457077.334, 7717175.882], [457380.156, 7717436.037], [457471.79, 7717542.421], [457671.589, 7717836.324], [457849.728, 7718016.594], [457950.268, 7718078.328], [458101.96, 7718260.003], [458315.387, 7718344.669], [458614.975, 7718563.806], [458701.48, 7718835.836], [458794.101, 7718996.802], [458805.791, 7719113.703], [458898.413, 7719199.131], [458958.664, 7719315.133], [458995.532, 7719536.347], [459056.68, 7719691.915], [459062.975, 7719778.243], [459015.517, 7719873.76], [458955.067, 7720063.302], [458993.945, 7720197.341], [459093.549, 7720315.09], [459147.504, 7720434.689], [459225.738, 7720749.424], [459209.552, 7720916.682], [459234.73, 7721001.211], [459315.727, 7721115.952], [459688.029, 7721342.041], [459803.299, 7721472.749], [459842.433, 7721694.026], [459926.765, 7721981.084], [460024.074, 7722127.046], [460035.42, 7722328.876], [460065.947, 7722476.094], [460207.607, 7722742.532], [460208.89, 7722831.659], [460135.151, 7723014.404], [460115.273, 7723125.974], [459982.544, 7723342.702], [459821.596, 7723474.788], [459559.334, 7723888.363], [459540.738, 7723977.491], [459593.959, 7724087.137], [459704.889, 7724201.914], [459760.628, 7724370.117], [459744.644, 7724462.244], [459671.652, 7724639.383], [459624.733, 7724824.524], [459734.569, 7725227.221], [459736.943, 7725367.626], [459661.577, 7725731.732], [459550.177, 7726062.008], [459477.866, 7726222.26], [459441.709, 7726363.946], [459468.173, 7726532.222], [459449.52, 7726802.195], [459332.795, 7727000.025], [459121.557, 7727293.886], [458527.601, 7727779.471], [458371.309, 7727868.495], [457952.075, 7727985.301], [457621.14, 7727987.674], [457491.425, 7728035.793], [457361.559, 7728112.891], [457216.155, 7728252.355], [457127.132, 7728394.787], [457049.978, 7728563.925], [456999.531, 7728738.998], [457011.4, 7728961.548], [457180.331, 7729401.672], [457465.212, 7729710.288], [457607.623, 7729822.574], [457856.925, 7730072.321], [458023.104, 7730398.742], [458153.674, 7730483.81], [458480.102, 7730521.401], [458580.996, 7730584.708], [459017.169, 7731034.304], [459071.622, 7731142.594], [459134.252, 7731552.779], [459172.437, 7731646.968], [459348.803, 7731806.915], [459392.106, 7731896.331], [459417.823, 7732064.487], [459342.644, 7732226.707], [459330.773, 7732321.666], [459401.234, 7732420.072], [459569.559, 7732573.593], [459740.287, 7732677.764], [459791.724, 7732754.918], [459953.944, 7733103.102], [459957.899, 7733263.345], [459977.682, 7733348.412], [460149.797, 7733528.439], [460325.869, 7733615.486], [460581.072, 7733896.407], [460678.011, 7734024.998], [460713.62, 7734117.979], [460848.146, 7734299.984], [461081.588, 7734555.187], [461113.24, 7734707.517], [461290.44, 7734897.796], [461471.317, 7735026.027], [461599.908, 7735279.252], [461730.479, 7735291.123], [461872.92, 7735328.712], [461944.14, 7735304.973], [462035.144, 7735235.733], [462349.456, 7735093.822], [462601.218, 7735091.764], [462721.768, 7735062.363], [462855.551, 7734982.98], [463201.03, 7734956.521], [463279.717, 7734976.65], [463428.841, 7735060.738], [463533.213, 7735256.754], [463680.864, 7735381.493], [463818.52, 7735421.511], [463974.29, 7735383.8], [464107.104, 7735395.279], [464344.856, 7735701.895], [464519.721, 7735793.014], [464640.594, 7735804.081], [464824.727, 7735781.691], [464997.448, 7735823.235], [465501.302, 7735988.176], [466054.383, 7736394.496], [466174.956, 7736551.47], [466593.554, 7736960.966], [466725.502, 7737190.737], [466881.435, 7737398.844], [467024.29, 7737658.914], [467071.908, 7737853.049], [467100.242, 7738059.8], [467108.531, 7738549.009], [467154.317, 7738752.302], [467222.081, 7738896.989], [467412.534, 7739047.11], [467655.96, 7739140.384], [467778.809, 7739151.76], [467978.492, 7739118.602], [468198.273, 7739169.886], [468408.894, 7739281.608], [468511.458, 7739420.801], [468557.425, 7739609.3], [468577.388, 7739818.228], [468559.071, 7739979.398], [468562.994, 7740107.724], [468443.093, 7740193.149], [468398.13, 7740257.593], [468399.628, 7740335.527], [468563.673, 7740610.015], [468567.275, 7740715.468], [468662.21, 7740859.371], [468717.356, 7741006.955], [468799.786, 7741143.339], [468901.7, 7741275.227], [469017.102, 7741366.65], [469145.993, 7741425.101], [469322.198, 7741461.14], [469573.138, 7741441.59], [469717.016, 7741522.523], [469802.512, 7741660.324], [469822.471, 7741847.461], [469868.385, 7742005.11], [470085.212, 7742196.409], [470148.647, 7742330.335], [470226.577, 7742824.912], [470274.535, 7742974.784], [470368.956, 7743048.222], [470712.171, 7743036.235], [470880.031, 7743076.703], [470951.489, 7743166.073], [470993.933, 7743337.48], [471054.966, 7743841.015], [470999.84, 7744120.169], [470769.522, 7744665.177], [470749.491, 7745061.416], [470763.792, 7745277.418], [470836.26, 7745558.726], [470921.224, 7745650.77], [471011.265, 7745709.422], [471516.6, 7745865.581], [471681.177, 7745930.442], [471831.043, 7746029.565], [472171.398, 7746337.407], [472356.853, 7746587.099], [472506.404, 7746666.405], [472692.099, 7746682.155], [472870.91, 7746747.958], [473219.951, 7747002.584], [473408.774, 7747115.592], [473763.532, 7747461.768], [474225.576, 7747702.088], [474335.723, 7747816.526], [474415.83, 7747959.574], [474473.049, 7748154.118], [474546.003, 7748269.987], [474654.719, 7748382.995], [474720.521, 7748513.168], [474823.768, 7748625.383], [474998.034, 7748767.793], [475110.237, 7748810.158], [475296.25, 7748688.897], [475413.978, 7748695.961], [475572.913, 7748844.299], [475676.08, 7748998.1], [475733.299, 7749202.658], [475814.392, 7749303.893], [476124.245, 7749525.54], [476362.709, 7749807.75], [476439.955, 7749940.784], [476534.367, 7750319.861], [476590.155, 7750468.669], [476790.422, 7750849.137], [476891.986, 7750952.132], [476976.384, 7751086.597], [477013.577, 7751269.698], [477008.57, 7751671.894], [477046.477, 7751820.431], [477122.292, 7751960.619], [477318.268, 7752236.701], [477469.055, 7752588.054], [477568.921, 7753263.481], [477674.882, 7753611.595], [477657.602, 7753780.939], [477346.186, 7754300.789], [477299.901, 7754427.21], [477278.579, 7754997.045], [477352.937, 7755090.33], [477529.72, 7755211.721], [477754.47, 7755324.221], [478327.684, 7755867.708], [478468.284, 7756031.294], [478785.941, 7756523.27], [479019.861, 7756761.349], [479119.434, 7756899.973], [479238.655, 7757293.955], [479215.866, 7757790.187], [479233.435, 7758051.114], [479228.259, 7758339.392], [479252.351, 7758509.427], [479341.571, 7758827.137], [479437.555, 7759002.891], [479494.331, 7759204.332], [479623.943, 7759317.437], [479949.935, 7759413.884], [480109.464, 7759477.426], [480205.45, 7759563.951], [480298.731, 7759704.554], [480500.169, 7759823.526], [480682.682, 7759885.715], [481066.635, 7759912.756], [481702.706, 7759884.218], [482765.418, 7760070.842], [482891.769, 7760126.364], [483337.906, 7760454.888], [483492.891, 7760544.312], [483650.136, 7760616.888], [483874.774, 7760687.736], [484768.136, 7761086.902], [484985.861, 7761145.654], [485113.732, 7761197.494], [485177.666, 7761268.34], [485357.702, 7761364.753], [486212.916, 7761534.85], [486375.098, 7761591.172], [486776.797, 7761646.278], [486969.689, 7761733.43], [487335.327, 7761763.264], [487545.047, 7761904.284], [487714.378, 7761976.983], [487841.976, 7761882.028], [487914.415, 7761690.543], [487989.419, 7761413.053], [488260.397, 7760914.676], [488446.929, 7760423.089], [488525.681, 7760274.969], [488626.929, 7760153.099], [488919.173, 7759914.683], [489110.672, 7759794.987], [489301.915, 7759764.988], [489506.283, 7759815.61], [489758.146, 7759922.9], [490121.797, 7760194.598], [490359.011, 7760301.965], [490559.014, 7760441.406], [490936.48, 7760793.529], [491108.685, 7760931.34], [491312.542, 7761018.888], [491767.479, 7761265.374], [491943.54, 7761300.587], [492143.546, 7761293.544], [492543.837, 7761323.207], [493040.997, 7761276.806], [493645.464, 7761431.627], [493826.692, 7761455.521], [494212.62, 7761441.435], [494393.872, 7761413.186], [494477.419, 7761356.926], [494566.157, 7761247.063], [494604.19, 7761121.707], [494550.676, 7760799.163], [494601.391, 7760476.617], [494578.86, 7760297.739], [494503.701, 7760060.081], [494456.23, 7759837.53], [494503.713, 7759614.979], [494622.416, 7759252.964], [495158.23, 7758603.579], [495355.348, 7758443.793], [495576.98, 7758343.471], [495802.286, 7758305.862], [496084.799, 7758343.289], [496259.859, 7758402.447], [496795.579, 7758660.214], [496966.971, 7758782.955], [497235.445, 7759085.425], [497329.702, 7759119.985], [497743.399, 7759114.75], [498308.991, 7759159.912], [498840.929, 7759013.511], [499275.652, 7758763.899], [499462.079, 7758634.032], [499598.237, 7758404.669], [499736.447, 7758237.583], [499921.9, 7757883.779], [500123.796, 7757580.955], [500220.376, 7757251.575], [500295.245, 7757124.932], [500397.733, 7756878.488], [500670.744, 7756547.778], [500743.012, 7756437.811], [500850.889, 7756368.688], [500999.612, 7756215.779], [501197.827, 7755940.484], [501310.677, 7755882.733], [501437.404, 7755880.638], [501602.881, 7755928.816], [501766.625, 7756004.96], [501874.216, 7756105.244], [501974.558, 7756235.677], [502123.653, 7756390.424], [502287.453, 7756615.998], [502382.077, 7756702.782], [502596.779, 7756741.533], [502932.971, 7756750.961], [503118.349, 7756736.298], [503469.671, 7756628.726], [503671.884, 7756625.928], [503829.753, 7756682.598], [504026.077, 7756830.347], [504288.078, 7757115.255], [504380.888, 7757252.329], [504525.095, 7757609.294], [504726.418, 7757934.846], [504788.497, 7758091.844], [504864.917, 7758206.14], [505010.324, 7758318.513], [505178.034, 7758365.908], [505778.754, 7758356.066], [506100.023, 7758494.569], [506287.074, 7758547.399], [506592.637, 7758693.041], [506855.121, 7758916.429], [507009.569, 7759021.449], [507556.442, 7759222.778], [507719.184, 7759319.294], [507864.773, 7759433.764], [508050.48, 7759539.763], [508200.405, 7759596.878], [508357.47, 7759693.973], [508484.548, 7759822.48], [508643.04, 7759950.988], [508872.925, 7760070.928], [509074.254, 7760138.038], [509528.318, 7760193.725], [509859.657, 7760287.814], [510442.625, 7760374.764], [511162.694, 7760575.134], [511501.629, 7760853.397], [511600.175, 7760967.212], [511667.62, 7761100.284], [511673.085, 7761315.388], [511635.028, 7761516.374], [511553.701, 7761788.017], [511474.107, 7761919.514], [511292.43, 7762021.597], [511243.982, 7762101.187], [511182.694, 7762285.175], [511117.662, 7762630.634], [510991.351, 7762789.813], [510700.667, 7762936.881], [510581.279, 7763033.773], [510505.146, 7763146.237], [510505.143, 7763279.464], [510563.075, 7763589.123], [510967.624, 7764060.215], [511031.595, 7764172.719], [511115.42, 7764267.575], [511287.484, 7764393.315], [511395.576, 7764433.023], [511651.468, 7764627.148], [511808.089, 7764797.007], [511911.77, 7764834.508], [512179.349, 7764842.635], [512311.056, 7764741.858], [512385.34, 7764644.474], [512462.259, 7764597.541], [512608.867, 7764633.767], [512820.78, 7764618.401], [513155.952, 7764688.917], [513645.26, 7764946.738], [513828.768, 7765130.109], [513998.624, 7765346.293], [514241.59, 7765601.575], [514667.026, 7765908.815], [514953.795, 7766341.184], [515184.361, 7766794.27], [515220.861, 7766907.692], [515305.599, 7767051.1], [515366.294, 7767278.721], [515453.691, 7767405.097], [515619.977, 7767497.114], [515756.745, 7767598.588], [515878.071, 7767733.153], [516178.08, 7767920.664], [516343.326, 7768073.208], [516450.228, 7768124.054], [516677.563, 7768186.112], [516892.814, 7768207.444], [517100.179, 7768196.415], [517309.264, 7768214.417], [517514.883, 7768184.842], [517653.78, 7768205.089], [518039.932, 7768381.716], [518185.529, 7768397.158], [518697.324, 7768330.979], [518912.615, 7768328.613], [519222.549, 7768422.94], [519462.862, 7768442.03], [519653.264, 7768420.74], [519873.737, 7768465.837], [520054.792, 7768576.276], [520215.852, 7768779.354], [520318.556, 7769029.117], [520341.396, 7769259.199], [520416.554, 7769409.521], [520585.245, 7769680.099], [520629.976, 7769862.173], [520707.161, 7770331.491], [520652.039, 7770506.867], [520576.869, 7770852.604], [520593.567, 7771054.704], [520770.606, 7771440.529], [520930.941, 7771959.971], [520991.066, 7772247.253], [521098.128, 7772546.808], [521295.044, 7772723.27], [521501.952, 7772829.25], [521684.21, 7772967.124], [521802.796, 7773119.116], [521861.25, 7773391.365], [522033.284, 7773550.037], [522128.488, 7773588.453], [522367.951, 7773604.216], [522571.032, 7773688.249], [522773.204, 7773900.787], [523294.318, 7774304.985], [523427.939, 7774355.092], [523726.484, 7774360.509], [523843.43, 7774336.585], [524013.6, 7774327.83], [524243.027, 7774420.231], [524660.192, 7774418.865], [524884.408, 7774453.637], [525315.333, 7774624.002], [525472.339, 7774644.044], [525871.677, 7774628.947], [526352.539, 7774563.589], [526537.971, 7774492.052], [526698.319, 7774396.85], [526858.668, 7774271.582], [527005.653, 7774101.218], [527120.907, 7773912.481], [527204.422, 7773827.299], [527324.341, 7773840.764], [527441.684, 7773771.242], [527554.028, 7773663.395], [527628.925, 7773540.57], [527782.01, 7773416.507], [527860.914, 7773394.903], [528047.25, 7773263.422], [528201.277, 7773197.134], [528303.47, 7773200.962], [528457.134, 7773257.749], [528569.039, 7773369.656], [529211.027, 7773721.967], [529347.299, 7773914.243], [529444.371, 7774015.049], [529704.022, 7774176.206], [529870.621, 7774405.642], [529994.375, 7774507.684], [530202.868, 7774630.907], [530452.294, 7774732.442], [530948.939, 7774862.674], [531185.121, 7774942.135], [531465.451, 7774975.245], [531635.755, 7774950.592], [531794.25, 7774954.934], [531978.795, 7775017.898], [532106.892, 7775119.94], [532392.522, 7775235.705], [532672.853, 7775286.472], [532804.368, 7775343.828], [533039.264, 7775485.129], [533108.853, 7775553.261], [533293.664, 7775592.463], [533414.506, 7775641.846], [534573.305, 7775795.156], [534864.715, 7775889.063], [535250.695, 7776136.022], [535500.418, 7776206.912], [535661.552, 7776220.157], [536036.794, 7776398.947], [536313.122, 7776450.217], [536457.842, 7776430.911]]]}}, {\\\"id\\\": \\\"80\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Uusikaarlepyy\\\", \\\"elakelaisten_osuus\\\": 27.5, \\\"freshwarea\\\": 4.51, \\\"gml_id\\\": 1601100049, \\\"landarea\\\": 732.64, \\\"namefin\\\": \\\"Uusikaarlepyy\\\", \\\"nameswe\\\": \\\"Nykarleby\\\", \\\"natcode\\\": \\\"893\\\", \\\"seawarea\\\": 938.0, \\\"totalarea\\\": 1675.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[271459.859, 7068033.225], [276237.929, 7064283.511], [277989.961, 7062719.151], [278207.453, 7061555.916], [278927.879, 7061355.564], [279442.897, 7060542.845], [279435.365, 7060107.226], [280057.078, 7058651.288], [281132.391, 7057786.225], [281336.053, 7058018.823], [281559.286, 7057869.142], [281889.046, 7057417.335], [282266.312, 7057263.542], [282347.789, 7056598.258], [282871.686, 7056264.032], [282772.717, 7056026.184], [283971.531, 7054951.62], [285160.069, 7054934.119], [285025.439, 7055515.62], [285302.576, 7055596.416], [285611.427, 7054930.857], [286788.237, 7054916.087], [292166.972, 7050018.451], [291715.056, 7049521.6], [290381.346, 7049065.729], [290891.995, 7048097.321], [291494.463, 7048632.623], [293191.168, 7048692.938], [292168.747, 7047697.478], [292673.052, 7047366.209], [292324.655, 7046836.25], [292117.359, 7045926.751], [292515.634, 7045126.894], [293258.528, 7044450.176], [293932.716, 7044100.849], [295338.374, 7045596.652], [296118.268, 7044471.758], [293420.789, 7043135.999], [294586.144, 7041518.516], [294051.876, 7041131.789], [292866.57, 7040599.767], [293051.154, 7039883.581], [293407.144, 7040393.412], [294295.918, 7039510.903], [293810.259, 7039261.706], [294587.782, 7038626.185], [293494.077, 7038151.406], [294080.171, 7035861.479], [294870.352, 7035457.134], [295425.763, 7034352.946], [295577.374, 7034654.441], [294923.12, 7036000.584], [298610.931, 7034288.401], [298653.251, 7033398.214], [298815.058, 7028711.443], [295239.211, 7031252.041], [293907.49, 7031609.773], [294070.348, 7032109.139], [294851.981, 7031840.248], [294891.074, 7032016.892], [294150.251, 7032440.588], [293423.04, 7032753.487], [293297.33, 7032604.695], [293587.669, 7031483.356], [292920.231, 7031704.714], [293000.242, 7031366.54], [293575.528, 7031180.803], [293609.5, 7030813.883], [291368.449, 7030923.731], [291426.61, 7031245.23], [290807.21, 7031305.785], [290337.988, 7031587.486], [289279.213, 7031893.882], [289616.56, 7031520.853], [288887.35, 7031434.47], [288695.212, 7032146.746], [288312.194, 7032435.278], [287791.511, 7032624.169], [287998.375, 7032203.577], [287296.212, 7032059.871], [287512.528, 7032480.282], [287297.676, 7032625.38], [286772.013, 7032681.629], [285837.999, 7032278.843], [285560.654, 7031501.084], [286859.233, 7032165.546], [287175.958, 7031129.984], [286852.677, 7031153.64], [286850.811, 7030934.264], [287502.62, 7031033.184], [287627.128, 7030654.004], [285970.932, 7029788.155], [285663.885, 7030376.428], [283848.391, 7029053.269], [281940.629, 7028295.596], [283166.464, 7026079.565], [280240.272, 7024528.828], [277654.205, 7028826.466], [277849.261, 7028946.489], [276845.089, 7030809.677], [276326.372, 7030923.489], [276384.937, 7030038.542], [275864.342, 7030007.56], [275560.666, 7030188.422], [274611.241, 7031015.309], [274163.717, 7030702.914], [273851.337, 7031117.391], [273378.649, 7031149.011], [273300.643, 7031395.622], [271395.236, 7031825.257], [271358.131, 7031538.115], [271019.828, 7031504.277], [270982.103, 7031874.996], [270621.664, 7031992.72], [263745.792, 7033349.892], [256142.351, 7039958.191], [254049.167, 7041655.689], [232980.295, 7071558.938], [235982.452, 7071537.415], [247330.04, 7073841.346], [252487.751, 7080001.836], [271459.859, 7068033.225]]]}}, {\\\"id\\\": \\\"81\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ikaalinen\\\", \\\"elakelaisten_osuus\\\": 35.7, \\\"freshwarea\\\": 92.99, \\\"gml_id\\\": 1601100233, \\\"landarea\\\": 750.41, \\\"namefin\\\": \\\"Ikaalinen\\\", \\\"nameswe\\\": \\\"Ikalis\\\", \\\"natcode\\\": \\\"143\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 843.4}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[284163.636, 6878953.042], [284529.413, 6877576.393], [284488.131, 6877155.726], [283938.579, 6877182.881], [283984.948, 6877596.563], [283697.327, 6878275.469], [283209.286, 6878080.685], [283106.931, 6877248.55], [282711.725, 6877281.338], [282671.351, 6878151.068], [282934.053, 6878922.504], [283388.179, 6879354.658], [284163.636, 6878953.042]]], [[[288135.292, 6871074.12], [288706.019, 6871131.626], [289594.115, 6870779.882], [290121.841, 6870881.29], [291001.564, 6869897.938], [292624.543, 6872562.221], [292658.808, 6873168.31], [293633.943, 6873726.907], [294594.715, 6873726.119], [297504.414, 6874346.5], [298010.671, 6874198.944], [298101.16, 6873832.847], [297545.156, 6873772.866], [296920.44, 6873837.937], [296291.292, 6873549.238], [296174.694, 6873153.872], [296399.311, 6872544.7], [295992.451, 6871505.151], [297160.857, 6870986.654], [297717.874, 6868660.474], [298027.259, 6868720.853], [298116.818, 6868555.33], [306184.906, 6868744.272], [306054.178, 6873782.575], [306526.779, 6874055.906], [309199.852, 6871875.565], [310500.218, 6871415.773], [312365.663, 6870336.861], [312538.891, 6869840.526], [313039.109, 6870103.526], [313482.743, 6869776.613], [313594.275, 6869102.257], [313324.271, 6868568.461], [313360.096, 6868129.005], [313809.623, 6868152.92], [313798.158, 6866018.652], [313480.406, 6866001.104], [313272.172, 6865203.859], [314159.579, 6865269.96], [314258.78, 6864713.182], [315758.041, 6865290.484], [315782.966, 6864066.625], [316617.4, 6863892.397], [317800.436, 6864415.86], [317910.962, 6863941.656], [316672.22, 6863410.375], [317028.774, 6862742.606], [320321.445, 6862980.669], [320723.406, 6862841.504], [320589.839, 6859113.629], [320599.576, 6858758.446], [317074.272, 6858393.054], [316272.692, 6858210.176], [313426.316, 6858868.419], [312779.973, 6858176.097], [311293.968, 6858349.964], [311092.244, 6857818.482], [309749.086, 6856694.085], [308654.269, 6855891.36], [308020.012, 6854322.409], [307429.524, 6855207.044], [306768.795, 6855635.558], [305802.721, 6853851.352], [307047.202, 6853439.6], [307461.846, 6852875.657], [304881.902, 6851262.994], [304231.77, 6851821.443], [303761.235, 6851832.823], [302583.75, 6852852.003], [301779.88, 6852321.38], [301375.253, 6851326.623], [300628.28, 6851030.935], [299858.417, 6850425.95], [299420.004, 6850770.354], [299121.128, 6850780.345], [298652.736, 6850184.768], [298658.113, 6849255.868], [298362.964, 6848689.433], [298033.668, 6848877.628], [297610.079, 6849432.687], [297001.217, 6849489.723], [296582.829, 6850003.497], [296105.206, 6849943.63], [295695.119, 6849531.258], [294944.507, 6849379.918], [294715.674, 6850088.543], [294495.274, 6850353.399], [294345.549, 6850241.412], [294358.921, 6849967.302], [294010.688, 6849378.869], [293203.967, 6848691.468], [293046.747, 6848091.924], [292096.026, 6847789.9], [290129.734, 6847119.355], [290205.675, 6845736.344], [289214.339, 6846081.962], [288322.139, 6846824.974], [287088.625, 6847447.417], [283831.162, 6847779.755], [281041.449, 6846513.224], [279903.756, 6847102.769], [279058.358, 6845083.295], [276756.932, 6847202.23], [275508.547, 6847821.026], [273600.902, 6850880.284], [272227.794, 6848590.898], [271788.802, 6851214.379], [272069.697, 6851488.86], [272649.919, 6851642.703], [272523.775, 6852052.825], [272629.757, 6852498.621], [272934.326, 6852661.663], [273953.067, 6852257.372], [274760.022, 6852913.667], [274554.987, 6853710.661], [276210.864, 6854399.776], [277107.858, 6853831.966], [277644.238, 6854132.246], [278571.112, 6855468.919], [279484.233, 6857934.596], [279101.868, 6858497.504], [279922.315, 6858975.628], [280289.516, 6860650.004], [278502.729, 6862900.782], [278339.024, 6863784.611], [277955.806, 6863841.968], [277336.369, 6865243.966], [276268.01, 6864631.834], [275792.774, 6865943.376], [278572.568, 6866949.817], [278323.469, 6868086.654], [275910.319, 6869265.813], [276133.015, 6870721.659], [275669.397, 6870908.75], [275680.971, 6871216.549], [276198.02, 6871124.782], [276267.698, 6871570.627], [279835.125, 6873748.394], [280058.91, 6874685.988], [280650.222, 6874634.009], [280543.178, 6876588.11], [282410.512, 6876185.347], [282203.708, 6875541.329], [282899.318, 6875361.175], [283049.208, 6875811.589], [285540.194, 6877032.109], [285651.803, 6875999.758], [284838.619, 6875247.022], [285087.319, 6874521.186], [285749.186, 6875245.865], [286571.455, 6877346.133], [287866.532, 6877633.844], [288135.292, 6871074.12]]]]}}, {\\\"id\\\": \\\"82\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Salla\\\", \\\"elakelaisten_osuus\\\": 45.5, \\\"freshwarea\\\": 142.76, \\\"gml_id\\\": 1601100058, \\\"landarea\\\": 5729.92, \\\"namefin\\\": \\\"Salla\\\", \\\"nameswe\\\": \\\"Salla\\\", \\\"natcode\\\": \\\"732\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5872.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[612091.9, 7523305.4], [627859.7, 7509584.0], [625973.1, 7498796.3], [624978.8, 7492585.4], [622118.1, 7488869.4], [621356.5, 7487578.7], [619257.9, 7483250.2], [618312.7, 7481381.4], [617372.3, 7479858.0], [616403.5, 7478314.4], [616508.4, 7478115.2], [616506.8, 7478014.2], [616536.3, 7477795.7], [616486.1, 7477694.3], [616399.7, 7477614.4], [616327.0, 7477446.4], [616238.7, 7477401.8], [616251.8, 7477323.6], [616006.0, 7476994.4], [615801.3, 7476868.3], [615697.0, 7476725.0], [615667.4, 7476683.2], [615525.1, 7476514.6], [615487.6, 7476567.0], [615428.3, 7476553.2], [615358.4, 7476366.9], [615209.8, 7476263.3], [615120.2, 7476069.9], [615051.5, 7475965.5], [615029.6, 7475929.5], [615074.7, 7475873.7], [614994.4, 7475800.4], [615049.0, 7475721.6], [614999.9, 7475709.0], [615009.1, 7475645.4], [614914.2, 7475556.1], [614918.2, 7475476.0], [614866.5, 7475451.6], [614889.6, 7475350.7], [614705.2, 7475369.8], [614684.8, 7475274.0], [614588.1, 7475289.9], [614457.1, 7475225.0], [614430.2, 7475168.6], [614385.3, 7475170.0], [614386.3, 7475205.0], [614335.6, 7475177.0], [614319.0, 7475080.7], [614252.1, 7475119.2], [614180.3, 7475064.9], [614156.2, 7475137.3], [614092.8, 7475114.9], [614105.4, 7474951.5], [614053.4, 7474922.1], [614022.8, 7474787.7], [613939.0, 7474751.2], [613923.3, 7474632.6], [613800.4, 7474469.9], [613815.2, 7474257.6], [613867.8, 7474203.1], [613869.0, 7473975.1], [613744.9, 7473879.7], [613781.8, 7473795.6], [613712.8, 7473725.2], [613715.5, 7473582.0], [613614.3, 7473432.6], [613641.6, 7473348.8], [613554.2, 7473351.1], [613551.3, 7473268.3], [613432.9, 7473283.1], [613332.5, 7473167.3], [613247.9, 7473190.1], [613190.1, 7473212.1], [613101.0, 7473222.4], [612932.9, 7473096.4], [612868.7, 7473100.6], [612719.4, 7473057.2], [612626.4, 7472950.5], [612612.3, 7472846.4], [612693.8, 7472726.5], [612552.5, 7472604.2], [612541.0, 7472506.5], [612483.5, 7472488.5], [612501.8, 7472406.7], [612443.8, 7472381.2], [612474.7, 7472314.5], [612416.8, 7472291.0], [612443.4, 7472227.4], [612496.6, 7472252.0], [612511.6, 7472176.2], [612577.0, 7472136.1], [612613.3, 7472165.5], [612629.6, 7472125.3], [612686.8, 7472157.5], [612847.2, 7472137.5], [612907.4, 7472044.7], [612974.5, 7471992.4], [613057.5, 7471970.2], [613104.0, 7471984.6], [613301.9, 7472035.2], [613313.1, 7471924.5], [613456.6, 7471950.8], [613589.0, 7471880.2], [613710.8, 7471753.3], [613597.8, 7471697.2], [613638.5, 7471621.4], [613660.0, 7471538.4], [613673.4, 7471441.3], [613594.0, 7471320.6], [613696.3, 7471341.7], [613667.0, 7471233.7], [613481.0, 7471224.8], [613501.3, 7471119.0], [613396.1, 7471074.2], [613350.9, 7470909.1], [613241.7, 7470918.5], [613158.1, 7470840.1], [613059.8, 7470842.0], [612850.3, 7470618.5], [612693.7, 7470616.0], [612651.7, 7470550.2], [612520.2, 7470517.0], [612498.1, 7470376.6], [612434.9, 7470339.2], [612493.3, 7470262.3], [612450.3, 7470244.2], [612413.5, 7470206.2], [612314.5, 7470133.6], [612166.6, 7470181.7], [612062.4, 7470307.5], [612019.3, 7470237.8], [611893.9, 7470220.7], [611854.4, 7470243.9], [611860.2, 7470308.3], [611784.5, 7470252.2], [611649.9, 7470289.9], [611487.7, 7470453.6], [611435.5, 7470425.0], [611421.2, 7470354.1], [611353.1, 7470348.8], [611163.2, 7470574.2], [611123.7, 7470572.0], [611064.8, 7470486.2], [611047.2, 7470356.5], [610919.6, 7470171.2], [610963.9, 7470095.2], [610900.6, 7469801.3], [610776.1, 7469745.6], [610693.0, 7469779.8], [610619.1, 7469666.8], [610478.6, 7469563.6], [610437.5, 7469626.9], [610368.3, 7469609.2], [610402.5, 7469554.6], [610378.6, 7469486.2], [610419.8, 7469412.7], [610407.8, 7469311.8], [610313.5, 7469255.2], [610615.6, 7469158.0], [610682.2, 7469029.2], [610752.7, 7469041.2], [610799.6, 7468959.6], [611013.3, 7468895.2], [610850.6, 7468628.9], [610708.3, 7468549.5], [610669.2, 7468459.9], [610586.1, 7468446.1], [610642.3, 7468318.8], [610522.5, 7468407.6], [610320.0, 7468326.5], [610220.7, 7468447.7], [610071.2, 7468420.4], [609933.0, 7468460.7], [609909.3, 7468367.6], [609747.4, 7468410.9], [609621.3, 7468324.6], [609568.4, 7468230.3], [609585.9, 7468170.4], [609490.3, 7468148.1], [609281.7, 7467988.7], [609193.3, 7468015.4], [609148.0, 7468076.1], [609162.8, 7468172.3], [609252.3, 7468187.9], [609231.9, 7468224.0], [609053.7, 7468201.5], [609002.5, 7468255.0], [608755.2, 7468301.4], [608639.2, 7468255.5], [608686.5, 7468159.7], [608563.3, 7468132.6], [608597.9, 7468000.2], [608538.2, 7467794.3], [608569.9, 7467734.6], [608539.5, 7467633.8], [608459.4, 7467547.3], [608361.3, 7467229.9], [608291.8, 7466821.1], [608305.2, 7466549.2], [608259.5, 7466459.5], [608282.9, 7466325.6], [608177.9, 7466142.6], [608188.8, 7466059.6], [608117.0, 7465845.6], [607926.6, 7465636.5], [607894.4, 7465392.5], [607912.5, 7465335.7], [608042.2, 7465293.3], [608040.0, 7465228.5], [608111.3, 7465162.7], [608223.0, 7464932.0], [608434.6, 7464864.0], [605688.3, 7459558.9], [601614.3, 7452152.5], [593878.5, 7438656.1], [590382.9, 7432428.3], [589118.1, 7428551.8], [588885.5, 7426575.1], [588909.5, 7424527.9], [590371.8, 7416498.7], [592665.4, 7411818.8], [592656.8, 7411775.0], [592712.7, 7411723.7], [592732.4, 7411621.8], [592776.3, 7411589.6], [592750.0, 7411562.4], [592832.9, 7411467.5], [592814.7, 7411420.5], [592902.8, 7411436.8], [592885.7, 7411350.9], [592924.2, 7411207.4], [593034.2, 7411051.9], [592968.3, 7410991.9], [593130.4, 7410832.7], [592475.4, 7410171.0], [592595.8, 7409584.2], [593453.4, 7409224.5], [593755.7, 7409247.3], [593729.2, 7409130.3], [593775.3, 7409069.6], [593796.3, 7408994.6], [593780.6, 7408942.8], [593870.3, 7408949.5], [593908.2, 7408877.5], [593959.6, 7408863.2], [593965.9, 7408759.2], [593920.5, 7408666.7], [593994.3, 7408627.1], [594027.6, 7408546.5], [594094.4, 7408484.2], [594102.4, 7408442.9], [594185.9, 7408407.6], [594250.0, 7408470.3], [594296.0, 7408530.3], [594350.5, 7408540.6], [594458.1, 7408473.8], [594548.9, 7408533.9], [600429.4, 7399105.9], [604148.4, 7393362.8], [604211.5, 7393301.6], [604245.4, 7393209.4], [604359.2, 7393202.5], [604456.0, 7393092.6], [604426.1, 7393022.0], [604486.3, 7392897.2], [604476.9, 7392806.0], [604386.7, 7392835.1], [604339.1, 7392804.6], [604397.9, 7392760.7], [604419.6, 7392584.4], [604476.1, 7392537.3], [604462.9, 7392452.6], [604497.9, 7392404.0], [604450.6, 7392320.9], [604530.0, 7392250.8], [604494.6, 7392139.6], [604594.9, 7391794.9], [604509.2, 7391676.6], [604516.3, 7391622.1], [604474.3, 7391508.8], [604468.8, 7391427.0], [604533.5, 7391333.7], [604598.0, 7391314.2], [604676.6, 7391268.4], [604706.7, 7391289.0], [604747.0, 7391216.6], [605693.5, 7389646.3], [605600.6, 7389430.7], [605270.7, 7389220.4], [605577.0, 7388631.9], [606194.6, 7388520.5], [606233.8, 7388566.9], [606306.3, 7388518.8], [606341.5, 7388563.2], [606418.1, 7388502.4], [606376.6, 7388449.0], [606545.3, 7388445.3], [606609.1, 7388312.0], [606607.9, 7388152.2], [606754.2, 7388152.0], [606822.2, 7388088.4], [606837.1, 7387979.7], [607033.5, 7387988.9], [607108.5, 7388033.2], [607184.0, 7388025.3], [607219.0, 7387974.6], [607119.8, 7387725.5], [607132.0, 7387665.5], [606969.0, 7387454.2], [607033.7, 7387400.0], [607037.3, 7387322.8], [606893.1, 7387189.4], [606883.5, 7386978.2], [607046.1, 7386882.1], [607108.9, 7386689.1], [607310.4, 7386594.6], [607345.3, 7386617.4], [609780.2, 7382709.9], [612103.6, 7377488.2], [614766.058, 7370520.712], [613389.57, 7370458.079], [612078.908, 7370408.848], [612078.878, 7370408.847], [600723.816, 7369982.334], [600847.92, 7367226.299], [575470.26, 7375090.259], [562149.926, 7375474.395], [560741.431, 7374437.0], [559803.307, 7373462.411], [557287.632, 7370831.338], [556769.304, 7370078.025], [556809.918, 7369777.13], [557169.844, 7369520.859], [557523.268, 7369535.918], [557279.895, 7369030.03], [556095.343, 7369113.973], [554638.626, 7367022.047], [550800.376, 7368510.817], [547835.893, 7376212.218], [548535.442, 7377410.426], [552763.624, 7390278.19], [551033.17, 7398155.997], [549296.477, 7399728.41], [546980.158, 7398733.503], [546976.161, 7398990.265], [541487.003, 7406765.444], [538612.877, 7418902.093], [538619.006, 7418935.014], [539962.068, 7426059.145], [539466.605, 7426306.568], [539703.088, 7426618.836], [540033.755, 7426437.513], [541652.828, 7434993.63], [544714.597, 7435811.311], [547210.414, 7436158.377], [559024.553, 7444077.628], [564805.726, 7446058.54], [572715.158, 7447905.026], [573419.472, 7449242.715], [573223.38, 7449990.36], [578177.253, 7459365.977], [583137.732, 7471793.547], [583260.56, 7475568.692], [588174.998, 7484023.891], [594311.233, 7493036.835], [596819.988, 7500858.69], [605184.812, 7509739.683], [610585.457, 7520346.754], [610585.848, 7520347.523], [612091.882, 7523305.435], [612091.9, 7523305.4]]]}}, {\\\"id\\\": \\\"83\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"F\\\\u00f6gl\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 30.0, \\\"freshwarea\\\": 0.25, \\\"gml_id\\\": 1601100094, \\\"landarea\\\": 134.76, \\\"namefin\\\": \\\"F\\\\u00f6gl\\\\u00f6\\\", \\\"nameswe\\\": \\\"F\\\\u00f6gl\\\\u00f6\\\", \\\"natcode\\\": \\\"062\\\", \\\"seawarea\\\": 1734.06, \\\"totalarea\\\": 1869.07}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[135296.419, 6686417.698], [135967.905, 6686158.176], [137201.41, 6684758.158], [138186.263, 6684729.698], [138669.906, 6684184.647], [139235.181, 6684006.846], [139853.144, 6683420.0], [140007.498, 6684116.295], [139709.82, 6684792.268], [140178.663, 6685347.594], [140587.388, 6685460.726], [143334.989, 6683112.872], [144262.818, 6682855.287], [145735.02, 6681943.916], [146485.122, 6675695.505], [147457.037, 6674028.643], [146367.24, 6667244.39], [147801.365, 6664277.693], [151992.085, 6657754.958], [149751.188, 6651665.109], [140847.33, 6640542.36], [119817.787, 6611176.886], [104918.897, 6626745.607], [101936.132, 6627506.006], [113489.201, 6647528.952], [112854.254, 6662026.822], [113811.165, 6662396.889], [113817.644, 6662410.489], [113834.858, 6662405.891], [117472.934, 6663786.486], [118435.609, 6664672.148], [118628.437, 6665346.325], [119981.542, 6665771.016], [121004.739, 6665420.552], [122021.539, 6666252.477], [122213.966, 6667083.38], [124339.175, 6670082.241], [124583.15, 6675227.705], [126575.94, 6675617.47], [127372.356, 6675348.363], [127627.404, 6676141.632], [127458.389, 6676592.98], [127123.664, 6676715.269], [126801.023, 6677541.866], [127393.358, 6678439.433], [127132.259, 6679243.938], [126847.698, 6679646.401], [126755.987, 6680481.423], [127697.849, 6681101.196], [128383.179, 6681541.747], [129346.124, 6682604.677], [130249.436, 6681475.716], [130772.843, 6681246.236], [131117.444, 6681438.73], [131038.69, 6681805.741], [130561.18, 6682647.953], [131859.494, 6683368.712], [133870.645, 6681525.413], [134797.124, 6683258.574], [133390.281, 6685467.842], [133969.078, 6686166.075], [134448.19, 6686461.159], [135296.419, 6686417.698]]]}}, {\\\"id\\\": \\\"84\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Yl\\\\u00f6j\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 21.1, \\\"freshwarea\\\": 208.41, \\\"gml_id\\\": 1601100189, \\\"landarea\\\": 1115.73, \\\"namefin\\\": \\\"Yl\\\\u00f6j\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Yl\\\\u00f6j\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"980\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1324.14}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[313738.511, 6896936.1], [318778.676, 6892564.573], [319421.316, 6892184.389], [324642.406, 6886969.457], [326675.837, 6888024.827], [326732.219, 6887251.882], [327028.599, 6887263.14], [327262.562, 6882065.73], [328866.188, 6882142.386], [330375.138, 6879499.419], [330524.098, 6879326.954], [330433.296, 6879280.674], [330767.873, 6878737.852], [330891.696, 6878759.652], [331123.206, 6878392.423], [331396.14, 6874640.307], [332941.285, 6875024.524], [334488.264, 6872577.906], [334244.239, 6870678.845], [334979.358, 6866573.508], [335334.055, 6865909.718], [335978.108, 6864735.523], [336186.401, 6863327.992], [335413.736, 6862438.794], [333385.062, 6860843.35], [333399.63, 6860750.889], [333392.324, 6860647.88], [333473.286, 6860574.76], [333511.168, 6860481.333], [333492.174, 6860319.582], [333450.61, 6860252.862], [333362.883, 6860238.188], [333489.016, 6860123.517], [333534.832, 6860020.984], [333635.516, 6859974.828], [334465.339, 6859985.051], [331875.759, 6858435.143], [331469.929, 6855405.787], [330370.153, 6854871.349], [329479.549, 6853086.7], [329180.858, 6853072.287], [328876.407, 6852673.62], [329318.968, 6852300.347], [328719.611, 6850546.464], [329109.082, 6848874.892], [329843.464, 6847842.865], [328468.675, 6843983.318], [326823.44, 6843578.07], [326475.325, 6841903.801], [326508.716, 6839352.753], [327538.501, 6834564.224], [327966.045, 6827198.092], [325805.61, 6827013.04], [324970.212, 6827347.747], [324570.873, 6826990.257], [323661.447, 6827056.425], [323154.009, 6827710.865], [322082.372, 6826409.062], [321475.941, 6826114.403], [319504.269, 6825748.776], [318400.367, 6825031.513], [317934.515, 6825882.378], [317270.642, 6826230.485], [316673.988, 6826457.669], [316486.715, 6826869.93], [316192.01, 6827073.221], [315654.765, 6827929.596], [314393.368, 6829132.139], [311109.061, 6831687.279], [313466.916, 6832629.575], [313875.13, 6833059.91], [313807.862, 6835681.123], [313425.666, 6837757.058], [314209.98, 6840142.191], [313935.993, 6843341.248], [314955.55, 6845505.774], [312015.772, 6842699.842], [311373.106, 6842724.475], [311036.347, 6843906.982], [310086.087, 6844492.211], [308580.538, 6842517.022], [307984.308, 6841905.84], [305853.626, 6839216.358], [305349.708, 6839839.446], [304709.0, 6841239.413], [304643.033, 6842528.681], [301935.602, 6842602.016], [300004.596, 6842344.802], [299241.439, 6841628.914], [300513.738, 6846614.545], [300093.121, 6847168.958], [299981.439, 6848115.673], [300266.32, 6849598.41], [299858.417, 6850425.95], [300628.28, 6851030.935], [301375.253, 6851326.623], [301779.88, 6852321.38], [302583.75, 6852852.003], [303761.235, 6851832.823], [304231.77, 6851821.443], [304881.902, 6851262.994], [307461.846, 6852875.657], [307047.202, 6853439.6], [305802.721, 6853851.352], [306768.795, 6855635.558], [307429.524, 6855207.044], [308020.012, 6854322.409], [308654.269, 6855891.36], [309749.086, 6856694.085], [311092.244, 6857818.482], [311293.968, 6858349.964], [312779.973, 6858176.097], [313426.316, 6858868.419], [316272.692, 6858210.176], [317074.272, 6858393.054], [320599.576, 6858758.446], [320589.839, 6859113.629], [320723.406, 6862841.504], [320321.445, 6862980.669], [317028.774, 6862742.606], [316672.22, 6863410.375], [317910.962, 6863941.656], [317800.436, 6864415.86], [316617.4, 6863892.397], [315782.966, 6864066.625], [315758.041, 6865290.484], [314258.78, 6864713.182], [314159.579, 6865269.96], [313272.172, 6865203.859], [313480.406, 6866001.104], [313798.158, 6866018.652], [313809.623, 6868152.92], [313360.096, 6868129.005], [313324.271, 6868568.461], [313594.275, 6869102.257], [313482.743, 6869776.613], [313039.109, 6870103.526], [312538.891, 6869840.526], [312365.663, 6870336.861], [310500.218, 6871415.773], [309199.852, 6871875.565], [306526.779, 6874055.906], [306164.701, 6875299.577], [306551.8, 6875938.515], [307132.545, 6876639.82], [306921.704, 6877445.607], [307236.528, 6877253.31], [307348.687, 6877745.982], [309302.757, 6880211.524], [308938.913, 6881751.294], [309982.605, 6883789.476], [310145.228, 6887445.005], [309561.128, 6887575.23], [308106.153, 6887549.454], [308082.872, 6888171.256], [306556.562, 6888949.323], [306598.599, 6891659.57], [307300.736, 6891993.291], [308740.105, 6894433.08], [310524.506, 6896577.965], [311165.511, 6897849.174], [313738.511, 6896936.1]]]}}, {\\\"id\\\": \\\"85\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kruunupyy\\\", \\\"elakelaisten_osuus\\\": 28.1, \\\"freshwarea\\\": 38.85, \\\"gml_id\\\": 1601100473, \\\"landarea\\\": 712.86, \\\"namefin\\\": \\\"Kruunupyy\\\", \\\"nameswe\\\": \\\"Kronoby\\\", \\\"natcode\\\": \\\"288\\\", \\\"seawarea\\\": 0.94, \\\"totalarea\\\": 752.65}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[326402.468, 7058215.614], [326971.092, 7058301.574], [327080.648, 7057735.383], [326763.158, 7057965.663], [326551.978, 7057560.865], [326703.142, 7057210.065], [326104.255, 7057407.028], [325532.798, 7057673.873], [325107.334, 7057878.341], [325017.643, 7058232.471], [325251.749, 7058481.009], [326402.468, 7058215.614]]], [[[304434.679, 7079507.56], [306539.074, 7077742.32], [310837.425, 7073823.976], [311028.805, 7074056.564], [311691.634, 7074187.754], [311946.395, 7073513.712], [311591.596, 7073472.546], [311318.356, 7073767.683], [311193.13, 7073513.129], [311760.674, 7072838.133], [312416.297, 7072431.102], [313115.078, 7071689.876], [313541.075, 7071187.623], [314096.476, 7070968.9], [314727.342, 7070911.836], [314832.381, 7071410.855], [315551.871, 7072650.646], [315677.761, 7073088.416], [315735.4, 7073594.868], [316236.263, 7074065.869], [316507.043, 7073878.05], [316664.381, 7074058.36], [316589.966, 7074396.325], [317098.858, 7074870.674], [319350.795, 7075595.701], [320539.87, 7075055.313], [320693.229, 7075512.175], [320962.029, 7075627.377], [321500.39, 7075188.224], [322073.108, 7075220.166], [322655.938, 7074189.391], [323479.033, 7074466.543], [324522.137, 7072617.613], [325216.489, 7073068.132], [325213.974, 7075280.634], [326421.797, 7077190.967], [331240.761, 7072458.508], [332046.553, 7071358.332], [333027.085, 7070397.809], [336237.61, 7067749.705], [338953.924, 7064950.882], [336906.316, 7062947.037], [334271.841, 7064707.527], [332213.217, 7062495.019], [330352.027, 7061777.576], [328936.369, 7060821.321], [328227.139, 7060897.697], [327506.187, 7061821.083], [326913.888, 7062558.894], [326832.996, 7063304.619], [326702.412, 7063484.011], [325264.099, 7064134.802], [325692.42, 7063391.251], [325926.953, 7061683.339], [324291.708, 7060555.341], [324431.884, 7060307.208], [324925.453, 7059544.041], [324769.167, 7059100.098], [324243.484, 7058969.512], [324527.743, 7058699.894], [324397.56, 7058447.331], [324201.634, 7058549.327], [323249.655, 7059332.708], [322684.58, 7059188.11], [325898.683, 7055701.029], [326166.776, 7056154.334], [326642.998, 7056123.089], [326772.708, 7056566.966], [327740.45, 7056046.106], [328348.451, 7057109.247], [328872.451, 7056975.044], [329258.998, 7057500.569], [329586.652, 7057072.159], [329689.804, 7056775.221], [329808.909, 7055773.017], [330167.681, 7055524.439], [329876.717, 7055049.447], [330054.905, 7054772.204], [329488.815, 7054221.312], [329044.917, 7054532.602], [329010.342, 7053435.068], [330117.7, 7053663.605], [330288.525, 7053176.113], [329919.754, 7052880.098], [330505.135, 7052318.143], [330048.196, 7051796.216], [333511.413, 7049104.027], [333567.123, 7043747.806], [333423.077, 7041330.967], [333595.445, 7041332.897], [333875.792, 7040206.713], [333492.636, 7040043.086], [333662.261, 7038502.26], [333399.799, 7038382.826], [335589.777, 7032471.214], [334929.075, 7032219.92], [334429.535, 7032581.422], [334429.162, 7032704.914], [334155.426, 7032882.085], [334107.289, 7032815.091], [331474.916, 7034711.75], [330060.982, 7036830.836], [330271.236, 7037213.1], [329368.077, 7038305.926], [329173.695, 7038138.838], [328212.792, 7039548.574], [328641.76, 7039623.596], [328578.079, 7039964.307], [328681.417, 7040022.656], [328735.559, 7040236.049], [327873.142, 7041878.205], [327811.153, 7042330.427], [327400.389, 7042357.493], [327173.91, 7042602.158], [326626.683, 7041894.341], [326402.959, 7042224.615], [326482.883, 7042259.655], [326432.111, 7042394.681], [326193.207, 7042536.619], [324276.543, 7043754.98], [324010.547, 7043430.194], [323927.026, 7043390.941], [323649.544, 7043375.123], [323494.299, 7043508.379], [323531.703, 7043563.964], [323422.701, 7043624.934], [323389.73, 7043715.074], [323128.898, 7043925.217], [322660.378, 7043976.115], [322574.575, 7044129.598], [322425.792, 7044331.883], [322203.986, 7044573.717], [322132.327, 7044594.452], [321710.698, 7044242.138], [320481.677, 7046141.494], [321139.149, 7046416.089], [320433.6, 7047433.735], [319537.916, 7048722.185], [318859.594, 7049696.54], [310941.867, 7061289.34], [311288.941, 7061579.033], [311091.855, 7062153.809], [310408.525, 7062947.057], [309990.452, 7062384.659], [308283.959, 7063644.681], [307530.194, 7063923.479], [307615.197, 7064147.443], [307000.185, 7064366.642], [306923.935, 7064149.975], [304827.984, 7064911.569], [303361.915, 7066395.147], [302403.197, 7067163.684], [302259.288, 7067018.268], [301922.564, 7067262.579], [301613.657, 7066960.371], [300970.465, 7067443.665], [300128.811, 7068302.851], [299574.172, 7067760.238], [299338.874, 7067999.77], [299070.063, 7067739.784], [299179.645, 7067374.12], [299072.406, 7067269.228], [298346.695, 7067994.924], [298387.719, 7068433.409], [297906.104, 7069124.814], [297402.571, 7069402.598], [296612.161, 7070089.365], [296351.033, 7071028.518], [296397.305, 7072302.936], [294208.135, 7074306.894], [294882.065, 7075420.622], [298921.962, 7078310.943], [299015.297, 7078375.488], [299255.144, 7078039.314], [299399.036, 7077481.529], [299694.209, 7077891.041], [299494.166, 7078263.467], [299553.595, 7078696.979], [301112.326, 7079187.337], [301248.92, 7078745.212], [302416.55, 7079106.889], [302407.634, 7079594.368], [303549.675, 7079942.708], [304434.679, 7079507.56]]]]}}, {\\\"id\\\": \\\"86\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Joensuu\\\", \\\"elakelaisten_osuus\\\": 25.8, \\\"freshwarea\\\": 369.28, \\\"gml_id\\\": 1601100280, \\\"landarea\\\": 2381.68, \\\"namefin\\\": \\\"Joensuu\\\", \\\"nameswe\\\": \\\"Joensuu\\\", \\\"natcode\\\": \\\"167\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2750.96}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[663795.508, 6994446.548], [665157.012, 6994171.849], [666239.208, 6992704.325], [668345.445, 6991808.972], [670214.749, 6989861.773], [670090.884, 6989782.633], [670862.669, 6987968.304], [671676.485, 6986889.679], [672938.414, 6985533.785], [673344.063, 6984896.264], [674176.414, 6984152.019], [674481.243, 6981208.873], [674480.782, 6981064.708], [675235.243, 6979494.873], [676047.627, 6979200.669], [676910.632, 6973281.831], [677554.692, 6973142.631], [678282.085, 6971699.973], [679275.935, 6971264.383], [679634.831, 6971455.974], [679729.69, 6970028.627], [679494.528, 6969797.393], [679530.855, 6969472.713], [680822.426, 6967595.683], [681635.824, 6964973.057], [681138.441, 6964057.933], [681507.72, 6962280.994], [680989.904, 6960424.716], [679558.772, 6957894.671], [680014.899, 6956118.07], [681664.105, 6955663.125], [683323.602, 6955798.038], [684044.446, 6953505.986], [684021.086, 6953236.458], [686272.568, 6951663.89], [688086.05, 6950805.901], [688163.178, 6949960.732], [689348.033, 6949680.871], [690507.255, 6948492.426], [689679.47, 6946442.685], [690063.132, 6945603.494], [691030.037, 6944621.474], [692777.871, 6942927.514], [692656.34, 6942324.763], [692992.356, 6942273.809], [693625.23, 6941975.278], [693964.633, 6941633.373], [694254.62, 6941876.715], [694801.369, 6941971.982], [695190.953, 6941582.406], [695350.072, 6941179.5], [695905.262, 6940912.592], [697433.185, 6941834.867], [697940.45, 6941169.569], [698653.109, 6940745.577], [698407.138, 6940364.575], [698704.844, 6940115.036], [698787.012, 6939794.208], [699066.924, 6939045.192], [698915.757, 6938686.047], [699435.692, 6937984.063], [700161.307, 6936266.432], [700534.325, 6935763.994], [701294.207, 6934733.449], [702023.075, 6933578.153], [702325.607, 6934278.083], [702832.078, 6934754.105], [706277.332, 6931729.156], [706318.636, 6931145.187], [705976.444, 6930937.373], [705891.832, 6930495.166], [705634.515, 6930232.234], [705480.59, 6930576.711], [705085.154, 6930572.838], [704586.42, 6930098.538], [704049.398, 6930448.666], [703156.58, 6929990.366], [703298.688, 6926388.775], [704464.81, 6923322.525], [707762.709, 6925215.004], [707764.854, 6925216.235], [707850.028, 6925264.883], [709738.174, 6926343.311], [710910.398, 6927022.18], [710911.011, 6927022.535], [711370.3, 6927288.5], [710590.2, 6926186.8], [710323.5, 6925932.0], [704158.9, 6917526.2], [704238.3, 6917436.3], [704282.5, 6917471.1], [704364.4, 6917421.5], [704401.4, 6917487.8], [704596.9, 6917393.7], [704577.2, 6917295.5], [704695.7, 6917274.7], [704755.4, 6917204.6], [704831.5, 6917184.9], [704862.7, 6917110.6], [705012.0, 6917054.3], [705112.2, 6917044.5], [705197.2, 6916976.1], [704927.7, 6915269.2], [704369.5, 6914483.1], [703699.3, 6914565.1], [703156.8, 6914768.5], [702317.7, 6914882.4], [698920.1, 6910767.1], [697744.3, 6910157.5], [697674.863, 6910030.987], [697697.7, 6909076.9], [697028.89, 6908239.365], [696764.092, 6907899.744], [696752.37, 6907881.137], [696528.317, 6908367.702], [696527.945, 6908368.511], [696520.128, 6908385.487], [696516.781, 6908392.754], [696516.471, 6908393.429], [696514.017, 6908398.758], [696507.906, 6908412.029], [696507.887, 6908412.071], [692811.74, 6916450.483], [691077.367, 6915746.488], [689711.045, 6919073.333], [687361.952, 6918272.847], [687010.702, 6918834.032], [686916.834, 6919401.955], [684631.095, 6920784.083], [683982.147, 6918990.217], [681830.186, 6918563.875], [680785.662, 6918065.945], [679915.218, 6917890.608], [676421.97, 6916391.581], [674742.656, 6918423.648], [674362.876, 6918168.096], [673591.731, 6918836.971], [673048.32, 6918599.55], [672529.247, 6919040.889], [672088.207, 6919236.3], [671624.516, 6918496.345], [669615.714, 6917470.26], [668116.766, 6922665.87], [668027.304, 6923221.098], [667557.312, 6924624.333], [667369.006, 6924760.189], [665905.685, 6924256.033], [665560.524, 6923412.711], [665768.236, 6923019.263], [664902.35, 6922015.583], [664173.672, 6922933.068], [663879.024, 6922954.266], [663378.636, 6922065.603], [662536.844, 6922167.323], [662215.917, 6921528.212], [661918.487, 6921346.43], [661352.981, 6921322.454], [660876.623, 6921579.281], [660538.702, 6921869.921], [660096.534, 6921765.571], [659907.768, 6921437.529], [659429.27, 6921702.013], [659249.23, 6922207.604], [658698.411, 6922489.006], [657076.229, 6921119.614], [653774.188, 6920085.635], [653572.23, 6919496.4], [652577.649, 6918908.503], [652352.969, 6918603.785], [649504.583, 6919105.72], [649081.643, 6919384.661], [647767.16, 6920094.842], [647112.265, 6921079.379], [647031.979, 6921595.042], [646542.873, 6921906.616], [646251.081, 6922430.786], [642761.947, 6922622.43], [642490.814, 6928299.034], [641593.149, 6935279.406], [639627.554, 6938670.9], [635384.477, 6945034.878], [635152.375, 6947112.966], [635266.73, 6947868.01], [635158.652, 6948626.609], [634656.762, 6948934.426], [633914.307, 6949327.718], [635129.845, 6949861.893], [635429.925, 6949992.142], [635799.486, 6949153.943], [636669.252, 6948479.895], [638808.2, 6948032.908], [640937.244, 6947585.669], [648754.384, 6947504.294], [650282.676, 6944557.164], [649996.412, 6944466.19], [650206.575, 6943639.692], [649117.501, 6942296.755], [649422.37, 6941453.341], [650575.746, 6941905.528], [651107.273, 6941734.153], [651052.422, 6941322.604], [651244.409, 6940711.585], [651945.803, 6941129.881], [652151.751, 6940937.294], [653909.619, 6942028.69], [654044.872, 6941859.173], [654334.696, 6942034.647], [654057.377, 6942458.344], [659635.411, 6945837.657], [661118.679, 6945537.437], [663614.683, 6944484.436], [664344.508, 6944403.979], [664764.288, 6945883.77], [664125.304, 6946552.682], [664295.988, 6947026.551], [664665.386, 6947504.088], [665823.552, 6947993.708], [666953.264, 6949785.673], [667210.78, 6949417.305], [668216.934, 6948570.097], [668582.209, 6948948.489], [668125.664, 6949869.748], [668229.975, 6951886.784], [664240.344, 6956227.449], [663682.525, 6957972.933], [663198.362, 6959111.927], [662683.073, 6958983.897], [661381.754, 6959622.604], [660607.165, 6959872.447], [659200.405, 6960763.64], [657806.219, 6961440.344], [655004.356, 6964709.983], [654076.735, 6968566.472], [653087.79, 6970195.598], [652958.837, 6970896.529], [649880.827, 6976093.871], [650175.143, 6976302.143], [650492.848, 6982361.755], [650516.082, 6982831.658], [650560.484, 6983688.777], [650443.95, 6984106.048], [649984.951, 6989407.898], [649831.263, 6989551.261], [649956.9, 6989665.751], [649790.562, 6991216.563], [649612.358, 6992908.431], [650852.469, 6994189.95], [651894.592, 6993063.455], [652759.555, 6993054.833], [652974.341, 6993673.986], [653020.72, 6994390.293], [653761.679, 6994511.778], [657750.642, 6993534.47], [658838.979, 6993077.417], [660913.339, 6994518.394], [661031.492, 6994527.678], [661128.937, 6994473.887], [663795.508, 6994446.548]]]}}, {\\\"id\\\": \\\"87\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Uurainen\\\", \\\"elakelaisten_osuus\\\": 22.6, \\\"freshwarea\\\": 24.28, \\\"gml_id\\\": 1601100356, \\\"landarea\\\": 347.98, \\\"namefin\\\": \\\"Uurainen\\\", \\\"nameswe\\\": \\\"Uurainen\\\", \\\"natcode\\\": \\\"892\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 372.26}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[429393.938, 6936732.004], [429617.969, 6934094.872], [432174.329, 6934467.438], [432378.461, 6932704.352], [431291.6, 6932922.657], [431351.881, 6932181.757], [432461.229, 6932096.583], [432560.366, 6931044.716], [432443.75, 6930803.022], [432762.406, 6929615.249], [432631.692, 6929571.297], [429033.855, 6928087.498], [427911.435, 6925113.094], [426631.071, 6922750.799], [425046.74, 6919917.377], [422668.482, 6917206.773], [422219.432, 6917827.664], [421940.386, 6919388.501], [419776.319, 6919054.383], [417681.676, 6918648.987], [417562.973, 6919581.838], [415296.776, 6919329.108], [415531.663, 6918008.289], [413338.006, 6917308.572], [412749.26, 6919022.569], [411349.66, 6918711.998], [410649.709, 6921053.84], [407426.252, 6922247.712], [403170.836, 6923157.032], [404066.781, 6925146.58], [406217.602, 6927436.297], [406654.3, 6932950.693], [407127.784, 6935037.751], [408283.49, 6936280.872], [410065.516, 6935294.782], [413366.837, 6935258.52], [415570.142, 6934913.023], [415739.273, 6934277.43], [417949.047, 6933215.534], [420201.715, 6933989.57], [419885.828, 6935172.275], [421265.698, 6935286.428], [421591.256, 6936094.008], [422021.596, 6936040.476], [423853.693, 6935808.742], [425104.742, 6937066.692], [429393.938, 6936732.004]]]}}, {\\\"id\\\": \\\"88\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Muurame\\\", \\\"elakelaisten_osuus\\\": 20.7, \\\"freshwarea\\\": 50.0, \\\"gml_id\\\": 1601100555, \\\"landarea\\\": 144.05, \\\"namefin\\\": \\\"Muurame\\\", \\\"nameswe\\\": \\\"Muurame\\\", \\\"natcode\\\": \\\"500\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 194.05}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[426487.439, 6899875.054], [426376.844, 6897288.566], [426629.627, 6895947.894], [427144.745, 6895709.884], [430600.781, 6897516.207], [430769.598, 6896258.974], [431927.296, 6894450.362], [434217.355, 6893640.367], [434793.671, 6895045.074], [435520.04, 6894857.225], [435547.503, 6894835.547], [437152.516, 6891742.341], [435560.496, 6891724.767], [434853.152, 6890881.742], [433289.116, 6891777.422], [432474.667, 6890668.589], [433736.25, 6889665.586], [433868.946, 6886801.784], [435390.256, 6886240.379], [435350.145, 6885807.582], [437094.213, 6885285.371], [437070.844, 6883996.996], [435607.855, 6881871.84], [431703.421, 6883301.642], [430211.625, 6883207.27], [428595.848, 6882613.439], [428617.477, 6882358.201], [427278.115, 6882913.769], [425939.293, 6882761.9], [423687.169, 6883031.097], [423263.34, 6883148.446], [423410.271, 6884389.546], [420601.026, 6884704.181], [422074.082, 6888571.644], [422835.669, 6889290.658], [423190.816, 6890576.839], [423716.002, 6890725.382], [424031.16, 6892855.821], [423210.494, 6892619.312], [422345.843, 6892704.272], [421943.7, 6893579.215], [421953.286, 6894739.145], [421531.137, 6894849.459], [420839.974, 6895655.202], [420770.799, 6896105.234], [420905.67, 6896612.732], [420668.681, 6897137.272], [420499.348, 6898006.912], [420821.578, 6898527.538], [421426.058, 6899949.691], [421503.174, 6900573.737], [421725.2, 6901048.376], [422220.914, 6900840.313], [423552.427, 6900748.688], [425743.026, 6902051.391], [426487.439, 6899875.054]]]}}, {\\\"id\\\": \\\"89\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rantasalmi\\\", \\\"elakelaisten_osuus\\\": 39.5, \\\"freshwarea\\\": 366.0, \\\"gml_id\\\": 1601100415, \\\"landarea\\\": 559.19, \\\"namefin\\\": \\\"Rantasalmi\\\", \\\"nameswe\\\": \\\"Rantasalmi\\\", \\\"natcode\\\": \\\"681\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 925.19}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[555956.32, 6901030.814], [555737.296, 6900573.013], [556021.98, 6900527.134], [556204.757, 6900929.51], [556770.064, 6900777.628], [556754.083, 6900409.287], [557213.296, 6900335.32], [557616.836, 6899889.703], [558458.794, 6899806.343], [558450.388, 6900732.768], [559313.846, 6899726.782], [560585.027, 6899854.639], [560780.843, 6900271.071], [561402.99, 6900174.115], [562480.762, 6898943.022], [563758.348, 6898243.012], [565361.992, 6899207.833], [565750.132, 6899714.53], [565726.236, 6900342.176], [565987.711, 6900494.495], [566930.652, 6900182.247], [567815.591, 6900724.033], [568505.472, 6900213.797], [568310.797, 6900064.003], [568587.99, 6899506.13], [569025.613, 6899644.777], [572240.425, 6898837.522], [573392.071, 6897690.092], [573145.575, 6897241.472], [573472.447, 6896765.367], [573005.139, 6896377.221], [572390.887, 6896305.646], [572308.63, 6895139.418], [572032.048, 6894442.298], [572168.705, 6893011.178], [573001.371, 6892831.255], [573582.74, 6892415.227], [572407.725, 6891108.249], [572825.862, 6890575.466], [573499.694, 6890145.144], [573424.726, 6889907.94], [574018.891, 6889429.637], [573711.419, 6888945.229], [574011.605, 6888136.158], [574844.872, 6888912.239], [575189.738, 6888964.557], [576537.076, 6888611.817], [576991.587, 6888950.347], [577773.764, 6888530.074], [578423.635, 6888585.021], [578952.397, 6889164.997], [580218.097, 6888476.674], [581463.085, 6887277.647], [582811.916, 6886599.644], [583167.512, 6886596.132], [583551.588, 6884904.596], [584212.136, 6884689.074], [584885.173, 6883751.874], [584321.59, 6881428.596], [585400.855, 6881160.144], [586471.488, 6878592.39], [585198.226, 6877286.095], [586715.373, 6876801.925], [588014.88, 6876810.63], [588151.542, 6876035.107], [586552.783, 6875445.663], [587034.263, 6874945.18], [587387.794, 6875073.117], [587957.279, 6874681.976], [586772.587, 6873948.086], [586791.364, 6872949.66], [587646.156, 6871844.552], [588259.997, 6872048.684], [588731.706, 6872874.024], [591178.033, 6872219.382], [590242.401, 6870729.177], [589560.183, 6870451.04], [587815.282, 6869942.591], [587799.535, 6869432.751], [587258.29, 6868072.246], [588046.025, 6867632.421], [587873.581, 6867234.803], [586150.649, 6867473.55], [585502.755, 6867752.973], [585695.654, 6867909.143], [585258.297, 6868572.776], [585191.582, 6869152.684], [584065.093, 6869174.373], [583631.897, 6869585.692], [583001.161, 6869408.418], [582833.256, 6869009.112], [582360.759, 6869422.829], [582145.489, 6869228.648], [581237.585, 6869754.137], [580998.768, 6869474.11], [581817.76, 6868897.776], [581639.77, 6868683.337], [580807.196, 6869150.279], [580683.053, 6868976.026], [580922.506, 6868543.229], [580504.45, 6868052.31], [580404.363, 6867728.928], [580054.604, 6867440.911], [580305.185, 6866919.142], [579683.838, 6867400.798], [579237.68, 6867282.452], [578733.716, 6867655.208], [577654.337, 6867025.633], [577706.518, 6866817.418], [576304.194, 6865603.498], [575788.401, 6865647.176], [575528.304, 6865853.39], [575157.357, 6865410.566], [574198.334, 6866355.374], [573711.432, 6866159.649], [573055.79, 6866725.313], [572459.725, 6867160.331], [571941.44, 6866547.775], [572562.287, 6866049.4], [572253.123, 6865646.544], [571027.606, 6866735.99], [570720.223, 6867348.738], [569888.15, 6868172.296], [569500.011, 6867698.485], [568722.229, 6867180.188], [568228.928, 6867164.19], [566988.322, 6867683.567], [565842.794, 6866638.781], [565167.757, 6867524.515], [564115.078, 6867829.082], [563926.448, 6869190.52], [564394.436, 6870076.615], [563480.825, 6870669.564], [562911.855, 6870609.116], [562687.72, 6871059.157], [562009.79, 6871747.477], [561098.513, 6871621.745], [560416.643, 6872093.845], [560240.911, 6871897.911], [559344.14, 6872164.633], [558515.7, 6871470.773], [558174.015, 6870818.567], [557780.027, 6870460.784], [557896.683, 6869983.877], [558815.413, 6869375.124], [558418.668, 6868901.336], [557700.808, 6868365.315], [556902.745, 6868619.87], [555795.344, 6869435.942], [555794.246, 6869436.732], [554457.888, 6869925.991], [553256.664, 6871650.592], [552215.086, 6871557.022], [551836.204, 6871972.526], [551255.48, 6871832.514], [550187.999, 6872395.371], [549372.556, 6872396.482], [550017.371, 6873177.965], [549682.102, 6873653.972], [549283.866, 6873264.026], [547610.234, 6874297.6], [547348.142, 6873981.626], [546562.347, 6874609.577], [546895.516, 6875002.412], [546659.342, 6875202.249], [546349.138, 6874780.198], [545654.414, 6875206.721], [546400.205, 6876160.54], [545054.922, 6878834.65], [545338.107, 6878987.191], [545711.06, 6878602.848], [546806.917, 6878885.442], [546478.94, 6879901.329], [546726.239, 6880293.271], [547008.327, 6879990.796], [547578.325, 6879907.844], [547788.313, 6880365.548], [549009.391, 6879708.097], [548843.109, 6880161.769], [549385.665, 6881071.772], [548864.17, 6881888.137], [548420.613, 6883700.346], [549443.011, 6884360.739], [550110.335, 6883908.467], [550541.877, 6882833.866], [552200.414, 6881431.046], [552645.767, 6882172.561], [551697.843, 6882976.38], [552154.408, 6884170.336], [551724.376, 6884961.512], [550855.522, 6885778.775], [551281.044, 6886298.867], [552973.862, 6885447.924], [553302.569, 6885876.357], [553133.891, 6886090.065], [553725.61, 6886489.964], [554728.644, 6885749.914], [554971.966, 6886263.892], [554447.563, 6886285.708], [554361.48, 6887211.019], [556354.164, 6887621.067], [553481.163, 6893584.51], [554194.079, 6894731.97], [554259.048, 6895186.886], [553653.889, 6895827.222], [553934.571, 6896222.763], [554413.167, 6896322.686], [554475.042, 6896623.135], [554242.838, 6896967.764], [553936.263, 6896929.077], [553425.966, 6897475.152], [556610.766, 6897680.592], [556805.285, 6897921.495], [556736.708, 6898421.692], [555558.171, 6900263.037], [554513.792, 6900833.998], [555068.568, 6901763.5], [555956.32, 6901030.814]]]}}, {\\\"id\\\": \\\"90\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tohmaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 37.9, \\\"freshwarea\\\": 57.6, \\\"gml_id\\\": 1601100604, \\\"landarea\\\": 837.76, \\\"namefin\\\": \\\"Tohmaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Tohmaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"848\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 895.36}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[667557.312, 6924624.333], [668027.304, 6923221.098], [668116.766, 6922665.87], [669615.714, 6917470.26], [671624.516, 6918496.345], [672088.207, 6919236.3], [672529.247, 6919040.889], [673048.32, 6918599.55], [673591.731, 6918836.971], [674362.876, 6918168.096], [674742.656, 6918423.648], [676421.97, 6916391.581], [679915.218, 6917890.608], [680785.662, 6918065.945], [681830.186, 6918563.875], [683982.147, 6918990.217], [684631.095, 6920784.083], [686916.834, 6919401.955], [687010.702, 6918834.032], [687361.952, 6918272.847], [689711.045, 6919073.333], [691077.367, 6915746.488], [692811.74, 6916450.483], [696507.887, 6908412.071], [696507.906, 6908412.029], [696514.017, 6908398.758], [696516.471, 6908393.429], [696516.781, 6908392.754], [696520.128, 6908385.487], [696527.945, 6908368.511], [696528.317, 6908367.702], [696752.37, 6907881.137], [695606.6, 6906062.4], [694689.1, 6905076.4], [694602.6, 6905062.8], [693447.1, 6903008.3], [691798.2, 6903086.8], [691585.5, 6903076.5], [690160.483, 6902823.943], [689969.604, 6902406.312], [689794.382, 6902051.251], [689194.7, 6900901.0], [688945.9, 6900754.3], [688872.7, 6900657.3], [688811.8, 6900501.1], [688792.5, 6900399.6], [688908.1, 6899842.9], [688965.7, 6899698.0], [689054.2, 6899520.1], [689139.7, 6899408.2], [689178.0, 6899238.2], [689181.4, 6899039.2], [689227.4, 6898911.5], [689275.4, 6898838.7], [687760.783, 6895195.532], [685889.7, 6892494.9], [684479.685, 6890252.27], [683240.341, 6888205.805], [682403.098, 6886822.349], [682103.9, 6886370.8], [681990.185, 6886181.692], [681573.05, 6886242.264], [681153.054, 6886025.907], [681089.318, 6885822.899], [680181.794, 6885896.163], [679578.481, 6885719.439], [679444.199, 6886159.145], [679015.596, 6886489.424], [678449.811, 6886677.312], [677853.243, 6886706.563], [676881.263, 6888282.445], [677361.491, 6889258.658], [675991.082, 6890721.844], [675174.573, 6890937.354], [673758.324, 6892051.532], [672804.279, 6891604.813], [671755.824, 6891974.066], [671821.103, 6893908.314], [670672.782, 6893569.474], [669738.307, 6894147.409], [668628.611, 6893295.98], [668116.833, 6893101.56], [668119.202, 6893188.979], [667974.554, 6893435.125], [667971.875, 6893802.995], [668175.748, 6893990.531], [668065.41, 6894421.046], [668047.728, 6895198.494], [667795.119, 6895848.18], [667855.516, 6896373.51], [667979.02, 6896783.922], [667822.751, 6897100.395], [667815.657, 6897516.522], [667630.165, 6897723.873], [667596.608, 6898149.715], [667228.898, 6898233.546], [666844.751, 6898791.583], [667460.734, 6899229.415], [667287.038, 6899960.565], [667345.65, 6900413.122], [666245.194, 6902894.297], [665960.397, 6904144.477], [665643.888, 6904515.249], [664967.04, 6904895.231], [664250.562, 6904757.297], [663696.443, 6904809.919], [663329.854, 6904467.86], [663163.728, 6904237.255], [661966.889, 6904248.602], [661739.375, 6904606.944], [661477.032, 6904722.421], [661289.921, 6903598.386], [659920.089, 6904559.571], [659552.851, 6906604.779], [658710.472, 6906336.614], [658686.766, 6906111.18], [658423.263, 6905964.833], [658047.529, 6906187.791], [657502.158, 6905666.325], [656095.95, 6905020.107], [654967.056, 6907203.2], [654101.267, 6907791.701], [653731.957, 6909271.163], [654612.04, 6909937.414], [657246.411, 6909853.9], [657433.149, 6909917.487], [654814.331, 6918271.503], [654478.998, 6918537.512], [652577.649, 6918908.503], [653572.23, 6919496.4], [653774.188, 6920085.635], [657076.229, 6921119.614], [658698.411, 6922489.006], [659249.23, 6922207.604], [659429.27, 6921702.013], [659907.768, 6921437.529], [660096.534, 6921765.571], [660538.702, 6921869.921], [660876.623, 6921579.281], [661352.981, 6921322.454], [661918.487, 6921346.43], [662215.917, 6921528.212], [662536.844, 6922167.323], [663378.636, 6922065.603], [663879.024, 6922954.266], [664173.672, 6922933.068], [664902.35, 6922015.583], [665768.236, 6923019.263], [665560.524, 6923412.711], [665905.685, 6924256.033], [667369.006, 6924760.189], [667557.312, 6924624.333]]]}}, {\\\"id\\\": \\\"91\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kustavi\\\", \\\"elakelaisten_osuus\\\": 43.7, \\\"freshwarea\\\": 1.87, \\\"gml_id\\\": 1601100381, \\\"landarea\\\": 165.82, \\\"namefin\\\": \\\"Kustavi\\\", \\\"nameswe\\\": \\\"Gustavs\\\", \\\"natcode\\\": \\\"304\\\", \\\"seawarea\\\": 602.46, \\\"totalarea\\\": 770.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[174109.351, 6750276.195], [185267.85, 6743788.024], [190107.869, 6739672.881], [189997.339, 6739222.377], [190017.339, 6738867.478], [190156.056, 6738405.334], [190654.462, 6738021.407], [191405.895, 6736340.347], [191905.423, 6735915.885], [191989.062, 6735179.783], [191924.172, 6734143.657], [192169.833, 6732315.211], [192762.13, 6731724.553], [193747.868, 6731395.801], [196809.792, 6728434.026], [198050.176, 6726928.299], [198495.912, 6726269.098], [198491.208, 6726160.496], [197802.175, 6725849.426], [197367.459, 6724835.154], [197198.389, 6724267.326], [197483.776, 6723636.168], [197689.565, 6723310.926], [198258.485, 6723103.684], [199305.922, 6722050.634], [199293.314, 6721506.899], [198931.498, 6721642.805], [198811.077, 6721123.901], [198730.751, 6720472.579], [198531.645, 6720324.362], [198718.91, 6719390.193], [198856.749, 6719007.097], [199244.059, 6718739.965], [199729.771, 6715828.949], [200014.48, 6714121.905], [199787.494, 6713076.908], [199883.428, 6712104.533], [198381.306, 6711944.119], [197335.339, 6713122.634], [195748.052, 6714718.828], [195403.674, 6715519.498], [194846.442, 6716583.817], [192649.548, 6717398.234], [191993.822, 6717458.499], [191038.458, 6717531.282], [186604.751, 6716432.425], [178985.102, 6721226.62], [179052.698, 6723104.0], [179095.408, 6725644.63], [179054.524, 6726682.221], [177411.693, 6731630.97], [175482.858, 6737239.366], [171236.502, 6745919.169], [158291.161, 6748278.94], [140852.31, 6767208.508], [144380.958, 6769674.449], [174109.351, 6750276.195]], [[181860.132, 6739594.505], [181199.112, 6736686.356], [178213.333, 6739095.432], [177185.851, 6739825.218], [177631.69, 6740502.167], [177675.64, 6740353.826], [177795.715, 6740450.908], [177752.194, 6740758.881], [177803.031, 6740867.18], [181860.132, 6739594.505]]]}}, {\\\"id\\\": \\\"92\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sodankyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 32.5, \\\"freshwarea\\\": 723.71, \\\"gml_id\\\": 1601100535, \\\"landarea\\\": 11691.7, \\\"namefin\\\": \\\"Sodankyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"Sodankyl\\\\u00e4\\\", \\\"natcode\\\": \\\"758\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 12415.41}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[562396.5, 7588356.8], [565252.9, 7577370.4], [568226.8, 7565660.7], [566730.506, 7563044.354], [566730.473, 7563044.296], [566730.011, 7563043.487], [536679.074, 7510311.335], [534119.547, 7503959.733], [518465.6, 7494094.658], [517648.901, 7495662.015], [516954.873, 7495290.476], [517346.509, 7494145.132], [516917.676, 7493530.353], [516523.311, 7493382.808], [516657.37, 7493013.882], [513413.674, 7486592.699], [513363.212, 7486784.008], [512853.326, 7486752.311], [512869.511, 7486071.275], [513185.822, 7486135.346], [509506.022, 7478809.643], [511167.143, 7475247.097], [511200.661, 7474003.165], [510853.322, 7471890.308], [504804.134, 7470521.582], [503718.163, 7469030.608], [502337.747, 7457420.3], [502575.047, 7457549.732], [502863.727, 7457091.907], [502620.29, 7456562.709], [502244.176, 7456626.462], [501961.576, 7454258.882], [501472.01, 7454515.686], [501327.108, 7454167.94], [501922.576, 7453962.37], [501778.152, 7452713.326], [500385.071, 7450269.981], [500863.602, 7450001.159], [490862.618, 7438624.517], [490234.723, 7436973.261], [491147.248, 7435846.262], [491540.313, 7435246.548], [491888.925, 7434695.2], [491481.467, 7434262.025], [491085.465, 7434628.166], [491326.08, 7434877.667], [490711.171, 7435876.072], [490351.971, 7435470.979], [489867.458, 7435934.454], [490227.536, 7436305.393], [489595.754, 7437233.431], [484018.817, 7430895.424], [484212.905, 7430603.639], [483794.347, 7430061.432], [483410.376, 7430204.143], [478933.385, 7425099.02], [474052.592, 7426032.877], [474380.713, 7426246.65], [474247.473, 7426513.576], [473599.506, 7426182.978], [472803.488, 7426627.286], [472593.655, 7426370.374], [471560.807, 7427805.159], [471704.895, 7427914.232], [469724.744, 7430667.283], [469561.888, 7430551.328], [469159.234, 7430996.277], [452469.739, 7445168.698], [446029.096, 7446267.544], [446044.534, 7445951.883], [445592.175, 7446329.286], [444624.143, 7446491.831], [444563.305, 7446133.498], [443979.364, 7446077.903], [443914.672, 7446611.512], [442375.084, 7446880.74], [442431.183, 7446371.194], [441904.732, 7443241.658], [439864.442, 7443756.549], [439783.761, 7447292.232], [428510.971, 7449194.171], [434799.407, 7466042.47], [439523.26, 7470314.48], [439353.674, 7470839.848], [440262.56, 7471311.434], [446932.896, 7480310.392], [446195.831, 7492281.41], [458414.887, 7536374.369], [453310.7, 7554143.617], [457691.128, 7574162.963], [466815.733, 7578112.381], [520679.447, 7581259.14], [551793.382, 7594867.065], [551901.385, 7594654.279], [551958.374, 7594484.09], [552054.45, 7594352.696], [552153.88, 7594082.919], [552398.384, 7593948.85], [552517.352, 7593722.957], [552482.77, 7593516.595], [552623.975, 7593373.121], [552890.368, 7593335.343], [553222.653, 7593183.534], [553410.197, 7593388.44], [553722.869, 7593505.43], [553860.338, 7593472.732], [553824.876, 7593282.011], [553994.814, 7593304.953], [554129.866, 7593379.985], [554457.753, 7593305.27], [554635.65, 7593326.597], [554815.592, 7593433.646], [554896.242, 7593418.428], [554870.752, 7593345.776], [554964.403, 7593287.809], [555132.15, 7593282.069], [555300.928, 7593316.54], [555413.838, 7593431.127], [555513.446, 7593430.098], [555930.342, 7593400.669], [556109.306, 7593421.22], [556390.678, 7593562.241], [556611.584, 7593826.968], [556802.324, 7593882.441], [556991.104, 7593818.592], [557121.895, 7593886.484], [557243.77, 7594005.082], [557307.139, 7593964.132], [557379.801, 7594001.781], [557435.972, 7593899.09], [557596.453, 7593987.977], [557840.376, 7594073.08], [558060.148, 7594055.735], [558266.31, 7594150.522], [558435.753, 7594226.372], [558861.816, 7594297.994], [559009.323, 7594395.419], [559044.126, 7594585.992], [558980.782, 7594722.061], [559131.374, 7594892.62], [559289.97, 7594967.466], [559540.567, 7595040.441], [559666.643, 7595077.155], [559659.54, 7594975.267], [559786.488, 7595107.506], [560012.894, 7595363.48], [560413.957, 7595426.777], [560577.601, 7595569.21], [562396.5, 7588356.8]]]}}, {\\\"id\\\": \\\"93\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Keminmaa\\\", \\\"elakelaisten_osuus\\\": 29.5, \\\"freshwarea\\\": 20.88, \\\"gml_id\\\": 1601100405, \\\"landarea\\\": 626.35, \\\"namefin\\\": \\\"Keminmaa\\\", \\\"nameswe\\\": \\\"Keminmaa\\\", \\\"natcode\\\": \\\"241\\\", \\\"seawarea\\\": 0.01, \\\"totalarea\\\": 647.24}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[390804.334, 7323775.928], [395608.965, 7318617.265], [396217.624, 7318498.36], [396119.427, 7317613.838], [403832.364, 7318052.272], [404029.547, 7319749.932], [404400.972, 7320335.089], [404851.329, 7320257.645], [404399.755, 7318869.471], [403959.705, 7318059.707], [410967.935, 7318480.815], [410848.256, 7315447.43], [411948.162, 7315989.91], [412739.219, 7315680.238], [412751.121, 7314978.711], [413933.013, 7314999.202], [413911.771, 7316475.309], [414754.546, 7317165.134], [419356.794, 7316762.731], [418873.192, 7316128.82], [419297.567, 7312996.177], [416468.877, 7310433.802], [416850.386, 7310190.377], [416302.029, 7309513.811], [415850.194, 7309875.449], [407079.546, 7301988.165], [404840.651, 7297552.88], [405378.828, 7297259.57], [404493.459, 7295651.417], [404917.912, 7295425.042], [405403.46, 7295615.224], [405627.75, 7295280.362], [404899.381, 7295065.933], [404623.697, 7295299.383], [404282.674, 7295056.35], [404405.505, 7294777.038], [404332.775, 7294505.948], [404107.969, 7294446.44], [403837.465, 7294320.991], [404148.778, 7294174.255], [404271.915, 7293984.094], [404373.698, 7293467.402], [401818.058, 7294909.912], [401022.911, 7293415.508], [400439.839, 7294076.89], [400334.855, 7293312.843], [400758.967, 7292919.496], [400066.703, 7292035.479], [399978.762, 7292108.619], [399581.255, 7291628.236], [399673.008, 7291548.939], [398956.845, 7290681.867], [398865.122, 7290756.048], [398750.883, 7290617.015], [398844.171, 7290544.441], [396561.004, 7287772.167], [395836.599, 7288166.204], [396006.827, 7289239.257], [395391.592, 7289347.595], [395393.088, 7290347.27], [396035.422, 7290066.137], [396443.969, 7290581.243], [394514.079, 7290690.837], [394051.098, 7293089.47], [393656.937, 7293520.858], [393663.388, 7293847.826], [393844.901, 7293969.106], [394644.891, 7293676.559], [394766.558, 7293967.312], [393557.315, 7294613.774], [392947.81, 7294661.255], [393000.651, 7295717.355], [389945.182, 7297747.327], [389883.5, 7297355.627], [389258.448, 7297812.724], [388570.103, 7298829.981], [388122.169, 7299270.588], [386195.869, 7297953.1], [385992.898, 7297648.827], [382603.667, 7296353.473], [383317.746, 7297938.122], [383537.667, 7298510.809], [383524.438, 7298648.393], [383430.121, 7298990.032], [383630.121, 7299227.873], [383848.128, 7299725.305], [384200.683, 7299942.6], [384293.079, 7300338.868], [384067.277, 7300301.458], [383691.306, 7300012.945], [383388.454, 7300289.747], [383871.954, 7300814.872], [384839.027, 7301181.292], [384962.272, 7301540.987], [384791.384, 7302106.979], [384883.168, 7302367.032], [385198.122, 7302082.383], [385650.125, 7302995.042], [385660.681, 7303517.999], [385489.403, 7304048.839], [385664.496, 7304530.358], [385988.63, 7304486.691], [386529.1, 7304796.923], [386662.09, 7305112.054], [386610.713, 7305506.75], [386678.965, 7305857.407], [386660.069, 7306180.4], [386815.425, 7306232.131], [387089.321, 7306689.615], [387049.796, 7307381.692], [386695.339, 7307397.459], [386702.722, 7308095.917], [387049.951, 7308052.362], [387125.854, 7325545.337], [390804.334, 7323775.928]]]}}, {\\\"id\\\": \\\"94\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Humppila\\\", \\\"elakelaisten_osuus\\\": 32.8, \\\"freshwarea\\\": 0.65, \\\"gml_id\\\": 1601100162, \\\"landarea\\\": 147.96, \\\"namefin\\\": \\\"Humppila\\\", \\\"nameswe\\\": \\\"Humppila\\\", \\\"natcode\\\": \\\"103\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 148.61}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[301959.966, 6769441.809], [303420.561, 6769865.451], [304223.077, 6768472.871], [304942.526, 6765824.728], [305769.984, 6764568.365], [306420.535, 6764852.997], [307046.776, 6764598.047], [307250.616, 6764894.233], [307985.642, 6764577.177], [308623.193, 6763975.57], [309143.035, 6763855.071], [309926.83, 6763394.981], [310040.429, 6763202.982], [310027.442, 6762827.879], [310430.167, 6762583.996], [310490.703, 6762013.978], [307173.207, 6758026.345], [306902.278, 6757050.966], [306100.055, 6756725.455], [306064.751, 6756110.553], [306239.123, 6755900.248], [306241.39, 6754490.669], [305760.046, 6753727.789], [304543.322, 6754593.88], [303690.879, 6754431.888], [303817.988, 6754044.971], [302526.524, 6753826.549], [297931.884, 6755403.995], [297451.456, 6756204.328], [296908.443, 6759624.339], [297267.752, 6759756.007], [297850.937, 6759367.064], [298970.778, 6759335.116], [298989.0, 6759904.166], [298765.779, 6760189.446], [299032.893, 6760787.027], [299124.512, 6761180.318], [299492.785, 6761259.641], [299511.644, 6761508.394], [299025.625, 6761930.405], [299409.838, 6762880.414], [299342.652, 6763417.689], [297313.565, 6764512.086], [295192.437, 6767412.362], [294311.243, 6768899.488], [295318.225, 6769477.243], [298169.87, 6769268.438], [298319.967, 6769946.551], [297912.327, 6770626.756], [298359.877, 6770746.386], [301959.966, 6769441.809]]]}}, {\\\"id\\\": \\\"95\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lappeenranta\\\", \\\"elakelaisten_osuus\\\": 27.8, \\\"freshwarea\\\": 289.78, \\\"gml_id\\\": 1601100626, \\\"landarea\\\": 1433.78, \\\"namefin\\\": \\\"Lappeenranta\\\", \\\"nameswe\\\": \\\"Villmanstrand\\\", \\\"natcode\\\": \\\"405\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1723.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[580741.853, 6790605.096], [585889.599, 6786089.993], [586394.714, 6785968.495], [586253.678, 6786335.467], [588745.838, 6787998.473], [588651.35, 6788698.311], [588050.936, 6789358.495], [590731.268, 6790415.065], [591358.837, 6789769.532], [589610.527, 6788584.563], [591620.753, 6787594.555], [591184.497, 6787114.201], [593001.083, 6785418.999], [592402.858, 6784794.21], [593325.685, 6783878.448], [593114.432, 6783257.421], [593034.525, 6781677.835], [593473.442, 6781667.009], [593460.731, 6781301.533], [593580.34, 6781216.756], [593512.214, 6780538.657], [593960.82, 6780049.722], [593864.9, 6778500.966], [593491.371, 6775896.875], [593521.7, 6775238.009], [594355.861, 6774632.132], [595398.993, 6773461.747], [595401.337, 6773458.807], [595403.549, 6773456.033], [595403.92, 6773455.568], [595843.841, 6772915.996], [592557.9, 6768951.3], [592411.2, 6766999.7], [591459.2, 6762975.4], [591434.6, 6762871.2], [591135.7, 6761612.9], [589794.3, 6758482.5], [589647.6, 6758294.4], [589338.9, 6758135.4], [587455.4, 6758892.6], [585193.2, 6758428.4], [584077.5, 6758763.6], [583692.2, 6758792.2], [583507.7, 6758876.0], [583257.6, 6758916.2], [582860.6, 6758715.0], [582726.3, 6758729.5], [582565.6, 6758970.0], [582388.029, 6758709.149], [582386.006, 6758706.177], [581033.8, 6756719.8], [580906.5, 6756700.4], [580871.1, 6756482.1], [580415.5, 6755819.1], [580370.6, 6755661.5], [580454.2, 6755423.5], [579829.4, 6755223.4], [579611.7, 6755117.7], [579445.4, 6755136.2], [575875.0, 6751064.1], [575995.4, 6750863.9], [575851.2, 6750619.2], [575596.2, 6750745.3], [572577.7, 6747292.1], [572537.5, 6747386.2], [572356.7, 6747445.0], [572274.4, 6747512.8], [572111.3, 6747497.6], [572038.0, 6747615.3], [571941.0, 6747683.2], [571306.3, 6745820.2], [568325.9, 6742273.1], [566459.4, 6739212.1], [563951.2, 6738701.2], [561910.2, 6734459.8], [559413.9, 6732158.8], [557067.086, 6729575.954], [555451.9, 6727845.4], [555599.9, 6727707.2], [554539.2, 6726491.3], [554389.3, 6726578.8], [554169.941, 6726326.841], [553444.47, 6726176.673], [553437.766, 6726175.286], [553434.841, 6726174.68], [552842.602, 6726047.841], [551997.444, 6726090.923], [552060.816, 6726531.448], [552290.819, 6727232.569], [552035.718, 6728188.888], [550827.606, 6728592.727], [549245.441, 6729308.127], [548530.918, 6730634.085], [548054.206, 6731183.759], [547232.619, 6733454.634], [546852.966, 6734251.609], [546768.702, 6735144.863], [546476.716, 6736006.467], [546373.838, 6736931.505], [545726.972, 6737104.987], [544518.179, 6737137.945], [544231.998, 6736903.972], [543196.006, 6737341.418], [542138.954, 6736180.682], [540945.537, 6736020.135], [539642.06, 6736586.392], [538676.978, 6739600.214], [538858.65, 6740202.117], [539105.583, 6740732.412], [539113.733, 6742055.867], [539021.866, 6742674.415], [539427.603, 6742589.654], [540838.433, 6742555.282], [540563.741, 6742937.724], [540435.683, 6744263.384], [541691.374, 6744512.196], [541373.51, 6743448.025], [544873.092, 6743337.606], [545984.238, 6743561.027], [545503.729, 6744065.217], [546038.188, 6744754.174], [547613.55, 6746242.156], [546443.714, 6747498.835], [547330.836, 6749215.348], [547961.376, 6749534.724], [548563.022, 6750519.43], [548934.485, 6749057.227], [547983.181, 6748113.301], [548129.58, 6747772.117], [548299.242, 6746583.463], [548707.605, 6746182.691], [548969.299, 6746170.099], [549153.421, 6746434.193], [549190.803, 6746780.953], [549132.524, 6747062.438], [549522.762, 6747313.94], [550254.353, 6748572.536], [550665.574, 6749706.28], [550588.001, 6750244.661], [549685.665, 6750501.248], [548900.68, 6750991.342], [548344.188, 6752964.236], [548499.517, 6753757.116], [548923.831, 6755075.186], [548819.263, 6756172.54], [548484.99, 6757138.345], [548926.591, 6759323.659], [548602.918, 6759955.899], [549138.984, 6761967.984], [548739.337, 6763218.372], [548112.489, 6763660.188], [547806.215, 6763468.563], [547912.775, 6763003.553], [547765.137, 6762759.051], [547079.918, 6762426.081], [546389.998, 6762395.088], [546574.321, 6762691.069], [546310.924, 6763295.421], [546304.818, 6764355.09], [546458.253, 6764721.142], [547183.656, 6765074.005], [546857.68, 6766061.9], [547763.409, 6766475.64], [548444.135, 6766134.484], [549720.613, 6766568.218], [549952.321, 6766328.917], [550201.523, 6765825.124], [550495.107, 6765418.792], [550891.346, 6765390.007], [550920.828, 6766236.662], [550628.041, 6767061.225], [550227.901, 6767393.786], [551261.978, 6767736.755], [551727.39, 6767582.622], [552168.508, 6767904.894], [553308.044, 6768012.26], [553512.959, 6768345.326], [553244.764, 6768876.008], [552754.163, 6768861.11], [553499.951, 6770045.635], [553883.188, 6771063.123], [554432.764, 6771305.928], [554401.979, 6770840.018], [554706.901, 6770748.126], [555678.558, 6771490.063], [556774.608, 6772521.051], [556619.01, 6773853.973], [557483.223, 6774597.469], [557613.949, 6775794.622], [558762.647, 6775398.698], [559645.333, 6774347.127], [559560.27, 6773989.972], [559925.824, 6773548.555], [560825.456, 6774033.364], [561155.768, 6774924.239], [561805.547, 6774569.365], [562555.292, 6773814.629], [562685.247, 6773929.59], [562421.704, 6774862.938], [562488.573, 6775632.125], [562275.158, 6775989.577], [561567.841, 6776504.962], [561129.114, 6777346.316], [561143.706, 6777767.144], [562288.54, 6778108.314], [563101.514, 6777467.781], [563753.256, 6776354.74], [563852.219, 6775737.792], [564436.789, 6774667.933], [565049.136, 6775328.868], [566552.625, 6775689.434], [566579.409, 6776507.8], [567031.823, 6776880.753], [567347.593, 6777346.966], [567890.07, 6777823.477], [569046.199, 6778126.764], [569486.019, 6778354.076], [569923.748, 6778261.135], [570421.647, 6777173.267], [571700.048, 6777931.408], [572521.183, 6779486.042], [575790.737, 6783230.944], [570690.236, 6786721.539], [569894.086, 6790281.106], [570249.837, 6791052.193], [574927.383, 6795299.456], [580741.853, 6790605.096]]]}}, {\\\"id\\\": \\\"96\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ilomantsi\\\", \\\"elakelaisten_osuus\\\": 47.0, \\\"freshwarea\\\": 409.29, \\\"gml_id\\\": 1601100481, \\\"landarea\\\": 2763.39, \\\"namefin\\\": \\\"Ilomantsi\\\", \\\"nameswe\\\": \\\"Ilomants\\\", \\\"natcode\\\": \\\"146\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3172.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[713244.7, 7013913.2], [713407.9, 7013732.4], [713374.5, 7013642.9], [713480.7, 7013459.5], [713503.2, 7013038.7], [713654.1, 7012814.4], [713894.4, 7012778.9], [714084.0, 7012592.8], [714385.3, 7008499.0], [715083.2, 7005568.0], [715479.0, 7004750.2], [715753.1, 7004456.0], [715798.3, 7004311.2], [715960.0, 7004210.8], [716474.4, 7003660.4], [716660.2, 7003312.6], [720218.0, 7001115.3], [720380.1, 7000949.2], [720552.2, 7000636.3], [720610.8, 7000602.4], [720662.3, 7000539.0], [720725.0, 7000494.6], [720763.1, 7000381.5], [720813.5, 7000386.6], [720832.5, 7000308.8], [720888.2, 7000290.3], [720911.9, 7000248.9], [720969.7, 7000189.1], [721045.4, 7000220.3], [721157.6, 7000091.7], [721214.0, 6999933.8], [721299.4, 6999852.7], [721310.0, 6999784.5], [721370.0, 6999697.8], [721375.8, 6999526.8], [721421.8, 6999476.1], [721392.1, 6999346.5], [721395.1, 6999184.8], [721449.7, 6999144.1], [721463.8, 6999071.8], [721590.3, 6999006.2], [721626.5, 6998914.8], [721734.5, 6998901.5], [721727.4, 6998658.4], [721901.6, 6998549.2], [722159.9, 6998491.6], [722597.2, 6998270.2], [722837.8, 6998000.0], [722970.6, 6997921.2], [723675.2, 6998113.8], [725739.5, 6996131.6], [725161.5, 6994058.5], [727936.1, 6993156.3], [731597.6, 6985709.2], [732101.9, 6984843.1], [732089.8, 6984690.4], [732174.0, 6984638.5], [732272.7, 6984651.0], [732590.3, 6984326.9], [732575.6, 6984172.2], [732907.7, 6983723.6], [730943.3, 6979114.7], [727123.8, 6970806.7], [727784.2, 6969418.7], [726378.3, 6969426.3], [725808.8, 6967029.4], [724098.1, 6958659.9], [724397.5, 6957839.1], [724463.0, 6957021.3], [724366.3, 6956985.4], [724252.8, 6957003.4], [724186.1, 6956654.3], [724017.6, 6956588.7], [724098.7, 6956464.5], [724029.2, 6956285.7], [724108.8, 6955808.5], [724071.4, 6955651.2], [724170.6, 6955338.6], [724132.5, 6955132.0], [724157.3, 6954838.3], [724041.9, 6954173.3], [723958.5, 6954024.6], [723759.4, 6953924.7], [723641.5, 6953704.5], [723515.9, 6953580.0], [723255.8, 6953585.6], [723069.6, 6953378.4], [722789.7, 6953425.7], [722685.4, 6953366.7], [722706.8, 6953288.1], [722890.8, 6953086.8], [722892.2, 6953034.8], [722814.3, 6952994.6], [722682.8, 6953016.5], [719602.4, 6943432.1], [718800.0, 6940811.1], [718343.2, 6939923.4], [718421.2, 6939783.3], [718419.2, 6939650.6], [717382.2, 6936831.9], [716194.6, 6936444.3], [715527.7, 6936175.2], [715637.2, 6935489.5], [715018.3, 6934815.7], [714732.3, 6932653.6], [714660.6, 6931792.0], [714731.1, 6930793.9], [713998.8, 6930626.1], [713490.6, 6930279.1], [711370.3, 6927288.5], [710911.011, 6927022.535], [710910.398, 6927022.18], [709738.174, 6926343.311], [707850.028, 6925264.883], [707764.854, 6925216.235], [707762.709, 6925215.004], [704464.81, 6923322.525], [703298.688, 6926388.775], [703156.58, 6929990.366], [704049.398, 6930448.666], [704586.42, 6930098.538], [705085.154, 6930572.838], [705480.59, 6930576.711], [705634.515, 6930232.234], [705891.832, 6930495.166], [705976.444, 6930937.373], [706318.636, 6931145.187], [706277.332, 6931729.156], [702832.078, 6934754.105], [702325.607, 6934278.083], [702023.075, 6933578.153], [701294.207, 6934733.449], [700534.325, 6935763.994], [700161.307, 6936266.432], [699435.692, 6937984.063], [698915.757, 6938686.047], [699066.924, 6939045.192], [698787.012, 6939794.208], [698704.844, 6940115.036], [698407.138, 6940364.575], [698653.109, 6940745.577], [697940.45, 6941169.569], [697433.185, 6941834.867], [695905.262, 6940912.592], [695350.072, 6941179.5], [695190.953, 6941582.406], [694801.369, 6941971.982], [694254.62, 6941876.715], [693964.633, 6941633.373], [693625.23, 6941975.278], [692992.356, 6942273.809], [692656.34, 6942324.763], [692777.871, 6942927.514], [691030.037, 6944621.474], [690063.132, 6945603.494], [689679.47, 6946442.685], [690507.255, 6948492.426], [689348.033, 6949680.871], [688163.178, 6949960.732], [688086.05, 6950805.901], [686272.568, 6951663.89], [684021.086, 6953236.458], [684044.446, 6953505.986], [683323.602, 6955798.038], [681664.105, 6955663.125], [680014.899, 6956118.07], [679558.772, 6957894.671], [680989.904, 6960424.716], [681507.72, 6962280.994], [681138.441, 6964057.933], [681635.824, 6964973.057], [680822.426, 6967595.683], [679530.855, 6969472.713], [679494.528, 6969797.393], [679729.69, 6970028.627], [679634.831, 6971455.974], [679275.935, 6971264.383], [678282.085, 6971699.973], [677554.692, 6973142.631], [676910.632, 6973281.831], [676047.627, 6979200.669], [675235.243, 6979494.873], [674480.782, 6981064.708], [674481.243, 6981208.873], [674176.414, 6984152.019], [673344.063, 6984896.264], [672938.414, 6985533.785], [671676.485, 6986889.679], [670862.669, 6987968.304], [670090.884, 6989782.633], [670214.749, 6989861.773], [670780.237, 6990223.072], [676302.556, 6993001.424], [681228.347, 6999487.618], [683382.17, 7001025.496], [685562.644, 7000929.202], [690518.996, 7003282.04], [696975.582, 7006332.632], [699577.354, 7010395.895], [704344.182, 7012305.786], [711187.863, 7013914.665], [713128.3, 7014370.9], [713244.7, 7013913.2]]]}}, {\\\"id\\\": \\\"97\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pukkila\\\", \\\"elakelaisten_osuus\\\": 26.4, \\\"freshwarea\\\": 0.87, \\\"gml_id\\\": 1601100315, \\\"landarea\\\": 145.07, \\\"namefin\\\": \\\"Pukkila\\\", \\\"nameswe\\\": \\\"Pukkila\\\", \\\"natcode\\\": \\\"616\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 145.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[431598.603, 6730923.09], [431013.626, 6725191.642], [429817.425, 6724024.601], [428399.511, 6723047.982], [426631.036, 6720528.076], [426146.633, 6720102.343], [425751.505, 6719513.81], [423144.654, 6719809.079], [422872.343, 6720002.775], [422977.319, 6720633.199], [422033.203, 6720617.096], [422338.78, 6720086.712], [421003.833, 6718940.268], [420878.774, 6719934.759], [420133.479, 6719753.626], [419902.082, 6718897.076], [418641.797, 6718426.824], [418744.492, 6718053.809], [419313.936, 6717446.665], [418695.893, 6716908.78], [417560.683, 6717873.156], [417210.624, 6719244.888], [415839.644, 6722173.205], [414265.317, 6724029.045], [413935.768, 6726304.675], [417083.74, 6729930.636], [419174.539, 6730717.412], [424096.839, 6726998.038], [424194.666, 6727793.177], [424495.964, 6727973.835], [425397.319, 6728029.592], [425740.307, 6727698.83], [426073.717, 6727890.47], [425804.26, 6728176.225], [425983.299, 6728376.618], [425977.487, 6728734.803], [425842.185, 6729123.492], [426235.054, 6729494.566], [426673.977, 6729089.633], [427894.202, 6729156.008], [428903.15, 6730953.302], [430325.259, 6732101.752], [431598.603, 6730923.09]]]}}, {\\\"id\\\": \\\"98\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kemij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 45.1, \\\"freshwarea\\\": 426.78, \\\"gml_id\\\": 1601100354, \\\"landarea\\\": 3504.13, \\\"namefin\\\": \\\"Kemij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Kemij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"320\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3930.91}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[515255.017, 7435135.171], [515597.389, 7434221.591], [516804.252, 7433612.667], [517347.158, 7432225.369], [517644.683, 7432289.593], [517580.329, 7432568.225], [525481.596, 7432297.638], [528805.85, 7428943.637], [529899.708, 7429190.254], [529735.999, 7427968.457], [538619.006, 7418935.014], [538612.877, 7418902.093], [541487.003, 7406765.444], [546976.161, 7398990.265], [546980.158, 7398733.503], [549296.477, 7399728.41], [551033.17, 7398155.997], [552763.624, 7390278.19], [548535.442, 7377410.426], [547835.893, 7376212.218], [550800.376, 7368510.817], [543832.875, 7367003.429], [535378.621, 7368308.192], [526623.087, 7364728.303], [527167.39, 7363214.051], [518606.762, 7352192.601], [511192.147, 7356938.071], [507395.134, 7359359.02], [486582.212, 7383990.811], [487336.531, 7388696.712], [484879.162, 7411583.272], [482775.729, 7413840.117], [479535.844, 7419967.287], [476747.712, 7424183.039], [478933.385, 7425099.02], [506457.122, 7432927.822], [510845.099, 7432804.215], [510805.641, 7432907.66], [514602.317, 7436216.001], [515255.017, 7435135.171]]]}}, {\\\"id\\\": \\\"99\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Honkajoki\\\", \\\"elakelaisten_osuus\\\": 34.7, \\\"freshwarea\\\": 1.76, \\\"gml_id\\\": 1601100153, \\\"landarea\\\": 331.37, \\\"namefin\\\": \\\"Honkajoki\\\", \\\"nameswe\\\": \\\"Honkajoki\\\", \\\"natcode\\\": \\\"099\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 333.13}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[259071.23, 6898318.3], [259316.036, 6898123.585], [259633.774, 6898202.566], [260465.972, 6893510.509], [260707.496, 6894021.414], [260274.745, 6896582.426], [260466.555, 6897648.97], [261066.342, 6896769.351], [261004.241, 6895727.392], [260977.204, 6895195.371], [261200.188, 6894651.629], [261456.923, 6894594.099], [261644.721, 6894869.422], [262229.369, 6895069.253], [262440.877, 6894735.128], [261314.752, 6892901.289], [260675.499, 6892977.026], [260468.263, 6892222.22], [260680.17, 6888321.307], [261384.989, 6887174.083], [259219.741, 6887801.018], [259078.599, 6887321.389], [261789.327, 6886516.076], [262063.695, 6886068.222], [260624.806, 6885932.712], [260695.613, 6886193.617], [258270.536, 6885959.272], [258549.357, 6884740.859], [260163.143, 6885006.008], [260511.617, 6885068.787], [260863.338, 6885128.863], [261083.355, 6883857.928], [259200.346, 6883746.109], [259070.311, 6883275.594], [256865.836, 6883149.88], [256345.065, 6881911.747], [256719.816, 6881666.397], [256777.977, 6880775.033], [256139.384, 6880537.81], [255685.588, 6880207.002], [255736.219, 6879739.354], [254871.523, 6879765.344], [255337.766, 6879344.194], [255169.277, 6878557.745], [254894.118, 6878260.422], [254150.321, 6878449.835], [254000.432, 6878181.046], [252911.75, 6878798.341], [251812.828, 6877911.924], [251665.638, 6876778.031], [252506.257, 6876834.675], [252292.636, 6875731.612], [251376.592, 6874717.309], [250783.898, 6874451.367], [250724.648, 6873971.44], [249879.535, 6874130.238], [249358.756, 6873068.021], [249356.718, 6872719.066], [248910.039, 6872732.801], [248786.613, 6873247.727], [248172.939, 6873227.063], [247123.009, 6874984.49], [245670.402, 6874918.105], [244739.432, 6874098.919], [245420.519, 6873994.301], [245340.64, 6872881.859], [245579.419, 6872530.446], [244875.314, 6872605.793], [244656.662, 6872188.992], [242738.497, 6875436.609], [238242.343, 6876940.779], [237365.378, 6878989.949], [237047.308, 6878978.76], [236897.467, 6879387.39], [236801.933, 6882124.138], [244232.829, 6887379.314], [249539.259, 6894974.367], [255859.251, 6894485.423], [258966.185, 6898659.253], [259071.23, 6898318.3]]]}}, {\\\"id\\\": \\\"100\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vierem\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 31.6, \\\"freshwarea\\\": 48.14, \\\"gml_id\\\": 1601100096, \\\"landarea\\\": 925.21, \\\"namefin\\\": \\\"Vierem\\\\u00e4\\\", \\\"nameswe\\\": \\\"Vierem\\\\u00e4\\\", \\\"natcode\\\": \\\"925\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 973.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[500613.63, 7096898.191], [505391.302, 7096326.377], [505472.895, 7096400.085], [505835.73, 7095992.143], [506186.982, 7095616.254], [507692.825, 7094299.084], [507875.657, 7093364.068], [507863.502, 7092051.098], [507902.768, 7090204.353], [511693.124, 7091015.547], [511835.077, 7092410.772], [512249.509, 7091914.278], [512273.037, 7091555.951], [513094.151, 7090396.759], [513013.625, 7090199.121], [513924.868, 7089640.232], [512535.642, 7087959.096], [512598.18, 7085955.598], [512577.835, 7084447.804], [513612.741, 7083285.012], [517597.696, 7077833.356], [516564.91, 7077099.964], [516697.548, 7075743.419], [517516.113, 7074280.666], [517222.424, 7073467.71], [515716.353, 7073129.761], [515804.094, 7072750.355], [513904.534, 7072216.038], [514510.551, 7071424.278], [514353.596, 7070731.002], [512904.875, 7070982.63], [512211.906, 7070754.756], [512508.157, 7070512.259], [512431.866, 7070258.961], [512962.997, 7069838.939], [513057.199, 7069281.442], [512928.864, 7069036.692], [512577.65, 7068771.111], [512706.051, 7068306.866], [512573.258, 7067986.821], [511995.211, 7067889.337], [511853.579, 7067693.942], [511478.545, 7067839.467], [511055.622, 7067667.845], [510929.882, 7067145.775], [511318.59, 7066631.502], [511052.53, 7066684.389], [510371.604, 7066349.169], [510359.524, 7065870.637], [510656.663, 7065555.376], [510793.763, 7065154.911], [511086.959, 7064663.219], [511500.786, 7063874.701], [511866.881, 7063471.11], [512905.775, 7062367.74], [512602.738, 7062258.102], [512076.651, 7062411.842], [511977.39, 7061733.999], [511744.741, 7061220.504], [510665.005, 7061046.886], [510815.967, 7060301.087], [510678.481, 7060130.342], [510617.747, 7059282.358], [510420.725, 7059073.932], [510551.227, 7058234.803], [510347.007, 7058177.84], [509717.458, 7058555.284], [507636.458, 7057832.953], [507521.751, 7058258.393], [506901.903, 7058157.83], [506677.692, 7058406.829], [506052.868, 7058303.687], [505222.801, 7058393.942], [504760.661, 7058625.626], [504267.155, 7059345.935], [503854.019, 7059603.229], [503182.184, 7060467.576], [502995.362, 7060025.352], [503110.929, 7057891.209], [500108.162, 7056292.961], [500872.315, 7055253.552], [500493.792, 7054764.691], [500759.898, 7054278.439], [500459.663, 7054170.466], [500114.911, 7054443.38], [500042.953, 7054911.859], [499588.262, 7055204.355], [499525.192, 7054521.329], [497584.468, 7053613.729], [497461.319, 7054945.938], [497099.161, 7055482.818], [496972.006, 7056428.737], [496111.154, 7056154.039], [495960.118, 7057314.264], [495324.858, 7057977.498], [495124.941, 7057481.195], [495208.815, 7056324.661], [493576.462, 7057749.572], [493816.635, 7058481.74], [491527.006, 7059898.865], [491581.946, 7060202.213], [491262.623, 7060617.525], [491358.778, 7061025.519], [492622.433, 7059657.796], [493497.941, 7060135.362], [493483.926, 7060764.12], [493346.378, 7061318.671], [495690.256, 7061503.809], [496285.193, 7061725.062], [496140.741, 7062575.202], [495501.219, 7062478.842], [495361.446, 7063087.042], [494795.604, 7063069.352], [494592.567, 7063697.659], [494532.215, 7064645.57], [493851.065, 7064618.247], [493822.965, 7066601.649], [493295.965, 7066545.99], [492681.834, 7068083.544], [492465.595, 7068987.978], [492486.237, 7069468.873], [491428.39, 7071142.343], [491960.046, 7071988.874], [491874.641, 7072357.374], [492004.748, 7072557.36], [492517.099, 7072673.739], [492565.838, 7072910.37], [493517.692, 7073351.782], [493422.957, 7073681.878], [493159.858, 7073684.032], [492150.651, 7074966.384], [492034.492, 7075505.163], [491824.339, 7075714.973], [491941.489, 7075865.096], [491689.687, 7076186.502], [491467.136, 7076201.697], [490906.789, 7076891.962], [490721.85, 7077615.387], [489703.717, 7078101.892], [488773.553, 7078201.969], [488200.783, 7078669.984], [486518.801, 7076860.397], [485618.731, 7079908.041], [486348.936, 7080467.236], [489176.401, 7079546.056], [488517.607, 7082713.247], [488147.587, 7084239.598], [486555.446, 7084950.815], [486667.666, 7086657.472], [485336.048, 7087194.88], [484457.419, 7088611.087], [483223.834, 7088812.472], [481355.296, 7088138.808], [481355.325, 7088779.337], [481168.138, 7089120.986], [480237.517, 7090438.546], [479397.407, 7091589.067], [479062.124, 7092341.715], [478421.209, 7093042.385], [480320.629, 7094791.276], [493669.471, 7101140.706], [500613.63, 7096898.191]]]}}, {\\\"id\\\": \\\"101\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kurikka\\\", \\\"elakelaisten_osuus\\\": 34.1, \\\"freshwarea\\\": 19.28, \\\"gml_id\\\": 1601100495, \\\"landarea\\\": 1724.67, \\\"namefin\\\": \\\"Kurikka\\\", \\\"nameswe\\\": \\\"Kurikka\\\", \\\"natcode\\\": \\\"301\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1743.95}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[235066.009, 6980418.307], [234996.196, 6980334.703], [236999.588, 6978926.289], [237332.478, 6975789.586], [238031.781, 6975947.387], [238086.329, 6975083.104], [238889.835, 6974793.577], [239099.463, 6974154.268], [240852.706, 6973511.763], [240654.014, 6973001.529], [242805.983, 6971905.93], [242986.222, 6972250.994], [243714.463, 6971931.767], [243468.191, 6971372.436], [245563.691, 6970448.682], [245268.886, 6970189.838], [248100.358, 6968891.892], [248342.023, 6969452.64], [251019.616, 6968303.129], [251241.627, 6969084.82], [255005.203, 6967040.636], [253149.213, 6965195.64], [252161.233, 6963676.432], [259841.288, 6959573.132], [259457.694, 6960275.49], [259659.416, 6960752.228], [260236.396, 6960377.096], [260421.375, 6960019.823], [260306.138, 6959527.129], [261347.874, 6959554.489], [262822.302, 6958834.121], [264208.28, 6958286.913], [265242.437, 6957415.779], [265695.552, 6957148.392], [266224.327, 6956621.863], [266095.787, 6956205.937], [266667.427, 6955989.94], [269747.719, 6952386.321], [270005.798, 6952608.907], [270412.725, 6952153.314], [270681.681, 6952444.074], [271098.697, 6951979.182], [271708.111, 6952148.279], [272782.14, 6950986.595], [273631.988, 6951765.052], [274928.722, 6951909.741], [276270.191, 6950628.09], [275440.228, 6948976.386], [277558.517, 6948875.845], [277545.789, 6948483.993], [277556.862, 6948483.14], [278375.08, 6948122.066], [278838.779, 6949119.492], [277449.777, 6950734.283], [277334.583, 6951851.61], [279152.416, 6949750.325], [279534.586, 6950550.416], [279999.648, 6950989.351], [287666.496, 6951654.805], [287927.946, 6947471.685], [288066.916, 6946905.956], [289974.872, 6947656.87], [290423.475, 6946701.972], [290966.962, 6941974.086], [292461.51, 6942057.848], [296042.136, 6932626.226], [296942.161, 6932051.504], [297553.418, 6928154.541], [297991.182, 6928099.864], [298086.393, 6928582.599], [298464.079, 6928646.245], [298448.671, 6927564.723], [298748.939, 6926951.089], [298676.216, 6926249.658], [299007.047, 6925537.6], [299036.378, 6926371.59], [299554.672, 6925835.031], [300092.937, 6923176.336], [298534.947, 6923365.721], [300261.951, 6915694.297], [292281.129, 6912796.944], [287089.675, 6910900.346], [283701.696, 6911326.951], [279278.626, 6911886.275], [273716.601, 6915336.617], [275342.546, 6917080.388], [275076.657, 6918996.374], [274194.45, 6922133.353], [274944.779, 6927638.634], [273044.524, 6931083.535], [272533.534, 6932644.813], [272250.402, 6934073.154], [270362.463, 6934041.164], [267514.489, 6935613.142], [264563.584, 6936221.167], [261265.588, 6937625.421], [261622.516, 6939251.2], [258004.196, 6941327.835], [257874.983, 6942264.318], [250323.226, 6944948.534], [249401.104, 6942366.118], [245092.32, 6944296.194], [246230.092, 6944585.668], [248866.223, 6946499.036], [249140.589, 6950278.228], [248616.072, 6951180.018], [245476.076, 6951615.684], [245496.433, 6950914.496], [245167.849, 6950872.626], [245048.674, 6951670.997], [244463.197, 6951755.28], [243260.003, 6952836.063], [243340.896, 6951634.212], [243155.369, 6951393.406], [242818.122, 6951524.132], [242556.072, 6952511.6], [242238.59, 6953013.203], [242365.045, 6953453.665], [242107.261, 6953682.278], [241559.474, 6953019.826], [240646.899, 6952901.604], [241107.709, 6951821.732], [240259.609, 6951398.376], [240070.364, 6949760.421], [238458.097, 6950107.126], [238457.633, 6950504.196], [238113.792, 6951057.076], [238556.791, 6951145.468], [238530.116, 6951777.972], [237887.14, 6952024.596], [237720.265, 6952385.599], [237254.805, 6952236.457], [236698.665, 6951407.707], [236194.047, 6951579.557], [235804.633, 6952081.31], [234824.315, 6952286.4], [234423.639, 6951725.53], [233550.656, 6951945.192], [233138.565, 6951147.576], [232265.202, 6951514.998], [233995.008, 6953356.39], [234380.359, 6954388.323], [233933.285, 6955041.701], [233861.674, 6954310.717], [232919.784, 6954416.18], [232955.745, 6953939.429], [232711.219, 6953514.757], [232409.978, 6953600.122], [231783.827, 6953227.88], [231185.25, 6953598.229], [231422.618, 6954157.564], [231031.929, 6954268.272], [231170.625, 6954667.101], [229577.382, 6955419.754], [229331.645, 6954861.219], [229387.937, 6954137.794], [228499.873, 6953431.258], [227995.504, 6953529.86], [226968.644, 6954009.285], [226735.736, 6953300.506], [226006.023, 6953820.843], [226610.176, 6954715.785], [227862.409, 6953945.212], [228255.086, 6954394.304], [228287.396, 6954877.683], [228575.72, 6954913.394], [228612.335, 6955725.437], [228558.476, 6956100.892], [228945.381, 6956916.507], [228596.205, 6956997.853], [228167.102, 6956093.188], [226534.377, 6956810.068], [228581.774, 6958234.132], [228317.573, 6958605.255], [229069.084, 6958625.229], [230098.42, 6959457.831], [229832.798, 6959690.925], [230447.534, 6960169.17], [231163.641, 6962505.278], [231414.678, 6962386.182], [231378.207, 6961746.909], [231024.692, 6960669.753], [231363.016, 6960481.964], [233606.195, 6962292.145], [231637.866, 6965358.679], [231031.785, 6969607.382], [231118.654, 6970711.502], [231587.15, 6976648.721], [233680.603, 6979445.867], [234172.221, 6981191.422], [235066.009, 6980418.307]]]}}, {\\\"id\\\": \\\"102\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Janakkala\\\", \\\"elakelaisten_osuus\\\": 28.2, \\\"freshwarea\\\": 38.65, \\\"gml_id\\\": 1601100278, \\\"landarea\\\": 547.42, \\\"namefin\\\": \\\"Janakkala\\\", \\\"nameswe\\\": \\\"Janakkala\\\", \\\"natcode\\\": \\\"165\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 586.07}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[376573.449, 6768481.881], [377464.363, 6767842.058], [381333.484, 6766861.317], [384072.316, 6765670.331], [385322.603, 6763429.44], [385098.962, 6763075.223], [385262.287, 6762564.381], [385835.098, 6761640.592], [386217.457, 6761482.469], [386869.298, 6760676.567], [387933.121, 6760633.36], [388622.544, 6760383.1], [388632.617, 6760052.054], [389469.76, 6759686.921], [389528.803, 6759402.566], [389932.835, 6759052.383], [389954.66, 6756589.599], [390462.576, 6754177.542], [391118.12, 6753297.792], [389523.704, 6752433.973], [389557.061, 6751831.292], [387942.203, 6752342.139], [388267.049, 6751520.239], [388767.714, 6749581.075], [388121.993, 6747459.986], [387673.056, 6747493.55], [387407.725, 6747200.556], [386746.525, 6747497.414], [386636.26, 6747124.063], [386264.402, 6746792.44], [385921.916, 6746793.672], [385491.09, 6746566.133], [385093.775, 6747119.483], [384688.652, 6747601.889], [383723.292, 6748245.25], [383329.832, 6748383.803], [382858.784, 6749163.532], [383010.524, 6749772.808], [381042.701, 6750156.68], [380976.248, 6748608.393], [380664.827, 6748054.807], [380235.693, 6747555.818], [380185.421, 6746280.497], [380009.375, 6746073.235], [379621.449, 6746898.93], [377595.446, 6746710.917], [376787.363, 6746590.588], [376212.279, 6744342.235], [375720.805, 6743201.798], [375556.39, 6742491.036], [375619.809, 6742282.469], [376474.062, 6739845.97], [377362.838, 6737968.095], [374156.418, 6737320.495], [373106.61, 6739765.3], [372156.141, 6739206.407], [370547.351, 6740590.448], [370490.636, 6737940.44], [366974.925, 6739002.519], [366582.68, 6738914.29], [366165.726, 6738314.802], [365828.164, 6738262.778], [365243.833, 6737762.293], [364907.908, 6737238.406], [363991.72, 6737952.199], [363224.207, 6736950.4], [362384.429, 6737288.445], [360299.576, 6738784.665], [360571.039, 6739483.456], [360531.277, 6739889.36], [360127.718, 6740280.529], [359641.922, 6740059.325], [360157.093, 6741472.991], [361874.164, 6743090.354], [362909.454, 6744283.876], [362474.019, 6745986.047], [362146.552, 6749147.148], [360770.336, 6750587.964], [360222.186, 6750194.851], [360487.681, 6750983.497], [360872.685, 6752808.407], [358902.402, 6754764.647], [363979.842, 6757592.976], [365508.559, 6758301.136], [366329.932, 6758429.461], [367652.078, 6758512.357], [367503.535, 6759109.233], [366799.717, 6759307.69], [366736.616, 6759666.435], [367116.203, 6760512.116], [367687.857, 6760173.017], [368475.955, 6760081.983], [368679.045, 6760715.411], [369181.014, 6760658.764], [369564.239, 6761329.956], [370007.539, 6761492.703], [369539.986, 6762282.506], [370572.779, 6762868.62], [370423.499, 6763225.652], [370433.754, 6764534.306], [373622.287, 6765751.396], [372120.0, 6768283.183], [375364.277, 6768582.543], [376573.449, 6768481.881]]]}}, {\\\"id\\\": \\\"103\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vaala\\\", \\\"elakelaisten_osuus\\\": 43.8, \\\"freshwarea\\\": 461.44, \\\"gml_id\\\": 1601100457, \\\"landarea\\\": 1302.59, \\\"namefin\\\": \\\"Vaala\\\", \\\"nameswe\\\": \\\"Vaala\\\", \\\"natcode\\\": \\\"785\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1764.03}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[492975.088, 7126811.191], [492107.954, 7125990.601], [491515.96, 7125798.493], [491147.195, 7126834.366], [490803.486, 7127856.332], [491047.936, 7127953.066], [492975.088, 7126811.191]]], [[[505623.994, 7187816.915], [509419.203, 7183644.1], [513309.733, 7176979.673], [513309.622, 7176924.528], [512807.756, 7176427.243], [510972.573, 7176879.868], [510753.236, 7176443.67], [510944.288, 7176111.38], [510845.614, 7175759.17], [510904.106, 7174902.557], [511247.925, 7174962.066], [511155.356, 7175821.62], [511710.946, 7176309.508], [512374.768, 7175911.091], [511426.447, 7175081.082], [511698.256, 7174538.939], [511967.752, 7174431.235], [511851.87, 7174168.061], [512747.554, 7170702.664], [512858.386, 7168095.486], [512351.843, 7167592.245], [512402.468, 7166670.986], [512555.682, 7166573.413], [513101.718, 7166734.505], [513426.156, 7166635.458], [513761.141, 7166622.91], [513901.992, 7166246.429], [514260.472, 7166134.855], [514733.515, 7165699.284], [515338.866, 7165386.293], [515603.442, 7165358.478], [516137.289, 7164990.543], [516749.775, 7164770.417], [517083.438, 7164547.733], [517633.771, 7164351.08], [516902.643, 7163959.97], [516732.191, 7163577.434], [518604.214, 7162080.348], [518330.052, 7161541.374], [518106.703, 7161405.013], [519019.269, 7160802.864], [516681.369, 7158350.254], [514247.804, 7152972.912], [513081.099, 7151636.494], [511923.697, 7151030.882], [510995.096, 7151443.405], [510764.101, 7151093.151], [511135.795, 7150620.918], [509880.062, 7149855.804], [508904.711, 7147829.831], [508665.758, 7146167.43], [509865.004, 7144808.627], [510393.163, 7143999.099], [510690.105, 7144191.56], [510939.712, 7143854.233], [510620.963, 7143647.636], [512112.812, 7141506.091], [511946.855, 7139411.456], [509265.867, 7136019.588], [509082.061, 7131608.553], [502052.41, 7128720.126], [498262.02, 7129968.158], [497180.609, 7133462.036], [496215.344, 7132865.006], [496423.331, 7131771.429], [494913.088, 7131768.393], [494599.233, 7130621.624], [494250.821, 7130618.841], [494039.438, 7130976.448], [493498.295, 7130984.377], [493335.327, 7131106.481], [492519.147, 7130671.238], [492135.982, 7130938.809], [492202.326, 7131169.621], [490992.63, 7131144.094], [489646.001, 7129573.573], [487817.249, 7128077.452], [488732.51, 7126901.274], [488735.814, 7126583.419], [487801.728, 7126527.084], [485742.096, 7126738.46], [485439.378, 7127130.732], [485377.889, 7127442.435], [484732.678, 7127848.676], [484803.835, 7131970.837], [484564.683, 7132279.761], [479783.224, 7132625.835], [479191.848, 7132326.451], [478854.47, 7132719.476], [478041.878, 7132753.291], [476848.56, 7133967.86], [476685.594, 7133743.277], [476250.995, 7134149.805], [476390.37, 7134481.122], [474598.1, 7136302.976], [474006.16, 7136407.42], [474009.195, 7136904.425], [474285.366, 7137457.117], [474077.563, 7137821.364], [474331.89, 7138312.392], [474981.475, 7138853.12], [473902.142, 7139783.962], [473960.568, 7139980.959], [474857.833, 7139408.769], [474369.442, 7140447.545], [474941.826, 7140352.839], [475221.592, 7140713.302], [474855.46, 7141021.005], [475142.34, 7141336.517], [475171.27, 7141615.502], [474523.559, 7141776.647], [474170.552, 7141390.171], [474005.915, 7141702.54], [473571.159, 7142131.963], [472331.753, 7144775.921], [471216.641, 7145753.814], [471090.061, 7146091.625], [471300.753, 7146219.942], [471005.674, 7146716.238], [470428.802, 7146743.419], [470346.026, 7146556.245], [465921.867, 7150589.585], [467542.16, 7152485.193], [467087.992, 7153512.539], [468687.354, 7153794.948], [468472.957, 7154875.14], [468786.093, 7154663.327], [468833.655, 7154411.889], [469333.395, 7154537.054], [474198.204, 7160091.45], [478262.57, 7159295.134], [478316.314, 7159553.34], [477543.531, 7161173.183], [478654.459, 7161688.066], [478911.122, 7161438.733], [478780.585, 7161143.28], [479858.072, 7160504.241], [480041.233, 7160983.233], [479771.851, 7161286.833], [479568.712, 7162804.243], [481022.674, 7165374.021], [481448.606, 7165206.899], [483436.276, 7166807.934], [483181.516, 7167163.492], [483616.229, 7167460.841], [483398.655, 7168338.623], [482512.004, 7169167.236], [483402.288, 7170057.579], [483809.833, 7169301.474], [484315.453, 7169263.125], [484973.379, 7169817.951], [485162.909, 7169249.053], [484050.228, 7168604.826], [485402.749, 7167034.514], [485852.776, 7167369.231], [485120.461, 7167934.256], [486142.545, 7168674.106], [485964.922, 7169035.1], [487224.936, 7169655.551], [487632.484, 7168825.967], [488315.344, 7169468.94], [490881.138, 7170436.117], [492385.043, 7170782.047], [493321.999, 7173929.834], [494626.518, 7173444.279], [494712.061, 7173733.126], [494218.593, 7174129.23], [494483.957, 7174872.469], [495239.252, 7174599.693], [495417.572, 7175094.301], [495292.368, 7175495.244], [494780.254, 7175685.944], [494939.723, 7176125.05], [494779.852, 7177248.446], [495221.191, 7177327.857], [495764.261, 7178011.049], [495611.171, 7178262.452], [494779.158, 7178785.437], [495636.004, 7181609.164], [507026.469, 7190106.11], [505623.994, 7187816.915]], [[502087.385, 7132317.391], [502304.602, 7132465.506], [502420.294, 7132205.705], [502789.504, 7132092.999], [503053.111, 7132413.27], [503550.713, 7131888.692], [502464.094, 7131225.009], [502887.018, 7130544.818], [502529.348, 7130434.294], [502218.87, 7130695.926], [501863.187, 7130597.958], [501650.506, 7130849.799], [501686.386, 7131064.051], [501157.458, 7132050.544], [501941.642, 7132651.145], [502087.385, 7132317.391]]]]}}, {\\\"id\\\": \\\"104\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Raasepori\\\", \\\"elakelaisten_osuus\\\": 30.5, \\\"freshwarea\\\": 67.15, \\\"gml_id\\\": 1601100459, \\\"landarea\\\": 1148.3, \\\"namefin\\\": \\\"Raasepori\\\", \\\"nameswe\\\": \\\"Raseborg\\\", \\\"natcode\\\": \\\"710\\\", \\\"seawarea\\\": 1138.77, \\\"totalarea\\\": 2354.22}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[310860.868, 6678524.315], [311951.44, 6677560.051], [312658.828, 6677827.908], [312410.676, 6677169.89], [311623.041, 6676747.121], [311679.743, 6675768.827], [311998.839, 6675089.31], [312606.84, 6674738.33], [314265.561, 6675110.09], [314986.273, 6674897.838], [315717.729, 6675395.335], [316139.473, 6675078.747], [317123.94, 6674795.452], [317904.701, 6674690.987], [318863.262, 6674785.151], [320642.594, 6675615.488], [321863.285, 6676633.198], [323110.393, 6676729.425], [324054.825, 6677641.332], [324721.03, 6676726.073], [326752.368, 6677405.863], [327190.495, 6677658.81], [327029.838, 6678055.1], [328151.94, 6678390.657], [328141.853, 6677924.216], [328240.594, 6676815.612], [328567.008, 6676115.136], [328012.191, 6674712.929], [328038.44, 6673533.125], [328783.329, 6671838.636], [330160.479, 6669763.78], [328650.512, 6669753.119], [327621.841, 6670234.291], [325911.889, 6670810.19], [323062.736, 6669532.653], [323273.406, 6668139.58], [323306.74, 6666443.252], [323681.501, 6664962.25], [324255.584, 6664499.635], [324253.966, 6663218.919], [325963.981, 6660836.459], [323378.525, 6660618.908], [320371.048, 6660787.886], [319467.233, 6660137.711], [319064.593, 6658816.515], [319231.14, 6656527.212], [320035.929, 6655835.709], [321072.44, 6655921.313], [323609.869, 6653512.147], [323076.333, 6652732.268], [323238.685, 6652366.138], [321713.123, 6651408.696], [322379.242, 6649678.044], [321478.601, 6648580.638], [321592.052, 6648137.901], [322000.012, 6648109.272], [322195.304, 6648095.567], [322281.457, 6647854.84], [321238.049, 6647536.575], [321165.389, 6646881.943], [321738.624, 6646431.57], [322357.557, 6646561.8], [322544.102, 6646525.422], [323317.232, 6646374.655], [323279.758, 6646208.529], [330687.224, 6627606.382], [294489.619, 6618848.049], [286758.544, 6618646.814], [287630.844, 6630511.425], [290392.024, 6636654.745], [291975.432, 6638856.15], [291731.699, 6639661.979], [291967.02, 6641011.71], [290652.228, 6641209.755], [290208.324, 6642224.864], [291694.455, 6644885.543], [292287.468, 6645358.445], [292813.957, 6646296.352], [292046.13, 6646696.205], [290224.562, 6648810.043], [289867.337, 6649359.56], [289269.646, 6649469.478], [288744.36, 6649908.328], [288034.455, 6648986.04], [287532.561, 6648753.677], [287384.832, 6648656.082], [286552.404, 6648036.141], [286381.172, 6647670.377], [285418.993, 6647250.966], [285304.642, 6646798.301], [284237.732, 6647378.513], [284066.3, 6648457.457], [283454.598, 6649360.022], [284225.858, 6650056.338], [283926.636, 6650729.53], [283272.384, 6650656.501], [281606.202, 6650689.344], [279983.519, 6648402.351], [279112.516, 6647193.388], [278540.526, 6647022.795], [276748.17, 6645020.751], [276411.607, 6646223.735], [275809.401, 6646307.072], [275451.269, 6644750.911], [273678.884, 6645188.899], [267609.211, 6644158.39], [265772.052, 6645183.154], [266617.741, 6651350.805], [265131.108, 6654395.663], [265203.537, 6659118.664], [266091.484, 6661666.31], [268712.43, 6662037.915], [268643.954, 6658136.552], [274387.242, 6658255.018], [276085.467, 6662010.058], [276350.256, 6662951.309], [275933.903, 6665396.831], [275227.495, 6666202.15], [276921.236, 6668826.839], [278790.121, 6669802.943], [280713.644, 6667824.977], [281519.049, 6668690.273], [281645.756, 6668057.072], [285913.262, 6668838.274], [288770.471, 6671180.961], [288747.559, 6672438.2], [289292.342, 6672123.455], [289849.68, 6672262.427], [289831.396, 6672611.148], [290848.677, 6672960.012], [293075.881, 6674436.914], [293413.231, 6674347.893], [293315.942, 6675529.126], [293526.064, 6676461.0], [294051.436, 6677161.263], [294550.294, 6677619.696], [294823.024, 6678011.324], [295198.34, 6678153.616], [296303.672, 6678078.163], [296371.792, 6677813.677], [295812.62, 6677110.975], [295676.341, 6676609.07], [295648.696, 6676222.75], [298119.962, 6673665.522], [299125.388, 6675523.72], [301120.979, 6675208.747], [301694.067, 6675507.35], [304204.322, 6675868.936], [308146.69, 6678526.293], [309001.264, 6678917.712], [310860.868, 6678524.315]]]}}, {\\\"id\\\": \\\"105\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyh\\\\u00e4j\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 40.4, \\\"freshwarea\\\": 148.66, \\\"gml_id\\\": 1601100562, \\\"landarea\\\": 1310.8, \\\"namefin\\\": \\\"Pyh\\\\u00e4j\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Pyh\\\\u00e4j\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"626\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1459.46}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[435416.503, 7079992.803], [434112.111, 7079126.342], [435077.506, 7077317.736], [434271.819, 7076962.283], [433612.181, 7080054.875], [435343.365, 7080201.381], [435416.503, 7079992.803]]], [[[462785.501, 7079521.042], [461527.866, 7078487.964], [462709.449, 7075683.706], [463790.053, 7064358.732], [463036.769, 7064302.96], [463072.06, 7063916.966], [463830.206, 7063901.906], [464875.673, 7052712.042], [464854.405, 7051516.751], [460468.877, 7049594.464], [460032.116, 7049273.187], [459768.116, 7043118.699], [459485.685, 7041441.803], [458422.283, 7039438.245], [457055.198, 7036862.779], [449823.929, 7033795.763], [444765.3, 7035052.776], [440697.493, 7041240.938], [439004.42, 7042516.974], [437213.116, 7043578.989], [435241.508, 7044181.914], [427435.427, 7044777.465], [424539.134, 7045824.724], [424479.199, 7045853.194], [417999.767, 7051437.468], [421096.89, 7055672.607], [428750.955, 7058267.187], [430669.37, 7061831.369], [432158.656, 7067716.452], [432720.56, 7067144.178], [433236.228, 7067254.267], [433528.523, 7067652.573], [433051.332, 7068113.759], [433682.151, 7068499.054], [433608.488, 7068857.743], [433449.921, 7068659.957], [432217.305, 7067992.693], [434089.189, 7075393.087], [434794.364, 7075147.826], [434645.78, 7073943.999], [437500.762, 7075916.772], [437578.929, 7077166.006], [438038.941, 7077213.423], [437891.554, 7076186.817], [443500.326, 7080064.808], [443727.491, 7080161.993], [444011.429, 7079367.004], [445160.636, 7080010.56], [445000.109, 7080733.402], [463261.848, 7089025.861], [462785.501, 7079521.042]]]]}}, {\\\"id\\\": \\\"106\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Isokyr\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 31.8, \\\"freshwarea\\\": 2.78, \\\"gml_id\\\": 1601100499, \\\"landarea\\\": 354.13, \\\"namefin\\\": \\\"Isokyr\\\\u00f6\\\", \\\"nameswe\\\": \\\"Storkyro\\\", \\\"natcode\\\": \\\"152\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 356.91}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[273357.699, 7004768.631], [273378.669, 7004696.762], [275639.077, 7004604.935], [275774.91, 7004662.465], [275940.597, 7004619.438], [276048.372, 7004677.185], [276312.932, 7004580.854], [276554.174, 7004568.402], [276751.362, 7004689.281], [277012.025, 7004740.179], [277048.262, 7004549.843], [278317.434, 7004494.355], [278336.389, 7004568.998], [278511.153, 7004496.072], [279630.013, 7004441.65], [279372.208, 7003680.078], [278425.717, 7003550.03], [278499.438, 7002846.968], [279414.726, 7002867.063], [281286.726, 7002639.756], [281740.866, 7002280.853], [279386.128, 7002479.587], [279317.752, 7001690.275], [278411.117, 7001413.384], [277637.692, 7002609.333], [274362.056, 7000649.615], [274511.976, 6999991.396], [274914.073, 7000105.868], [275558.596, 6998991.457], [275171.006, 6998657.986], [274827.595, 6999350.173], [274450.772, 6998691.439], [274241.492, 6998168.155], [273697.651, 6998990.335], [273332.03, 6998373.254], [273662.388, 6998232.861], [273214.541, 6997504.453], [272963.449, 6997751.378], [270680.475, 6994333.108], [270583.441, 6992948.686], [270577.301, 6992073.799], [270120.677, 6991289.591], [268833.182, 6989764.517], [268493.124, 6989468.457], [268699.341, 6989159.458], [267643.189, 6988541.706], [268040.859, 6987629.728], [267926.138, 6987194.838], [267666.027, 6986597.449], [267252.967, 6985970.552], [266996.948, 6985298.653], [266931.601, 6984931.871], [266785.711, 6984229.161], [266585.751, 6984262.652], [266200.126, 6983728.823], [266042.089, 6983108.41], [265799.976, 6982335.728], [266234.051, 6981201.381], [266353.342, 6980364.795], [266362.723, 6979607.137], [266522.011, 6978806.995], [265908.685, 6978487.884], [265602.342, 6978514.811], [265253.958, 6977993.13], [264736.546, 6977436.002], [264323.86, 6977146.057], [264056.731, 6976841.09], [263374.212, 6976417.658], [260555.946, 6971497.385], [259059.772, 6971163.906], [260010.179, 6971737.245], [259951.198, 6971938.555], [259547.16, 6972208.676], [259643.697, 6972674.534], [259413.134, 6973102.491], [259373.836, 6973526.992], [259007.971, 6974155.456], [259091.105, 6974433.455], [258872.742, 6974568.973], [259021.178, 6976191.626], [258245.63, 6976811.036], [258695.245, 6977176.84], [258524.271, 6981138.982], [257936.041, 6981012.597], [257735.274, 6980776.68], [257513.038, 6980872.974], [257150.017, 6981158.078], [257175.859, 6981244.313], [257862.299, 6981199.703], [257628.946, 6981390.373], [257083.616, 6983087.663], [257029.531, 6983946.664], [256810.887, 6985172.895], [256447.387, 6986337.007], [255957.317, 6987155.326], [255095.696, 6988593.252], [254439.861, 6989336.047], [254952.857, 6989267.462], [255108.0, 6989544.789], [254196.833, 6989800.517], [254297.836, 6990305.979], [253998.065, 6990234.265], [253892.615, 6990776.106], [254999.171, 6992160.12], [254891.628, 6994280.498], [254447.43, 6994607.782], [254639.587, 6994953.385], [254783.573, 6995449.128], [254662.96, 6995871.731], [255111.336, 6995991.698], [255442.69, 6996881.081], [255827.356, 6996918.508], [257042.559, 6998197.139], [259700.002, 7001591.214], [260744.397, 7001168.399], [261911.292, 7000845.832], [263112.307, 7000488.762], [263764.825, 7000826.848], [264423.185, 7000886.345], [272253.875, 7004745.731], [272815.78, 7004728.879], [272972.594, 7004862.088], [273357.699, 7004768.631]]]}}, {\\\"id\\\": \\\"107\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"R\\\\u00e4\\\\u00e4kkyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 46.2, \\\"freshwarea\\\": 272.07, \\\"gml_id\\\": 1601100454, \\\"landarea\\\": 427.61, \\\"namefin\\\": \\\"R\\\\u00e4\\\\u00e4kkyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"R\\\\u00e4\\\\u00e4kkyl\\\\u00e4\\\", \\\"natcode\\\": \\\"707\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 699.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[646251.081, 6922430.786], [646542.873, 6921906.616], [647031.979, 6921595.042], [647112.265, 6921079.379], [647767.16, 6920094.842], [649081.643, 6919384.661], [649504.583, 6919105.72], [652352.969, 6918603.785], [652577.649, 6918908.503], [654478.998, 6918537.512], [654814.331, 6918271.503], [657433.149, 6909917.487], [657246.411, 6909853.9], [654612.04, 6909937.414], [653731.957, 6909271.163], [654101.267, 6907791.701], [654967.056, 6907203.2], [656095.95, 6905020.107], [654965.557, 6904499.19], [654587.375, 6904628.808], [654528.396, 6904915.316], [654189.985, 6904941.76], [654508.85, 6903828.121], [653104.174, 6903585.576], [653070.164, 6902724.598], [651204.388, 6903427.261], [650343.485, 6902444.124], [649534.599, 6901448.336], [649645.306, 6901104.978], [650819.806, 6900574.6], [651360.279, 6900463.114], [651693.86, 6899988.2], [652140.418, 6899458.995], [652612.31, 6898980.901], [651729.433, 6897559.285], [651894.537, 6897128.411], [653509.595, 6895470.246], [653806.551, 6893961.432], [650532.371, 6896175.357], [649416.568, 6897192.281], [649011.898, 6897261.278], [648213.163, 6897712.312], [646053.142, 6898160.516], [644860.205, 6899063.538], [643931.338, 6898249.346], [642927.996, 6898055.964], [642748.673, 6897233.142], [640956.131, 6896389.371], [638428.456, 6897783.52], [637319.84, 6897732.125], [636046.726, 6896449.609], [632280.933, 6899522.708], [628924.498, 6902826.779], [626294.615, 6902892.602], [626271.814, 6902900.183], [624342.554, 6904369.474], [622960.253, 6907154.988], [619516.589, 6913557.644], [618711.242, 6919371.21], [630128.715, 6921234.043], [631158.664, 6922113.32], [636900.765, 6917058.113], [639845.445, 6920265.03], [642812.498, 6921563.802], [642761.947, 6922622.43], [646251.081, 6922430.786]]]}}, {\\\"id\\\": \\\"108\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Paltamo\\\", \\\"elakelaisten_osuus\\\": 40.1, \\\"freshwarea\\\": 220.85, \\\"gml_id\\\": 1601100241, \\\"landarea\\\": 918.26, \\\"namefin\\\": \\\"Paltamo\\\", \\\"nameswe\\\": \\\"Paltamo\\\", \\\"natcode\\\": \\\"578\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1139.11}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[545674.519, 7161241.341], [546051.693, 7161602.98], [546482.096, 7161460.973], [546511.873, 7161168.834], [546766.725, 7160903.558], [546714.292, 7160706.931], [547091.711, 7160431.181], [546733.934, 7160082.681], [550842.977, 7155574.74], [550597.419, 7155357.625], [550396.056, 7152018.754], [551889.277, 7149806.046], [553169.909, 7149001.628], [553102.218, 7149590.896], [554571.818, 7149314.021], [554253.856, 7148304.563], [556036.393, 7147192.63], [556327.933, 7147748.572], [557260.463, 7146967.396], [557726.591, 7146064.733], [559031.883, 7145678.855], [559167.627, 7146114.198], [560499.92, 7145704.433], [563710.47, 7142608.613], [564034.838, 7142726.066], [564601.905, 7142418.953], [564711.141, 7142013.353], [564731.951, 7142002.513], [570594.488, 7139642.95], [566153.25, 7137942.105], [564702.16, 7134968.727], [562377.712, 7134585.701], [559907.893, 7135637.459], [558687.687, 7135470.306], [558444.19, 7134306.008], [556376.22, 7133485.754], [555109.2, 7133409.367], [554778.497, 7132843.339], [553775.564, 7131594.474], [548525.883, 7133696.606], [548064.303, 7134141.997], [547521.275, 7133672.34], [545113.067, 7135843.595], [538276.348, 7137945.896], [536981.87, 7136151.212], [531477.329, 7136138.285], [527689.922, 7131461.795], [523382.565, 7132961.268], [520667.276, 7129721.824], [514821.627, 7130717.809], [509082.061, 7131608.553], [509265.867, 7136019.588], [511946.855, 7139411.456], [512112.812, 7141506.091], [510620.963, 7143647.636], [510939.712, 7143854.233], [510690.105, 7144191.56], [510393.163, 7143999.099], [509865.004, 7144808.627], [508665.758, 7146167.43], [508904.711, 7147829.831], [509880.062, 7149855.804], [511135.795, 7150620.918], [510764.101, 7151093.151], [510995.096, 7151443.405], [511923.697, 7151030.882], [513081.099, 7151636.494], [514247.804, 7152972.912], [516681.369, 7158350.254], [519019.269, 7160802.864], [519280.693, 7161085.027], [519740.598, 7160977.558], [520038.984, 7159302.402], [521613.402, 7157577.726], [521000.98, 7157564.453], [521009.059, 7157327.187], [521905.18, 7156748.02], [522076.378, 7157071.896], [522612.858, 7157172.607], [522994.41, 7157786.937], [523027.953, 7158074.37], [523456.238, 7158236.792], [523525.487, 7158172.529], [523541.993, 7157991.07], [523240.907, 7157918.006], [523460.871, 7157756.166], [523600.675, 7155419.797], [525683.52, 7153129.324], [526181.794, 7153705.651], [526933.446, 7153623.525], [527010.103, 7154700.239], [527949.288, 7154662.759], [528344.347, 7154880.994], [529688.209, 7153332.716], [532635.137, 7155938.422], [534324.424, 7156851.226], [536251.525, 7156219.359], [536867.191, 7156638.736], [536739.54, 7156933.269], [539852.48, 7159031.591], [541695.419, 7161633.333], [544834.359, 7162161.172], [545674.519, 7161241.341]]]}}, {\\\"id\\\": \\\"109\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lemp\\\\u00e4\\\\u00e4l\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 19.5, \\\"freshwarea\\\": 37.48, \\\"gml_id\\\": 1601100650, \\\"landarea\\\": 269.58, \\\"namefin\\\": \\\"Lemp\\\\u00e4\\\\u00e4l\\\\u00e4\\\", \\\"nameswe\\\": \\\"Lemp\\\\u00e4\\\\u00e4l\\\\u00e4\\\", \\\"natcode\\\": \\\"418\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 307.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[327513.337, 6815227.089], [329786.424, 6814912.769], [329943.277, 6814696.758], [330545.508, 6814802.112], [334112.121, 6814346.136], [337790.156, 6804830.894], [336853.096, 6804453.268], [337216.54, 6803488.529], [336421.911, 6802631.684], [337509.613, 6801883.496], [334831.925, 6798988.563], [333299.183, 6796909.661], [330371.372, 6793839.079], [328844.117, 6792661.711], [327636.528, 6792948.991], [327365.606, 6793328.274], [326294.864, 6794191.574], [326314.438, 6794988.173], [325843.842, 6794740.82], [325496.362, 6795681.713], [325014.538, 6796004.595], [324589.445, 6796757.176], [324977.484, 6797413.835], [324745.435, 6797972.217], [324458.217, 6798035.259], [324707.898, 6798537.66], [324646.934, 6798826.654], [324019.518, 6799588.238], [323249.59, 6800139.654], [322480.919, 6800304.33], [322088.838, 6799627.526], [321444.853, 6799619.42], [321171.248, 6800295.921], [320944.472, 6800498.142], [321315.657, 6801675.613], [321868.994, 6802181.529], [321842.309, 6802618.305], [320875.409, 6803837.524], [318262.334, 6804714.172], [315480.728, 6807577.389], [315399.676, 6808137.51], [317226.145, 6811762.33], [318052.532, 6812526.437], [321555.346, 6812697.22], [326191.538, 6815267.876], [327513.337, 6815227.089]]]}}, {\\\"id\\\": \\\"110\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Suomussalmi\\\", \\\"elakelaisten_osuus\\\": 43.2, \\\"freshwarea\\\": 587.03, \\\"gml_id\\\": 1601100557, \\\"landarea\\\": 5270.56, \\\"namefin\\\": \\\"Suomussalmi\\\", \\\"nameswe\\\": \\\"Suomussalmi\\\", \\\"natcode\\\": \\\"777\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5857.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[615938.18, 7265151.534], [615908.356, 7265294.24], [616225.686, 7265459.776], [616445.737, 7265640.549], [616757.784, 7265796.555], [616806.325, 7266121.958], [617086.189, 7266224.705], [616991.952, 7266316.878], [616770.279, 7266427.995], [616771.666, 7266543.907], [617831.862, 7267193.629], [622744.543, 7266448.483], [624666.384, 7266501.39], [625513.142, 7266241.751], [625891.768, 7266290.583], [626210.365, 7266254.637], [626222.252, 7266253.296], [626850.681, 7266542.107], [627450.6, 7266675.5], [627256.573, 7265018.873], [626569.0, 7263862.5], [626655.5, 7255813.4], [626966.751, 7252888.386], [627803.1, 7249957.5], [623400.7, 7243261.2], [621747.6, 7241710.3], [621471.0, 7239929.5], [623106.2, 7236834.7], [626223.3, 7236883.7], [628280.4, 7236409.9], [629196.9, 7236794.9], [631681.6, 7236232.5], [633720.8, 7235464.3], [634990.7, 7234533.0], [635429.5, 7233066.2], [632198.3, 7227486.3], [633724.6, 7225799.5], [633842.3, 7225924.9], [634036.0, 7225996.4], [634190.7, 7226178.2], [634388.4, 7226182.4], [634396.5, 7226090.9], [633851.6, 7225660.1], [636031.6, 7223292.5], [634864.0, 7223084.3], [633003.7, 7221680.2], [628392.1, 7221406.9], [627419.4, 7220539.4], [623570.8, 7217777.3], [623201.5, 7212428.4], [622571.5, 7210423.9], [623670.6, 7206520.3], [623432.9, 7202901.6], [623678.0, 7201812.4], [625318.7, 7196194.9], [627133.6, 7194328.2], [628052.9, 7193044.9], [627561.6, 7190969.5], [630174.5, 7187843.2], [636309.6, 7188115.7], [636788.2, 7188411.9], [637658.2, 7188596.6], [642312.9, 7188950.8], [642871.0, 7188611.4], [644561.2, 7188846.2], [646732.9, 7186842.9], [646998.6, 7185847.5], [646741.8, 7185764.9], [644765.0, 7183087.6], [645499.6, 7179979.7], [649765.8, 7173042.2], [649570.9, 7171439.8], [649088.2, 7170432.3], [646056.4, 7169096.2], [643098.6, 7165870.1], [643118.816, 7165817.783], [641834.752, 7166148.916], [625313.669, 7170409.411], [621828.486, 7167999.239], [620982.706, 7168855.618], [619866.238, 7167998.373], [620186.781, 7167527.254], [619749.105, 7167081.296], [620042.534, 7166763.497], [619137.737, 7166137.659], [617833.942, 7162404.442], [612257.089, 7167365.002], [609096.649, 7168402.873], [602916.997, 7172428.8], [601036.981, 7173615.517], [599595.199, 7173868.48], [589552.721, 7177351.17], [586187.938, 7176802.353], [579589.937, 7181790.21], [576852.539, 7185294.712], [576342.544, 7185245.312], [576428.494, 7185838.98], [573861.767, 7189126.427], [561263.377, 7197755.394], [560548.555, 7202491.651], [559908.791, 7203137.462], [560402.692, 7203452.755], [559441.265, 7209798.393], [556561.484, 7213288.808], [556678.318, 7213674.694], [556210.299, 7213713.631], [554486.911, 7215803.646], [554695.624, 7216202.344], [554384.994, 7216264.934], [554319.663, 7216007.949], [553077.824, 7217515.782], [553364.488, 7220858.805], [556554.953, 7223754.046], [557192.335, 7226562.044], [556083.804, 7231796.448], [554543.858, 7232278.434], [554481.148, 7232071.985], [546561.028, 7233474.266], [548317.3, 7235438.073], [554298.02, 7236856.128], [559106.224, 7238007.101], [559299.671, 7237504.328], [559641.62, 7237616.474], [560149.684, 7237990.535], [560018.262, 7238222.794], [569207.34, 7240114.89], [569333.328, 7239407.009], [569800.244, 7239076.385], [570246.164, 7239141.101], [569664.274, 7239643.531], [569578.319, 7240192.322], [574191.174, 7241089.021], [574336.944, 7241519.897], [575034.507, 7241361.841], [575264.439, 7242016.676], [574808.037, 7242867.796], [575132.641, 7243796.944], [574765.204, 7244229.287], [575789.405, 7248864.655], [577047.433, 7250918.42], [576524.028, 7252846.658], [583624.765, 7256312.579], [583615.018, 7256330.741], [582425.877, 7256505.405], [582413.448, 7256791.434], [583196.96, 7256812.227], [583134.771, 7257341.58], [583678.002, 7257494.625], [583991.22, 7256490.235], [590659.529, 7259723.006], [594831.592, 7258751.668], [598101.335, 7259984.537], [599437.782, 7260034.712], [599444.706, 7260302.821], [598353.906, 7260272.729], [599590.245, 7261696.622], [600218.717, 7261466.765], [600914.546, 7261348.209], [600963.227, 7261599.338], [600687.439, 7261608.35], [600345.914, 7261905.79], [599768.382, 7261886.049], [601224.189, 7263582.43], [601324.738, 7262926.069], [601459.355, 7262915.473], [601807.325, 7263795.589], [601598.108, 7263985.379], [602704.15, 7265272.506], [602324.006, 7268038.776], [607264.126, 7268485.668], [615938.18, 7265151.534]]]}}, {\\\"id\\\": \\\"111\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Iitti\\\", \\\"elakelaisten_osuus\\\": 35.1, \\\"freshwarea\\\": 97.3, \\\"gml_id\\\": 1601100230, \\\"landarea\\\": 589.79, \\\"namefin\\\": \\\"Iitti\\\", \\\"nameswe\\\": \\\"Iitti\\\", \\\"natcode\\\": \\\"142\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 687.09}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[446535.754, 6771133.373], [445626.315, 6772778.394], [447598.506, 6773765.925], [446535.754, 6771133.373]]], [[[453782.169, 6780409.618], [454230.123, 6778164.035], [455122.835, 6778478.314], [458764.596, 6777509.207], [458825.647, 6777491.653], [459860.465, 6775512.088], [459920.876, 6774748.233], [460403.768, 6774765.026], [460751.983, 6774599.446], [461269.325, 6774930.211], [462858.51, 6774862.664], [460459.918, 6770786.289], [459438.244, 6767467.524], [460305.906, 6764308.612], [461383.968, 6764434.971], [462430.144, 6763377.659], [462919.849, 6763877.362], [463068.213, 6763248.589], [463463.845, 6763552.382], [463817.09, 6762980.13], [464142.075, 6762916.549], [464240.506, 6763286.482], [464639.057, 6763016.282], [465145.039, 6765472.887], [466153.13, 6765816.957], [466245.392, 6766072.754], [466839.051, 6766033.176], [467632.831, 6765181.927], [467832.85, 6764751.403], [468807.256, 6764268.008], [470413.303, 6764845.289], [470818.041, 6764492.036], [473201.22, 6763979.869], [472702.897, 6761851.318], [473207.48, 6760355.137], [473364.59, 6759954.864], [473791.312, 6759904.596], [473955.913, 6758492.584], [473734.364, 6757955.521], [474114.992, 6757342.122], [475134.653, 6756121.851], [474822.522, 6755929.995], [474942.337, 6755214.215], [475299.528, 6749932.349], [474945.368, 6748602.566], [474679.123, 6748600.897], [473034.053, 6748743.988], [472823.446, 6748706.482], [472657.557, 6748780.772], [472362.524, 6748798.791], [471467.482, 6749045.473], [471204.223, 6749223.624], [470888.288, 6749233.451], [470677.405, 6748823.155], [473441.11, 6745133.465], [472105.668, 6744017.877], [470952.551, 6743807.487], [471327.172, 6743280.385], [470231.717, 6742485.492], [469346.412, 6742887.586], [468927.897, 6742464.818], [468020.549, 6742041.189], [467242.312, 6741907.138], [466200.093, 6741287.426], [466285.812, 6740873.678], [467154.579, 6738367.91], [465591.364, 6737198.931], [465911.79, 6736341.409], [462123.921, 6735514.3], [461849.399, 6735056.552], [461543.239, 6735028.71], [460949.499, 6735589.409], [460623.053, 6735597.921], [460274.292, 6736314.562], [459666.316, 6736543.857], [459333.523, 6736399.056], [459287.08, 6734961.069], [457981.694, 6734948.182], [456859.041, 6736092.211], [456571.912, 6740982.234], [454713.071, 6742905.856], [452025.634, 6744479.962], [451709.739, 6744168.683], [450801.141, 6744113.329], [449867.017, 6744814.535], [450017.754, 6745276.652], [449932.587, 6745690.084], [450284.344, 6746431.287], [450656.106, 6747555.583], [450848.981, 6747842.014], [451326.445, 6748288.808], [451737.586, 6748347.511], [452341.529, 6748597.606], [452214.362, 6749423.102], [451900.68, 6749837.966], [451894.146, 6750514.422], [453348.47, 6752760.689], [454465.813, 6754038.089], [454954.81, 6755206.326], [449069.101, 6756033.111], [448153.855, 6760150.536], [448568.524, 6760574.34], [448466.122, 6761247.198], [449254.752, 6761528.176], [449480.745, 6761169.363], [449251.573, 6760789.862], [449472.457, 6760199.114], [449989.709, 6759953.244], [452204.899, 6761389.198], [452478.774, 6763996.748], [453144.291, 6766188.173], [452531.368, 6767244.204], [452343.708, 6767809.405], [452481.207, 6768239.995], [451553.733, 6768545.944], [451672.807, 6768825.894], [451835.294, 6771641.149], [448550.461, 6773623.866], [448838.598, 6774406.185], [448239.54, 6774790.021], [448631.368, 6774964.719], [448832.449, 6775428.737], [448758.183, 6776577.502], [451736.799, 6778728.477], [453782.169, 6780409.618]]]]}}, {\\\"id\\\": \\\"112\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hein\\\\u00e4vesi\\\", \\\"elakelaisten_osuus\\\": 45.1, \\\"freshwarea\\\": 289.62, \\\"gml_id\\\": 1601100139, \\\"landarea\\\": 1029.96, \\\"namefin\\\": \\\"Hein\\\\u00e4vesi\\\", \\\"nameswe\\\": \\\"Hein\\\\u00e4vesi\\\", \\\"natcode\\\": \\\"090\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1319.58}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[585838.41, 6947597.643], [591806.631, 6946786.153], [595646.042, 6942395.353], [598795.529, 6940509.266], [599881.115, 6939946.668], [599782.285, 6938646.182], [600944.254, 6937917.129], [601908.234, 6936562.687], [602964.52, 6935965.009], [603288.364, 6935459.366], [604538.268, 6934929.606], [604664.828, 6934744.868], [604859.862, 6933709.92], [603032.112, 6933153.57], [603864.674, 6932860.58], [604210.081, 6932528.472], [604696.647, 6932519.445], [604668.03, 6932130.793], [605077.388, 6932230.637], [605932.281, 6931813.756], [606721.362, 6930972.747], [607318.648, 6930724.794], [608565.739, 6931012.163], [609128.315, 6930366.664], [608499.062, 6929377.352], [607673.787, 6925423.802], [607489.861, 6923163.68], [608764.279, 6922297.35], [608999.319, 6921748.925], [608707.992, 6921218.783], [608308.424, 6920915.469], [608652.317, 6920556.323], [608644.615, 6920183.097], [609797.981, 6919374.967], [612018.017, 6919096.63], [612569.223, 6917693.335], [612969.094, 6917159.583], [612795.189, 6916971.681], [612994.501, 6916505.676], [612470.235, 6916505.098], [612281.45, 6916194.189], [611875.448, 6916105.383], [611773.839, 6915693.888], [612301.601, 6915338.254], [611813.406, 6914275.291], [611633.985, 6914099.06], [611689.128, 6913781.463], [612174.122, 6913547.465], [612313.37, 6913054.212], [611088.831, 6912872.824], [610061.359, 6912362.89], [609522.29, 6912616.673], [609156.826, 6913486.666], [608193.916, 6914136.811], [606686.682, 6912965.819], [606820.185, 6912634.7], [605757.718, 6911626.959], [604477.528, 6912537.573], [603838.969, 6912774.996], [603880.838, 6912267.078], [602910.696, 6910362.572], [601603.144, 6910192.73], [600254.493, 6908663.442], [601193.338, 6909039.881], [602293.542, 6908110.351], [601761.099, 6907553.248], [601026.758, 6908263.057], [600391.455, 6907544.063], [601243.225, 6906545.713], [600685.993, 6905778.115], [600317.407, 6904777.746], [600211.888, 6904115.278], [599895.119, 6903886.845], [599640.93, 6904441.281], [598055.181, 6904986.29], [596961.627, 6903930.018], [596589.617, 6903739.484], [595927.682, 6904998.276], [595348.621, 6905318.597], [594187.255, 6905332.276], [592905.561, 6906415.375], [592625.815, 6907353.45], [592289.706, 6908130.639], [590936.648, 6907357.79], [590932.573, 6907098.973], [591281.377, 6907080.634], [591288.03, 6906636.355], [590890.457, 6906406.456], [590881.388, 6905304.296], [590669.451, 6904611.474], [590719.665, 6903621.69], [591708.226, 6901604.331], [593308.936, 6898932.266], [592579.054, 6898281.328], [590376.916, 6899571.399], [590109.837, 6900263.92], [589169.839, 6901596.014], [588766.648, 6901317.732], [588737.246, 6900989.336], [588909.078, 6900766.84], [588474.989, 6900270.072], [586255.473, 6901934.997], [585905.795, 6901046.669], [585095.301, 6902016.088], [583498.237, 6903335.49], [583155.8, 6904390.447], [582177.824, 6905205.876], [581994.802, 6906165.651], [581212.802, 6906671.09], [581394.147, 6907305.089], [581374.728, 6907575.513], [581040.96, 6907952.349], [580467.686, 6907715.013], [579865.476, 6908197.131], [579778.52, 6908706.513], [579295.114, 6908893.739], [579099.875, 6909351.081], [577773.636, 6910007.942], [577702.241, 6910328.247], [576417.32, 6910514.968], [576842.69, 6909754.888], [574526.94, 6910305.837], [573723.136, 6911627.151], [574095.681, 6912388.745], [574011.512, 6913070.868], [574445.333, 6913590.76], [574240.342, 6913834.922], [572367.229, 6914767.549], [571629.621, 6914533.371], [571131.368, 6914751.605], [570686.991, 6914192.068], [568071.215, 6914370.703], [568165.876, 6914414.586], [568272.532, 6914580.719], [568499.739, 6914766.046], [568456.174, 6914849.629], [568348.729, 6914936.706], [568261.305, 6914972.073], [568204.356, 6915326.516], [568288.721, 6915547.827], [568237.14, 6915873.895], [568335.101, 6916047.721], [568628.705, 6916407.014], [568653.264, 6916564.774], [568769.87, 6916720.292], [568755.548, 6916816.281], [568786.508, 6916896.133], [568741.379, 6917005.678], [568633.119, 6917069.12], [568582.394, 6917199.871], [568445.97, 6917327.957], [568448.011, 6917508.605], [567719.478, 6917741.784], [567386.648, 6917904.198], [566883.178, 6918221.934], [566392.975, 6918650.857], [566383.878, 6918822.188], [566573.9, 6918862.772], [566390.959, 6920779.097], [566102.532, 6920949.194], [565260.42, 6921526.684], [565246.927, 6921287.481], [564516.121, 6921775.878], [564482.334, 6921924.618], [564286.912, 6922039.77], [564581.189, 6922873.833], [565178.653, 6923319.371], [566396.946, 6924200.407], [566963.217, 6924081.759], [567100.693, 6925040.734], [566792.978, 6925766.875], [566668.428, 6925830.849], [566640.339, 6926008.377], [566057.174, 6926344.037], [565855.256, 6926346.535], [565834.031, 6926519.285], [566328.602, 6927551.317], [566253.688, 6927747.872], [566515.382, 6927810.249], [566706.605, 6927733.281], [566730.496, 6927527.464], [566936.213, 6927383.924], [567085.604, 6927291.184], [567206.457, 6927270.567], [567417.319, 6927192.105], [567590.848, 6927221.494], [567891.526, 6927324.554], [568215.092, 6927526.456], [568321.352, 6927502.208], [568387.576, 6927437.562], [568480.895, 6927382.181], [568598.244, 6927287.283], [568805.746, 6927203.383], [569067.623, 6927055.929], [569151.923, 6926995.144], [569216.091, 6926875.844], [569389.921, 6926816.37], [569451.296, 6926686.123], [569867.278, 6926302.758], [570039.335, 6926340.323], [570178.253, 6926327.882], [570269.052, 6926394.683], [570611.353, 6926492.36], [570832.118, 6926447.628], [570926.364, 6926381.693], [571015.538, 6926388.726], [571124.771, 6926378.47], [571276.911, 6926370.758], [571534.984, 6926948.731], [571430.088, 6927834.249], [571573.33, 6928089.771], [571816.148, 6928974.0], [571782.635, 6929041.878], [571636.953, 6929191.671], [571585.772, 6929288.23], [571519.08, 6929339.031], [571648.9, 6929467.7], [570710.498, 6930222.562], [570514.046, 6930645.851], [570595.853, 6930761.386], [570464.679, 6930882.45], [570451.739, 6930995.747], [570492.455, 6931148.229], [570591.814, 6931271.48], [570565.224, 6931483.994], [570629.097, 6931616.141], [570818.92, 6931781.176], [570979.455, 6931740.293], [571100.506, 6931646.532], [571462.751, 6931625.822], [571545.755, 6931923.154], [571670.567, 6932299.692], [571642.639, 6932514.148], [572122.683, 6933666.324], [572194.984, 6933883.494], [572097.209, 6934060.51], [572030.202, 6934219.24], [572075.126, 6934248.44], [572209.383, 6934224.023], [572346.537, 6934225.37], [572335.926, 6934292.977], [572402.52, 6934364.194], [572478.558, 6934474.964], [572458.369, 6934562.566], [572402.845, 6934680.152], [572311.148, 6934825.851], [572169.659, 6934884.532], [571921.057, 6935245.884], [571951.343, 6935520.274], [572091.485, 6935712.397], [572158.755, 6936117.034], [571852.276, 6936607.932], [571858.971, 6936881.921], [571945.135, 6937032.161], [571923.466, 6937236.227], [572237.13, 6937445.807], [572308.388, 6937695.511], [572417.683, 6937688.25], [572435.733, 6937810.866], [572546.353, 6937839.122], [572596.173, 6938012.153], [572624.804, 6938131.913], [572682.038, 6938203.199], [572667.089, 6938286.798], [572548.312, 6938304.954], [572425.188, 6938350.299], [572345.773, 6938436.081], [572273.248, 6938574.725], [572148.732, 6938609.699], [572162.442, 6938702.755], [572081.217, 6938802.04], [572001.767, 6938925.877], [571993.4, 6939024.957], [572066.842, 6939019.324], [572177.727, 6938967.96], [572356.447, 6938836.808], [572425.494, 6938908.405], [572527.751, 6938984.422], [572635.141, 6938960.494], [572767.548, 6938918.698], [572944.182, 6938888.491], [573142.752, 6938669.861], [573455.703, 6938524.714], [573677.769, 6938374.28], [573763.69, 6938370.244], [574240.591, 6938653.942], [574605.744, 6938456.268], [574754.328, 6938361.377], [574917.096, 6938201.413], [575078.427, 6938136.144], [575137.0, 6938055.423], [575379.092, 6937875.76], [575840.354, 6938208.815], [575941.414, 6938077.769], [577038.081, 6937298.294], [577503.907, 6936817.082], [577771.506, 6936644.535], [577981.997, 6936382.85], [578213.164, 6936202.403], [579429.532, 6938451.895], [579070.885, 6938659.453], [578916.722, 6938635.023], [578449.882, 6938903.444], [578342.396, 6938895.327], [578046.59, 6939076.341], [577878.327, 6939115.356], [577837.931, 6939293.517], [577549.886, 6939485.154], [577361.71, 6939329.881], [577185.189, 6939342.238], [576800.107, 6939426.604], [575358.681, 6940004.235], [575737.419, 6940443.723], [576365.61, 6940622.383], [577636.468, 6940279.889], [578286.654, 6940360.357], [578939.485, 6940197.838], [579142.681, 6940543.712], [580138.826, 6941657.974], [581052.878, 6939796.349], [582070.838, 6940774.639], [582367.609, 6940740.846], [582902.44, 6941673.925], [583387.674, 6942040.794], [583460.984, 6942754.805], [582049.398, 6943203.253], [583817.125, 6944444.13], [584007.664, 6945002.859], [584215.715, 6946305.723], [584207.172, 6947549.328], [584812.796, 6948464.778], [585838.41, 6947597.643]]]}}, {\\\"id\\\": \\\"113\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Muonio\\\", \\\"elakelaisten_osuus\\\": 30.5, \\\"freshwarea\\\": 134.01, \\\"gml_id\\\": 1601100218, \\\"landarea\\\": 1905.96, \\\"namefin\\\": \\\"Muonio\\\", \\\"nameswe\\\": \\\"Muonio\\\", \\\"natcode\\\": \\\"498\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2039.97}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[366703.026, 7563861.713], [373641.706, 7562773.413], [373979.465, 7562673.076], [373957.838, 7562568.272], [374291.077, 7562404.203], [374288.174, 7562071.652], [374368.589, 7561884.254], [374320.716, 7561489.941], [374124.797, 7561073.615], [373914.93, 7561008.531], [373693.896, 7560676.09], [373604.112, 7560392.13], [373490.922, 7560270.537], [373711.623, 7558896.763], [379813.189, 7561172.107], [379979.483, 7560798.847], [380159.571, 7560355.615], [380520.913, 7560256.536], [380640.947, 7560054.727], [379097.468, 7557794.67], [379044.904, 7556949.247], [379273.568, 7556547.971], [379350.678, 7556280.78], [379319.781, 7556014.079], [380642.156, 7555502.766], [382081.429, 7556040.319], [383362.01, 7554116.119], [382196.687, 7551453.718], [381885.608, 7549851.053], [383767.499, 7548115.783], [383569.929, 7546609.318], [383322.917, 7546306.567], [383301.227, 7545991.44], [383050.239, 7545746.393], [383085.19, 7544452.224], [382444.682, 7542078.784], [380660.778, 7541695.805], [380829.963, 7540868.011], [380630.408, 7540867.148], [380424.342, 7540591.727], [380542.073, 7540227.834], [380827.34, 7540054.562], [381306.226, 7538763.711], [381452.654, 7537931.685], [380564.244, 7537118.985], [380288.908, 7536873.792], [380314.128, 7536469.729], [380811.905, 7532636.628], [381919.688, 7524538.962], [382449.333, 7520723.918], [382714.601, 7519149.066], [383443.489, 7515066.04], [385399.515, 7503625.564], [384193.776, 7503812.015], [379679.052, 7504517.657], [379009.565, 7505384.475], [378777.925, 7505202.139], [379241.63, 7504585.859], [375438.982, 7505181.063], [372473.55, 7502858.74], [372423.529, 7503073.219], [372116.262, 7503033.984], [372201.996, 7502656.03], [360235.071, 7493341.848], [360282.991, 7493092.772], [361891.647, 7491861.658], [361887.139, 7491645.558], [359795.101, 7493001.799], [352073.744, 7487075.113], [352081.969, 7486903.763], [351873.453, 7486860.983], [351729.836, 7486799.469], [351659.919, 7486740.089], [351572.036, 7486586.506], [351534.045, 7486572.866], [351430.4, 7486416.51], [351087.998, 7486074.478], [351052.126, 7485981.63], [351009.315, 7485679.997], [350924.504, 7485527.527], [350750.372, 7485385.579], [350646.795, 7485348.244], [350503.507, 7485334.545], [350155.553, 7485365.228], [350041.589, 7485406.675], [349873.765, 7485528.463], [349642.881, 7485822.239], [349384.978, 7485991.764], [349174.387, 7486086.955], [348764.454, 7486183.24], [348662.422, 7486278.606], [348554.408, 7486328.68], [348431.274, 7486422.254], [348068.658, 7486880.549], [348020.066, 7486908.474], [347837.058, 7486961.341], [347764.511, 7487005.592], [347676.833, 7487122.122], [347535.749, 7487409.031], [347422.548, 7487530.45], [347330.788, 7487573.881], [346785.188, 7487745.134], [346646.584, 7487830.182], [346566.04, 7487950.406], [346437.883, 7488307.583], [346420.071, 7488415.937], [346396.912, 7489016.03], [346370.836, 7489160.182], [346056.669, 7489695.982], [345985.808, 7490018.78], [346098.958, 7490449.242], [346217.749, 7490701.129], [346386.406, 7490974.515], [346553.999, 7491117.389], [346592.711, 7491171.721], [346596.061, 7491227.805], [346518.311, 7491592.358], [346534.182, 7491635.564], [346714.701, 7491792.712], [347176.682, 7491883.266], [347321.159, 7491949.228], [347541.653, 7492118.76], [347650.083, 7492251.36], [347747.647, 7492330.222], [347887.147, 7492533.058], [347914.762, 7492607.21], [347874.999, 7492958.042], [347934.857, 7493371.506], [347980.815, 7493480.942], [348191.242, 7493683.474], [348340.512, 7493725.174], [348412.721, 7493774.42], [348655.256, 7494025.694], [348788.676, 7494204.598], [348884.422, 7494234.036], [349074.037, 7494401.691], [349233.384, 7494489.966], [349441.128, 7494551.439], [349606.582, 7494649.184], [349717.966, 7494736.896], [349762.816, 7494801.526], [349816.898, 7495238.984], [349850.234, 7495330.849], [349906.172, 7495409.582], [350094.744, 7495544.302], [350147.292, 7495599.777], [350176.49, 7495790.659], [350169.257, 7495906.209], [350029.853, 7496127.698], [349891.156, 7496514.703], [349790.145, 7496634.3], [349614.065, 7496713.174], [349549.532, 7496761.968], [349432.634, 7496975.821], [349406.046, 7497159.581], [349305.733, 7497400.879], [349230.666, 7497659.361], [349206.811, 7497830.785], [349084.663, 7498142.621], [349088.203, 7498266.092], [349119.818, 7498347.518], [349242.91, 7498457.871], [349587.734, 7498690.485], [349693.39, 7498746.133], [349878.591, 7498758.675], [350174.468, 7498727.747], [350287.636, 7498769.327], [350376.053, 7498837.312], [350418.918, 7498847.304], [350542.879, 7498804.676], [350663.372, 7498728.354], [350716.503, 7498669.477], [350811.531, 7498509.264], [350905.299, 7498441.349], [351105.518, 7498350.279], [351202.282, 7498342.276], [351317.257, 7498374.023], [351420.454, 7498430.284], [351552.07, 7498548.486], [351738.638, 7498887.565], [352022.349, 7499257.876], [352148.572, 7499369.213], [352206.039, 7499493.466], [352219.063, 7499649.897], [352265.532, 7499777.176], [352362.617, 7499835.537], [352593.935, 7499895.545], [352720.103, 7499974.022], [352782.792, 7500031.737], [352852.525, 7500218.84], [353006.046, 7500433.224], [353037.847, 7500605.0], [352974.003, 7501122.146], [352989.677, 7501327.872], [353025.946, 7501468.336], [352981.277, 7501909.628], [352995.692, 7502155.291], [352966.414, 7502319.442], [352887.905, 7502539.98], [352877.294, 7502762.973], [352900.428, 7502827.808], [353030.602, 7503003.931], [353106.182, 7503336.182], [353172.186, 7503483.963], [353266.898, 7503787.747], [353305.591, 7503838.443], [353397.662, 7503890.549], [353512.273, 7504121.363], [353638.252, 7504300.441], [353813.266, 7504448.768], [353854.635, 7504550.379], [353849.682, 7504610.994], [353799.591, 7504717.164], [353737.515, 7504798.869], [353581.505, 7504926.74], [353515.305, 7504926.591], [353319.481, 7504883.797], [353211.867, 7504931.614], [353134.755, 7505043.949], [353046.375, 7505251.356], [353031.875, 7505320.24], [353038.932, 7505370.569], [353140.676, 7505621.813], [353142.918, 7505761.494], [353090.102, 7505936.211], [352963.46, 7506217.055], [352885.472, 7506539.947], [352860.312, 7506585.831], [352794.414, 7506631.93], [352707.821, 7506741.988], [352587.919, 7506946.625], [352327.845, 7507326.094], [352166.223, 7507603.719], [352101.126, 7507682.902], [352003.017, 7507915.214], [351880.14, 7508348.528], [351672.334, 7508801.019], [351632.85, 7508976.665], [351516.523, 7509148.688], [351410.571, 7509443.235], [351306.565, 7509651.098], [351270.747, 7509808.71], [351280.174, 7509976.587], [351320.676, 7510153.241], [351381.085, 7510317.987], [351432.96, 7510412.471], [351505.15, 7510497.451], [351544.225, 7510588.968], [351562.71, 7510725.6], [351567.14, 7511008.395], [351658.212, 7511434.544], [351645.154, 7511649.077], [351602.641, 7511874.765], [351494.224, 7512073.654], [351370.249, 7512235.105], [351340.256, 7512328.413], [351329.756, 7512480.984], [351345.483, 7512618.682], [351381.297, 7512722.407], [351473.182, 7512871.747], [351510.279, 7512982.825], [351513.514, 7513068.956], [351497.788, 7513163.988], [351390.761, 7513357.916], [351112.61, 7513562.161], [350969.13, 7513699.748], [350915.868, 7513789.148], [350903.865, 7513857.66], [350902.372, 7513935.666], [350926.33, 7513997.502], [351108.992, 7514199.634], [351186.593, 7514343.996], [351204.61, 7514499.907], [351203.045, 7514705.933], [351230.195, 7514791.057], [351249.37, 7514946.043], [351237.217, 7515025.478], [351057.502, 7515314.611], [351009.75, 7515471.356], [351098.1, 7516345.345], [351150.635, 7516450.512], [351403.65, 7516703.831], [351486.9, 7516868.941], [351508.356, 7516985.126], [351427.619, 7517255.049], [351325.816, 7517393.078], [351252.276, 7517617.801], [351076.847, 7517858.04], [351046.359, 7518002.871], [351073.095, 7518134.913], [351122.598, 7518242.43], [351465.124, 7518646.934], [351559.206, 7518816.355], [351727.669, 7519286.705], [351858.803, 7519732.985], [351859.51, 7519825.11], [351809.999, 7520028.22], [351814.012, 7520206.318], [351783.08, 7520450.344], [351803.039, 7520507.522], [351902.034, 7520664.345], [351922.294, 7520758.539], [351645.215, 7521731.244], [351631.917, 7521929.089], [351685.043, 7522307.585], [351717.04, 7522404.496], [351766.497, 7522467.724], [351903.849, 7522539.816], [351943.275, 7522578.045], [352023.97, 7522720.139], [352062.502, 7522824.42], [352083.443, 7522927.415], [352101.237, 7523323.725], [352190.563, 7523795.916], [352184.452, 7523918.679], [352150.581, 7524037.596], [352075.216, 7524161.019], [351784.238, 7524547.877], [351652.354, 7524944.427], [351634.124, 7525125.274], [351656.508, 7525298.71], [351591.546, 7525565.767], [351608.021, 7525923.968], [351525.081, 7526146.674], [351456.62, 7526634.047], [351445.405, 7526770.223], [351488.909, 7527030.83], [351629.069, 7527195.548], [351721.58, 7527333.748], [351782.55, 7527512.7], [351882.03, 7527709.328], [351916.676, 7527852.167], [351919.801, 7528058.744], [351868.078, 7528756.352], [351873.628, 7528986.228], [351809.336, 7529399.916], [351814.539, 7529533.632], [351831.916, 7529589.882], [351874.619, 7529639.731], [352000.039, 7529719.805], [352159.988, 7529781.09], [352229.616, 7529855.319], [352280.153, 7529937.623], [352376.054, 7530246.361], [352450.265, 7531024.062], [352515.599, 7531219.52], [352659.867, 7531871.34], [352691.922, 7531930.201], [352830.18, 7532062.308], [352896.596, 7532264.595], [353063.521, 7532412.887], [353118.027, 7532492.317], [353181.169, 7532688.65], [353210.146, 7532941.285], [353217.252, 7533228.373], [353300.231, 7533493.743], [353389.132, 7533584.194], [353470.391, 7533741.326], [353579.504, 7533853.617], [353722.668, 7534113.901], [353858.362, 7534242.262], [354021.533, 7534341.453], [354269.246, 7534429.538], [354528.673, 7534558.932], [354709.046, 7534614.501], [354826.696, 7534733.613], [354958.136, 7534830.589], [355037.482, 7534925.37], [355090.316, 7535040.107], [355132.451, 7535198.721], [355164.366, 7535409.296], [355234.371, 7535510.841], [355290.262, 7535548.591], [355404.0, 7535526.415], [355601.922, 7535399.463], [355649.636, 7535332.768], [355672.021, 7535229.183], [356055.164, 7534899.602], [356291.361, 7534882.057], [356437.788, 7534925.246], [356703.65, 7535104.811], [356750.877, 7535152.4], [356831.822, 7535433.916], [356916.478, 7535589.525], [356958.598, 7535731.759], [357060.179, 7535922.209], [357105.698, 7535969.985], [357231.844, 7536055.617], [357540.339, 7536186.685], [357722.345, 7536349.989], [357883.38, 7536370.699], [358024.505, 7536448.764], [358240.518, 7536518.405], [358409.193, 7536753.417], [358618.089, 7536869.186], [358927.012, 7537082.352], [359200.233, 7537376.398], [359244.418, 7537453.756], [359307.156, 7537746.547], [359369.293, 7537899.553], [359315.243, 7538271.508], [359334.439, 7538448.364], [359555.445, 7538850.576], [359607.46, 7539055.423], [359704.78, 7539307.143], [359891.315, 7539680.511], [359948.162, 7539743.887], [360084.182, 7539786.035], [360152.283, 7539837.789], [360242.881, 7539994.27], [360269.223, 7540107.718], [360192.358, 7540281.379], [360120.145, 7540583.328], [360097.28, 7540768.781], [360068.581, 7540809.787], [359953.205, 7540886.628], [359897.357, 7540956.728], [359824.719, 7541065.902], [359750.956, 7541246.898], [359739.447, 7541406.567], [359827.336, 7541781.828], [359861.165, 7542108.246], [359811.086, 7542331.527], [359681.481, 7542521.267], [359476.703, 7542734.412], [359215.933, 7542940.031], [358421.813, 7543299.605], [358029.417, 7543560.473], [357854.354, 7543649.979], [357598.224, 7543732.237], [357524.279, 7543742.156], [357338.11, 7543729.65], [357106.18, 7543651.743], [356967.466, 7543631.826], [356809.941, 7543672.818], [356682.261, 7543761.053], [356580.805, 7543881.662], [356455.608, 7544103.044], [356236.627, 7544400.339], [356079.682, 7544677.339], [355858.764, 7544960.949], [355728.738, 7545191.064], [355605.119, 7545456.035], [355546.33, 7545629.909], [355412.805, 7545856.338], [355341.903, 7546021.012], [355212.405, 7546631.748], [355210.285, 7546744.006], [355233.102, 7546870.614], [355323.36, 7547103.299], [355339.445, 7547248.033], [355320.467, 7547430.759], [355255.147, 7547552.337], [355177.801, 7547627.493], [355083.572, 7547687.839], [354732.841, 7547839.428], [354453.675, 7548021.186], [354201.413, 7548137.318], [353982.287, 7548309.053], [353742.238, 7548541.077], [353526.379, 7548598.984], [353453.771, 7548645.535], [353335.194, 7548763.92], [353088.217, 7548823.314], [352969.22, 7548898.164], [352796.422, 7549138.207], [352620.82, 7549231.814], [352564.666, 7549282.591], [352452.051, 7549485.896], [352378.867, 7550003.221], [352388.513, 7550048.978], [352482.378, 7550199.764], [352517.4, 7550307.347], [352521.03, 7550434.809], [352467.505, 7550523.877], [351999.474, 7550940.176], [351972.027, 7550989.604], [351836.815, 7551128.576], [351651.739, 7551279.554], [351382.554, 7551361.873], [351084.588, 7551388.866], [350857.698, 7551513.413], [350659.072, 7551704.386], [350526.523, 7551757.794], [350339.723, 7551792.662], [350231.082, 7551845.49], [350067.499, 7551972.709], [349842.669, 7552072.283], [349725.408, 7552195.222], [349383.399, 7552636.214], [349277.278, 7552886.609], [349264.128, 7553033.018], [349384.426, 7553539.007], [349366.513, 7553647.013], [349280.547, 7553705.244], [349075.634, 7553733.188], [348964.091, 7553801.348], [348873.98, 7553901.309], [348809.754, 7554009.636], [348777.958, 7554129.927], [348753.66, 7554364.656], [348767.679, 7554533.874], [348884.892, 7554918.162], [348841.563, 7555059.256], [348684.416, 7555360.419], [348655.766, 7555644.586], [348500.95, 7556093.204], [348466.794, 7556301.771], [348513.969, 7556741.432], [348476.221, 7556879.197], [348338.209, 7557074.41], [348244.316, 7557409.716], [348197.747, 7557520.144], [347865.36, 7558118.38], [347648.62, 7558431.817], [347619.826, 7558502.803], [347590.44, 7559215.62], [347596.047, 7559424.065], [347542.591, 7559757.042], [347447.885, 7560064.785], [347318.147, 7560348.506], [347239.458, 7560475.382], [347241.181, 7560568.361], [347486.676, 7560991.116], [347490.561, 7561088.635], [347306.218, 7561537.735], [347150.834, 7561798.057], [347128.115, 7562063.743], [347177.505, 7562247.539], [347194.845, 7562392.917], [347136.451, 7562746.568], [347070.344, 7562868.101], [347005.544, 7562935.516], [346961.962, 7563025.884], [346955.534, 7563216.556], [346868.421, 7563399.311], [346767.829, 7563515.559], [346605.175, 7563573.084], [346593.274, 7563684.165], [346694.729, 7563834.768], [346706.985, 7564016.637], [346635.66, 7564114.379], [346532.826, 7564183.761], [346455.488, 7564201.693], [346215.827, 7564143.745], [346089.756, 7564150.12], [346029.23, 7564183.246], [345991.344, 7564267.302], [345947.232, 7564546.058], [345878.353, 7564702.22], [346012.513, 7564770.911], [347534.118, 7566871.463], [364844.569, 7567317.933], [366703.026, 7563861.713]]]}}, {\\\"id\\\": \\\"114\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Myrskyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 31.2, \\\"freshwarea\\\": 5.98, \\\"gml_id\\\": 1601100371, \\\"landarea\\\": 200.37, \\\"namefin\\\": \\\"Myrskyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"M\\\\u00f6rskom\\\", \\\"natcode\\\": \\\"504\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 206.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[441787.77, 6730507.194], [441865.744, 6729719.912], [442140.745, 6727798.489], [440101.12, 6722859.864], [443010.225, 6723999.737], [445064.563, 6723948.601], [445343.495, 6723529.062], [445688.448, 6722342.716], [446071.622, 6721496.355], [445900.712, 6720871.37], [445480.975, 6720421.356], [445195.098, 6720712.928], [444545.23, 6720857.284], [443609.975, 6720715.268], [443186.422, 6720337.258], [442309.739, 6720400.252], [442871.701, 6719425.925], [442791.169, 6718908.022], [443531.073, 6717831.949], [441795.1, 6715650.319], [440616.382, 6715428.295], [437176.779, 6715782.408], [435775.766, 6714002.618], [435590.55, 6713100.484], [435459.201, 6713354.279], [434572.646, 6715095.659], [432565.266, 6717622.634], [429272.666, 6719177.545], [428821.749, 6719098.472], [426631.036, 6720528.076], [428399.511, 6723047.982], [429817.425, 6724024.601], [431013.626, 6725191.642], [431598.603, 6730923.09], [432832.439, 6730966.031], [434481.46, 6731265.425], [436420.763, 6731601.905], [437790.956, 6733479.58], [440828.446, 6733856.824], [441787.77, 6730507.194]]]}}, {\\\"id\\\": \\\"115\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Padasjoki\\\", \\\"elakelaisten_osuus\\\": 45.1, \\\"freshwarea\\\": 206.74, \\\"gml_id\\\": 1601100477, \\\"landarea\\\": 523.11, \\\"namefin\\\": \\\"Padasjoki\\\", \\\"nameswe\\\": \\\"Padasjoki\\\", \\\"natcode\\\": \\\"576\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 729.85}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[419495.344, 6812537.654], [418372.933, 6808815.704], [422133.777, 6800320.791], [420573.818, 6797562.888], [417367.426, 6799248.617], [415159.045, 6798601.617], [413947.701, 6794570.542], [412800.114, 6793668.623], [412031.07, 6793211.331], [411900.174, 6792492.136], [411522.583, 6792291.329], [411351.2, 6791654.82], [407191.44, 6791454.757], [406423.283, 6792059.94], [404883.353, 6791690.027], [403543.819, 6790950.967], [402689.517, 6790866.083], [399751.312, 6792181.474], [397906.052, 6792789.629], [394254.442, 6791800.016], [393465.775, 6795936.92], [393517.903, 6796828.215], [392474.198, 6795559.451], [392181.837, 6795560.371], [391946.114, 6795514.402], [391804.107, 6795673.826], [391641.298, 6795661.212], [391526.551, 6795657.323], [391497.794, 6795496.653], [391405.227, 6795366.008], [391282.943, 6795343.309], [390980.983, 6795606.071], [391036.153, 6795730.213], [391064.297, 6795793.542], [390936.109, 6795894.74], [390740.405, 6796049.239], [390603.723, 6796294.21], [390502.112, 6796420.791], [390337.948, 6796669.394], [390275.523, 6796722.908], [390125.816, 6796837.836], [390103.81, 6797028.136], [390028.371, 6797038.283], [389905.976, 6797054.745], [389806.054, 6797139.516], [389698.46, 6797325.946], [389601.331, 6797445.971], [389449.216, 6797400.279], [389351.005, 6797324.848], [389375.089, 6797182.54], [389276.722, 6797043.667], [389131.114, 6797126.487], [389081.893, 6797154.483], [389006.368, 6797123.558], [388923.763, 6797089.734], [388887.103, 6797020.849], [388848.978, 6796949.211], [388792.46, 6796903.018], [388817.18, 6796701.256], [388824.632, 6796503.804], [388691.172, 6796519.235], [388622.0, 6796521.85], [388570.139, 6796523.811], [388683.629, 6799573.069], [388341.3, 6800758.633], [388021.012, 6801184.476], [387130.995, 6804231.441], [387750.625, 6806310.796], [388080.117, 6807878.177], [387510.303, 6808183.703], [388582.926, 6810889.311], [386765.327, 6813331.706], [386754.669, 6814022.98], [386268.65, 6814679.956], [385870.677, 6814943.999], [386067.469, 6815673.161], [385742.49, 6816954.87], [386004.133, 6817676.616], [391802.732, 6814673.992], [392785.961, 6814784.461], [397666.369, 6816267.577], [397436.175, 6817365.213], [397647.596, 6817412.642], [398430.243, 6816807.595], [399173.093, 6816764.684], [399743.645, 6816920.095], [400669.546, 6816252.386], [401279.595, 6815341.562], [403231.682, 6817419.279], [407094.355, 6816685.901], [408166.307, 6817487.311], [413145.502, 6817748.821], [416789.253, 6818020.26], [419495.344, 6812537.654]]]}}, {\\\"id\\\": \\\"116\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Varkaus\\\", \\\"elakelaisten_osuus\\\": 36.6, \\\"freshwarea\\\": 138.84, \\\"gml_id\\\": 1601100267, \\\"landarea\\\": 385.63, \\\"namefin\\\": \\\"Varkaus\\\", \\\"nameswe\\\": \\\"Varkaus\\\", \\\"natcode\\\": \\\"915\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 524.47}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[547624.706, 6916060.277], [548039.041, 6915540.391], [548157.994, 6915148.651], [549556.111, 6913088.206], [550907.595, 6911574.219], [551216.071, 6911453.77], [551598.256, 6911044.695], [552417.99, 6910039.552], [552855.615, 6909371.726], [552872.41, 6909055.554], [553229.42, 6908411.523], [552992.935, 6908072.659], [553083.402, 6907605.706], [553511.758, 6907524.679], [554662.424, 6906456.869], [555057.936, 6906337.272], [555575.634, 6906800.784], [555791.43, 6907881.851], [556076.113, 6908330.171], [555685.867, 6909118.649], [555377.839, 6909367.866], [555486.971, 6909679.472], [556345.095, 6909984.103], [556831.999, 6909747.202], [557164.263, 6909948.323], [556841.792, 6910219.911], [556859.981, 6910931.722], [558484.922, 6910887.152], [558713.326, 6911517.498], [560682.429, 6911007.818], [561066.571, 6911436.947], [561923.213, 6913467.43], [561593.244, 6914087.177], [562752.374, 6913990.524], [563391.216, 6913696.347], [564416.794, 6914919.158], [565033.242, 6915474.136], [565483.56, 6915280.818], [565534.457, 6914743.786], [565882.233, 6914493.212], [566296.786, 6914418.844], [566940.521, 6914042.925], [568071.215, 6914370.703], [570686.991, 6914192.068], [571131.368, 6914751.605], [571629.621, 6914533.371], [572367.229, 6914767.549], [574240.342, 6913834.922], [574445.333, 6913590.76], [574011.512, 6913070.868], [574095.681, 6912388.745], [573723.136, 6911627.151], [574526.94, 6910305.837], [576842.69, 6909754.888], [576417.32, 6910514.968], [577702.241, 6910328.247], [577773.636, 6910007.942], [579099.875, 6909351.081], [579295.114, 6908893.739], [579778.52, 6908706.513], [579865.476, 6908197.131], [580467.686, 6907715.013], [581040.96, 6907952.349], [581374.728, 6907575.513], [581394.147, 6907305.089], [581212.802, 6906671.09], [581994.802, 6906165.651], [582177.824, 6905205.876], [583155.8, 6904390.447], [583498.237, 6903335.49], [585095.301, 6902016.088], [585905.795, 6901046.669], [586279.404, 6898809.814], [586269.922, 6897984.796], [585580.921, 6898037.013], [584864.057, 6898603.896], [584782.655, 6897640.055], [585014.321, 6897458.661], [584925.668, 6897037.561], [585960.522, 6896574.876], [585545.237, 6895560.131], [585504.669, 6894755.692], [586161.654, 6893979.978], [585884.866, 6893796.331], [584979.064, 6894111.0], [584742.603, 6893961.945], [585012.721, 6892678.663], [584040.289, 6892824.633], [584631.09, 6891136.022], [584253.633, 6890939.409], [582520.981, 6893197.332], [582588.03, 6893618.326], [582304.399, 6893854.453], [581374.259, 6894141.672], [580868.756, 6895759.96], [580189.111, 6896275.529], [579310.086, 6895708.428], [579034.89, 6896194.896], [579050.822, 6896196.194], [579019.719, 6896221.716], [578274.261, 6897539.476], [576521.513, 6897469.199], [575272.311, 6898072.148], [572240.425, 6898837.522], [569025.613, 6899644.777], [568587.99, 6899506.13], [568310.797, 6900064.003], [568505.472, 6900213.797], [567815.591, 6900724.033], [566930.652, 6900182.247], [565987.711, 6900494.495], [565726.236, 6900342.176], [565750.132, 6899714.53], [565361.992, 6899207.833], [563758.348, 6898243.012], [562480.762, 6898943.022], [561402.99, 6900174.115], [560780.843, 6900271.071], [560585.027, 6899854.639], [559313.846, 6899726.782], [558450.388, 6900732.768], [558458.794, 6899806.343], [557616.836, 6899889.703], [557213.296, 6900335.32], [556754.083, 6900409.287], [556770.064, 6900777.628], [556204.757, 6900929.51], [556021.98, 6900527.134], [555737.296, 6900573.013], [555956.32, 6901030.814], [555068.568, 6901763.5], [554513.792, 6900833.998], [554199.723, 6900446.553], [552683.634, 6901264.211], [552826.871, 6901750.415], [550208.376, 6903197.985], [548731.247, 6904333.403], [547861.061, 6905775.648], [546949.928, 6906488.753], [546268.241, 6906808.407], [546209.941, 6906101.189], [546579.722, 6905691.287], [546027.566, 6905265.301], [545310.973, 6905720.662], [544913.856, 6906247.536], [544515.617, 6906323.902], [544058.106, 6905912.765], [543759.897, 6905264.121], [543234.046, 6905450.447], [542491.517, 6906537.087], [542498.032, 6907101.472], [541535.26, 6908285.396], [540847.892, 6909154.228], [538747.638, 6910593.53], [538366.594, 6910397.707], [538046.313, 6912439.876], [539876.568, 6914468.605], [539220.287, 6915339.175], [541199.529, 6914793.518], [541849.256, 6914916.699], [542777.24, 6913794.059], [543287.095, 6913707.173], [543410.485, 6914199.908], [543761.309, 6914397.342], [543888.13, 6914755.48], [544451.9, 6914920.217], [545048.655, 6915431.314], [545639.787, 6915695.071], [545783.078, 6915600.754], [546229.045, 6915719.353], [546619.411, 6916800.07], [547197.076, 6916903.133], [547624.706, 6916060.277]]]}}, {\\\"id\\\": \\\"117\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Loppi\\\", \\\"elakelaisten_osuus\\\": 29.0, \\\"freshwarea\\\": 58.34, \\\"gml_id\\\": 1601100003, \\\"landarea\\\": 597.63, \\\"namefin\\\": \\\"Loppi\\\", \\\"nameswe\\\": \\\"Loppi\\\", \\\"natcode\\\": \\\"433\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 655.97}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[348623.656, 6745110.032], [350475.333, 6742078.943], [351949.171, 6743162.278], [352835.902, 6743348.879], [353683.062, 6742872.428], [354953.791, 6742856.402], [358220.688, 6738194.418], [359047.913, 6738429.29], [359641.922, 6740059.325], [360127.718, 6740280.529], [360531.277, 6739889.36], [360571.039, 6739483.456], [360299.576, 6738784.665], [362384.429, 6737288.445], [363224.207, 6736950.4], [363991.72, 6737952.199], [364907.908, 6737238.406], [365243.833, 6737762.293], [365828.164, 6738262.778], [366165.726, 6738314.802], [366582.68, 6738914.29], [366974.925, 6739002.519], [370490.636, 6737940.44], [370547.351, 6740590.448], [372156.141, 6739206.407], [373106.61, 6739765.3], [374156.418, 6737320.495], [373874.033, 6734444.033], [369268.605, 6730948.148], [370002.559, 6729985.348], [369615.465, 6728831.842], [369728.766, 6728123.905], [367404.222, 6725325.49], [366878.133, 6724828.718], [366718.033, 6722751.706], [366566.184, 6720982.625], [367281.278, 6719098.266], [365623.834, 6716265.571], [358726.22, 6715710.045], [357451.777, 6718512.487], [358173.253, 6720150.204], [356841.729, 6721419.949], [354830.592, 6722516.944], [352442.938, 6719826.442], [351726.814, 6719544.044], [352336.954, 6718035.073], [351205.054, 6717453.114], [350169.787, 6719102.849], [349238.384, 6720221.4], [348570.077, 6721581.554], [348814.75, 6723424.072], [347143.049, 6723995.425], [345453.734, 6724683.956], [343233.493, 6724226.418], [341629.409, 6724945.871], [340496.511, 6724901.414], [338539.595, 6726518.761], [338515.195, 6726577.401], [339143.523, 6739541.851], [339813.702, 6743135.782], [340169.431, 6743358.368], [340562.372, 6743206.237], [341714.084, 6742382.547], [342138.491, 6743581.987], [343866.012, 6746061.067], [346415.819, 6746091.162], [348623.656, 6745110.032]]]}}, {\\\"id\\\": \\\"118\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hanko\\\", \\\"elakelaisten_osuus\\\": 36.1, \\\"freshwarea\\\": 1.53, \\\"gml_id\\\": 1601100125, \\\"landarea\\\": 117.42, \\\"namefin\\\": \\\"Hanko\\\", \\\"nameswe\\\": \\\"Hang\\\\u00f6\\\", \\\"natcode\\\": \\\"078\\\", \\\"seawarea\\\": 681.07, \\\"totalarea\\\": 800.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[284225.858, 6650056.338], [283454.598, 6649360.022], [284066.3, 6648457.457], [284237.732, 6647378.513], [285304.642, 6646798.301], [285418.993, 6647250.966], [286381.172, 6647670.377], [286552.404, 6648036.141], [287384.832, 6648656.082], [287532.561, 6648753.677], [288034.455, 6648986.04], [288744.36, 6649908.328], [289269.646, 6649469.478], [289867.337, 6649359.56], [290224.562, 6648810.043], [292046.13, 6646696.205], [292813.957, 6646296.352], [292287.468, 6645358.445], [291694.455, 6644885.543], [290208.324, 6642224.864], [290652.228, 6641209.755], [291967.02, 6641011.71], [291731.699, 6639661.979], [291975.432, 6638856.15], [290392.024, 6636654.745], [287630.844, 6630511.425], [286758.544, 6618646.814], [266500.426, 6618119.503], [255142.309, 6616098.198], [260296.414, 6629242.348], [260786.555, 6630492.333], [262329.457, 6634156.551], [265204.952, 6641878.407], [265381.743, 6642262.002], [265772.052, 6645183.154], [267609.211, 6644158.39], [273678.884, 6645188.899], [275451.269, 6644750.911], [275809.401, 6646307.072], [276411.607, 6646223.735], [276748.17, 6645020.751], [278540.526, 6647022.795], [279112.516, 6647193.388], [279983.519, 6648402.351], [281606.202, 6650689.344], [283272.384, 6650656.501], [283926.636, 6650729.53], [284225.858, 6650056.338]]]}}, {\\\"id\\\": \\\"119\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pirkkala\\\", \\\"elakelaisten_osuus\\\": 20.6, \\\"freshwarea\\\": 22.55, \\\"gml_id\\\": 1601100295, \\\"landarea\\\": 81.42, \\\"namefin\\\": \\\"Pirkkala\\\", \\\"nameswe\\\": \\\"Birkala\\\", \\\"natcode\\\": \\\"604\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 103.97}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[324084.849, 6820860.831], [324587.738, 6821197.998], [324724.414, 6821487.323], [325656.919, 6821088.745], [325212.897, 6819910.982], [325580.263, 6819396.715], [325556.402, 6818968.554], [325667.992, 6818792.243], [325275.823, 6818624.49], [325730.716, 6817527.192], [325851.472, 6816029.221], [326191.538, 6815267.876], [321555.346, 6812697.22], [318052.532, 6812526.437], [317226.145, 6811762.33], [315399.676, 6808137.51], [315480.728, 6807577.389], [314942.732, 6807444.064], [314656.69, 6808838.397], [313684.052, 6809469.592], [313426.757, 6810316.38], [313180.534, 6810751.561], [312867.391, 6810931.619], [311934.626, 6812066.557], [311949.589, 6812722.478], [312364.696, 6813189.401], [312492.742, 6814427.452], [312823.16, 6814909.581], [313450.579, 6815045.484], [313764.52, 6815458.895], [313750.212, 6815802.722], [314312.538, 6816212.207], [316055.723, 6819868.519], [317243.86, 6820617.525], [318434.675, 6820315.214], [319633.759, 6820693.772], [322578.09, 6821620.492], [324084.849, 6820860.831]]]}}, {\\\"id\\\": \\\"120\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sund\\\", \\\"elakelaisten_osuus\\\": 25.4, \\\"freshwarea\\\": 4.29, \\\"gml_id\\\": 1601100553, \\\"landarea\\\": 108.2, \\\"namefin\\\": \\\"Sund\\\", \\\"nameswe\\\": \\\"Sund\\\", \\\"natcode\\\": \\\"771\\\", \\\"seawarea\\\": 71.83, \\\"totalarea\\\": 184.32}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[131434.375, 6700349.463], [131270.226, 6699697.125], [130436.177, 6699920.492], [129963.306, 6699910.162], [129313.391, 6700542.598], [131123.169, 6701145.303], [131434.375, 6700349.463]]], [[[128529.176, 6708406.073], [128172.76, 6706298.996], [127678.868, 6704739.919], [128511.053, 6704363.291], [129558.558, 6705628.669], [129390.279, 6704407.064], [129402.495, 6702469.904], [128903.459, 6700648.092], [128711.33, 6699686.747], [128537.154, 6699324.004], [127935.013, 6698461.715], [127807.126, 6696867.811], [127955.56, 6696507.892], [128604.921, 6695847.836], [128510.507, 6694850.514], [127256.184, 6692870.13], [126678.968, 6692476.251], [125857.187, 6692576.16], [125180.392, 6691945.45], [124953.372, 6690340.744], [123891.725, 6689744.518], [122926.827, 6689761.671], [121903.517, 6688407.998], [119119.776, 6687192.932], [115392.322, 6690682.064], [114974.5, 6691379.607], [115037.249, 6693379.02], [113871.666, 6693990.054], [113530.859, 6695006.89], [113811.636, 6695741.061], [113671.422, 6696937.184], [114090.812, 6697520.839], [114413.31, 6697409.753], [114652.449, 6697718.448], [114550.828, 6698219.031], [114679.84, 6698471.31], [115965.595, 6698860.933], [115801.372, 6699603.156], [116505.713, 6699599.458], [118480.817, 6700934.959], [119446.991, 6700591.146], [119500.822, 6701192.852], [120337.676, 6701500.946], [121237.217, 6701998.981], [121236.781, 6702587.736], [121843.056, 6702563.143], [121854.612, 6702781.082], [122212.147, 6702790.109], [122889.472, 6703228.334], [122948.489, 6703182.349], [123005.542, 6703094.986], [123366.406, 6703033.859], [123546.9, 6703767.259], [123717.366, 6704208.074], [124151.212, 6704502.971], [124356.473, 6705051.71], [125134.631, 6705738.955], [126203.379, 6705789.039], [127423.417, 6708463.885], [128529.176, 6708406.073]]]]}}, {\\\"id\\\": \\\"121\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Peders\\\\u00f6ren kunta\\\", \\\"elakelaisten_osuus\\\": 20.3, \\\"freshwarea\\\": 31.8, \\\"gml_id\\\": 1601100283, \\\"landarea\\\": 794.25, \\\"namefin\\\": \\\"Peders\\\\u00f6ren kunta\\\", \\\"nameswe\\\": \\\"Peders\\\\u00f6re\\\", \\\"natcode\\\": \\\"599\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 826.05}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[317682.309, 7045880.143], [318117.246, 7046230.089], [318275.36, 7045699.918], [318228.989, 7045198.225], [316136.27, 7044336.51], [316258.572, 7045357.717], [315910.222, 7045589.947], [316054.436, 7045843.294], [316419.764, 7045710.7], [316957.564, 7046416.67], [317682.309, 7045880.143]]], [[[319537.916, 7048722.185], [320433.6, 7047433.735], [320194.858, 7047187.128], [318536.543, 7047764.98], [317994.96, 7048248.894], [318979.297, 7048990.3], [319537.916, 7048722.185]]], [[[296397.305, 7072302.936], [296351.033, 7071028.518], [296612.161, 7070089.365], [297402.571, 7069402.598], [297906.104, 7069124.814], [298387.719, 7068433.409], [298346.695, 7067994.924], [299072.406, 7067269.228], [299179.645, 7067374.12], [299070.063, 7067739.784], [299338.874, 7067999.77], [299574.172, 7067760.238], [300128.811, 7068302.851], [300970.465, 7067443.665], [301613.657, 7066960.371], [301922.564, 7067262.579], [302259.288, 7067018.268], [302403.197, 7067163.684], [303361.915, 7066395.147], [304827.984, 7064911.569], [306923.935, 7064149.975], [307000.185, 7064366.642], [307615.197, 7064147.443], [307530.194, 7063923.479], [308283.959, 7063644.681], [309990.452, 7062384.659], [310408.525, 7062947.057], [311091.855, 7062153.809], [311288.941, 7061579.033], [310941.867, 7061289.34], [318859.594, 7049696.54], [317320.359, 7048352.836], [318488.075, 7047176.942], [317324.235, 7046404.358], [316878.68, 7046824.546], [316387.994, 7046472.128], [316376.626, 7046067.744], [315963.194, 7046377.232], [315525.485, 7045985.327], [315125.296, 7046326.801], [314940.782, 7046105.04], [315261.712, 7045582.075], [314840.118, 7045252.484], [314597.499, 7045388.974], [314518.82, 7046188.536], [314763.864, 7046574.266], [314305.278, 7047056.017], [314116.611, 7047525.918], [312524.269, 7046138.224], [314174.623, 7044211.758], [314470.522, 7044519.893], [314624.085, 7044236.963], [314746.145, 7043972.282], [314614.668, 7043683.354], [313922.262, 7043392.788], [313017.524, 7041286.911], [312763.518, 7041390.607], [312414.077, 7040931.797], [312630.256, 7040386.849], [312123.965, 7039204.525], [312128.836, 7039948.799], [311863.774, 7040329.487], [311577.038, 7039987.781], [311977.39, 7038865.608], [310586.421, 7035650.362], [305543.67, 7030183.999], [305230.708, 7030660.617], [305489.581, 7030847.461], [304724.202, 7031913.46], [304332.257, 7031730.027], [303905.415, 7032729.782], [303046.951, 7032531.013], [303091.9, 7032263.78], [302026.007, 7032045.514], [301567.475, 7032043.192], [301566.966, 7032047.259], [301303.997, 7034144.764], [299869.889, 7033967.646], [299975.652, 7033122.158], [298653.251, 7033398.214], [298610.931, 7034288.401], [294923.12, 7036000.584], [295577.374, 7034654.441], [295425.763, 7034352.946], [294870.352, 7035457.134], [294080.171, 7035861.479], [293494.077, 7038151.406], [294587.782, 7038626.185], [293810.259, 7039261.706], [294295.918, 7039510.903], [293407.144, 7040393.412], [293051.154, 7039883.581], [292866.57, 7040599.767], [294051.876, 7041131.789], [294586.144, 7041518.516], [293420.789, 7043135.999], [296118.268, 7044471.758], [295338.374, 7045596.652], [293932.716, 7044100.849], [293258.528, 7044450.176], [292515.634, 7045126.894], [292117.359, 7045926.751], [292324.655, 7046836.25], [292673.052, 7047366.209], [292168.747, 7047697.478], [293191.168, 7048692.938], [291494.463, 7048632.623], [290891.995, 7048097.321], [290381.346, 7049065.729], [291715.056, 7049521.6], [292166.972, 7050018.451], [286788.237, 7054916.087], [285611.427, 7054930.857], [285302.576, 7055596.416], [285025.439, 7055515.62], [285160.069, 7054934.119], [283971.531, 7054951.62], [282772.717, 7056026.184], [282871.686, 7056264.032], [282347.789, 7056598.258], [282266.312, 7057263.542], [281889.046, 7057417.335], [281559.286, 7057869.142], [281336.053, 7058018.823], [281132.391, 7057786.225], [280057.078, 7058651.288], [279435.365, 7060107.226], [279442.897, 7060542.845], [278927.879, 7061355.564], [280774.357, 7061896.667], [280875.383, 7061663.358], [281292.97, 7061867.18], [281213.608, 7062079.336], [281707.11, 7062797.928], [282056.268, 7063159.587], [282438.273, 7063080.099], [282677.714, 7062349.818], [285935.946, 7065282.119], [286091.504, 7064627.153], [288153.112, 7065746.077], [288703.35, 7065948.123], [288557.12, 7066169.116], [288870.399, 7066301.684], [288947.896, 7066882.206], [289819.425, 7066947.741], [290679.07, 7065614.307], [290851.992, 7065475.175], [290802.108, 7064843.289], [291240.887, 7064033.082], [292182.056, 7063704.839], [292497.838, 7063441.693], [292906.813, 7063457.022], [292794.995, 7063784.853], [292303.588, 7064470.181], [293115.534, 7064951.447], [293368.986, 7066204.459], [293115.78, 7067570.4], [291799.242, 7069329.807], [291957.105, 7069533.067], [291766.748, 7069903.87], [294208.135, 7074306.894], [296397.305, 7072302.936]]]]}}, {\\\"id\\\": \\\"122\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Saltvik\\\", \\\"elakelaisten_osuus\\\": 24.5, \\\"freshwarea\\\": 7.38, \\\"gml_id\\\": 1601100502, \\\"landarea\\\": 152.24, \\\"namefin\\\": \\\"Saltvik\\\", \\\"nameswe\\\": \\\"Saltvik\\\", \\\"natcode\\\": \\\"736\\\", \\\"seawarea\\\": 1007.25, \\\"totalarea\\\": 1166.87}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[131638.596, 6704799.22], [131345.854, 6703146.948], [129810.123, 6701383.425], [129402.495, 6702469.904], [129390.279, 6704407.064], [129558.558, 6705628.669], [131638.596, 6704799.22]]], [[[144830.895, 6712138.921], [145388.252, 6709681.236], [143711.533, 6709433.72], [143244.91, 6709568.178], [142803.492, 6709913.341], [142273.539, 6711163.927], [143566.589, 6712407.023], [144536.224, 6712841.245], [144830.895, 6712138.921]]], [[[137667.564, 6737834.671], [136118.41, 6721648.385], [132141.589, 6717921.452], [132353.223, 6716896.664], [132660.877, 6716630.626], [132305.634, 6716075.149], [132261.723, 6715480.569], [131985.96, 6715409.07], [131871.47, 6715975.601], [131434.596, 6716717.822], [131807.953, 6717072.531], [132141.589, 6717921.452], [129962.898, 6718738.534], [128236.965, 6718063.933], [128542.04, 6715840.082], [128541.63, 6715839.502], [128439.774, 6715694.992], [128588.06, 6715592.087], [129174.398, 6714526.367], [129182.41, 6714394.744], [129300.871, 6714298.602], [130144.267, 6712819.972], [130256.333, 6711546.611], [129815.88, 6710863.109], [130182.636, 6710252.613], [129731.357, 6710162.268], [129438.456, 6709088.693], [128529.176, 6708406.073], [128244.65, 6709668.778], [129029.581, 6711069.187], [129047.117, 6712024.112], [128327.533, 6712066.542], [128238.364, 6711221.855], [127690.37, 6710866.13], [127481.218, 6710392.776], [126239.217, 6709795.613], [127423.417, 6708463.885], [126203.379, 6705789.039], [125134.631, 6705738.955], [124356.473, 6705051.71], [124151.212, 6704502.971], [123717.366, 6704208.074], [123546.9, 6703767.259], [123366.406, 6703033.859], [123005.542, 6703094.986], [122948.489, 6703182.349], [122889.472, 6703228.334], [122212.147, 6702790.109], [121854.612, 6702781.082], [121843.056, 6702563.143], [121236.781, 6702587.736], [121237.217, 6701998.981], [120337.676, 6701500.946], [119500.822, 6701192.852], [119446.991, 6700591.146], [118480.817, 6700934.959], [116505.713, 6699599.458], [115801.372, 6699603.156], [115965.595, 6698860.933], [114679.84, 6698471.31], [114550.828, 6698219.031], [114652.449, 6697718.448], [114413.31, 6697409.753], [114090.812, 6697520.839], [114005.692, 6698174.673], [113697.447, 6698455.102], [113415.45, 6698888.696], [113358.31, 6699381.907], [113531.202, 6699884.586], [113027.572, 6700702.43], [112886.586, 6701269.566], [112284.589, 6701847.024], [111870.734, 6702128.26], [111836.366, 6702337.741], [112119.437, 6703021.62], [111679.892, 6704057.717], [112231.68, 6704545.763], [112249.95, 6704765.62], [111567.574, 6704825.13], [111443.586, 6704037.637], [110514.816, 6703756.667], [110229.385, 6704317.96], [109873.937, 6704743.878], [109474.113, 6706706.402], [110162.871, 6707193.064], [110161.17, 6707198.652], [111063.284, 6707262.551], [111768.158, 6707772.331], [111928.539, 6708470.635], [112533.927, 6709005.893], [112969.712, 6710172.148], [113289.912, 6710075.617], [113184.797, 6710926.978], [112904.885, 6711401.642], [113728.929, 6711464.197], [114136.489, 6712395.098], [114262.641, 6713248.345], [114444.067, 6713650.172], [113840.842, 6713844.984], [113108.579, 6713790.951], [112496.732, 6713579.095], [112190.72, 6714042.077], [111529.815, 6714149.452], [111541.877, 6714393.608], [112609.121, 6715281.607], [112541.416, 6715516.664], [112946.181, 6716023.974], [112904.358, 6717129.398], [114676.301, 6718570.434], [113277.995, 6720056.424], [109256.595, 6723254.537], [107440.164, 6751862.314], [120025.136, 6752653.647], [124826.518, 6756009.051], [137667.564, 6737834.671]]]]}}, {\\\"id\\\": \\\"123\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kyyj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 38.0, \\\"freshwarea\\\": 21.41, \\\"gml_id\\\": 1601100327, \\\"landarea\\\": 448.2, \\\"namefin\\\": \\\"Kyyj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Kyyj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"312\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 469.61}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[387722.5, 7002395.289], [387848.408, 7002364.531], [392497.779, 6996301.495], [392882.821, 6992449.832], [390972.196, 6992394.961], [389844.021, 6991566.121], [389548.311, 6991970.373], [385393.848, 6988902.17], [385931.12, 6987943.049], [384272.962, 6986791.723], [384047.116, 6986525.328], [383913.867, 6985880.679], [383215.366, 6985974.508], [381450.344, 6986725.817], [381305.033, 6986418.696], [380963.13, 6986557.765], [381664.814, 6988014.952], [380366.815, 6988318.226], [379683.288, 6987071.163], [378689.622, 6987616.264], [375187.66, 6983308.504], [373620.306, 6983481.983], [374672.274, 6981626.807], [372207.177, 6980426.019], [370479.529, 6983800.297], [365541.96, 6984316.807], [365544.861, 6984345.116], [364930.083, 6986491.736], [363722.06, 6985907.039], [363260.793, 6987161.698], [363401.754, 6987520.965], [362732.775, 6988377.622], [363531.787, 6988666.619], [363181.559, 6989363.341], [363132.975, 6990375.999], [363789.242, 6990500.403], [363273.193, 6992324.279], [363111.574, 6992513.781], [360782.411, 6990767.356], [360712.309, 6991311.304], [360138.248, 6991228.844], [360150.526, 6990856.187], [359253.887, 6991051.526], [359139.14, 6992003.281], [360727.7, 6992213.415], [360810.584, 6991571.783], [361560.998, 6991691.116], [361501.423, 6992082.253], [362314.486, 6992188.166], [362081.45, 6993893.991], [362619.068, 6993966.417], [362458.797, 6995675.229], [364487.59, 6995842.523], [366787.924, 7001300.583], [375623.274, 7005527.284], [387722.5, 7002395.289]]]}}, {\\\"id\\\": \\\"124\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ulvila\\\", \\\"elakelaisten_osuus\\\": 29.6, \\\"freshwarea\\\": 21.86, \\\"gml_id\\\": 1601100037, \\\"landarea\\\": 400.65, \\\"namefin\\\": \\\"Ulvila\\\", \\\"nameswe\\\": \\\"Ulvsby\\\", \\\"natcode\\\": \\\"886\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 422.51}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[247459.686, 6835751.501], [256997.689, 6825762.4], [248698.524, 6818563.014], [247214.744, 6818439.338], [245988.279, 6818473.314], [244149.578, 6817574.745], [243646.133, 6818153.648], [243557.511, 6818637.787], [242615.492, 6819904.237], [241199.626, 6820529.969], [242061.019, 6817512.722], [237821.514, 6819564.74], [234844.966, 6819765.636], [234444.788, 6819634.739], [233581.064, 6819535.591], [231610.445, 6817887.41], [231299.695, 6817282.896], [230542.474, 6818167.522], [229447.931, 6817717.475], [226216.288, 6817923.852], [222798.712, 6816662.929], [222569.956, 6816742.727], [222750.075, 6817836.414], [223076.741, 6818017.723], [223215.874, 6819828.828], [222982.021, 6820161.191], [223085.804, 6821203.094], [222930.911, 6821748.896], [223545.99, 6822273.891], [226631.804, 6822877.583], [226746.977, 6824134.989], [226880.726, 6824857.103], [227196.595, 6825268.014], [227244.814, 6825840.046], [227101.171, 6826875.488], [227697.626, 6826727.964], [227833.796, 6828083.784], [227590.59, 6828603.917], [227893.757, 6829593.382], [230896.902, 6832882.707], [232307.876, 6833638.112], [233506.439, 6832910.476], [233678.217, 6833113.631], [232955.457, 6833850.217], [233523.503, 6834035.055], [234576.631, 6832853.686], [235503.669, 6833498.103], [235608.622, 6833990.444], [236191.412, 6833122.228], [236705.229, 6833132.339], [236199.58, 6835004.226], [236597.005, 6835196.476], [237604.673, 6834119.628], [237832.52, 6834865.638], [237735.079, 6835218.132], [239786.04, 6836441.196], [247459.686, 6835751.501]]]}}, {\\\"id\\\": \\\"125\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pietarsaari\\\", \\\"elakelaisten_osuus\\\": 29.1, \\\"freshwarea\\\": 3.44, \\\"gml_id\\\": 1601100546, \\\"landarea\\\": 88.44, \\\"namefin\\\": \\\"Pietarsaari\\\", \\\"nameswe\\\": \\\"Jakobstad\\\", \\\"natcode\\\": \\\"598\\\", \\\"seawarea\\\": 304.47, \\\"totalarea\\\": 396.35}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[283302.135, 7078473.119], [283002.667, 7077574.05], [282785.246, 7077234.003], [282165.677, 7077737.917], [282154.752, 7078056.88], [282463.885, 7078749.965], [283302.135, 7078473.119]]], [[[277854.121, 7075671.98], [280871.578, 7074425.507], [280872.19, 7074425.823], [281051.506, 7074518.356], [281227.489, 7074279.12], [281228.16, 7074278.207], [281519.413, 7074157.894], [281519.526, 7074158.538], [281557.539, 7074374.518], [281760.299, 7074655.262], [282410.169, 7074383.183], [282313.122, 7073920.475], [282113.87, 7073902.962], [283360.471, 7073342.797], [283539.973, 7073871.627], [284267.578, 7073474.751], [284472.631, 7072872.823], [286141.714, 7072073.626], [286300.911, 7072121.619], [286325.705, 7071984.193], [286906.082, 7072474.684], [287149.412, 7073133.589], [287668.601, 7073025.132], [289200.53, 7072188.182], [289376.006, 7071501.427], [289408.071, 7071324.13], [289439.99, 7071147.643], [289204.199, 7071035.358], [289156.37, 7070918.632], [289169.619, 7070878.276], [289204.199, 7070825.828], [289398.751, 7070690.062], [289435.348, 7070664.523], [289617.688, 7070483.6], [289516.992, 7071270.314], [290155.115, 7070983.76], [290015.618, 7070303.206], [290484.751, 7070259.358], [290757.273, 7070179.983], [290806.663, 7069938.23], [290807.544, 7069933.92], [291498.295, 7069655.198], [291766.748, 7069903.87], [291957.105, 7069533.067], [291799.242, 7069329.807], [293115.78, 7067570.4], [293368.986, 7066204.459], [293115.534, 7064951.447], [292303.588, 7064470.181], [292794.995, 7063784.853], [292906.813, 7063457.022], [292497.838, 7063441.693], [292182.056, 7063704.839], [291240.887, 7064033.082], [290802.108, 7064843.289], [290851.992, 7065475.175], [290679.07, 7065614.307], [289819.425, 7066947.741], [288947.896, 7066882.206], [288870.399, 7066301.684], [288557.12, 7066169.116], [288703.35, 7065948.123], [288153.112, 7065746.077], [286091.504, 7064627.153], [285935.946, 7065282.119], [282677.714, 7062349.818], [282438.273, 7063080.099], [282056.268, 7063159.587], [281707.11, 7062797.928], [281213.608, 7062079.336], [281292.97, 7061867.18], [280875.383, 7061663.358], [280774.357, 7061896.667], [278927.879, 7061355.564], [278207.453, 7061555.916], [277989.961, 7062719.151], [276237.929, 7064283.511], [271459.859, 7068033.225], [252487.751, 7080001.836], [258909.03, 7087671.558], [277854.121, 7075671.98]]]]}}, {\\\"id\\\": \\\"126\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuhmo\\\", \\\"elakelaisten_osuus\\\": 42.8, \\\"freshwarea\\\": 650.31, \\\"gml_id\\\": 1601100014, \\\"landarea\\\": 4806.53, \\\"namefin\\\": \\\"Kuhmo\\\", \\\"nameswe\\\": \\\"Kuhmo\\\", \\\"natcode\\\": \\\"290\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5456.84}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[641834.752, 7166148.916], [643118.816, 7165817.783], [643537.0, 7164740.3], [643263.6, 7159882.5], [644745.2, 7156655.3], [645488.5, 7156275.4], [645327.2, 7154299.7], [646420.9, 7153137.9], [647130.9, 7150803.3], [646782.7, 7149753.4], [647165.9, 7148945.5], [646744.2, 7145332.2], [650079.5, 7141364.7], [651432.8, 7140641.9], [654995.1, 7139984.0], [658749.9, 7137873.7], [659610.4, 7136804.9], [662859.4, 7134723.3], [662671.4, 7132662.9], [664072.7, 7131369.8], [668670.1, 7130865.7], [670234.4, 7126414.7], [668243.8, 7124378.9], [670949.9, 7119004.9], [672914.0, 7116577.8], [673111.6, 7113176.8], [672194.5, 7107229.7], [670626.3, 7103579.0], [668642.7, 7099655.3], [664370.9, 7093769.5], [662902.1, 7091174.7], [660434.6, 7081278.5], [655135.0, 7078672.2], [648059.894, 7074292.903], [646600.4, 7073377.2], [646581.916, 7073365.668], [646409.504, 7073169.277], [645181.824, 7072925.551], [645179.136, 7072925.018], [645175.2, 7072924.236], [645174.593, 7072924.116], [641828.736, 7072259.878], [637169.834, 7066938.585], [634339.733, 7071800.544], [631746.055, 7086294.3], [624975.482, 7085186.935], [613632.135, 7082669.316], [609999.639, 7082122.697], [606127.874, 7081796.115], [608266.617, 7094962.388], [600218.014, 7098870.308], [596758.145, 7103352.808], [597695.078, 7104371.5], [593697.541, 7108060.956], [592975.486, 7108248.541], [593103.257, 7108796.829], [592692.838, 7109133.027], [592138.647, 7109360.583], [592405.534, 7110691.572], [592028.043, 7112523.782], [592637.746, 7112520.824], [592803.503, 7113453.707], [591865.772, 7113307.775], [591713.184, 7114057.208], [591068.155, 7114344.688], [590941.634, 7115033.467], [591219.817, 7115153.553], [590442.923, 7116005.368], [590634.08, 7116890.584], [591144.782, 7116810.957], [591154.191, 7116821.509], [589989.355, 7122562.648], [590027.428, 7123473.763], [589345.478, 7124717.825], [589723.863, 7124929.668], [589092.886, 7125174.871], [584731.874, 7132752.879], [585167.672, 7132823.816], [587606.177, 7136319.633], [589308.963, 7143251.048], [587275.958, 7152515.004], [589351.221, 7153309.61], [590375.152, 7153701.988], [593557.471, 7150637.057], [597415.536, 7149590.96], [599106.823, 7148753.012], [599099.059, 7149136.915], [604073.238, 7149445.731], [615987.541, 7157158.424], [617833.942, 7162404.442], [619137.737, 7166137.659], [620042.534, 7166763.497], [619749.105, 7167081.296], [620186.781, 7167527.254], [619866.238, 7167998.373], [620982.706, 7168855.618], [621828.486, 7167999.239], [625313.669, 7170409.411], [641834.752, 7166148.916]]]}}, {\\\"id\\\": \\\"127\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Somero\\\", \\\"elakelaisten_osuus\\\": 36.6, \\\"freshwarea\\\": 29.85, \\\"gml_id\\\": 1601100541, \\\"landarea\\\": 667.83, \\\"namefin\\\": \\\"Somero\\\", \\\"nameswe\\\": \\\"Somero\\\", \\\"natcode\\\": \\\"761\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 697.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[291982.254, 6741912.91], [295788.771, 6738326.977], [296901.865, 6736363.869], [297095.812, 6738030.047], [300009.447, 6736955.048], [304237.405, 6739157.851], [306249.318, 6739838.496], [306783.464, 6740018.12], [308140.037, 6739670.172], [308607.988, 6739889.216], [308709.805, 6739519.368], [309356.366, 6739351.631], [309159.559, 6737515.969], [310693.38, 6736424.062], [311144.907, 6734830.544], [313084.851, 6733612.289], [313841.68, 6733718.05], [315811.531, 6733413.106], [318787.478, 6732082.177], [318244.134, 6730715.347], [318782.759, 6729183.198], [320440.782, 6729830.608], [322243.763, 6728565.552], [325879.434, 6728702.16], [328653.723, 6728053.214], [329047.891, 6728298.825], [329807.293, 6727796.991], [330561.662, 6727772.87], [328533.193, 6724398.218], [331428.893, 6722861.159], [330656.411, 6720753.845], [329538.069, 6719382.828], [329369.756, 6717651.055], [327002.246, 6717531.525], [327071.772, 6717260.806], [328002.562, 6715511.561], [328037.555, 6715192.55], [327643.662, 6715019.231], [327383.022, 6714872.665], [327438.632, 6714803.662], [327251.032, 6714638.848], [327372.421, 6714411.264], [327516.528, 6714275.339], [327494.928, 6714122.357], [327624.999, 6714024.393], [327624.08, 6713907.718], [327749.454, 6713873.671], [327917.366, 6713591.638], [328244.548, 6712063.462], [327992.013, 6711743.402], [326277.398, 6710299.979], [325493.682, 6710711.926], [320774.171, 6710467.086], [319453.481, 6711387.269], [315435.5, 6708165.017], [314237.272, 6710227.55], [314141.375, 6710583.191], [312425.037, 6710150.229], [311964.209, 6712118.575], [313244.424, 6711780.289], [313642.011, 6711941.115], [313645.233, 6711947.927], [310002.925, 6713131.776], [308930.079, 6714040.505], [308624.811, 6714548.661], [307866.038, 6716061.265], [307804.393, 6716379.817], [309224.065, 6722809.054], [307921.9, 6722794.718], [307602.437, 6722296.504], [306480.202, 6721293.681], [305687.709, 6721154.769], [305654.454, 6720562.244], [302390.447, 6717646.38], [300638.097, 6718692.216], [297343.36, 6721877.18], [294254.901, 6722618.658], [292306.716, 6722632.42], [293395.265, 6724071.006], [293574.447, 6724476.571], [294519.301, 6725929.236], [295245.555, 6726870.063], [295306.358, 6727167.025], [293359.04, 6729021.933], [294821.4, 6732609.042], [294391.915, 6732720.282], [293937.001, 6733131.285], [293462.602, 6733271.746], [292222.129, 6739539.638], [290626.556, 6743768.628], [291982.254, 6741912.91]]]}}, {\\\"id\\\": \\\"128\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Mustasaari\\\", \\\"elakelaisten_osuus\\\": 23.8, \\\"freshwarea\\\": 17.42, \\\"gml_id\\\": 1601100105, \\\"landarea\\\": 849.13, \\\"namefin\\\": \\\"Mustasaari\\\", \\\"nameswe\\\": \\\"Korsholm\\\", \\\"natcode\\\": \\\"499\\\", \\\"seawarea\\\": 2312.05, \\\"totalarea\\\": 3178.6}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[235005.778, 7045684.757], [234101.374, 7044347.866], [233504.718, 7041741.024], [233938.89, 7040842.064], [234990.679, 7040057.034], [236534.737, 7040274.738], [237693.419, 7039801.029], [247128.467, 7024805.811], [247449.951, 7022858.161], [247648.468, 7022415.465], [247611.575, 7021710.552], [247484.353, 7021509.086], [247450.644, 7020512.096], [247367.348, 7020339.897], [247321.842, 7018898.101], [249337.848, 7018700.736], [250249.208, 7017759.807], [250553.197, 7017304.527], [250892.971, 7014514.038], [251126.589, 7011109.029], [250455.7, 7011048.701], [250663.291, 7010466.81], [249608.738, 7010240.525], [249759.486, 7009922.571], [249422.684, 7009588.924], [249221.349, 7010044.644], [248620.606, 7009652.039], [247366.595, 7009498.587], [248221.007, 7008795.182], [247873.228, 7008722.879], [244471.573, 7004745.248], [244048.143, 7004316.932], [243670.904, 7004373.326], [243741.263, 7004595.618], [243403.775, 7004885.835], [243134.587, 7004595.875], [243220.458, 7004223.01], [242667.128, 7003390.552], [242806.905, 7002986.305], [242914.54, 7001206.841], [242430.106, 6999521.908], [242116.029, 6998782.654], [242175.076, 6997874.222], [241960.337, 6997873.282], [241621.239, 6996569.823], [241068.004, 6994084.207], [240529.242, 6993490.376], [239785.962, 6992526.804], [239588.662, 6992380.711], [239652.093, 6992249.7], [238093.674, 6990516.512], [236026.14, 6987753.665], [235110.453, 6984519.06], [234390.451, 6985308.054], [234786.913, 6985451.635], [233933.374, 6986273.848], [233598.704, 6986145.368], [233148.491, 6986631.409], [233443.958, 6986747.961], [229404.45, 6990666.326], [227999.886, 6992159.244], [226520.624, 6994184.332], [225700.808, 6995393.87], [224736.825, 6995280.116], [224706.123, 6995547.622], [224474.887, 6996031.976], [226823.861, 7000508.003], [227498.828, 7001218.993], [229196.718, 7003954.518], [229739.242, 7003586.686], [231406.095, 7002243.967], [232992.94, 7001358.02], [234677.858, 7001040.096], [235762.652, 7000545.201], [236440.947, 7000982.102], [237368.694, 7001856.279], [238241.009, 7002513.762], [238362.336, 7002539.32], [238359.454, 7002614.447], [238832.411, 7002977.577], [237965.329, 7006779.367], [237727.293, 7006861.958], [237796.508, 7008047.356], [238548.657, 7008577.757], [236844.291, 7009057.206], [235869.932, 7010315.282], [235420.84, 7009968.234], [235578.113, 7008942.966], [235017.761, 7008632.816], [234859.023, 7009214.522], [234297.116, 7009250.993], [233811.18, 7009540.439], [233645.984, 7009049.604], [232920.231, 7007814.511], [231682.677, 7008326.755], [230984.638, 7009147.235], [231100.702, 7009436.219], [230973.489, 7009860.683], [231337.411, 7010648.464], [231138.138, 7010885.132], [231321.371, 7011469.268], [230794.968, 7013262.236], [229525.298, 7013192.594], [229505.996, 7013556.677], [229095.1, 7013410.081], [229127.66, 7013842.273], [228968.308, 7014175.499], [228456.828, 7014545.458], [228233.332, 7015040.515], [226748.098, 7015804.506], [225133.977, 7016310.783], [223365.593, 7015951.057], [222852.494, 7016910.6], [221965.404, 7017499.564], [221438.319, 7016645.455], [220488.995, 7017221.365], [220550.857, 7015168.506], [218517.859, 7013033.254], [217432.903, 7014022.64], [198928.241, 7011668.255], [164704.525, 7032920.449], [169981.568, 7039577.166], [186369.361, 7054850.359], [198787.783, 7057740.11], [220786.098, 7067997.0], [235005.778, 7045684.757]], [[217581.918, 7017022.241], [217797.487, 7016636.726], [218215.97, 7016574.774], [218198.122, 7016078.0], [217997.545, 7015844.913], [217797.374, 7016021.4], [217123.397, 7015687.534], [216987.842, 7016040.323], [217127.042, 7017123.988], [217325.666, 7017213.397], [217581.918, 7017022.241]]]}}, {\\\"id\\\": \\\"129\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Jyv\\\\u00e4skyl\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 21.7, \\\"freshwarea\\\": 295.38, \\\"gml_id\\\": 1601100303, \\\"landarea\\\": 1170.97, \\\"namefin\\\": \\\"Jyv\\\\u00e4skyl\\\\u00e4\\\", \\\"nameswe\\\": \\\"Jyv\\\\u00e4skyl\\\\u00e4\\\", \\\"natcode\\\": \\\"179\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1466.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[428581.185, 6922470.267], [429245.725, 6921917.289], [430079.284, 6921745.17], [430683.046, 6920845.638], [431565.59, 6920578.912], [432579.088, 6919546.976], [432587.987, 6919141.54], [435041.509, 6917101.281], [437240.565, 6918211.574], [438907.64, 6917192.168], [440099.168, 6915765.852], [440256.222, 6913634.115], [439337.765, 6911941.885], [438646.355, 6908785.546], [440648.112, 6907668.529], [440337.346, 6906732.706], [441000.779, 6906462.119], [441288.456, 6907181.23], [441960.183, 6907272.597], [441801.298, 6905061.403], [442590.902, 6905971.398], [444043.25, 6905817.797], [444246.875, 6904857.786], [444812.645, 6904869.585], [446169.47, 6907882.274], [447919.278, 6905724.057], [450731.448, 6904351.727], [450432.575, 6903630.717], [450699.889, 6900952.102], [450373.81, 6900752.455], [450226.087, 6899445.211], [450047.667, 6899427.557], [449843.14, 6900533.866], [449395.823, 6900374.128], [448968.172, 6899516.403], [449351.158, 6898238.893], [450467.029, 6894738.746], [449829.788, 6895223.019], [448877.044, 6897252.067], [448633.745, 6897156.442], [448596.979, 6896321.666], [448065.604, 6896087.884], [448585.193, 6895178.429], [449044.179, 6894698.866], [449346.385, 6895100.965], [449874.075, 6894584.578], [450487.338, 6894267.401], [450544.412, 6893508.118], [446758.548, 6893501.598], [444774.182, 6889891.05], [445059.694, 6886424.957], [445709.658, 6882931.776], [443223.249, 6884676.96], [440662.531, 6889559.686], [440149.758, 6889748.782], [438461.234, 6888941.842], [437618.514, 6889037.83], [437141.033, 6887403.681], [437094.213, 6885285.371], [435350.145, 6885807.582], [435390.256, 6886240.379], [433868.946, 6886801.784], [433736.25, 6889665.586], [432474.667, 6890668.589], [433289.116, 6891777.422], [434853.152, 6890881.742], [435560.496, 6891724.767], [437152.516, 6891742.341], [435547.503, 6894835.547], [435520.04, 6894857.225], [434793.671, 6895045.074], [434217.355, 6893640.367], [431927.296, 6894450.362], [430769.598, 6896258.974], [430600.781, 6897516.207], [427144.745, 6895709.884], [426629.627, 6895947.894], [426376.844, 6897288.566], [426487.439, 6899875.054], [425743.026, 6902051.391], [423552.427, 6900748.688], [422220.914, 6900840.313], [421725.2, 6901048.376], [421503.174, 6900573.737], [421426.058, 6899949.691], [420821.578, 6898527.538], [420499.348, 6898006.912], [420668.681, 6897137.272], [420905.67, 6896612.732], [420770.799, 6896105.234], [420839.974, 6895655.202], [421531.137, 6894849.459], [421953.286, 6894739.145], [421943.7, 6893579.215], [422345.843, 6892704.272], [423210.494, 6892619.312], [424031.16, 6892855.821], [423716.002, 6890725.382], [423190.816, 6890576.839], [422835.669, 6889290.658], [422074.082, 6888571.644], [420601.026, 6884704.181], [423410.271, 6884389.546], [423263.34, 6883148.446], [423687.169, 6883031.097], [425939.293, 6882761.9], [427278.115, 6882913.769], [428617.477, 6882358.201], [428595.848, 6882613.439], [430211.625, 6883207.27], [431703.421, 6883301.642], [435607.855, 6881871.84], [435701.534, 6880259.189], [439124.156, 6879679.644], [445076.777, 6874341.848], [445635.759, 6873001.296], [445769.711, 6872360.412], [446244.058, 6872128.978], [446666.152, 6871283.1], [446771.912, 6870783.003], [443798.993, 6867447.858], [441623.456, 6864347.166], [439556.55, 6862532.984], [436611.82, 6862773.351], [434295.044, 6858049.571], [429523.223, 6859202.449], [427502.344, 6859263.009], [426658.191, 6858729.218], [426101.449, 6857100.673], [418420.896, 6865901.62], [418250.703, 6867525.678], [417552.668, 6867216.917], [417310.945, 6867505.68], [416447.796, 6867378.77], [416362.732, 6868120.58], [414304.909, 6870324.203], [413496.032, 6869295.766], [412690.358, 6869821.359], [413003.027, 6871218.571], [412624.076, 6871316.065], [413064.502, 6871883.508], [413286.181, 6872470.176], [412923.533, 6873028.821], [412486.324, 6872868.617], [412190.427, 6873946.347], [414710.242, 6875916.537], [413278.784, 6877115.65], [413084.312, 6878494.804], [413002.761, 6879965.501], [409056.613, 6880785.675], [410260.493, 6883246.743], [412079.128, 6884456.367], [411880.006, 6885159.272], [413774.843, 6887509.407], [412069.554, 6889046.478], [410640.455, 6892336.108], [412436.266, 6894758.376], [413180.13, 6895525.97], [414035.756, 6897273.568], [413464.114, 6901262.435], [416087.126, 6902369.482], [418088.644, 6902448.101], [417623.195, 6904866.724], [420058.91, 6909578.23], [421768.443, 6913763.393], [419445.931, 6913605.884], [419364.571, 6914933.275], [416208.333, 6916669.568], [415666.672, 6917312.341], [414076.5, 6916726.796], [412161.221, 6916039.044], [411349.66, 6918711.998], [412749.26, 6919022.569], [413338.006, 6917308.572], [415531.663, 6918008.289], [415296.776, 6919329.108], [417562.973, 6919581.838], [417681.676, 6918648.987], [419776.319, 6919054.383], [421940.386, 6919388.501], [422219.432, 6917827.664], [422668.482, 6917206.773], [425046.74, 6919917.377], [426631.071, 6922750.799], [428581.185, 6922470.267]]]}}, {\\\"id\\\": \\\"130\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vaasa\\\", \\\"elakelaisten_osuus\\\": 22.9, \\\"freshwarea\\\": 4.87, \\\"gml_id\\\": 1601100203, \\\"landarea\\\": 364.67, \\\"namefin\\\": \\\"Vaasa\\\", \\\"nameswe\\\": \\\"Vasa\\\", \\\"natcode\\\": \\\"905\\\", \\\"seawarea\\\": 205.59, \\\"totalarea\\\": 575.13}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[222852.494, 7016910.6], [223365.593, 7015951.057], [225133.977, 7016310.783], [226748.098, 7015804.506], [228233.332, 7015040.515], [228456.828, 7014545.458], [228968.308, 7014175.499], [229127.66, 7013842.273], [229095.1, 7013410.081], [229505.996, 7013556.677], [229525.298, 7013192.594], [230794.968, 7013262.236], [231321.371, 7011469.268], [231138.138, 7010885.132], [231337.411, 7010648.464], [230973.489, 7009860.683], [231100.702, 7009436.219], [230984.638, 7009147.235], [231682.677, 7008326.755], [232920.231, 7007814.511], [233645.984, 7009049.604], [233811.18, 7009540.439], [234297.116, 7009250.993], [234859.023, 7009214.522], [235017.761, 7008632.816], [235578.113, 7008942.966], [235420.84, 7009968.234], [235869.932, 7010315.282], [236844.291, 7009057.206], [238548.657, 7008577.757], [237796.508, 7008047.356], [237727.293, 7006861.958], [237965.329, 7006779.367], [238832.411, 7002977.577], [238359.454, 7002614.447], [238362.336, 7002539.32], [238241.009, 7002513.762], [237368.694, 7001856.279], [236440.947, 7000982.102], [235762.652, 7000545.201], [234677.858, 7001040.096], [232992.94, 7001358.02], [231406.095, 7002243.967], [229739.242, 7003586.686], [229196.718, 7003954.518], [227498.828, 7001218.993], [226823.861, 7000508.003], [224474.887, 6996031.976], [224706.123, 6995547.622], [224100.254, 6995266.449], [221516.905, 6998045.178], [218273.186, 6999866.89], [218276.769, 6999955.281], [218062.239, 7000075.538], [217877.201, 6999947.551], [217816.047, 6999861.124], [216684.072, 6999848.307], [215857.362, 7000239.514], [215969.429, 7000488.151], [215268.304, 7001048.299], [215149.9, 7001522.135], [214718.588, 7001851.991], [198928.241, 7011668.255], [217432.903, 7014022.64], [218517.859, 7013033.254], [220550.857, 7015168.506], [220488.995, 7017221.365], [221438.319, 7016645.455], [221965.404, 7017499.564], [222852.494, 7016910.6]]], [[[251711.586, 7010458.079], [251829.387, 7009977.724], [252420.91, 7009920.11], [252989.513, 7009620.356], [253335.482, 7009334.672], [253375.844, 7009357.636], [253623.43, 7009178.436], [253586.534, 7009129.209], [253725.425, 7009015.488], [254196.121, 7008133.173], [254114.224, 7008080.466], [254144.609, 7008037.808], [254235.893, 7008060.123], [254545.052, 7007483.503], [254877.902, 7007122.179], [254918.46, 7007172.936], [255025.574, 7007123.347], [255006.49, 7007079.186], [254934.33, 7007063.839], [255599.843, 7006328.56], [255752.81, 7006226.219], [255846.783, 7006054.112], [256208.114, 7005653.499], [256302.38, 7005647.38], [256385.548, 7005560.32], [256328.043, 7005521.302], [257377.924, 7004357.906], [258642.833, 7002609.152], [259700.002, 7001591.214], [257042.559, 6998197.139], [255827.356, 6996918.508], [255442.69, 6996881.081], [255111.336, 6995991.698], [254662.96, 6995871.731], [254783.573, 6995449.128], [254639.587, 6994953.385], [254447.43, 6994607.782], [254891.628, 6994280.498], [254999.171, 6992160.12], [253892.615, 6990776.106], [253532.592, 6990389.842], [252618.378, 6991488.937], [251972.957, 6991981.721], [250126.583, 6993987.657], [250062.279, 6994169.974], [249510.435, 6994061.168], [249259.121, 6994610.529], [249308.246, 6994963.606], [248861.539, 6995458.438], [249167.815, 6995427.564], [249116.317, 6995812.264], [248331.12, 6997202.951], [248010.109, 6997645.04], [247318.364, 6997886.537], [246644.15, 6998476.214], [245994.218, 6998880.013], [244975.085, 6999098.906], [244182.152, 6999509.663], [242914.54, 7001206.841], [242806.905, 7002986.305], [242667.128, 7003390.552], [243220.458, 7004223.01], [243134.587, 7004595.875], [243403.775, 7004885.835], [243741.263, 7004595.618], [243670.904, 7004373.326], [244048.143, 7004316.932], [244471.573, 7004745.248], [247873.228, 7008722.879], [248221.007, 7008795.182], [247366.595, 7009498.587], [248620.606, 7009652.039], [249221.349, 7010044.644], [249422.684, 7009588.924], [249759.486, 7009922.571], [249608.738, 7010240.525], [250663.291, 7010466.81], [250819.524, 7010502.201], [251711.586, 7010458.079]]], [[[217581.918, 7017022.241], [217797.487, 7016636.726], [218215.97, 7016574.774], [218198.122, 7016078.0], [217997.545, 7015844.913], [217797.374, 7016021.4], [217123.397, 7015687.534], [216987.842, 7016040.323], [217127.042, 7017123.988], [217325.666, 7017213.397], [217581.918, 7017022.241]]]]}}, {\\\"id\\\": \\\"131\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"K\\\\u00e4rs\\\\u00e4m\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 33.1, \\\"freshwarea\\\": 4.96, \\\"gml_id\\\": 1601100344, \\\"landarea\\\": 695.97, \\\"namefin\\\": \\\"K\\\\u00e4rs\\\\u00e4m\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"K\\\\u00e4rs\\\\u00e4m\\\\u00e4ki\\\", \\\"natcode\\\": \\\"317\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 700.93}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[440915.288, 7109285.027], [442416.869, 7108546.273], [442740.113, 7107723.233], [442817.201, 7106792.984], [443240.27, 7106596.602], [443249.362, 7106816.546], [443132.244, 7107462.005], [443345.377, 7108103.246], [446522.158, 7106569.01], [447461.914, 7105740.225], [447902.265, 7105137.097], [448313.886, 7104474.808], [448472.154, 7104526.712], [448346.983, 7105010.491], [448140.183, 7105703.166], [449607.504, 7105619.072], [456126.838, 7101250.439], [455681.109, 7100325.496], [456194.76, 7099799.421], [455987.803, 7099478.276], [457111.353, 7098884.225], [457337.006, 7098972.075], [457945.448, 7098438.543], [458209.88, 7098690.43], [457950.725, 7099224.815], [458418.159, 7099050.971], [460317.508, 7096721.518], [463238.399, 7091462.177], [463261.848, 7089025.861], [445000.109, 7080733.402], [445160.636, 7080010.56], [444011.429, 7079367.004], [443727.491, 7080161.993], [443500.326, 7080064.808], [437891.554, 7076186.817], [438038.941, 7077213.423], [437578.929, 7077166.006], [437500.762, 7075916.772], [434645.78, 7073943.999], [434794.364, 7075147.826], [434089.189, 7075393.087], [434376.058, 7076510.066], [434271.819, 7076962.283], [435077.506, 7077317.736], [434112.111, 7079126.342], [435416.503, 7079992.803], [435343.365, 7080201.381], [433612.181, 7080054.875], [431776.632, 7088599.14], [428100.788, 7089104.381], [429710.16, 7093852.544], [428734.858, 7094486.945], [429141.668, 7094719.5], [427821.996, 7096158.258], [428282.552, 7097106.906], [428949.574, 7096811.773], [429784.468, 7097683.887], [430127.858, 7097597.014], [430723.251, 7095617.284], [431065.229, 7094858.91], [431742.223, 7095549.189], [430839.992, 7097216.401], [431417.651, 7097706.202], [433160.782, 7098644.831], [431982.795, 7099480.933], [431864.851, 7099182.058], [431135.367, 7099082.82], [429302.692, 7099745.568], [429865.173, 7100052.333], [429843.6, 7100256.483], [430287.903, 7100518.91], [430884.532, 7100634.514], [431101.819, 7100356.495], [432461.092, 7100447.976], [431816.691, 7101581.192], [432810.388, 7102369.215], [433102.959, 7102149.302], [435651.558, 7104036.445], [435522.505, 7105008.437], [434421.221, 7106183.645], [433981.202, 7106932.035], [434209.923, 7107173.092], [434895.171, 7106989.521], [437478.819, 7107965.386], [440434.527, 7109915.434], [440915.288, 7109285.027]]]}}, {\\\"id\\\": \\\"132\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ilmajoki\\\", \\\"elakelaisten_osuus\\\": 25.7, \\\"freshwarea\\\": 2.89, \\\"gml_id\\\": 1601100237, \\\"landarea\\\": 576.81, \\\"namefin\\\": \\\"Ilmajoki\\\", \\\"nameswe\\\": \\\"Ilmajoki\\\", \\\"natcode\\\": \\\"145\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 579.7}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[282008.251, 6978737.198], [282122.97, 6978693.309], [283232.335, 6978432.002], [283664.485, 6977700.784], [283488.399, 6976733.321], [283527.959, 6976327.287], [283876.019, 6975704.121], [284315.584, 6975923.023], [284530.277, 6975905.285], [284586.114, 6975794.181], [284086.938, 6975434.866], [283947.038, 6974994.482], [283601.814, 6974771.328], [283396.441, 6974255.747], [282802.191, 6973884.279], [282306.825, 6973467.72], [281828.75, 6972697.449], [281584.334, 6972210.734], [281240.476, 6971840.5], [281237.632, 6971295.268], [281389.341, 6970983.631], [281038.592, 6970324.089], [281544.598, 6969975.164], [281466.588, 6969309.395], [280866.387, 6968750.152], [279978.322, 6967912.053], [282392.879, 6966042.001], [286903.348, 6961102.961], [289023.13, 6956906.454], [287678.771, 6956695.766], [287751.944, 6955860.196], [288198.946, 6955347.537], [288001.141, 6955128.675], [287789.558, 6955340.255], [287574.773, 6954694.179], [288326.554, 6953841.244], [287804.874, 6953746.028], [287379.632, 6953350.057], [286844.821, 6953952.313], [286617.683, 6953752.373], [288436.657, 6951723.95], [287666.496, 6951654.805], [279999.648, 6950989.351], [279534.586, 6950550.416], [279152.416, 6949750.325], [277334.583, 6951851.61], [277449.777, 6950734.283], [278838.779, 6949119.492], [278375.08, 6948122.066], [277556.862, 6948483.14], [277545.789, 6948483.993], [277558.517, 6948875.845], [275440.228, 6948976.386], [276270.191, 6950628.09], [274928.722, 6951909.741], [273631.988, 6951765.052], [272782.14, 6950986.595], [271708.111, 6952148.279], [271098.697, 6951979.182], [270681.681, 6952444.074], [270412.725, 6952153.314], [270005.798, 6952608.907], [269747.719, 6952386.321], [266667.427, 6955989.94], [266095.787, 6956205.937], [266224.327, 6956621.863], [265695.552, 6957148.392], [265242.437, 6957415.779], [264208.28, 6958286.913], [262822.302, 6958834.121], [261347.874, 6959554.489], [260306.138, 6959527.129], [260421.375, 6960019.823], [260236.396, 6960377.096], [259659.416, 6960752.228], [259457.694, 6960275.49], [259841.288, 6959573.132], [252161.233, 6963676.432], [253149.213, 6965195.64], [255005.203, 6967040.636], [259059.772, 6971163.906], [260555.946, 6971497.385], [263569.078, 6972182.969], [266153.558, 6972084.328], [276025.641, 6975899.362], [281068.5, 6979090.525], [282008.251, 6978737.198]]]}}, {\\\"id\\\": \\\"133\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Asikkala\\\", \\\"elakelaisten_osuus\\\": 37.2, \\\"freshwarea\\\": 192.25, \\\"gml_id\\\": 1601100029, \\\"landarea\\\": 563.3, \\\"namefin\\\": \\\"Asikkala\\\", \\\"nameswe\\\": \\\"Asikkala\\\", \\\"natcode\\\": \\\"016\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 755.55}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[436139.68, 6798279.085], [435714.468, 6793683.539], [435912.756, 6793343.376], [438298.685, 6793402.429], [439614.677, 6792895.536], [440622.224, 6791358.827], [439936.661, 6789861.635], [442401.762, 6788656.952], [440493.85, 6784765.802], [439890.598, 6783966.518], [440521.701, 6783307.034], [440987.936, 6781552.543], [441856.214, 6780190.765], [439242.476, 6776610.948], [438438.634, 6774760.005], [434407.88, 6774122.311], [434003.039, 6775347.813], [433282.034, 6775181.47], [433359.604, 6774888.989], [433139.295, 6774523.833], [432528.703, 6775012.582], [431461.978, 6774767.914], [430081.94, 6774838.368], [428726.492, 6774920.418], [427213.664, 6775783.431], [426019.4, 6776263.984], [424998.946, 6776487.676], [422974.529, 6776314.184], [422536.607, 6776416.537], [421278.199, 6780454.098], [418825.563, 6778235.154], [417940.39, 6777421.02], [417483.815, 6777714.331], [415806.434, 6776787.72], [414239.989, 6775727.322], [413344.828, 6776188.131], [411314.767, 6776690.058], [410286.05, 6776298.634], [409865.59, 6776502.56], [408513.141, 6775493.552], [407223.608, 6774944.921], [406663.163, 6775852.337], [406383.247, 6775964.177], [406032.03, 6776779.079], [406024.744, 6777231.029], [405156.381, 6776822.41], [405567.344, 6777880.867], [406006.036, 6778040.352], [406219.526, 6778344.36], [405543.606, 6778672.92], [405044.307, 6779651.612], [405370.66, 6780349.245], [405999.854, 6780622.507], [406265.646, 6781833.301], [406876.241, 6781524.029], [406080.567, 6782628.908], [406234.849, 6783164.31], [405873.607, 6783690.232], [406389.66, 6784299.182], [406441.67, 6784737.811], [406063.954, 6785184.927], [406241.342, 6785766.563], [405819.153, 6785808.028], [405126.069, 6786312.915], [405049.224, 6787035.15], [404565.365, 6787725.623], [404168.445, 6788189.007], [403321.352, 6788860.331], [403543.819, 6790950.967], [404883.353, 6791690.027], [406423.283, 6792059.94], [407191.44, 6791454.757], [411351.2, 6791654.82], [411522.583, 6792291.329], [411900.174, 6792492.136], [412031.07, 6793211.331], [412800.114, 6793668.623], [413947.701, 6794570.542], [415159.045, 6798601.617], [417367.426, 6799248.617], [420573.818, 6797562.888], [422133.777, 6800320.791], [425173.633, 6801803.328], [425663.734, 6801443.68], [426813.13, 6801279.627], [430753.562, 6801508.514], [432732.949, 6804050.61], [436139.68, 6798279.085]]]}}, {\\\"id\\\": \\\"134\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Enonteki\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 33.3, \\\"freshwarea\\\": 438.72, \\\"gml_id\\\": 1601100227, \\\"landarea\\\": 7952.59, \\\"namefin\\\": \\\"Enonteki\\\\u00f6\\\", \\\"nameswe\\\": \\\"Enontekis\\\", \\\"natcode\\\": \\\"047\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 8391.31}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[278397.09, 7698177.339], [288050.239, 7694506.83], [291243.04, 7687274.067], [295442.425, 7679040.86], [300228.18, 7670665.046], [306845.179, 7657087.14], [307161.09, 7652860.431], [312349.459, 7642216.793], [312778.75, 7629816.301], [319505.541, 7632432.574], [322200.054, 7630181.246], [329788.186, 7625337.079], [339725.231, 7624877.973], [344227.47, 7617794.98], [352500.749, 7622510.881], [355725.67, 7624214.321], [365237.82, 7625173.24], [367835.23, 7630085.33], [370024.363, 7637575.002], [373994.08, 7639342.62], [378445.301, 7638072.857], [381910.19, 7632637.89], [385308.294, 7633566.049], [384896.35, 7629552.91], [387080.23, 7628527.94], [388724.329, 7626424.829], [390751.67, 7625243.05], [397363.57, 7622976.72], [402989.349, 7620779.9], [409903.159, 7615424.808], [412612.09, 7607069.13], [414458.47, 7606155.54], [418947.929, 7588234.057], [405397.163, 7587244.1], [402562.307, 7585537.697], [401534.885, 7584928.284], [400107.768, 7584070.386], [399583.4, 7583755.166], [398732.691, 7583234.635], [397306.862, 7582384.246], [394718.448, 7580790.26], [381943.253, 7561966.502], [379813.189, 7561172.107], [373711.623, 7558896.763], [373490.922, 7560270.537], [373604.112, 7560392.13], [373693.896, 7560676.09], [373914.93, 7561008.531], [374124.797, 7561073.615], [374320.716, 7561489.941], [374368.589, 7561884.254], [374288.174, 7562071.652], [374291.077, 7562404.203], [373957.838, 7562568.272], [373979.465, 7562673.076], [373641.706, 7562773.413], [366703.026, 7563861.713], [364844.569, 7567317.933], [347534.118, 7566871.463], [346012.513, 7564770.911], [345878.353, 7564702.22], [345812.437, 7564817.4], [345681.316, 7564962.288], [345538.59, 7565075.734], [345412.1, 7565074.129], [345279.9, 7565038.792], [345150.313, 7565015.288], [344998.833, 7565035.022], [344850.051, 7565068.602], [344744.291, 7565039.9], [344670.693, 7564933.459], [344640.02, 7564802.77], [344645.289, 7564668.215], [344611.603, 7564517.644], [344533.503, 7564401.366], [344437.815, 7564294.028], [344368.837, 7564239.412], [344262.159, 7564192.729], [344148.393, 7564164.48], [344005.508, 7564155.662], [343851.9, 7564173.498], [343681.108, 7564208.196], [343356.783, 7564142.483], [343249.89, 7564051.732], [343137.212, 7564005.386], [343012.531, 7563999.638], [342839.597, 7563992.397], [342668.098, 7563973.088], [342583.341, 7563923.27], [342528.93, 7563759.678], [342473.134, 7563608.273], [342328.772, 7563411.174], [342083.561, 7563243.298], [341924.017, 7563143.165], [341683.968, 7563157.371], [341525.056, 7563109.288], [341379.426, 7563006.472], [340996.963, 7562703.269], [340905.791, 7562645.804], [340798.509, 7562627.151], [340694.868, 7562640.451], [340578.601, 7562722.451], [340415.573, 7562911.083], [340281.43, 7563036.092], [340187.886, 7563090.95], [340164.913, 7563192.33], [340198.769, 7563306.829], [340208.022, 7563410.547], [340114.374, 7563741.944], [340118.62, 7563865.938], [340100.052, 7564015.187], [340021.071, 7564159.463], [339962.85, 7564517.049], [339832.248, 7565030.646], [339808.792, 7565202.183], [339864.916, 7565439.784], [339905.463, 7565726.319], [339977.991, 7565890.906], [340050.214, 7566129.741], [340055.081, 7566265.746], [340091.755, 7566396.103], [340136.837, 7566772.562], [340206.438, 7566959.39], [340206.885, 7567007.48], [340164.692, 7567125.842], [340056.91, 7567335.701], [340030.443, 7567487.354], [340055.43, 7568141.294], [340119.406, 7568256.299], [340236.439, 7568388.601], [340269.727, 7568491.147], [340287.028, 7568754.721], [340433.882, 7569079.945], [340503.469, 7569186.62], [340958.293, 7569492.137], [340995.069, 7569584.456], [341012.906, 7569898.133], [340992.623, 7569973.317], [340892.705, 7570100.627], [340767.261, 7570199.174], [340627.413, 7570250.354], [340533.823, 7570225.07], [340413.273, 7570261.221], [340328.831, 7570337.645], [340248.751, 7570459.982], [340216.782, 7570581.804], [340244.384, 7570810.866], [340206.484, 7571053.22], [340372.896, 7571289.239], [340415.787, 7571423.342], [340410.932, 7571789.356], [340316.638, 7572034.448], [340324.084, 7572226.464], [340363.087, 7572366.867], [340582.604, 7572833.04], [340621.9, 7572979.354], [340803.002, 7573479.486], [340835.814, 7573820.565], [340818.159, 7574073.93], [340694.277, 7574410.706], [340666.221, 7574534.286], [340606.008, 7575308.789], [340532.505, 7575486.792], [340397.016, 7575587.636], [340310.008, 7575613.955], [340063.465, 7575577.978], [339509.201, 7575853.702], [339373.407, 7575948.574], [339257.107, 7576072.555], [339153.482, 7576249.997], [338965.925, 7576597.904], [338879.586, 7576800.544], [338822.968, 7576873.456], [338407.354, 7577234.614], [338291.361, 7577364.571], [337990.864, 7577782.155], [337881.115, 7578529.103], [337844.375, 7578679.164], [337720.295, 7578889.692], [337676.948, 7579028.148], [337562.707, 7579194.091], [337544.736, 7579399.354], [337558.519, 7579557.022], [337604.233, 7579671.0], [337581.742, 7579906.607], [337658.958, 7580293.56], [337701.304, 7580419.771], [337847.812, 7580665.091], [337899.615, 7580820.855], [337883.585, 7581228.488], [337935.761, 7581514.488], [337896.587, 7581574.554], [337778.568, 7581622.442], [337718.448, 7581736.941], [337631.025, 7581992.726], [337430.766, 7582336.198], [337334.018, 7582381.894], [337237.343, 7582372.865], [337147.018, 7582331.188], [337038.227, 7582322.543], [336645.504, 7582333.991], [336425.085, 7582503.259], [336230.04, 7582617.151], [335883.684, 7582918.913], [335699.226, 7583044.319], [335590.762, 7583163.956], [335403.165, 7583307.522], [334984.008, 7583719.202], [334678.209, 7583906.76], [334593.041, 7584011.203], [334470.575, 7584253.823], [334331.263, 7584358.944], [334268.61, 7584472.265], [334293.002, 7584641.512], [334247.694, 7584862.219], [334199.062, 7585259.549], [334121.954, 7585323.54], [333961.962, 7585375.526], [333634.653, 7585411.784], [333412.623, 7585466.913], [333161.606, 7585463.259], [332764.08, 7585541.105], [332470.162, 7585521.592], [332264.941, 7585551.799], [331855.997, 7585642.153], [331753.124, 7585753.534], [331634.682, 7585955.88], [331532.482, 7586488.176], [331482.016, 7586645.029], [331188.544, 7586961.607], [331123.515, 7587103.109], [331045.461, 7587343.552], [330953.986, 7587438.369], [330870.495, 7587492.682], [330714.742, 7587546.687], [330567.551, 7587650.41], [330433.808, 7587703.289], [330301.407, 7587782.14], [330186.783, 7587974.333], [329603.836, 7588701.292], [329497.751, 7588784.833], [329365.817, 7588833.575], [329205.121, 7588829.773], [329138.726, 7588865.204], [329105.377, 7588959.058], [328997.203, 7589080.814], [328735.298, 7589492.859], [328753.821, 7589896.671], [328850.021, 7590285.368], [328956.699, 7590375.16], [329024.503, 7590495.495], [328996.361, 7590641.834], [329272.292, 7591018.294], [329342.086, 7591207.077], [329292.967, 7591345.854], [329079.065, 7591478.981], [328845.305, 7591695.234], [328708.218, 7591800.408], [328384.956, 7591953.125], [328154.147, 7591990.969], [328017.757, 7592070.054], [327835.206, 7592213.165], [327752.057, 7592311.667], [327650.956, 7592527.352], [327570.999, 7592609.715], [327469.794, 7592631.042], [327368.942, 7592620.248], [327184.745, 7592549.735], [326982.846, 7592448.006], [326643.073, 7592317.462], [326283.124, 7591928.066], [326147.767, 7591830.739], [325939.595, 7591761.2], [325733.355, 7591729.65], [325208.727, 7591828.528], [324869.096, 7591817.806], [324743.788, 7591878.287], [324597.111, 7592032.013], [324482.848, 7592476.309], [324499.657, 7592876.27], [324406.314, 7592971.315], [324021.809, 7593253.944], [323606.011, 7593397.901], [323304.531, 7593463.715], [322980.252, 7593592.887], [322891.214, 7593693.745], [322874.146, 7593828.866], [322928.248, 7593904.245], [323136.056, 7594081.772], [323177.585, 7594185.808], [323176.691, 7594284.055], [323114.572, 7594401.49], [322802.987, 7594774.52], [322725.326, 7594900.842], [322598.336, 7595043.723], [322477.745, 7595078.075], [322349.317, 7595038.703], [322271.814, 7595052.755], [322096.185, 7595224.256], [321732.262, 7595389.732], [321386.902, 7595656.296], [321214.93, 7595977.84], [321163.172, 7596140.861], [321190.653, 7596361.882], [321402.846, 7597282.653], [321370.142, 7597464.709], [321219.156, 7597648.954], [321060.517, 7597685.288], [320703.285, 7597683.913], [320565.76, 7597663.037], [320428.173, 7597485.87], [320385.783, 7597325.804], [320393.992, 7597213.133], [320375.743, 7597015.679], [320277.03, 7596930.659], [320035.892, 7596885.148], [319677.841, 7596751.549], [319194.424, 7596754.758], [319000.913, 7596698.779], [318874.876, 7596551.038], [318783.101, 7596483.659], [318580.856, 7596414.109], [318456.329, 7596450.647], [318360.101, 7596529.852], [318169.206, 7597028.779], [318097.876, 7597279.018], [317959.48, 7597628.943], [317888.262, 7597764.945], [317787.371, 7597870.407], [317578.365, 7597941.457], [317345.392, 7597937.554], [317168.702, 7597896.702], [317018.063, 7597932.646], [316873.558, 7598048.409], [316679.954, 7598301.002], [316578.955, 7598404.516], [316283.16, 7598582.312], [315961.783, 7598847.602], [315726.855, 7598922.023], [315147.453, 7599048.468], [314795.341, 7599068.879], [314515.993, 7598983.28], [314395.052, 7598895.418], [314305.411, 7598908.152], [314229.57, 7599032.313], [314146.837, 7599333.294], [313964.158, 7599724.013], [313858.011, 7599871.46], [313563.495, 7600351.63], [313439.177, 7600619.626], [313183.364, 7601063.733], [313168.959, 7601201.999], [313249.078, 7601459.587], [313213.152, 7601543.651], [313025.054, 7601636.964], [312851.528, 7601614.073], [312679.223, 7601502.513], [312565.135, 7601489.774], [312408.543, 7601616.15], [312265.262, 7601896.083], [312122.25, 7601916.408], [311891.088, 7601881.193], [311737.131, 7601791.972], [311561.246, 7601644.559], [311414.289, 7601484.21], [311322.791, 7601253.915], [311044.618, 7601010.129], [310922.381, 7600855.329], [310570.428, 7600478.051], [310252.366, 7600238.228], [310084.876, 7599973.266], [309872.326, 7599781.283], [309693.636, 7599653.3], [309302.895, 7599647.094], [309161.671, 7599685.372], [309127.32, 7599805.468], [309139.042, 7600003.512], [309262.076, 7600105.916], [309378.041, 7600520.867], [309365.054, 7600612.719], [309289.828, 7600767.19], [309280.222, 7600892.898], [309303.321, 7601023.385], [309382.277, 7601188.56], [309382.644, 7601293.131], [309362.482, 7601353.475], [309369.45, 7601423.245], [309444.018, 7601524.397], [309579.03, 7601645.741], [309616.102, 7601754.739], [309603.503, 7601850.519], [309546.02, 7602001.157], [309451.239, 7602181.699], [309339.904, 7602337.731], [309326.324, 7602403.468], [309361.393, 7602492.517], [309555.223, 7602718.606], [309652.721, 7602867.797], [309679.818, 7602977.802], [309648.274, 7603145.961], [309695.085, 7603372.665], [309862.769, 7603700.007], [309818.276, 7603758.794], [309683.817, 7603824.534], [309538.013, 7603837.122], [309399.566, 7603883.15], [309178.594, 7603748.343], [309056.14, 7603732.444], [308847.092, 7603757.359], [308310.09, 7603927.846], [307783.66, 7604143.508], [307657.181, 7604168.226], [307487.256, 7604120.861], [307429.424, 7604066.285], [307309.994, 7603818.638], [307189.956, 7603685.777], [307070.086, 7603615.303], [306963.374, 7603615.874], [306579.356, 7603785.158], [306415.014, 7603692.888], [306280.162, 7603754.702], [306176.626, 7603827.458], [306037.757, 7604010.402], [305929.009, 7604111.802], [305826.875, 7604138.136], [305732.543, 7604121.447], [305587.137, 7604037.379], [305441.794, 7603867.33], [305135.21, 7603668.051], [304559.851, 7603192.385], [304462.915, 7603210.145], [304411.036, 7603255.559], [304166.102, 7603579.733], [304038.232, 7603670.998], [303948.258, 7603778.598], [303850.954, 7604024.039], [303771.61, 7604049.826], [303626.512, 7604006.028], [303530.566, 7604013.638], [303445.596, 7604070.409], [303364.411, 7604084.638], [303044.48, 7603947.689], [302771.215, 7603854.358], [302680.283, 7603770.936], [302427.577, 7603621.244], [302380.69, 7603535.376], [302245.069, 7603428.293], [302072.138, 7603371.186], [301809.66, 7603184.236], [301640.92, 7603088.444], [301366.042, 7603200.513], [301211.257, 7603183.82], [300955.132, 7603221.574], [300781.598, 7603259.128], [300676.87, 7603319.913], [300603.251, 7603409.776], [300580.888, 7603669.545], [300517.845, 7603925.365], [300501.676, 7604045.688], [300522.206, 7604311.227], [300473.311, 7604386.511], [300318.526, 7604510.667], [300241.535, 7604546.605], [300024.105, 7604467.77], [299925.97, 7604413.229], [299901.033, 7604345.293], [299821.464, 7604274.831], [299698.981, 7604218.669], [299592.874, 7604205.222], [299541.404, 7604314.954], [299530.616, 7604448.833], [299486.531, 7604511.614], [299190.913, 7604617.721], [298946.745, 7604654.232], [298830.261, 7604617.67], [298690.615, 7604691.989], [298567.153, 7604686.302], [298489.552, 7604575.341], [297945.827, 7604432.625], [297849.85, 7604383.948], [297641.206, 7604453.172], [297548.043, 7604468.522], [297406.822, 7604426.346], [297265.987, 7604508.884], [297201.143, 7604605.902], [297137.906, 7604658.552], [297037.536, 7604984.496], [296846.03, 7605184.754], [296776.191, 7605513.719], [296568.508, 7605894.702], [296504.26, 7606118.435], [296293.986, 7606433.294], [296275.022, 7606586.085], [296236.323, 7606702.688], [296135.164, 7606879.804], [296142.728, 7607136.632], [296113.592, 7607449.43], [296139.51, 7607768.732], [296139.296, 7608008.185], [295990.655, 7608697.118], [295750.061, 7609212.196], [295718.944, 7609344.105], [295738.082, 7609429.352], [295998.606, 7609782.869], [296049.467, 7609908.527], [296060.037, 7610134.822], [296274.494, 7610324.63], [296234.78, 7610592.18], [296117.096, 7610724.708], [295961.699, 7610762.435], [295881.886, 7610689.923], [295712.299, 7610665.129], [295659.478, 7610722.321], [295378.408, 7611134.862], [295342.889, 7611323.53], [295283.433, 7611494.438], [295284.435, 7611605.009], [295134.426, 7611756.885], [294891.237, 7612136.362], [294869.262, 7612239.157], [294941.218, 7612435.177], [294919.233, 7612558.105], [294857.151, 7612703.078], [294760.197, 7612801.315], [294626.128, 7612891.137], [294426.818, 7613074.058], [294075.842, 7613269.587], [293970.349, 7613405.326], [293826.868, 7613643.013], [293726.336, 7613725.523], [293617.759, 7613929.48], [293518.317, 7614305.579], [293396.566, 7614599.474], [293288.029, 7614722.961], [293079.348, 7614872.557], [292882.199, 7615157.846], [292635.174, 7615448.119], [292543.393, 7615598.122], [292524.609, 7615712.718], [292555.885, 7615844.398], [292526.949, 7615937.809], [292354.162, 7616083.852], [291987.413, 7616607.394], [291869.092, 7616733.89], [291752.196, 7616753.621], [291548.362, 7616749.912], [291374.012, 7616819.649], [291157.989, 7616774.803], [290963.348, 7616681.626], [290877.742, 7616752.506], [290833.859, 7616837.428], [290836.646, 7616945.188], [290954.24, 7617155.312], [290877.837, 7617237.454], [290728.209, 7617292.613], [290547.696, 7617320.747], [290328.058, 7617421.179], [290152.676, 7617561.418], [289999.082, 7617596.92], [289624.291, 7617555.883], [289281.041, 7617407.104], [289108.864, 7617518.874], [288480.756, 7617422.7], [288320.04, 7617225.532], [288097.429, 7617195.422], [287965.372, 7617244.872], [287838.109, 7617261.619], [287693.11, 7617181.534], [287507.192, 7617196.116], [287350.412, 7617179.553], [287217.754, 7617202.882], [287071.323, 7617269.838], [286844.292, 7617417.298], [286621.074, 7617421.533], [286258.197, 7617520.122], [286063.48, 7617628.166], [285771.823, 7617733.786], [285563.94, 7617767.526], [285199.334, 7617950.72], [285007.387, 7617925.574], [284947.486, 7618032.121], [284955.817, 7618135.897], [284903.472, 7618277.893], [284704.493, 7618404.382], [284556.219, 7618453.322], [284424.477, 7618587.191], [284388.286, 7618769.853], [284470.226, 7619389.355], [284482.795, 7619899.102], [284474.162, 7620034.773], [284399.899, 7620196.309], [284462.697, 7620263.252], [284546.337, 7620677.352], [284674.391, 7620769.191], [285068.371, 7620926.268], [285057.158, 7621012.917], [285049.297, 7621070.99], [285109.93, 7621136.949], [285033.593, 7621198.123], [285030.742, 7621331.204], [285062.186, 7621545.371], [285030.425, 7621651.126], [285061.312, 7621778.824], [285003.381, 7621905.276], [284902.37, 7622023.966], [284808.092, 7622290.871], [284643.962, 7622584.86], [284560.939, 7622681.696], [284438.212, 7622703.968], [284251.584, 7622873.481], [284141.815, 7622944.752], [284048.373, 7623098.955], [283898.257, 7623270.832], [283443.396, 7623599.857], [283321.819, 7623734.661], [283311.576, 7623954.981], [283243.484, 7624100.584], [283123.303, 7624249.358], [282993.924, 7624467.472], [282973.137, 7624582.201], [282993.84, 7624749.189], [282938.122, 7624837.19], [282587.11, 7624894.31], [282503.687, 7624946.888], [282393.072, 7625151.071], [282264.923, 7625280.545], [282016.275, 7625373.765], [281901.225, 7625695.068], [281857.848, 7625926.702], [281880.734, 7626095.449], [281932.376, 7626208.978], [281714.741, 7626483.935], [281203.889, 7626812.557], [280867.932, 7626795.898], [280599.365, 7626929.377], [280377.232, 7627003.874], [280149.314, 7627181.512], [279868.168, 7627370.541], [279739.131, 7627530.23], [279772.395, 7627742.043], [279639.984, 7627948.344], [279517.168, 7627948.596], [279401.71, 7628002.377], [279247.349, 7628210.813], [279150.475, 7628148.169], [279088.28, 7628049.793], [278984.802, 7628001.83], [278880.513, 7628066.575], [278446.061, 7628031.655], [278252.666, 7628030.928], [278120.062, 7628134.679], [278074.982, 7628247.789], [278001.605, 7628279.212], [277875.191, 7628263.738], [277767.94, 7628198.048], [277478.443, 7628142.599], [277378.003, 7628198.13], [277157.604, 7628257.125], [276975.334, 7628358.802], [276870.204, 7628509.556], [276719.451, 7628624.604], [276531.338, 7628705.732], [276391.318, 7628836.58], [276269.986, 7628872.957], [276087.244, 7628979.908], [275957.126, 7628989.002], [275761.318, 7628966.422], [275705.836, 7629003.473], [275607.015, 7629235.588], [275510.904, 7629362.035], [275447.527, 7629513.329], [275354.201, 7629627.387], [275159.045, 7629691.333], [275061.307, 7629781.683], [274953.83, 7629915.308], [274740.486, 7629938.774], [274601.817, 7630003.056], [274343.915, 7630244.421], [274320.49, 7630432.002], [274090.712, 7630632.299], [274028.284, 7630713.035], [273968.126, 7630876.128], [274019.986, 7631130.586], [274160.622, 7631265.763], [274186.616, 7631363.467], [274138.83, 7631829.264], [274093.807, 7631942.498], [273999.266, 7632024.513], [273944.056, 7632136.766], [273880.311, 7632324.342], [273883.011, 7632471.033], [273994.083, 7632612.884], [274093.531, 7632679.376], [274236.672, 7632739.409], [274283.221, 7632801.159], [274295.053, 7632878.513], [274266.639, 7633036.395], [273984.388, 7633835.814], [273888.909, 7634008.529], [273932.48, 7634100.747], [274142.68, 7634405.705], [274166.704, 7634524.075], [274136.889, 7634688.126], [274012.075, 7634869.802], [273864.294, 7635089.833], [273849.432, 7635311.827], [273925.777, 7635573.043], [273972.618, 7636017.29], [274036.757, 7636113.47], [274244.285, 7636591.833], [274086.589, 7636827.151], [273996.699, 7637121.573], [273996.349, 7637300.716], [273918.819, 7637616.365], [273852.473, 7637699.42], [273714.811, 7637795.548], [273567.903, 7638001.312], [273462.413, 7638220.234], [273546.908, 7638297.274], [273552.962, 7638439.537], [273488.83, 7638504.27], [273257.629, 7638511.099], [273039.501, 7638649.495], [272850.174, 7638712.517], [272582.539, 7638839.707], [272424.995, 7638851.019], [272323.832, 7638833.167], [272248.456, 7638749.856], [272138.787, 7638736.785], [272042.4, 7638679.896], [271830.032, 7638612.422], [271715.5, 7638515.042], [271596.926, 7638478.504], [271416.837, 7638492.368], [271182.448, 7638243.892], [271091.246, 7638178.422], [270980.464, 7638159.253], [270897.439, 7638115.149], [270760.472, 7638116.622], [270540.217, 7638152.559], [270179.123, 7638293.027], [269817.936, 7638554.282], [269718.379, 7638709.083], [269721.277, 7638819.472], [269668.846, 7638961.525], [269633.731, 7639176.371], [269371.576, 7639663.276], [269314.089, 7639896.413], [269031.158, 7640397.442], [268822.713, 7640653.628], [268710.879, 7641171.93], [268633.85, 7641370.805], [268568.698, 7641445.704], [268572.591, 7641586.216], [268532.2, 7641910.231], [268645.556, 7641975.49], [268631.091, 7642073.517], [268549.945, 7642190.307], [268313.356, 7642690.753], [268298.05, 7642861.358], [268417.032, 7643145.462], [268248.861, 7643462.023], [268163.335, 7643555.038], [268167.06, 7643653.333], [268118.854, 7643756.751], [268032.724, 7643808.138], [267913.881, 7644009.261], [267832.452, 7644401.77], [267751.077, 7644494.468], [267502.474, 7644648.287], [267401.115, 7644722.875], [267432.153, 7644787.864], [267222.669, 7644924.039], [267150.637, 7644896.028], [266919.24, 7645002.72], [266775.187, 7645113.766], [266621.019, 7645298.698], [266526.503, 7645466.842], [266420.677, 7645560.533], [266272.158, 7645743.96], [266120.875, 7645763.202], [266020.324, 7645825.636], [265972.649, 7645912.885], [265840.394, 7646020.807], [265899.585, 7646228.133], [265893.446, 7646327.361], [265789.897, 7646469.02], [265547.774, 7646718.334], [265422.954, 7646960.276], [265181.933, 7647109.339], [264955.928, 7647367.521], [264845.802, 7647455.036], [264694.993, 7647619.116], [264452.566, 7647754.21], [264407.271, 7647805.0], [264415.663, 7647984.78], [264367.365, 7648114.589], [264415.555, 7648232.459], [264439.207, 7648346.782], [264374.11, 7648480.132], [264016.084, 7648725.551], [263932.42, 7648854.7], [263933.95, 7648989.367], [263974.843, 7649194.482], [263917.522, 7649325.001], [263796.352, 7649441.879], [263550.767, 7649623.625], [263487.839, 7649738.597], [263409.514, 7649800.879], [263309.288, 7649925.651], [263104.122, 7650071.231], [263013.382, 7650048.12], [262916.875, 7650090.053], [262849.93, 7650185.309], [262413.1, 7650428.618], [262002.919, 7650795.996], [261978.482, 7650893.012], [262044.272, 7651045.379], [261989.347, 7651352.634], [262028.49, 7651427.224], [262039.146, 7651512.685], [261916.996, 7651639.723], [261627.363, 7651864.163], [261479.615, 7652136.594], [261265.541, 7652311.144], [261098.731, 7652474.883], [261087.455, 7652562.548], [261034.33, 7652694.717], [260885.818, 7652800.249], [260550.521, 7652852.221], [260415.323, 7652910.125], [260326.574, 7652929.156], [260177.894, 7652873.716], [260122.887, 7652927.573], [260159.661, 7652992.273], [260249.924, 7653087.777], [260312.304, 7653226.353], [260111.314, 7653510.258], [259994.716, 7653612.578], [259915.86, 7653749.365], [259800.813, 7653807.242], [259711.107, 7653876.646], [259588.429, 7654078.192], [259357.003, 7654260.524], [259191.939, 7654560.938], [259087.888, 7654647.923], [258901.471, 7654730.142], [258847.086, 7654590.788], [258844.183, 7654462.275], [258799.396, 7654358.131], [258645.972, 7654156.281], [258401.443, 7654090.365], [258233.79, 7654306.497], [257950.394, 7654294.831], [257846.137, 7654180.621], [257755.899, 7654145.411], [257515.94, 7654284.332], [257493.284, 7654399.323], [257561.59, 7654716.44], [257535.719, 7654799.556], [257412.221, 7654854.225], [257198.98, 7654784.262], [257004.588, 7654802.114], [256842.296, 7654899.652], [256742.998, 7654994.21], [256584.835, 7655104.771], [256317.556, 7655033.137], [255828.174, 7654997.946], [255739.612, 7654799.632], [255635.383, 7654745.715], [255529.524, 7654635.673], [255448.944, 7654436.521], [255227.976, 7654384.366], [254928.658, 7654434.664], [254720.548, 7654489.876], [254521.546, 7654591.578], [254320.622, 7654748.823], [254319.967, 7654934.764], [254398.458, 7655013.381], [254624.443, 7655095.237], [254709.62, 7655040.389], [254825.18, 7655046.849], [255008.816, 7655088.667], [255192.525, 7655211.042], [255338.044, 7655254.677], [255410.768, 7655356.025], [255350.066, 7655553.332], [255204.467, 7655908.123], [254979.905, 7656339.303], [254981.536, 7656614.842], [254838.512, 7656827.364], [254786.94, 7657109.034], [254664.778, 7657530.259], [254563.926, 7657689.352], [254444.673, 7657736.588], [254032.172, 7658107.639], [253777.954, 7658111.511], [253627.144, 7658174.308], [253633.633, 7658298.419], [253612.463, 7658507.888], [253541.373, 7658702.165], [253522.111, 7658810.819], [253462.166, 7659354.056], [253474.507, 7659477.598], [253463.1, 7659585.376], [253408.013, 7659679.416], [253576.957, 7659755.146], [253678.12, 7659822.588], [253772.279, 7659856.365], [253885.358, 7660020.103], [254292.914, 7660206.792], [254394.036, 7660351.64], [254627.27, 7660306.203], [255341.992, 7660017.484], [255400.45, 7660017.696], [255426.577, 7660037.211], [255489.774, 7660226.096], [255511.07, 7660419.152], [255589.228, 7660636.73], [255704.107, 7660778.146], [255963.01, 7661029.994], [256046.569, 7661200.76], [256314.22, 7661560.348], [256379.223, 7661686.625], [256456.979, 7661900.209], [256508.201, 7662150.649], [256488.383, 7662416.229], [256497.047, 7662966.754], [256450.72, 7663128.312], [256301.797, 7663513.406], [255865.949, 7664152.617], [255798.477, 7664304.225], [255537.634, 7664678.393], [255430.822, 7665081.46], [255225.113, 7665140.258], [254955.371, 7665163.212], [254746.83, 7665395.309], [254368.098, 7665718.923], [254247.794, 7665724.917], [254135.04, 7665846.822], [253942.275, 7666015.008], [253895.771, 7666134.35], [253733.527, 7666325.627], [253651.878, 7666597.415], [253576.626, 7666771.944], [253538.093, 7666971.026], [253475.608, 7667112.063], [253272.971, 7667457.796], [253124.382, 7668738.898], [253036.967, 7668952.913], [252905.252, 7669127.063], [252491.05, 7669571.377], [252117.694, 7670005.422], [251919.984, 7670282.945], [251816.426, 7670555.041], [251665.091, 7670672.892], [251371.148, 7670815.158], [250827.692, 7671040.843], [250262.038, 7671252.833], [249986.977, 7671406.742], [249699.532, 7671577.997], [249452.94, 7671775.333], [249098.124, 7672162.51], [249002.631, 7672216.17], [248625.069, 7672168.928], [248456.67, 7672117.08], [248115.15, 7672128.642], [247738.761, 7672236.246], [247411.822, 7672232.279], [246650.417, 7672462.301], [246061.091, 7672679.436], [245920.02, 7672781.864], [245792.821, 7672820.596], [245623.838, 7672905.68], [245557.646, 7672990.664], [245276.673, 7673227.65], [245140.274, 7673275.323], [245099.129, 7673243.565], [245049.54, 7673297.121], [245063.906, 7673359.325], [244942.527, 7673375.31], [244829.696, 7673416.661], [244761.738, 7673483.734], [244777.368, 7673580.754], [244709.778, 7673671.971], [244578.382, 7673709.062], [244476.285, 7673654.156], [244444.428, 7673720.248], [244323.391, 7673780.531], [244167.699, 7673632.843], [243986.149, 7673856.058], [243894.62, 7673929.452], [243880.25, 7674069.698], [243852.032, 7674130.896], [243798.072, 7674176.447], [243582.38, 7674115.207], [243470.949, 7674150.329], [243418.313, 7674250.102], [243304.573, 7674363.946], [243137.16, 7674444.137], [243093.37, 7674498.797], [243090.919, 7674575.243], [243238.707, 7674571.778], [250470.957, 7680517.905], [256505.789, 7675314.62], [263044.62, 7669896.14], [265802.13, 7677211.78], [263895.03, 7679431.84], [263731.479, 7681402.49], [261962.909, 7687451.244], [262915.935, 7690767.229], [266991.532, 7694694.646], [274712.645, 7699672.756], [278397.09, 7698177.339]]]}}, {\\\"id\\\": \\\"135\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Konnevesi\\\", \\\"elakelaisten_osuus\\\": 37.9, \\\"freshwarea\\\": 167.91, \\\"gml_id\\\": 1601100452, \\\"landarea\\\": 512.94, \\\"namefin\\\": \\\"Konnevesi\\\", \\\"nameswe\\\": \\\"Konnevesi\\\", \\\"natcode\\\": \\\"275\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 680.85}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[458701.957, 6966221.441], [459791.964, 6966970.282], [460407.526, 6966405.5], [460882.112, 6965695.76], [461282.179, 6965443.648], [467106.855, 6957611.173], [469658.072, 6959845.472], [469041.648, 6960703.851], [469335.815, 6961030.086], [471765.145, 6962221.13], [475927.647, 6954737.946], [475760.939, 6954016.626], [476716.756, 6951611.785], [477584.407, 6950202.436], [477611.021, 6949453.67], [477904.767, 6948643.448], [478015.889, 6947937.86], [477941.621, 6947050.701], [479045.267, 6945730.463], [479386.969, 6942287.987], [478249.466, 6941544.986], [479411.708, 6940469.437], [479157.422, 6940051.468], [478038.127, 6939818.197], [477876.07, 6938879.092], [477181.939, 6936869.617], [476299.979, 6935562.593], [475184.149, 6934035.833], [474689.158, 6933671.414], [473405.906, 6933594.764], [472811.89, 6933709.596], [472415.998, 6934175.017], [472155.808, 6933684.213], [469100.672, 6930714.591], [468796.986, 6931941.094], [462639.254, 6935706.632], [462139.353, 6936171.941], [462169.336, 6936846.668], [461000.857, 6937477.269], [460854.862, 6937801.274], [460335.072, 6937816.264], [459600.362, 6938835.848], [459285.495, 6938206.1], [460217.138, 6935182.69], [460492.155, 6935164.469], [460691.129, 6934282.429], [459856.001, 6933657.84], [459432.568, 6934243.301], [458611.006, 6933761.49], [459012.159, 6931798.585], [459363.423, 6930946.031], [459736.887, 6929131.066], [459019.239, 6929150.248], [457583.072, 6927759.006], [455688.132, 6929005.09], [453070.658, 6933332.825], [450476.004, 6939564.802], [454337.693, 6941963.477], [455772.408, 6944342.346], [456448.486, 6947529.827], [460762.497, 6949987.9], [457047.041, 6951136.807], [455809.048, 6953731.546], [456195.899, 6958039.915], [455815.178, 6959175.019], [454985.547, 6960096.641], [454519.175, 6960232.356], [454031.123, 6960701.89], [453321.693, 6960613.372], [452768.681, 6960853.181], [452365.219, 6961319.414], [452160.903, 6961894.71], [451737.207, 6962433.42], [451335.251, 6963117.425], [451164.781, 6963567.752], [451115.313, 6964142.152], [450806.678, 6964549.138], [450310.043, 6966508.131], [453848.006, 6967979.933], [456811.171, 6968809.34], [458701.957, 6966221.441]]]}}, {\\\"id\\\": \\\"136\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pudasj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 38.2, \\\"freshwarea\\\": 228.99, \\\"gml_id\\\": 1601100581, \\\"landarea\\\": 5638.28, \\\"namefin\\\": \\\"Pudasj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Pudasj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"615\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5867.27}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[531660.85, 7309046.605], [535048.175, 7302408.077], [535884.599, 7302094.746], [535817.024, 7301806.136], [535060.569, 7302026.853], [534776.431, 7300873.374], [533535.1, 7296872.75], [532616.564, 7295659.374], [533226.706, 7295360.36], [534084.889, 7294383.174], [534974.38, 7293910.579], [536961.49, 7282789.967], [537909.957, 7281546.95], [535943.053, 7265221.671], [537669.706, 7262243.342], [537946.687, 7259511.668], [537677.226, 7259241.407], [538010.915, 7258962.895], [538090.651, 7258206.488], [537767.002, 7258017.103], [538129.451, 7257147.978], [538191.121, 7256729.063], [539503.847, 7255253.881], [540211.858, 7254258.172], [543365.044, 7253910.199], [543278.524, 7253677.822], [544112.562, 7253347.618], [544295.81, 7253800.159], [545504.152, 7253656.689], [545636.248, 7253752.079], [553051.591, 7246493.273], [554298.02, 7236856.128], [548317.3, 7235438.073], [546561.028, 7233474.266], [546079.16, 7232934.514], [544482.124, 7231907.344], [544368.356, 7231717.778], [544098.808, 7228826.7], [542025.612, 7218946.15], [540189.565, 7219482.677], [540112.195, 7219684.252], [539261.493, 7219764.172], [537001.747, 7220439.024], [537436.874, 7221714.292], [537205.274, 7221759.158], [536588.049, 7220563.082], [534758.896, 7221110.698], [533551.181, 7221762.978], [532943.52, 7221652.841], [531310.618, 7222140.256], [528954.901, 7220528.329], [528871.692, 7220739.673], [528357.565, 7220537.026], [528499.561, 7220216.185], [526884.205, 7219102.23], [521288.698, 7218248.539], [515503.419, 7218599.02], [509507.524, 7218968.144], [503488.449, 7220113.921], [500220.485, 7220360.008], [495227.937, 7218716.364], [482550.406, 7219321.807], [480898.69, 7219399.672], [480617.687, 7219881.979], [475394.804, 7224931.99], [468009.568, 7231051.786], [464234.849, 7239236.425], [465233.745, 7240335.297], [466450.287, 7239721.078], [469486.148, 7243468.261], [469885.986, 7244381.284], [470974.357, 7243936.154], [472010.361, 7244865.746], [471272.057, 7245038.713], [469433.944, 7244688.273], [469030.616, 7244761.003], [468164.453, 7245289.956], [467296.157, 7245435.485], [467404.968, 7245570.153], [467826.188, 7245667.785], [468174.847, 7245584.04], [469195.914, 7244999.034], [469996.536, 7245093.948], [471266.904, 7245456.396], [471670.56, 7247556.266], [473314.69, 7247271.047], [472162.137, 7250232.787], [460700.885, 7255425.283], [460805.317, 7260669.371], [461180.564, 7260200.061], [461376.242, 7260217.956], [461329.173, 7260610.15], [460818.539, 7261099.149], [460866.028, 7263402.904], [462065.657, 7264317.803], [461829.217, 7264753.401], [460892.921, 7264753.013], [461012.297, 7270595.634], [461385.917, 7289578.81], [471025.547, 7288118.193], [484387.523, 7287656.105], [484995.636, 7286582.189], [485123.272, 7287582.702], [491950.939, 7286610.701], [499142.254, 7289689.139], [499235.538, 7287920.681], [501042.17, 7288021.036], [500988.292, 7288966.558], [500310.68, 7288928.564], [500253.45, 7290165.373], [501636.379, 7290752.891], [502260.953, 7290134.425], [503301.393, 7289791.985], [504634.667, 7291145.659], [504039.851, 7291733.689], [505056.583, 7292164.352], [507166.61, 7295450.605], [507479.963, 7294891.142], [508212.012, 7295299.661], [507436.658, 7295872.402], [510346.426, 7300404.934], [510198.168, 7300524.436], [510343.04, 7301054.458], [510643.715, 7300863.891], [511182.114, 7301706.19], [510845.385, 7301771.808], [510762.418, 7302235.932], [511279.346, 7302467.646], [511529.369, 7302247.424], [515125.083, 7307843.199], [515799.148, 7307772.498], [515802.239, 7308088.796], [515327.33, 7308163.016], [518504.474, 7313091.031], [518845.212, 7312611.05], [520347.462, 7312026.017], [521912.154, 7312566.625], [522617.133, 7312376.021], [523951.184, 7311273.286], [524396.557, 7311674.753], [524669.036, 7311650.939], [525075.979, 7311856.245], [525384.513, 7311736.735], [525605.31, 7311830.115], [525845.757, 7311895.595], [525712.282, 7312386.469], [525842.687, 7312955.607], [526133.236, 7313263.097], [526180.542, 7313480.006], [526456.432, 7313746.442], [526653.689, 7314223.002], [526884.518, 7314566.414], [527046.824, 7314623.068], [527137.978, 7314815.974], [527138.055, 7314986.615], [527685.955, 7315041.923], [527771.011, 7314801.401], [528087.124, 7314773.819], [528226.506, 7315178.631], [528369.989, 7315100.51], [528659.807, 7315210.376], [528977.868, 7315272.473], [529119.709, 7315457.893], [529401.652, 7315434.262], [529768.18, 7315646.993], [531660.85, 7309046.605]]]}}, {\\\"id\\\": \\\"137\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Haapavesi\\\", \\\"elakelaisten_osuus\\\": 28.6, \\\"freshwarea\\\": 36.33, \\\"gml_id\\\": 1601100571, \\\"landarea\\\": 1049.82, \\\"namefin\\\": \\\"Haapavesi\\\", \\\"nameswe\\\": \\\"Haapavesi\\\", \\\"natcode\\\": \\\"071\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1086.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[424749.226, 7139462.176], [425799.694, 7138315.664], [425748.473, 7137355.075], [426283.114, 7135660.844], [425646.306, 7135493.342], [425528.754, 7135056.838], [425743.527, 7134996.625], [426131.147, 7135199.303], [426397.737, 7135098.648], [426790.233, 7134243.615], [426589.356, 7133625.524], [426063.839, 7133312.104], [425944.007, 7132953.497], [426522.483, 7131972.51], [426839.418, 7132472.724], [429282.174, 7127588.7], [429534.938, 7127613.616], [429577.58, 7125540.654], [430222.482, 7125357.273], [430105.917, 7125157.327], [430525.584, 7124678.937], [431171.74, 7123756.853], [431561.468, 7124004.537], [431970.497, 7123304.486], [431854.216, 7123066.278], [432948.444, 7121990.308], [434441.179, 7120031.902], [434840.489, 7120109.792], [435819.211, 7117419.712], [436224.307, 7117516.822], [436146.501, 7117148.049], [436379.623, 7116607.179], [435986.849, 7116141.419], [436044.205, 7115660.761], [435969.928, 7115115.003], [438062.252, 7113307.167], [439136.147, 7111768.137], [438926.985, 7111693.237], [438973.656, 7111287.472], [439357.166, 7111302.865], [439737.433, 7110764.298], [440434.527, 7109915.434], [437478.819, 7107965.386], [434895.171, 7106989.521], [434209.923, 7107173.092], [433981.202, 7106932.035], [434421.221, 7106183.645], [435522.505, 7105008.437], [435651.558, 7104036.445], [433102.959, 7102149.302], [432810.388, 7102369.215], [431816.691, 7101581.192], [432461.092, 7100447.976], [431101.819, 7100356.495], [430884.532, 7100634.514], [430287.903, 7100518.91], [429843.6, 7100256.483], [429865.173, 7100052.333], [429302.692, 7099745.568], [431135.367, 7099082.82], [431864.851, 7099182.058], [431982.795, 7099480.933], [433160.782, 7098644.831], [431417.651, 7097706.202], [430839.992, 7097216.401], [431742.223, 7095549.189], [431065.229, 7094858.91], [430723.251, 7095617.284], [430127.858, 7097597.014], [429784.468, 7097683.887], [428949.574, 7096811.773], [428282.552, 7097106.906], [427821.996, 7096158.258], [429141.668, 7094719.5], [428734.858, 7094486.945], [429710.16, 7093852.544], [428100.788, 7089104.381], [421899.65, 7089957.4], [421489.823, 7090674.493], [421236.256, 7090993.911], [420783.659, 7090739.358], [421624.632, 7089997.264], [419904.813, 7090244.14], [412283.839, 7099338.06], [411526.154, 7099938.148], [412249.705, 7101408.151], [411882.447, 7101755.315], [411815.246, 7102140.261], [411545.761, 7102501.078], [411007.529, 7102581.572], [411221.186, 7103325.184], [412013.69, 7103584.55], [411704.106, 7104038.678], [411351.362, 7103900.729], [410277.754, 7103751.905], [409479.241, 7103026.648], [409820.351, 7101780.473], [409480.343, 7101244.43], [408837.127, 7101508.174], [406325.634, 7103536.203], [403461.736, 7106084.121], [399696.069, 7109515.536], [399547.853, 7109418.412], [398092.767, 7110671.231], [397302.592, 7110823.481], [397308.226, 7111227.548], [398010.991, 7110887.267], [398706.949, 7111260.53], [398753.47, 7111889.69], [398547.342, 7112354.515], [398573.792, 7112876.047], [397706.921, 7114349.107], [396757.38, 7113148.424], [396558.298, 7113452.457], [396150.24, 7115313.066], [397625.775, 7115847.214], [398965.831, 7115149.903], [399467.364, 7115428.934], [400352.008, 7113773.541], [405409.09, 7117751.303], [406958.581, 7120982.531], [406585.189, 7121178.323], [406742.102, 7121456.401], [407083.916, 7121277.406], [407189.441, 7121468.34], [408956.066, 7122719.884], [408630.496, 7123090.345], [408707.787, 7123265.156], [409454.033, 7123127.446], [410560.796, 7124034.406], [410287.658, 7124669.043], [411261.048, 7125188.48], [411286.587, 7125807.483], [411390.819, 7126018.226], [411653.612, 7127865.561], [411614.184, 7129077.795], [411959.816, 7129233.028], [411722.078, 7129410.705], [412109.654, 7129860.303], [412412.839, 7130076.675], [412800.27, 7130590.981], [413393.48, 7130751.39], [413178.911, 7130205.15], [413621.721, 7129987.953], [413525.4, 7129640.172], [414337.419, 7129328.392], [414201.491, 7128832.205], [413739.047, 7128351.639], [414585.358, 7128431.228], [414592.667, 7128845.686], [415751.492, 7128973.014], [415758.456, 7129465.787], [415612.426, 7129754.505], [415404.57, 7131350.946], [414785.77, 7131309.562], [413364.233, 7131985.017], [413197.95, 7131891.125], [413280.051, 7131299.822], [413145.304, 7131236.787], [412559.132, 7131636.641], [412342.829, 7131597.129], [412287.083, 7131826.121], [412467.457, 7132457.35], [412832.492, 7132206.416], [412943.368, 7132543.933], [412602.992, 7132689.943], [413085.589, 7132979.09], [413338.867, 7133532.386], [413153.288, 7133717.67], [412256.298, 7133061.933], [412011.279, 7133411.913], [412986.623, 7134009.983], [413847.312, 7133920.912], [414061.779, 7134187.282], [414249.635, 7133698.992], [414500.93, 7133756.186], [414604.498, 7133456.383], [414379.192, 7133331.011], [414182.958, 7133400.057], [414119.822, 7133232.117], [414161.154, 7133009.405], [414439.604, 7133144.261], [415047.572, 7133366.955], [415004.996, 7133796.942], [416123.35, 7133707.455], [423658.044, 7139590.133], [424749.226, 7139462.176]]]}}, {\\\"id\\\": \\\"138\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Eurajoki\\\", \\\"elakelaisten_osuus\\\": 28.7, \\\"freshwarea\\\": 6.12, \\\"gml_id\\\": 1601100072, \\\"landarea\\\": 514.78, \\\"namefin\\\": \\\"Eurajoki\\\", \\\"nameswe\\\": \\\"Eura\\\\u00e5minne\\\", \\\"natcode\\\": \\\"051\\\", \\\"seawarea\\\": 984.06, \\\"totalarea\\\": 1504.96}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[202168.603, 6831250.639], [203577.811, 6828336.864], [208476.605, 6825314.244], [208161.603, 6824000.184], [207926.737, 6823170.663], [208979.267, 6822542.926], [209262.224, 6822609.127], [209562.143, 6822429.728], [209519.218, 6822225.263], [211065.023, 6821297.569], [214725.689, 6821843.447], [215160.166, 6821647.308], [217790.058, 6817656.44], [222220.992, 6811753.405], [220859.776, 6811818.054], [220925.877, 6811580.418], [225662.856, 6806606.062], [227362.612, 6804975.66], [226039.015, 6802920.209], [225238.036, 6799992.913], [225828.691, 6799167.506], [226187.815, 6798146.308], [228311.619, 6794665.851], [228320.316, 6792513.998], [226943.719, 6791808.203], [225586.3, 6791762.741], [223873.007, 6789854.999], [221967.166, 6791880.81], [220913.893, 6790609.982], [218405.064, 6790550.582], [217513.519, 6790122.248], [217184.564, 6790090.058], [216665.606, 6789775.592], [215822.293, 6789914.197], [215022.59, 6790079.222], [212066.55, 6791271.757], [211581.514, 6791785.95], [210748.219, 6792849.488], [210361.984, 6794118.153], [209628.378, 6795860.778], [209070.403, 6795356.668], [208738.942, 6795234.848], [208115.928, 6795670.33], [207680.348, 6796621.233], [205014.723, 6798457.467], [204953.291, 6799040.108], [203975.546, 6799395.966], [200972.322, 6801695.954], [200326.504, 6802914.56], [198095.002, 6803699.074], [168669.946, 6810232.566], [170321.221, 6817669.663], [172620.274, 6828024.886], [174575.7, 6837156.888], [202168.603, 6831250.639]]]}}, {\\\"id\\\": \\\"139\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Toholampi\\\", \\\"elakelaisten_osuus\\\": 30.7, \\\"freshwarea\\\": 8.07, \\\"gml_id\\\": 1601100610, \\\"landarea\\\": 608.82, \\\"namefin\\\": \\\"Toholampi\\\", \\\"nameswe\\\": \\\"Toholampi\\\", \\\"natcode\\\": \\\"849\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 616.89}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[362467.851, 7086740.214], [364193.249, 7086431.63], [364299.362, 7085819.176], [364807.017, 7086218.885], [366522.022, 7084521.521], [373383.552, 7081747.121], [377495.558, 7069660.278], [379448.13, 7064635.839], [381923.367, 7060577.08], [381634.052, 7060104.657], [381397.054, 7060356.629], [379380.389, 7058881.148], [378953.964, 7059098.67], [378059.719, 7059559.345], [377545.757, 7059452.847], [377587.763, 7059212.02], [378008.459, 7059250.739], [379031.093, 7058631.026], [377646.531, 7057639.508], [378522.306, 7056607.355], [378073.243, 7056269.757], [377760.852, 7056850.974], [376696.55, 7056952.339], [374573.093, 7055427.188], [375044.408, 7054493.481], [374730.238, 7054179.076], [373933.57, 7053973.293], [371310.62, 7051260.955], [367615.541, 7055326.944], [366929.68, 7054703.574], [366624.328, 7055038.96], [366131.198, 7054589.954], [365452.915, 7054213.527], [365066.24, 7054638.952], [364689.502, 7054297.312], [364155.185, 7054892.655], [363600.898, 7054727.796], [363611.719, 7055184.089], [364320.52, 7055825.039], [364123.423, 7056043.226], [364642.616, 7056512.058], [364539.532, 7056846.879], [361831.441, 7059842.605], [362726.85, 7060697.021], [360611.099, 7063021.249], [359478.022, 7063876.663], [351298.905, 7073363.513], [352851.228, 7074739.614], [350991.082, 7077125.887], [351994.219, 7078215.353], [352255.918, 7078854.465], [351792.818, 7079300.908], [352756.71, 7080302.535], [352777.808, 7080986.915], [353235.56, 7081697.494], [353629.222, 7082033.34], [353566.919, 7081440.778], [353712.687, 7081317.911], [357570.565, 7085428.766], [358071.505, 7085882.339], [359757.705, 7085237.115], [360517.07, 7084883.562], [361911.194, 7085791.207], [361906.771, 7086111.432], [361578.607, 7085863.272], [361516.454, 7086328.559], [361427.181, 7086614.167], [361639.221, 7087219.811], [361931.506, 7087351.616], [362467.851, 7086740.214]]]}}, {\\\"id\\\": \\\"140\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kihni\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 37.4, \\\"freshwarea\\\": 33.39, \\\"gml_id\\\": 1601100527, \\\"landarea\\\": 357.11, \\\"namefin\\\": \\\"Kihni\\\\u00f6\\\", \\\"nameswe\\\": \\\"Kihni\\\\u00f6\\\", \\\"natcode\\\": \\\"250\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 390.5}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[304928.165, 6916471.996], [304770.712, 6916054.671], [311248.686, 6904814.865], [313738.511, 6896936.1], [311165.511, 6897849.174], [310524.506, 6896577.965], [308740.105, 6894433.08], [307300.736, 6891993.291], [306598.599, 6891659.57], [306556.562, 6888949.323], [305767.405, 6889360.707], [305688.692, 6889975.799], [304702.423, 6889676.482], [304304.449, 6889186.754], [303425.555, 6889505.103], [300753.285, 6889450.293], [298515.309, 6889387.86], [298498.932, 6890041.777], [297695.621, 6891181.07], [297277.857, 6892167.089], [297686.953, 6892231.556], [297826.319, 6893772.822], [296832.092, 6893304.118], [296523.958, 6893533.308], [296287.523, 6894928.401], [295864.907, 6895313.285], [295684.346, 6896457.368], [294569.222, 6897911.658], [294280.345, 6898732.776], [294286.318, 6901761.643], [293408.32, 6901765.473], [293429.874, 6903266.368], [292847.171, 6902990.773], [292281.129, 6912796.944], [300261.951, 6915694.297], [304153.954, 6917135.548], [304928.165, 6916471.996]]]}}, {\\\"id\\\": \\\"141\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lapinj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 33.5, \\\"freshwarea\\\": 9.43, \\\"gml_id\\\": 1601100630, \\\"landarea\\\": 329.88, \\\"namefin\\\": \\\"Lapinj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Lapptr\\\\u00e4sk\\\", \\\"natcode\\\": \\\"407\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 339.31}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[460274.292, 6736314.562], [460623.053, 6735597.921], [460949.499, 6735589.409], [461543.239, 6735028.71], [461849.399, 6735056.552], [461845.446, 6733023.196], [463515.285, 6730882.573], [463148.947, 6729190.057], [463855.781, 6726862.312], [465138.786, 6726002.731], [464312.711, 6725246.074], [464374.531, 6719150.045], [464851.763, 6715615.68], [465270.518, 6712092.409], [465014.428, 6711141.991], [465962.776, 6708202.682], [463715.775, 6708444.266], [460791.156, 6707265.49], [460761.028, 6707666.214], [460382.946, 6708000.297], [460513.591, 6708501.319], [460268.123, 6709227.323], [459482.571, 6710095.309], [459031.554, 6710166.421], [458535.76, 6709483.491], [457279.551, 6711470.576], [457154.888, 6712990.061], [457025.128, 6714570.621], [456658.87, 6715432.769], [454696.644, 6717911.046], [453524.092, 6715321.262], [452025.658, 6715458.079], [450143.084, 6717622.116], [450470.228, 6720524.54], [450277.394, 6721881.086], [449391.837, 6723569.39], [445343.495, 6723529.062], [445064.563, 6723948.601], [443010.225, 6723999.737], [440101.12, 6722859.864], [442140.745, 6727798.489], [441865.744, 6729719.912], [441787.77, 6730507.194], [446949.958, 6731617.598], [451349.21, 6728185.135], [453151.057, 6728618.779], [454321.599, 6729747.732], [457124.658, 6731439.279], [457664.832, 6732883.306], [456859.041, 6736092.211], [457981.694, 6734948.182], [459287.08, 6734961.069], [459333.523, 6736399.056], [459666.316, 6736543.857], [460274.292, 6736314.562]]]}}, {\\\"id\\\": \\\"142\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Luoto\\\", \\\"elakelaisten_osuus\\\": 16.3, \\\"freshwarea\\\": 34.1, \\\"gml_id\\\": 1601100017, \\\"landarea\\\": 142.45, \\\"namefin\\\": \\\"Luoto\\\", \\\"nameswe\\\": \\\"Larsmo\\\", \\\"natcode\\\": \\\"440\\\", \\\"seawarea\\\": 676.73, \\\"totalarea\\\": 853.28}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[319537.916, 7048722.185], [318979.297, 7048990.3], [317994.96, 7048248.894], [318536.543, 7047764.98], [320194.858, 7047187.128], [320433.6, 7047433.735], [321139.149, 7046416.089], [320481.677, 7046141.494], [318228.989, 7045198.225], [318275.36, 7045699.918], [318117.246, 7046230.089], [317682.309, 7045880.143], [316957.564, 7046416.67], [316419.764, 7045710.7], [316054.436, 7045843.294], [315910.222, 7045589.947], [316258.572, 7045357.717], [316136.27, 7044336.51], [314614.668, 7043683.354], [314746.145, 7043972.282], [314624.085, 7044236.963], [314470.522, 7044519.893], [314174.623, 7044211.758], [312524.269, 7046138.224], [314116.611, 7047525.918], [314305.278, 7047056.017], [314763.864, 7046574.266], [314518.82, 7046188.536], [314597.499, 7045388.974], [314840.118, 7045252.484], [315261.712, 7045582.075], [314940.782, 7046105.04], [315125.296, 7046326.801], [315525.485, 7045985.327], [315963.194, 7046377.232], [316376.626, 7046067.744], [316387.994, 7046472.128], [316878.68, 7046824.546], [317324.235, 7046404.358], [318488.075, 7047176.942], [317320.359, 7048352.836], [318859.594, 7049696.54], [319537.916, 7048722.185]]], [[[291807.56, 7098121.415], [294514.867, 7091683.132], [294511.641, 7091683.074], [294292.616, 7091679.163], [294288.648, 7091147.349], [294467.242, 7091024.318], [294625.992, 7090960.817], [294685.523, 7090845.724], [294814.535, 7090891.257], [294820.461, 7090893.349], [295048.765, 7090201.471], [295341.074, 7090096.11], [295350.159, 7089325.653], [295407.502, 7089166.136], [295547.431, 7089121.056], [295771.153, 7088651.754], [295613.176, 7088597.811], [295613.005, 7088597.752], [296784.793, 7085450.62], [296965.458, 7085083.322], [296912.295, 7084548.425], [297574.143, 7082650.797], [296771.245, 7081578.462], [296048.421, 7079638.589], [297122.559, 7079319.902], [297181.061, 7079155.977], [297297.234, 7079120.232], [297403.704, 7079236.489], [298918.854, 7078786.958], [299168.969, 7078795.357], [299315.016, 7078590.46], [299015.297, 7078375.488], [298921.962, 7078310.943], [294882.065, 7075420.622], [294208.135, 7074306.894], [291766.748, 7069903.87], [291498.295, 7069655.198], [290807.544, 7069933.92], [290806.663, 7069938.23], [290757.273, 7070179.983], [290484.751, 7070259.358], [290015.618, 7070303.206], [290155.115, 7070983.76], [289516.992, 7071270.314], [289617.688, 7070483.6], [289435.348, 7070664.523], [289398.751, 7070690.062], [289204.199, 7070825.828], [289169.619, 7070878.276], [289156.37, 7070918.632], [289204.199, 7071035.358], [289439.99, 7071147.643], [289408.071, 7071324.13], [289376.006, 7071501.427], [289200.53, 7072188.182], [287668.601, 7073025.132], [287149.412, 7073133.589], [286906.082, 7072474.684], [286325.705, 7071984.193], [286300.911, 7072121.619], [286141.714, 7072073.626], [284472.631, 7072872.823], [284267.578, 7073474.751], [283539.973, 7073871.627], [283360.471, 7073342.797], [282113.87, 7073902.962], [282313.122, 7073920.475], [282410.169, 7074383.183], [281760.299, 7074655.262], [281557.539, 7074374.518], [281519.526, 7074158.538], [281519.413, 7074157.894], [281228.16, 7074278.207], [281227.489, 7074279.12], [281051.506, 7074518.356], [280872.19, 7074425.823], [280871.578, 7074425.507], [277854.121, 7075671.98], [258909.03, 7087671.558], [260193.135, 7089205.321], [264816.605, 7098922.614], [265172.03, 7099627.478], [265557.509, 7100328.414], [265835.15, 7100798.916], [266136.611, 7101281.791], [267955.773, 7104064.432], [269009.719, 7105592.531], [269376.234, 7106089.28], [269757.326, 7106576.967], [291807.56, 7098121.415]], [[283302.135, 7078473.119], [283002.667, 7077574.05], [282785.246, 7077234.003], [282165.677, 7077737.917], [282154.752, 7078056.88], [282463.885, 7078749.965], [283302.135, 7078473.119]]]]}}, {\\\"id\\\": \\\"143\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Puolanka\\\", \\\"elakelaisten_osuus\\\": 46.6, \\\"freshwarea\\\": 137.41, \\\"gml_id\\\": 1601100323, \\\"landarea\\\": 2461.28, \\\"namefin\\\": \\\"Puolanka\\\", \\\"nameswe\\\": \\\"Puolanka\\\", \\\"natcode\\\": \\\"620\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2598.69}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[554481.148, 7232071.985], [554543.858, 7232278.434], [556083.804, 7231796.448], [557192.335, 7226562.044], [556554.953, 7223754.046], [553364.488, 7220858.805], [553077.824, 7217515.782], [554319.663, 7216007.949], [554384.994, 7216264.934], [554695.624, 7216202.344], [554486.911, 7215803.646], [556210.299, 7213713.631], [556678.318, 7213674.694], [556561.484, 7213288.808], [559441.265, 7209798.393], [560402.692, 7203452.755], [559908.791, 7203137.462], [560548.555, 7202491.651], [561263.377, 7197755.394], [554520.03, 7187574.191], [550152.366, 7187538.985], [550531.818, 7181480.342], [549870.942, 7181227.127], [549859.964, 7181071.38], [550305.433, 7180938.683], [550550.891, 7181143.788], [551354.01, 7167975.529], [543017.706, 7164416.606], [541695.419, 7161633.333], [539852.48, 7159031.591], [536739.54, 7156933.269], [536867.191, 7156638.736], [536251.525, 7156219.359], [534324.424, 7156851.226], [532635.137, 7155938.422], [529688.209, 7153332.716], [528344.347, 7154880.994], [527949.288, 7154662.759], [527010.103, 7154700.239], [526933.446, 7153623.525], [526181.794, 7153705.651], [525683.52, 7153129.324], [523600.675, 7155419.797], [523460.871, 7157756.166], [523240.907, 7157918.006], [523541.993, 7157991.07], [523525.487, 7158172.529], [523456.238, 7158236.792], [523027.953, 7158074.37], [522994.41, 7157786.937], [522612.858, 7157172.607], [522076.378, 7157071.896], [521905.18, 7156748.02], [521009.059, 7157327.187], [521000.98, 7157564.453], [521613.402, 7157577.726], [520038.984, 7159302.402], [519740.598, 7160977.558], [519280.693, 7161085.027], [519019.269, 7160802.864], [518106.703, 7161405.013], [518330.052, 7161541.374], [518604.214, 7162080.348], [516732.191, 7163577.434], [516902.643, 7163959.97], [517633.771, 7164351.08], [517083.438, 7164547.733], [516749.775, 7164770.417], [516137.289, 7164990.543], [515603.442, 7165358.478], [515338.866, 7165386.293], [514733.515, 7165699.284], [514260.472, 7166134.855], [513901.992, 7166246.429], [513761.141, 7166622.91], [513426.156, 7166635.458], [513101.718, 7166734.505], [512555.682, 7166573.413], [512402.468, 7166670.986], [512351.843, 7167592.245], [512858.386, 7168095.486], [512747.554, 7170702.664], [511851.87, 7174168.061], [511967.752, 7174431.235], [511698.256, 7174538.939], [511426.447, 7175081.082], [512374.768, 7175911.091], [511710.946, 7176309.508], [511155.356, 7175821.62], [511247.925, 7174962.066], [510904.106, 7174902.557], [510845.614, 7175759.17], [510944.288, 7176111.38], [510753.236, 7176443.67], [510972.573, 7176879.868], [512807.756, 7176427.243], [513309.622, 7176924.528], [513309.733, 7176979.673], [509419.203, 7183644.1], [505623.994, 7187816.915], [507026.469, 7190106.11], [507390.372, 7190073.213], [508762.594, 7189690.243], [509520.2, 7189056.111], [509956.969, 7188971.666], [510130.064, 7189328.663], [516827.553, 7187548.477], [517799.928, 7189652.096], [517550.028, 7189707.345], [517118.804, 7191004.398], [518328.386, 7191517.877], [518648.894, 7191427.506], [519089.725, 7192382.917], [517507.176, 7196237.904], [519169.724, 7199968.623], [518887.991, 7201332.921], [517810.522, 7201975.067], [518601.067, 7202443.564], [518218.533, 7203942.415], [516054.102, 7206745.027], [515212.558, 7207157.508], [514968.394, 7208139.192], [512366.127, 7211527.24], [515503.419, 7218599.02], [521288.698, 7218248.539], [526884.205, 7219102.23], [528499.561, 7220216.185], [528357.565, 7220537.026], [528871.692, 7220739.673], [528954.901, 7220528.329], [531310.618, 7222140.256], [532943.52, 7221652.841], [533551.181, 7221762.978], [534758.896, 7221110.698], [536588.049, 7220563.082], [537205.274, 7221759.158], [537436.874, 7221714.292], [537001.747, 7220439.024], [539261.493, 7219764.172], [540112.195, 7219684.252], [540189.565, 7219482.677], [542025.612, 7218946.15], [544098.808, 7228826.7], [544368.356, 7231717.778], [544482.124, 7231907.344], [546079.16, 7232934.514], [546561.028, 7233474.266], [554481.148, 7232071.985]]]}}, {\\\"id\\\": \\\"144\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"N\\\\u00e4rpi\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 31.4, \\\"freshwarea\\\": 7.75, \\\"gml_id\\\": 1601100185, \\\"landarea\\\": 977.71, \\\"namefin\\\": \\\"N\\\\u00e4rpi\\\\u00f6\\\", \\\"nameswe\\\": \\\"N\\\\u00e4rpes\\\", \\\"natcode\\\": \\\"545\\\", \\\"seawarea\\\": 1348.68, \\\"totalarea\\\": 2334.14}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[220702.666, 6970946.939], [220369.98, 6970662.279], [220647.97, 6970190.435], [221820.45, 6970818.294], [222157.229, 6969979.705], [225407.011, 6969905.637], [225316.532, 6968333.54], [225826.298, 6968364.419], [225835.875, 6968347.423], [226092.496, 6968542.149], [226129.857, 6968721.814], [226855.786, 6968232.571], [227513.795, 6968132.728], [227556.6, 6968569.653], [228088.379, 6968679.549], [228187.239, 6968346.957], [227994.262, 6967923.382], [228945.182, 6967606.74], [230402.056, 6970713.036], [231118.654, 6970711.502], [231031.785, 6969607.382], [231637.866, 6965358.679], [233606.195, 6962292.145], [231363.016, 6960481.964], [231024.692, 6960669.753], [231378.207, 6961746.909], [231414.678, 6962386.182], [231163.641, 6962505.278], [230447.534, 6960169.17], [229832.798, 6959690.925], [230098.42, 6959457.831], [229069.084, 6958625.229], [228317.573, 6958605.255], [228581.774, 6958234.132], [226534.377, 6956810.068], [226075.453, 6956548.487], [225565.632, 6954822.793], [224375.245, 6953707.543], [222606.645, 6953265.494], [222613.453, 6949969.791], [222360.69, 6948029.851], [223234.279, 6947987.379], [223310.661, 6947484.256], [222504.412, 6944931.612], [218740.744, 6935882.546], [217419.419, 6937062.217], [217058.599, 6936696.917], [217977.842, 6936162.885], [217811.732, 6935874.027], [218719.864, 6935511.963], [218977.094, 6933299.884], [215136.367, 6928430.564], [211146.583, 6924964.769], [207363.251, 6922635.02], [206946.501, 6922330.874], [206795.065, 6921916.981], [206331.241, 6921854.239], [206220.164, 6921394.958], [202884.344, 6918063.091], [196226.57, 6914506.107], [174060.771, 6912686.247], [173652.367, 6917659.555], [195818.395, 6919478.746], [200873.402, 6922174.185], [203692.397, 6926277.615], [203767.375, 6928456.071], [203138.056, 6930061.462], [202301.553, 6931484.329], [201845.874, 6931728.17], [201562.449, 6931503.617], [200723.47, 6927928.049], [195357.709, 6925093.925], [173191.31, 6923274.095], [172554.38, 6931030.284], [165571.9, 6964248.198], [196738.526, 6964268.011], [196943.302, 6963832.484], [198369.421, 6963987.223], [201572.233, 6964639.084], [201873.557, 6964380.894], [202472.924, 6964448.347], [204013.334, 6963814.176], [203929.582, 6962300.586], [204441.356, 6962338.016], [205059.947, 6963192.806], [206232.34, 6963404.521], [206751.967, 6963204.098], [207029.228, 6962611.7], [207666.866, 6961981.637], [207564.2, 6961622.67], [208119.84, 6961636.346], [208463.25, 6963197.29], [208988.654, 6962794.684], [209337.541, 6963129.215], [209243.561, 6963642.885], [209963.537, 6963446.786], [210137.175, 6966195.735], [210228.17, 6966476.101], [210776.759, 6967190.005], [211356.009, 6966713.72], [211840.708, 6966978.485], [212900.027, 6967883.301], [212057.982, 6968825.915], [211747.403, 6968498.363], [211342.133, 6969221.706], [212945.489, 6970117.193], [212960.376, 6971155.43], [213838.628, 6971105.629], [214057.559, 6971107.767], [220633.07, 6971179.744], [220702.666, 6970946.939]]]}}, {\\\"id\\\": \\\"145\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nakkila\\\", \\\"elakelaisten_osuus\\\": 32.0, \\\"freshwarea\\\": 1.98, \\\"gml_id\\\": 1601100493, \\\"landarea\\\": 182.9, \\\"namefin\\\": \\\"Nakkila\\\", \\\"nameswe\\\": \\\"Nakkila\\\", \\\"natcode\\\": \\\"531\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 184.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[237821.514, 6819564.74], [242061.019, 6817512.722], [239081.692, 6816384.633], [236183.252, 6811797.216], [236480.534, 6810752.991], [237369.472, 6810497.411], [238423.304, 6810593.775], [238975.168, 6810055.049], [237606.857, 6809119.709], [237122.207, 6809510.526], [236374.885, 6809231.085], [236822.296, 6808826.994], [235301.15, 6808261.888], [233500.552, 6808192.746], [232617.285, 6807931.558], [233394.317, 6805753.473], [232817.34, 6805578.279], [232204.822, 6805676.003], [231264.332, 6805889.148], [230405.554, 6805778.096], [230387.858, 6806216.264], [229967.165, 6806350.075], [229400.257, 6805801.004], [229242.546, 6806718.259], [229000.519, 6806634.365], [228415.784, 6806848.099], [226487.056, 6807892.814], [225662.856, 6806606.062], [220925.877, 6811580.418], [220859.776, 6811818.054], [222220.992, 6811753.405], [217790.058, 6817656.44], [222549.467, 6816618.906], [222569.956, 6816742.727], [222798.712, 6816662.929], [226216.288, 6817923.852], [229447.931, 6817717.475], [230542.474, 6818167.522], [231299.695, 6817282.896], [231610.445, 6817887.41], [233581.064, 6819535.591], [234444.788, 6819634.739], [234844.966, 6819765.636], [237821.514, 6819564.74]]]}}, {\\\"id\\\": \\\"146\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"J\\\\u00e4mij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 35.3, \\\"freshwarea\\\": 9.97, \\\"gml_id\\\": 1601100307, \\\"landarea\\\": 214.36, \\\"namefin\\\": \\\"J\\\\u00e4mij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"J\\\\u00e4mij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"181\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 224.33}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[272023.804, 6875965.587], [272598.825, 6874051.206], [273437.465, 6872987.396], [274850.954, 6872494.898], [275315.93, 6872759.145], [275323.976, 6872333.451], [275885.414, 6872139.68], [276267.698, 6871570.627], [276198.02, 6871124.782], [275680.971, 6871216.549], [275669.397, 6870908.75], [276133.015, 6870721.659], [275910.319, 6869265.813], [278323.469, 6868086.654], [278572.568, 6866949.817], [275792.774, 6865943.376], [276268.01, 6864631.834], [277336.369, 6865243.966], [277955.806, 6863841.968], [278339.024, 6863784.611], [278502.729, 6862900.782], [280289.516, 6860650.004], [279922.315, 6858975.628], [279101.868, 6858497.504], [279484.233, 6857934.596], [278571.112, 6855468.919], [277644.238, 6854132.246], [277107.858, 6853831.966], [276210.864, 6854399.776], [274554.987, 6853710.661], [274760.022, 6852913.667], [273953.067, 6852257.372], [272934.326, 6852661.663], [272629.757, 6852498.621], [272494.73, 6852837.498], [271012.094, 6853427.434], [271821.964, 6855863.802], [266868.261, 6858846.038], [265239.556, 6860206.001], [266478.619, 6864323.015], [266260.175, 6864968.471], [266463.337, 6865695.771], [266266.878, 6866139.203], [266234.668, 6867922.215], [266159.771, 6869318.258], [264565.804, 6870028.141], [264506.398, 6870917.548], [265591.546, 6872077.463], [267047.883, 6874113.449], [267551.776, 6873619.128], [267668.031, 6873710.762], [267574.754, 6874276.135], [269192.446, 6875092.514], [269588.736, 6874860.816], [269858.712, 6875294.584], [270396.131, 6874960.139], [270224.89, 6874487.661], [271125.664, 6873958.489], [270958.37, 6876045.398], [271747.796, 6876503.156], [272023.804, 6875965.587]]]}}, {\\\"id\\\": \\\"147\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Inari\\\", \\\"elakelaisten_osuus\\\": 31.1, \\\"freshwarea\\\": 2277.33, \\\"gml_id\\\": 1601100487, \\\"landarea\\\": 15056.29, \\\"namefin\\\": \\\"Inari\\\", \\\"nameswe\\\": \\\"Enare\\\", \\\"natcode\\\": \\\"148\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 17333.62}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[554063.014, 7746246.426], [558386.737, 7744294.652], [565156.163, 7741196.677], [574110.447, 7736900.35], [582627.154, 7733342.157], [584267.973, 7727117.443], [585669.319, 7723639.877], [586616.03, 7721266.982], [589360.096, 7714494.339], [589818.849, 7713320.444], [590499.865, 7711661.591], [591393.468, 7709444.233], [590882.806, 7708368.185], [589891.699, 7706209.646], [588509.571, 7703247.35], [587138.873, 7700281.345], [585518.691, 7698096.293], [584844.551, 7697154.116], [581739.923, 7692906.697], [578621.173, 7688673.403], [577902.294, 7687714.277], [576270.076, 7685483.609], [572494.649, 7680463.163], [572620.742, 7674614.358], [572467.563, 7673292.445], [572358.296, 7672430.089], [571833.152, 7667814.046], [572043.046, 7667410.543], [573904.425, 7664025.11], [576968.0, 7661361.3], [560007.8, 7647301.7], [556836.5, 7645589.8], [559012.8, 7642293.0], [566777.3, 7642600.7], [572439.8, 7640848.7], [569068.4, 7625464.4], [558541.9, 7603716.6], [560577.601, 7595569.21], [560413.957, 7595426.777], [560012.894, 7595363.48], [559786.488, 7595107.506], [559659.54, 7594975.267], [559666.643, 7595077.155], [559540.567, 7595040.441], [559289.97, 7594967.466], [559131.374, 7594892.62], [558980.782, 7594722.061], [559044.126, 7594585.992], [559009.323, 7594395.419], [558861.816, 7594297.994], [558435.753, 7594226.372], [558266.31, 7594150.522], [558060.148, 7594055.735], [557840.376, 7594073.08], [557596.453, 7593987.977], [557435.972, 7593899.09], [557379.801, 7594001.781], [557307.139, 7593964.132], [557243.77, 7594005.082], [557121.895, 7593886.484], [556991.104, 7593818.592], [556802.324, 7593882.441], [556611.584, 7593826.968], [556390.678, 7593562.241], [556109.306, 7593421.22], [555930.342, 7593400.669], [555513.446, 7593430.098], [555413.838, 7593431.127], [555300.928, 7593316.54], [555132.15, 7593282.069], [554964.403, 7593287.809], [554870.752, 7593345.776], [554896.242, 7593418.428], [554815.592, 7593433.646], [554635.65, 7593326.597], [554457.753, 7593305.27], [554129.866, 7593379.985], [553994.814, 7593304.953], [553824.876, 7593282.011], [553860.338, 7593472.732], [553722.869, 7593505.43], [553410.197, 7593388.44], [553222.653, 7593183.534], [552890.368, 7593335.343], [552623.975, 7593373.121], [552482.77, 7593516.595], [552517.352, 7593722.957], [552398.384, 7593948.85], [552153.88, 7594082.919], [552054.45, 7594352.696], [551958.374, 7594484.09], [551901.385, 7594654.279], [551793.382, 7594867.065], [520679.447, 7581259.14], [466815.733, 7578112.381], [457691.128, 7574162.963], [439160.589, 7578248.588], [418947.929, 7588234.057], [414458.47, 7606155.54], [414700.73, 7609194.77], [415210.71, 7611781.7], [415372.969, 7611834.747], [415358.734, 7611906.325], [415475.387, 7611916.01], [415452.252, 7612004.212], [415534.382, 7612053.374], [415638.596, 7612005.637], [415725.6, 7612063.086], [415733.052, 7612162.976], [415887.19, 7612306.413], [415947.882, 7612436.643], [416129.838, 7612545.588], [416304.074, 7612475.616], [416465.565, 7612520.412], [416476.264, 7612646.498], [416559.262, 7612750.894], [416446.479, 7612820.877], [416500.845, 7612876.112], [416596.369, 7612826.478], [416665.972, 7612851.242], [416750.804, 7612807.173], [416832.481, 7612838.429], [416918.775, 7612961.505], [416939.543, 7613088.376], [417033.24, 7613030.538], [417096.141, 7613096.732], [417169.003, 7612920.678], [417243.19, 7612962.868], [417430.005, 7612949.276], [417537.004, 7612996.992], [417653.808, 7612967.199], [417683.622, 7613089.242], [417802.189, 7613079.411], [417957.364, 7612780.815], [417929.273, 7612712.992], [418017.467, 7612698.695], [418075.926, 7612598.733], [418060.144, 7612548.752], [418148.176, 7612485.106], [418169.308, 7612541.793], [418235.102, 7612513.76], [418318.099, 7612551.065], [418333.714, 7612477.901], [418448.523, 7612447.247], [418509.541, 7612534.582], [418563.46, 7612511.298], [418661.017, 7612606.579], [418752.748, 7612643.895], [418836.519, 7612601.896], [418901.558, 7612699.707], [419017.716, 7612700.466], [419124.064, 7612755.521], [419194.104, 7612755.508], [419285.841, 7612805.362], [419262.007, 7612847.772], [419297.102, 7612930.378], [419211.193, 7612946.602], [419198.786, 7613016.42], [419219.917, 7613230.516], [419304.517, 7613297.169], [419272.371, 7613417.799], [419290.925, 7613521.0], [419466.292, 7613617.926], [419515.624, 7613693.066], [419695.498, 7613750.036], [419674.255, 7613677.258], [419770.86, 7613619.6], [419770.097, 7613678.594], [419860.335, 7613735.288], [419928.368, 7613683.94], [419942.305, 7613590.008], [420013.025, 7613686.126], [420101.531, 7613745.416], [420148.498, 7613821.593], [420234.254, 7613859.06], [420402.037, 7613856.721], [420506.38, 7613918.054], [420555.542, 7614015.799], [420643.744, 7614023.897], [420707.365, 7613965.192], [420733.391, 7613907.354], [420731.657, 7613842.288], [420819.569, 7613755.242], [420931.774, 7613710.707], [420907.679, 7613636.147], [420977.466, 7613505.094], [421170.065, 7613360.212], [421291.813, 7613357.609], [421332.01, 7613300.928], [421344.734, 7613230.945], [421468.217, 7613215.907], [421479.205, 7613335.631], [421433.225, 7613370.622], [421580.007, 7613508.676], [421665.731, 7613510.3], [421756.607, 7613460.374], [421949.135, 7613589.248], [421892.454, 7613687.572], [421928.314, 7613806.139], [421851.448, 7613923.556], [421882.622, 7613998.159], [421945.826, 7614011.496], [422011.6, 7613930.778], [422089.101, 7613972.71], [422107.032, 7614036.91], [422218.234, 7614189.52], [422198.931, 7614309.635], [422221.26, 7614442.351], [422270.238, 7614502.402], [422306.86, 7614591.282], [422305.414, 7614743.684], [422360.938, 7614811.354], [422407.497, 7614935.415], [422620.628, 7614940.62], [422778.814, 7615071.045], [422853.365, 7615100.0], [422943.94, 7615183.249], [423102.412, 7615096.303], [423306.002, 7615127.146], [423385.086, 7615311.293], [423444.667, 7615347.553], [423417.134, 7615525.2], [423508.029, 7615555.151], [423574.996, 7615714.327], [423511.892, 7615782.582], [423447.243, 7615899.002], [423453.425, 7615983.999], [423530.951, 7616152.19], [423556.709, 7616364.425], [423544.603, 7616587.735], [423501.074, 7616704.154], [423405.517, 7616786.061], [423388.775, 7616852.77], [423403.972, 7617116.519], [423439.516, 7617232.938], [423447.319, 7617415.438], [423415.145, 7617451.902], [423423.726, 7617514.104], [423473.06, 7617554.856], [423389.622, 7617783.655], [423433.85, 7617878.914], [423414.274, 7618067.968], [423464.184, 7618303.207], [423406.579, 7618367.774], [423396.503, 7618439.121], [423428.03, 7618507.192], [423401.396, 7618557.859], [423376.927, 7618782.199], [423322.934, 7618856.811], [423329.371, 7619028.403], [423313.609, 7619143.382], [423343.444, 7619211.149], [423350.912, 7619414.524], [423368.684, 7619481.49], [423300.688, 7619530.171], [423246.598, 7619598.426], [423247.371, 7619689.605], [423204.358, 7619826.888], [423207.448, 7619933.262], [423247.114, 7620055.35], [423310.396, 7620159.642], [423345.297, 7620409.245], [423542.187, 7621285.017], [423541.165, 7621468.815], [423496.114, 7621819.956], [423513.968, 7621970.708], [423448.388, 7621960.364], [423421.761, 7622016.643], [423472.315, 7622198.819], [423462.463, 7622367.644], [423521.611, 7622431.776], [423583.941, 7622636.316], [423632.125, 7622660.868], [423649.904, 7622741.612], [423614.805, 7622802.732], [423626.303, 7622897.135], [423665.636, 7622937.737], [423761.614, 7622961.943], [423801.796, 7623024.822], [423874.413, 7623344.341], [423935.323, 7623526.582], [424058.997, 7623616.744], [424210.271, 7623623.92], [424275.693, 7623684.512], [424270.786, 7623840.563], [424312.541, 7623943.439], [424277.62, 7624125.8], [424251.471, 7624207.526], [424221.114, 7624198.327], [424162.723, 7624252.665], [424031.868, 7624291.762], [423952.962, 7624787.986], [423991.812, 7625082.33], [424024.255, 7625183.545], [424022.294, 7625309.075], [424039.015, 7625376.432], [424028.121, 7625646.329], [424075.323, 7625833.924], [424078.348, 7625961.612], [424189.696, 7626074.775], [424155.807, 7626322.884], [424174.556, 7626417.878], [424152.736, 7626544.826], [424177.587, 7626699.284], [424171.431, 7626819.129], [424044.45, 7626984.308], [423999.144, 7627110.71], [423997.546, 7627187.308], [424015.897, 7627192.893], [424069.862, 7627297.167], [424079.727, 7627380.396], [424130.791, 7627525.612], [424106.773, 7627605.186], [424126.798, 7627802.478], [424102.096, 7627873.225], [424116.424, 7627964.449], [424156.698, 7627979.58], [424170.585, 7628093.992], [424208.274, 7628169.368], [424224.142, 7628458.968], [424253.896, 7628542.278], [424291.585, 7628494.672], [424364.555, 7628622.435], [424427.594, 7628687.337], [424469.849, 7628795.505], [424599.362, 7628965.846], [424635.04, 7629231.495], [424647.15, 7629489.607], [424547.468, 7629545.962], [424529.616, 7629605.469], [424601.157, 7629677.806], [424612.927, 7629910.938], [424641.414, 7630011.03], [424675.723, 7630078.851], [424749.127, 7630161.033], [424761.096, 7630232.844], [424794.798, 7630273.27], [424831.547, 7630363.616], [424833.056, 7630409.908], [424869.612, 7630512.515], [424871.799, 7630542.242], [424827.016, 7630577.967], [424813.428, 7630730.429], [424843.619, 7630788.294], [424925.749, 7630829.994], [424900.549, 7630886.851], [424934.27, 7631009.832], [424968.981, 7631259.754], [424868.81, 7631351.006], [424948.975, 7631477.214], [424990.918, 7631771.465], [425118.686, 7631905.684], [425151.596, 7632008.286], [425238.578, 7632024.215], [425325.514, 7632315.16], [425328.232, 7632352.222], [425287.09, 7632394.384], [425309.044, 7632523.224], [425336.791, 7632576.784], [425408.288, 7632619.232], [425430.358, 7632721.973], [425487.689, 7632846.616], [425601.36, 7632978.154], [425623.945, 7633038.811], [425630.507, 7633169.938], [425683.555, 7633182.815], [425765.262, 7633255.628], [425878.19, 7633314.35], [425952.274, 7633275.401], [425975.967, 7633319.887], [426088.718, 7633427.801], [426079.928, 7633455.278], [426225.586, 7633584.503], [426375.064, 7633837.034], [426435.076, 7633894.466], [426788.051, 7634080.956], [426919.691, 7634124.836], [426986.575, 7634124.022], [427162.323, 7634205.499], [427272.394, 7634213.506], [427293.963, 7634302.938], [427331.828, 7634338.715], [427346.317, 7634405.7], [427397.208, 7634493.299], [427492.711, 7634626.228], [427583.052, 7634717.215], [427707.055, 7634942.659], [427685.51, 7635125.735], [427711.297, 7635201.111], [427808.598, 7635234.719], [428021.203, 7635387.024], [428225.761, 7635479.947], [428309.004, 7635609.65], [428338.563, 7635694.57], [428384.017, 7635741.956], [428511.625, 7635716.769], [428554.708, 7635758.397], [428561.313, 7635852.28], [428618.097, 7635918.099], [428676.561, 7635948.913], [428732.96, 7636046.513], [428756.832, 7636371.736], [428802.273, 7636422.989], [428788.452, 7636467.239], [428854.271, 7636611.783], [428915.428, 7636621.036], [428900.731, 7636690.508], [428906.539, 7636785.366], [428966.549, 7637024.122], [429001.496, 7637077.982], [429070.441, 7637138.338], [429061.406, 7637191.896], [429086.599, 7637328.939], [429083.345, 7637358.381], [429045.496, 7637411.14], [429048.498, 7637443.559], [429061.936, 7637462.879], [429137.37, 7637480.287], [429197.813, 7637623.899], [429244.022, 7637691.994], [429368.987, 7637817.317], [429456.323, 7637834.605], [429471.981, 7637937.235], [429488.587, 7637956.564], [429578.928, 7638010.769], [429669.1, 7638025.712], [429980.944, 7638377.939], [430009.337, 7638437.305], [430126.134, 7638533.455], [430257.128, 7638730.267], [430485.562, 7638883.202], [430734.001, 7639016.132], [430770.782, 7639031.62], [430852.734, 7639020.006], [430888.871, 7639034.202], [430943.722, 7639076.791], [430973.405, 7639132.931], [431043.502, 7639167.856], [431165.056, 7639299.416], [431119.901, 7639358.372], [431086.329, 7639486.549], [431140.209, 7639531.479], [431190.22, 7639607.864], [431334.594, 7639716.193], [431427.688, 7639811.13], [431865.842, 7640015.689], [431921.337, 7640020.852], [431967.555, 7639980.694], [432038.638, 7640004.872], [432068.466, 7639984.072], [432118.799, 7640022.789], [432127.186, 7640060.216], [432263.486, 7640157.188], [432354.02, 7640190.65], [432485.606, 7640285.13], [432544.407, 7640299.116], [432650.985, 7640356.327], [432732.226, 7640477.246], [432823.598, 7640503.839], [432983.158, 7640655.216], [433182.992, 7640787.575], [433245.75, 7640761.089], [433321.752, 7640781.241], [433377.601, 7640854.939], [433444.791, 7640910.241], [433734.575, 7641079.488], [433811.727, 7641205.579], [433933.701, 7641206.86], [434033.397, 7641338.581], [434138.265, 7641384.831], [434396.697, 7641559.392], [434515.023, 7641610.018], [434560.646, 7641671.508], [434594.366, 7641824.243], [434680.556, 7641884.982], [434674.221, 7641945.335], [434955.771, 7642091.105], [435071.077, 7642167.629], [435244.275, 7642237.182], [435559.749, 7642400.868], [435728.411, 7642550.847], [435746.296, 7642628.87], [435613.934, 7642760.487], [435615.896, 7642859.052], [435562.709, 7642984.516], [435640.837, 7643049.984], [435788.412, 7643082.709], [436010.023, 7643204.766], [436149.602, 7643225.127], [436490.902, 7643042.994], [436549.44, 7643061.097], [436616.9, 7643240.228], [436697.658, 7643318.334], [436867.151, 7643371.832], [436907.986, 7643332.53], [437049.214, 7643335.694], [437511.581, 7643665.791], [437625.55, 7643719.246], [437929.524, 7643808.239], [438022.784, 7643978.188], [438381.611, 7644198.956], [438637.996, 7644315.396], [438741.771, 7644476.146], [438852.037, 7644485.971], [439015.698, 7644529.744], [439201.747, 7644459.299], [439264.044, 7644472.081], [439353.576, 7644451.733], [439448.38, 7644391.004], [439512.291, 7644300.478], [439536.742, 7644134.298], [439475.3, 7643985.459], [439492.778, 7643894.354], [439626.608, 7643786.787], [439805.039, 7643678.407], [439934.529, 7643657.59], [440123.092, 7643567.016], [440220.052, 7643278.593], [440357.209, 7643071.769], [440486.98, 7642999.733], [440576.624, 7642899.046], [440679.343, 7642878.777], [440777.242, 7642832.354], [440936.145, 7642584.467], [441306.389, 7642418.148], [441467.077, 7642383.139], [441595.591, 7642396.432], [441821.764, 7642492.302], [441989.141, 7642469.526], [442070.711, 7642394.312], [442192.007, 7642374.714], [442277.281, 7642315.073], [442508.223, 7642296.323], [442616.277, 7642237.528], [442855.16, 7642161.785], [443088.218, 7642026.189], [443238.646, 7641997.585], [443516.196, 7642075.977], [443717.202, 7642161.984], [443824.468, 7642263.482], [443889.756, 7642454.511], [444058.584, 7642615.188], [444139.559, 7642657.392], [444197.889, 7642722.711], [444302.128, 7642788.241], [444478.575, 7642802.78], [444614.213, 7642840.829], [444686.082, 7642909.176], [444709.212, 7642975.262], [444817.591, 7643013.592], [444871.781, 7643080.998], [444876.934, 7643148.041], [444851.956, 7643243.567], [444827.144, 7643488.623], [444864.221, 7643545.828], [444953.207, 7643630.046], [445111.049, 7643891.176], [445196.858, 7644114.699], [445394.427, 7644192.032], [445513.604, 7644281.547], [445644.315, 7644312.162], [445747.408, 7644394.77], [445914.604, 7644423.185], [445954.293, 7644488.121], [445923.194, 7644587.737], [445927.81, 7644703.699], [446004.614, 7644857.835], [446093.693, 7645675.498], [446157.159, 7645823.434], [446225.487, 7645896.529], [446302.29, 7646141.24], [446303.88, 7646242.408], [446398.162, 7646386.48], [446431.389, 7646547.16], [446653.996, 7646888.613], [446753.045, 7647138.089], [446716.215, 7647219.906], [446757.848, 7647332.911], [446947.965, 7647664.588], [447065.145, 7647837.801], [447164.95, 7648124.226], [447437.906, 7648575.675], [447521.325, 7648751.715], [447532.98, 7648862.737], [447581.437, 7648958.424], [447595.545, 7649090.301], [447504.151, 7649174.948], [447578.37, 7649508.014], [447697.366, 7649725.15], [447842.124, 7649729.444], [447890.581, 7649822.678], [447899.168, 7649941.674], [448071.528, 7650263.699], [448144.521, 7650484.516], [448187.457, 7650551.375], [448256.769, 7650595.538], [448327.308, 7650962.34], [448477.586, 7651208.306], [448467.158, 7651345.09], [448419.929, 7651459.179], [448514.39, 7651787.338], [448445.078, 7651949.884], [448422.381, 7652059.066], [448485.56, 7652147.393], [448492.921, 7652236.333], [448449.984, 7652306.872], [448453.051, 7652405.626], [448421.503, 7652522.526], [448425.847, 7652590.942], [448488.628, 7652803.711], [448595.355, 7652954.602], [448651.174, 7652990.792], [448728.46, 7653140.457], [448774.463, 7653273.561], [448786.117, 7653370.475], [448864.63, 7653485.177], [448871.902, 7653625.768], [448900.206, 7653738.503], [449029.016, 7653907.182], [449205.057, 7654200.993], [449531.527, 7654418.059], [449627.373, 7654548.328], [449622.769, 7654621.159], [449643.624, 7654656.735], [449683.494, 7654683.11], [449842.973, 7654899.021], [450055.203, 7655082.421], [450145.22, 7655222.479], [450261.511, 7655355.755], [450460.035, 7655263.982], [450499.291, 7655291.584], [450598.659, 7655502.587], [450710.294, 7655663.907], [450759.365, 7655835.04], [451000.423, 7656317.158], [451050.721, 7656483.383], [451061.148, 7656635.503], [451140.225, 7656845.975], [451139.048, 7657063.029], [451096.111, 7657199.199], [451091.878, 7657396.069], [451010.238, 7657553.734], [450950.74, 7657806.447], [450909.643, 7657898.455], [450879.788, 7658074.636], [450816.712, 7658135.781], [450618.229, 7658212.009], [450486.424, 7658208.987], [450399.384, 7658177.284], [450341.166, 7658212.444], [450254.464, 7658340.59], [450123.684, 7658452.688], [450082.783, 7658559.744], [450120.092, 7658808.709], [450110.764, 7659001.711], [449973.123, 7659131.862], [449911.579, 7659309.899], [449907.001, 7659447.264], [449951.483, 7659645.289], [449893.996, 7659778.067], [449921.469, 7659818.73], [450079.913, 7659931.561], [450139.464, 7660018.377], [450150.943, 7660182.68], [450103.59, 7660354.874], [450099.284, 7660522.046], [450166.545, 7660628.684], [450267.652, 7660731.989], [450282.959, 7660811.19], [450171.033, 7660917.377], [450122.962, 7661013.518], [450139.07, 7661057.289], [450222.593, 7661121.031], [450248.52, 7661171.364], [450250.068, 7661259.503], [450192.92, 7661459.518], [450079.55, 7661552.864], [450066.606, 7661600.829], [449956.638, 7661789.215], [449876.268, 7661986.076], [449775.305, 7662166.168], [449508.251, 7662810.175], [449473.083, 7662960.736], [449360.987, 7663142.068], [449339.007, 7663262.958], [449171.286, 7663753.943], [449166.006, 7663844.047], [449212.259, 7663912.1], [449399.657, 7664012.046], [449460.994, 7664076.209], [449421.738, 7664262.533], [449375.273, 7664375.134], [449382.966, 7664554.268], [449322.522, 7664845.501], [449321.423, 7664941.112], [449244.341, 7665064.242], [449234.444, 7665318.535], [449256.582, 7665554.348], [449351.096, 7665856.569], [449367.58, 7666042.298], [449460.809, 7666172.351], [449492.754, 7666288.558], [449467.752, 7666346.43], [449506.053, 7666455.518], [449467.588, 7666699.493], [449366.692, 7666815.183], [449264.49, 7666844.476], [449185.339, 7666972.833], [449072.374, 7667025.148], [449070.985, 7667129.317], [449125.616, 7667354.786], [449129.783, 7667495.993], [449157.674, 7667607.256], [449169.135, 7667780.72], [449205.247, 7667864.983], [449287.138, 7667967.791], [449411.314, 7668172.234], [449565.5, 7668600.584], [449579.587, 7668763.431], [449567.754, 7668998.404], [449585.785, 7669134.766], [449713.841, 7669450.366], [449770.049, 7669656.836], [449886.503, 7669790.564], [449887.733, 7669853.355], [449942.419, 7669922.887], [450013.913, 7670066.872], [450047.473, 7670177.924], [450040.761, 7670238.332], [450066.766, 7670403.459], [450004.15, 7670487.281], [449986.455, 7670688.639], [450041.529, 7670800.939], [450052.345, 7670983.906], [449891.009, 7671266.921], [449883.728, 7671333.783], [509298.018, 7705016.705], [512337.242, 7708583.356], [534552.519, 7717650.877], [541847.919, 7728142.119], [551149.248, 7749613.176], [554063.014, 7746246.426]]]}}, {\\\"id\\\": \\\"148\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lemland\\\", \\\"elakelaisten_osuus\\\": 19.4, \\\"freshwarea\\\": 0.88, \\\"gml_id\\\": 1601100648, \\\"landarea\\\": 113.21, \\\"namefin\\\": \\\"Lemland\\\", \\\"nameswe\\\": \\\"Lemland\\\", \\\"natcode\\\": \\\"417\\\", \\\"seawarea\\\": 851.21, \\\"totalarea\\\": 965.3}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[119968.06, 6685070.517], [121754.315, 6681069.97], [122598.066, 6681210.756], [123220.42, 6680609.177], [123436.443, 6680098.927], [123432.357, 6679629.172], [123445.359, 6679598.236], [123491.246, 6679489.058], [123452.37, 6679204.528], [123294.274, 6679078.871], [123520.083, 6678817.063], [123876.333, 6676778.549], [124583.15, 6675227.705], [124339.175, 6670082.241], [122213.966, 6667083.38], [122021.539, 6666252.477], [121004.739, 6665420.552], [119981.542, 6665771.016], [118628.437, 6665346.325], [118435.609, 6664672.148], [117472.934, 6663786.486], [113834.858, 6662405.891], [113817.644, 6662410.489], [113811.165, 6662396.889], [112854.254, 6662026.822], [113489.201, 6647528.952], [101936.132, 6627506.006], [88483.137, 6651045.069], [104351.304, 6675054.16], [104703.971, 6675789.112], [104620.598, 6677467.691], [105860.231, 6678069.951], [106669.075, 6677676.693], [107772.447, 6677580.713], [108021.271, 6678038.524], [108067.706, 6678337.705], [108314.781, 6678598.04], [108426.203, 6678964.271], [108657.102, 6679222.814], [108957.647, 6679362.605], [109606.966, 6682052.048], [110191.91, 6682169.658], [110787.737, 6681827.959], [110845.711, 6682192.62], [111215.629, 6682269.514], [111202.706, 6682897.761], [111864.912, 6682719.547], [112211.991, 6682714.355], [112483.761, 6682802.606], [112861.977, 6682381.497], [113561.309, 6681973.052], [113816.862, 6682563.743], [113852.122, 6683535.198], [114156.947, 6684134.663], [115079.385, 6684389.033], [116705.2, 6686678.39], [119119.776, 6687192.932], [119968.06, 6685070.517]]]}}, {\\\"id\\\": \\\"149\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lumparland\\\", \\\"elakelaisten_osuus\\\": 28.5, \\\"freshwarea\\\": 0.04, \\\"gml_id\\\": 1601100012, \\\"landarea\\\": 36.35, \\\"namefin\\\": \\\"Lumparland\\\", \\\"nameswe\\\": \\\"Lumparland\\\", \\\"natcode\\\": \\\"438\\\", \\\"seawarea\\\": 50.65, \\\"totalarea\\\": 87.04}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[125404.738, 6690205.365], [125587.22, 6689411.61], [126227.365, 6689237.197], [127018.894, 6689314.916], [127129.559, 6688085.333], [127410.99, 6687834.05], [127796.612, 6687741.876], [128333.353, 6686950.727], [128566.174, 6686225.904], [128191.981, 6685661.595], [128402.188, 6685130.869], [129814.817, 6684900.634], [130347.166, 6683722.631], [129346.124, 6682604.677], [128383.179, 6681541.747], [127697.849, 6681101.196], [126755.987, 6680481.423], [126847.698, 6679646.401], [127132.259, 6679243.938], [127393.358, 6678439.433], [126801.023, 6677541.866], [127123.664, 6676715.269], [127458.389, 6676592.98], [127627.404, 6676141.632], [127372.356, 6675348.363], [126575.94, 6675617.47], [124583.15, 6675227.705], [123876.333, 6676778.549], [123520.083, 6678817.063], [123294.274, 6679078.871], [123452.37, 6679204.528], [123491.246, 6679489.058], [123445.359, 6679598.236], [123432.357, 6679629.172], [123436.443, 6680098.927], [123220.42, 6680609.177], [122598.066, 6681210.756], [121754.315, 6681069.97], [119968.06, 6685070.517], [119119.776, 6687192.932], [121903.517, 6688407.998], [122926.827, 6689761.671], [123891.725, 6689744.518], [124953.372, 6690340.744], [125404.738, 6690205.365]]]}}, {\\\"id\\\": \\\"150\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sonkaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 39.5, \\\"freshwarea\\\": 110.88, \\\"gml_id\\\": 1601100543, \\\"landarea\\\": 1465.91, \\\"namefin\\\": \\\"Sonkaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Sonkaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"762\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1576.79}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[512776.493, 7095851.907], [518557.507, 7093812.219], [520502.611, 7093336.756], [520689.395, 7093149.515], [520734.952, 7092515.29], [520367.927, 7092148.981], [520762.838, 7092076.659], [520998.113, 7091275.183], [522029.293, 7090894.056], [524354.101, 7091504.383], [523400.532, 7092809.191], [526482.682, 7092271.614], [531899.222, 7088122.338], [532559.692, 7088605.513], [536559.717, 7087017.864], [536885.671, 7086582.535], [537365.218, 7086313.182], [537505.952, 7086030.966], [538582.032, 7085233.406], [538925.193, 7084741.48], [543902.663, 7080507.429], [544756.828, 7080852.564], [545558.664, 7080024.947], [552296.423, 7073096.138], [556534.357, 7066842.237], [557710.527, 7065881.285], [557283.635, 7065020.838], [557454.56, 7064441.67], [556835.539, 7063486.793], [557140.349, 7063129.284], [556935.134, 7062945.009], [556305.075, 7062684.654], [554032.136, 7057571.29], [552849.183, 7055449.82], [551964.323, 7055300.106], [551747.103, 7055001.686], [551907.318, 7054590.752], [552275.511, 7054329.314], [552646.59, 7053837.849], [553451.413, 7053235.76], [553487.27, 7052866.764], [553151.005, 7052789.109], [553392.449, 7052334.833], [553346.662, 7051995.314], [552958.02, 7051473.896], [552948.132, 7050791.93], [552583.93, 7051070.639], [552338.657, 7051033.69], [552070.123, 7050370.574], [552458.828, 7049888.612], [552250.041, 7049429.666], [552613.419, 7048993.698], [552753.469, 7048527.051], [552594.324, 7048188.254], [552339.893, 7048164.261], [551995.297, 7048471.678], [551885.234, 7048092.538], [551998.128, 7047850.761], [551564.441, 7047673.126], [551773.224, 7047305.505], [546904.842, 7043752.963], [545106.06, 7044690.372], [544167.438, 7044953.759], [543778.014, 7045507.403], [542588.874, 7045217.742], [542280.298, 7045286.412], [542251.314, 7044905.266], [542363.771, 7044656.967], [541472.393, 7044323.961], [539031.782, 7043354.451], [538160.284, 7043607.562], [535640.013, 7042788.776], [535229.288, 7041983.499], [531121.155, 7041726.879], [530853.838, 7042021.394], [531302.612, 7042513.674], [531881.895, 7042836.204], [531865.821, 7043067.188], [531582.372, 7043185.312], [531500.713, 7043639.966], [529125.511, 7046802.022], [528312.038, 7047149.278], [528140.702, 7047664.469], [526863.342, 7049999.763], [526431.719, 7049624.824], [526387.486, 7050229.226], [526699.369, 7050328.355], [526910.578, 7050972.008], [523392.38, 7051854.815], [523282.321, 7052469.906], [523284.916, 7052909.329], [522831.799, 7052924.021], [522571.707, 7052712.105], [522257.338, 7052406.427], [522067.416, 7052405.978], [521911.34, 7052652.872], [521741.276, 7053244.06], [521743.533, 7053636.728], [521401.015, 7053930.859], [520844.593, 7054119.629], [520381.274, 7055303.63], [520243.917, 7055957.984], [518261.549, 7054881.637], [518336.512, 7055307.693], [518216.52, 7055627.326], [517880.809, 7056151.165], [517269.061, 7056482.233], [516706.465, 7057127.616], [516806.093, 7057781.068], [516749.927, 7058232.378], [516419.838, 7058845.893], [516449.712, 7059056.542], [516298.591, 7059432.261], [516010.453, 7059907.165], [515521.391, 7060619.682], [514648.9, 7061035.364], [514296.358, 7061011.425], [514163.036, 7061228.63], [513790.441, 7061649.197], [513568.192, 7062251.608], [513259.901, 7062359.21], [512905.775, 7062367.74], [511866.881, 7063471.11], [511500.786, 7063874.701], [511086.959, 7064663.219], [510793.763, 7065154.911], [510656.663, 7065555.376], [510359.524, 7065870.637], [510371.604, 7066349.169], [511052.53, 7066684.389], [511318.59, 7066631.502], [510929.882, 7067145.775], [511055.622, 7067667.845], [511478.545, 7067839.467], [511853.579, 7067693.942], [511995.211, 7067889.337], [512573.258, 7067986.821], [512706.051, 7068306.866], [512577.65, 7068771.111], [512928.864, 7069036.692], [513057.199, 7069281.442], [512962.997, 7069838.939], [512431.866, 7070258.961], [512508.157, 7070512.259], [512211.906, 7070754.756], [512904.875, 7070982.63], [514353.596, 7070731.002], [514510.551, 7071424.278], [513904.534, 7072216.038], [515804.094, 7072750.355], [515716.353, 7073129.761], [517222.424, 7073467.71], [517516.113, 7074280.666], [516697.548, 7075743.419], [516564.91, 7077099.964], [517597.696, 7077833.356], [513612.741, 7083285.012], [512577.835, 7084447.804], [512598.18, 7085955.598], [512535.642, 7087959.096], [513924.868, 7089640.232], [513013.625, 7090199.121], [513094.151, 7090396.759], [512273.037, 7091555.951], [512249.509, 7091914.278], [511835.077, 7092410.772], [511693.124, 7091015.547], [507902.768, 7090204.353], [507863.502, 7092051.098], [507875.657, 7093364.068], [507692.825, 7094299.084], [506186.982, 7095616.254], [505835.73, 7095992.143], [505965.857, 7096106.027], [506419.508, 7096756.403], [512776.493, 7095851.907]]]}}, {\\\"id\\\": \\\"151\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"V\\\\u00e5rd\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 29.9, \\\"freshwarea\\\": 0.39, \\\"gml_id\\\": 1601100265, \\\"landarea\\\": 101.71, \\\"namefin\\\": \\\"V\\\\u00e5rd\\\\u00f6\\\", \\\"nameswe\\\": \\\"V\\\\u00e5rd\\\\u00f6\\\", \\\"natcode\\\": \\\"941\\\", \\\"seawarea\\\": 470.46, \\\"totalarea\\\": 572.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[140496.266, 6721258.001], [144820.222, 6715222.738], [144536.224, 6712841.245], [143566.589, 6712407.023], [142273.539, 6711163.927], [142803.492, 6709913.341], [143244.91, 6709568.178], [143711.533, 6709433.72], [143835.101, 6708555.449], [147210.369, 6709978.728], [148689.254, 6702665.077], [144951.168, 6691887.873], [142597.847, 6694122.714], [141029.635, 6691859.312], [138894.675, 6690310.516], [141286.857, 6686588.354], [140761.833, 6686139.095], [140587.388, 6685460.726], [140178.663, 6685347.594], [139709.82, 6684792.268], [140007.498, 6684116.295], [139853.144, 6683420.0], [139235.181, 6684006.846], [138669.906, 6684184.647], [138186.263, 6684729.698], [137201.41, 6684758.158], [135967.905, 6686158.176], [135296.419, 6686417.698], [134448.19, 6686461.159], [133969.078, 6686166.075], [133390.281, 6685467.842], [134797.124, 6683258.574], [133870.645, 6681525.413], [131859.494, 6683368.712], [130561.18, 6682647.953], [131038.69, 6681805.741], [131117.444, 6681438.73], [130772.843, 6681246.236], [130249.436, 6681475.716], [129346.124, 6682604.677], [130347.166, 6683722.631], [129814.817, 6684900.634], [128402.188, 6685130.869], [128191.981, 6685661.595], [128566.174, 6686225.904], [128333.353, 6686950.727], [127796.612, 6687741.876], [127410.99, 6687834.05], [127129.559, 6688085.333], [127018.894, 6689314.916], [126227.365, 6689237.197], [125587.22, 6689411.61], [125404.738, 6690205.365], [124953.372, 6690340.744], [125180.392, 6691945.45], [125857.187, 6692576.16], [126678.968, 6692476.251], [127256.184, 6692870.13], [128510.507, 6694850.514], [128604.921, 6695847.836], [127955.56, 6696507.892], [127807.126, 6696867.811], [127935.013, 6698461.715], [128537.154, 6699324.004], [128711.33, 6699686.747], [128903.459, 6700648.092], [129402.495, 6702469.904], [129810.123, 6701383.425], [131345.854, 6703146.948], [131638.596, 6704799.22], [129558.558, 6705628.669], [128511.053, 6704363.291], [127678.868, 6704739.919], [128172.76, 6706298.996], [128529.176, 6708406.073], [127423.417, 6708463.885], [126239.217, 6709795.613], [127481.218, 6710392.776], [127690.37, 6710866.13], [128238.364, 6711221.855], [128327.533, 6712066.542], [129047.117, 6712024.112], [129029.581, 6711069.187], [128244.65, 6709668.778], [128529.176, 6708406.073], [129438.456, 6709088.693], [129731.357, 6710162.268], [130182.636, 6710252.613], [129815.88, 6710863.109], [130256.333, 6711546.611], [130144.267, 6712819.972], [129300.871, 6714298.602], [129182.41, 6714394.744], [129174.398, 6714526.367], [128588.06, 6715592.087], [128439.774, 6715694.992], [128541.63, 6715839.502], [128542.04, 6715840.082], [128236.965, 6718063.933], [129962.898, 6718738.534], [132141.589, 6717921.452], [131807.953, 6717072.531], [131434.596, 6716717.822], [131871.47, 6715975.601], [131985.96, 6715409.07], [132261.723, 6715480.569], [132305.634, 6716075.149], [132660.877, 6716630.626], [132353.223, 6716896.664], [132141.589, 6717921.452], [136118.41, 6721648.385], [140496.266, 6721258.001]], [[131434.375, 6700349.463], [131270.226, 6699697.125], [130436.177, 6699920.492], [129963.306, 6699910.162], [129313.391, 6700542.598], [131123.169, 6701145.303], [131434.375, 6700349.463]]]}}, {\\\"id\\\": \\\"152\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Virolahti\\\", \\\"elakelaisten_osuus\\\": 37.4, \\\"freshwarea\\\": 4.26, \\\"gml_id\\\": 1601100115, \\\"landarea\\\": 371.99, \\\"namefin\\\": \\\"Virolahti\\\", \\\"nameswe\\\": \\\"Virolahti\\\", \\\"natcode\\\": \\\"935\\\", \\\"seawarea\\\": 182.73, \\\"totalarea\\\": 558.98}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[533054.508, 6724595.773], [533665.562, 6724441.541], [534140.045, 6724137.729], [536478.844, 6721814.426], [536998.408, 6720861.312], [538104.794, 6720777.958], [539539.714, 6720951.102], [538967.638, 6721994.476], [539828.886, 6722635.326], [540507.119, 6721681.717], [540932.147, 6721620.946], [541266.315, 6721206.416], [541785.703, 6721619.854], [542562.779, 6723205.122], [542386.348, 6723495.104], [543046.178, 6724018.099], [543291.176, 6724428.037], [543851.95, 6724460.729], [544135.936, 6724321.688], [544832.553, 6724586.088], [545522.782, 6723349.692], [546048.979, 6721578.71], [547311.039, 6719640.304], [547343.565, 6719586.008], [548657.893, 6720007.34], [547825.1, 6719059.5], [546461.9, 6716574.2], [546455.5, 6716507.0], [546273.6, 6716379.8], [546232.3, 6716292.6], [546115.9, 6716315.5], [546036.7, 6716232.9], [545950.7, 6716129.9], [545955.2, 6716048.6], [546078.5, 6716006.6], [546290.9, 6715734.4], [546249.8, 6715417.3], [546138.1, 6715084.9], [546207.6, 6714858.5], [546178.2, 6714729.0], [546266.4, 6714439.3], [546467.4, 6714232.8], [544662.6, 6713418.5], [543701.5, 6712444.4], [542496.9, 6711086.9], [542651.9, 6708203.4], [542201.2, 6707775.0], [542022.9, 6706838.3], [542213.1, 6706125.0], [541592.65, 6704192.36], [541142.9, 6703902.6], [541149.1, 6701892.4], [538218.5, 6700345.8], [537811.9, 6699895.7], [540002.0, 6695252.9], [535867.756, 6689985.432], [533133.806, 6692476.121], [530702.194, 6694690.109], [529368.513, 6697249.292], [528670.1, 6698756.278], [528762.732, 6699897.507], [529428.661, 6700522.936], [527499.361, 6701906.215], [523999.107, 6702711.317], [521882.893, 6704353.956], [522354.125, 6705382.677], [522051.836, 6707424.777], [521869.73, 6708463.052], [521842.515, 6709124.799], [520873.202, 6710352.203], [520622.4, 6711009.539], [519552.214, 6713696.147], [519769.007, 6714602.161], [520522.006, 6716725.834], [521257.299, 6718540.708], [523134.227, 6721455.648], [524868.521, 6722898.181], [525393.114, 6722276.936], [526710.297, 6720158.302], [527075.76, 6718457.091], [527893.821, 6720083.242], [529548.251, 6720382.138], [529138.988, 6724633.121], [529538.225, 6724834.344], [529771.634, 6724428.41], [530157.175, 6724876.033], [530737.542, 6724750.789], [531302.317, 6724323.866], [531554.216, 6724136.144], [532238.88, 6724019.993], [531703.05, 6724995.099], [532376.378, 6725084.27], [533054.508, 6724595.773]]]}}, {\\\"id\\\": \\\"153\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Merij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 27.3, \\\"freshwarea\\\": 1.66, \\\"gml_id\\\": 1601100260, \\\"landarea\\\": 229.97, \\\"namefin\\\": \\\"Merij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Merij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"483\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 231.63}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[388288.333, 7123824.356], [387683.683, 7123366.242], [387017.8, 7123333.295], [386789.544, 7123909.575], [386844.265, 7124606.67], [387156.331, 7124900.108], [386735.737, 7125288.343], [386843.369, 7125635.489], [387152.879, 7125443.912], [387214.778, 7125768.843], [387522.528, 7125953.539], [388288.333, 7123824.356]]], [[[380911.402, 7143726.214], [380836.222, 7143491.241], [381028.457, 7143372.998], [380921.129, 7143011.239], [380429.35, 7142860.059], [380616.729, 7142697.663], [380224.362, 7142381.502], [379680.254, 7142166.466], [379442.737, 7142465.86], [379981.859, 7142828.954], [380041.195, 7143016.575], [379227.955, 7142765.237], [378494.281, 7142932.089], [378875.553, 7143270.21], [379401.519, 7143208.188], [379395.34, 7143635.659], [380351.868, 7143842.539], [380911.402, 7143726.214]]], [[[378443.684, 7142024.148], [378726.802, 7142300.353], [379042.311, 7141883.84], [378522.312, 7141526.268], [378975.156, 7140916.235], [378591.482, 7140972.27], [378582.883, 7140413.771], [379518.627, 7139757.59], [379632.108, 7139553.932], [379240.91, 7139532.436], [378835.908, 7139659.122], [378186.685, 7139148.5], [377292.844, 7140202.24], [377052.278, 7140288.467], [376767.859, 7140134.752], [377192.119, 7139709.588], [376806.969, 7137839.033], [380668.091, 7138418.494], [380424.431, 7138852.106], [380648.872, 7139060.772], [381081.365, 7139012.924], [381325.926, 7139183.151], [380630.047, 7139774.607], [380254.294, 7140285.456], [380654.147, 7140589.878], [380941.621, 7140537.915], [381425.466, 7140766.119], [381292.148, 7141359.109], [381045.025, 7141520.685], [381101.274, 7141791.921], [382014.763, 7141647.28], [382058.905, 7141314.04], [381785.172, 7141209.702], [381813.443, 7140753.987], [382206.489, 7140848.006], [382309.908, 7140610.729], [382512.337, 7140674.262], [382646.024, 7140246.041], [382485.772, 7140143.511], [383016.55, 7139330.018], [383493.356, 7139562.244], [383450.923, 7140265.503], [383216.881, 7141305.206], [383678.325, 7141589.226], [384308.984, 7140737.04], [384558.612, 7141403.913], [385116.536, 7141764.81], [385380.944, 7141349.025], [385006.081, 7141056.035], [386693.361, 7141215.378], [386861.714, 7140775.299], [386263.267, 7140645.522], [385963.016, 7140202.344], [385346.611, 7140328.59], [385421.215, 7139956.309], [385688.611, 7139667.125], [385701.487, 7139305.76], [386225.342, 7139159.085], [387419.924, 7139470.277], [387869.239, 7139325.387], [387729.731, 7138878.23], [387787.125, 7138595.696], [387987.367, 7138529.045], [389109.579, 7138731.501], [389501.532, 7138958.103], [389553.514, 7139478.131], [390239.785, 7139325.863], [390957.586, 7139369.036], [390917.33, 7139646.374], [390594.492, 7139647.985], [390244.192, 7140355.373], [391137.614, 7140371.693], [393726.336, 7140926.876], [393746.123, 7140314.3], [395509.596, 7140945.884], [395589.135, 7140143.869], [391053.732, 7139254.63], [390965.747, 7139070.177], [389149.881, 7136760.159], [389016.164, 7136987.62], [389582.0, 7137694.731], [389383.641, 7137860.028], [388993.814, 7137699.516], [388579.489, 7137242.57], [388556.972, 7136928.296], [388986.396, 7136551.184], [387396.9, 7134503.554], [387052.434, 7134882.43], [386903.325, 7134619.119], [387120.741, 7134144.81], [386586.568, 7133455.816], [387111.716, 7131206.026], [384705.995, 7129693.643], [384368.003, 7130807.78], [383799.841, 7131105.705], [383174.579, 7130617.675], [383086.519, 7130844.901], [382908.332, 7131018.138], [382741.419, 7130949.214], [382735.947, 7130178.663], [380835.556, 7130247.002], [380391.303, 7128512.533], [381665.42, 7126750.935], [381402.658, 7125666.142], [381958.554, 7124655.961], [381707.302, 7124536.945], [381375.488, 7124746.594], [381350.203, 7124206.099], [381794.718, 7124157.384], [382533.228, 7124646.444], [383149.835, 7124529.478], [383470.816, 7124007.431], [383477.143, 7123704.016], [383085.433, 7123797.891], [383112.163, 7123236.59], [382835.682, 7123069.109], [383437.403, 7121969.216], [382543.364, 7120022.976], [380556.177, 7121005.928], [378469.196, 7123750.398], [374214.283, 7127202.616], [371482.912, 7129662.964], [368791.01, 7133254.305], [367731.058, 7134639.838], [368074.216, 7134530.996], [368163.433, 7134694.9], [368264.464, 7134584.399], [368439.351, 7134727.041], [368244.696, 7134922.16], [368526.327, 7135064.135], [368390.8, 7135360.603], [369476.535, 7135971.49], [369232.94, 7136647.064], [369745.038, 7136927.221], [370021.285, 7136701.966], [369970.829, 7136271.756], [370201.324, 7136077.373], [371592.385, 7137148.52], [371564.166, 7136828.983], [371060.304, 7136206.755], [371223.948, 7135729.36], [371088.873, 7135137.078], [370752.861, 7134389.882], [370075.784, 7133753.234], [370342.235, 7133305.849], [370560.602, 7133193.09], [370671.449, 7133635.18], [370981.109, 7133567.774], [371327.364, 7134439.114], [371866.219, 7134460.006], [371875.01, 7134932.006], [372085.606, 7135789.008], [372104.872, 7136144.45], [371633.611, 7136358.06], [371936.242, 7136972.103], [371927.632, 7137323.396], [372243.391, 7137607.43], [373765.029, 7137666.45], [373739.103, 7138479.138], [374635.111, 7139001.851], [374461.626, 7139388.951], [374102.841, 7139757.015], [373122.368, 7139788.194], [373123.411, 7139922.489], [373569.925, 7140184.24], [376007.533, 7140680.404], [377985.088, 7142433.632], [378443.684, 7142024.148]]]]}}, {\\\"id\\\": \\\"154\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Virrat\\\", \\\"elakelaisten_osuus\\\": 40.9, \\\"freshwarea\\\": 136.41, \\\"gml_id\\\": 1601100375, \\\"landarea\\\": 1162.67, \\\"namefin\\\": \\\"Virrat\\\", \\\"nameswe\\\": \\\"Virdois\\\", \\\"natcode\\\": \\\"936\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1299.08}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[336987.61, 6929367.886], [338489.746, 6929365.582], [338583.246, 6932174.94], [340214.894, 6931990.53], [340738.76, 6928959.927], [340305.99, 6929067.577], [340194.41, 6928683.492], [340673.178, 6928541.979], [340090.974, 6926557.551], [340261.385, 6925736.272], [340478.735, 6925243.97], [340427.319, 6924692.017], [340262.62, 6924127.964], [340387.137, 6923823.651], [340448.679, 6923133.136], [340961.525, 6922195.209], [341008.871, 6921479.901], [342075.228, 6921040.23], [342540.245, 6920984.86], [344617.79, 6919777.67], [344590.659, 6919411.754], [345455.368, 6918226.112], [345809.974, 6912634.291], [346935.619, 6910860.52], [347148.85, 6911272.219], [347884.878, 6911249.475], [348370.354, 6910688.402], [348523.117, 6908389.531], [351709.824, 6905580.695], [355176.866, 6905410.076], [355159.141, 6904226.449], [355890.153, 6904007.804], [356116.354, 6904183.48], [356360.623, 6903931.432], [356104.218, 6903369.404], [355427.217, 6903740.57], [354845.451, 6903201.325], [355008.868, 6902437.442], [353155.041, 6903263.672], [352935.972, 6903045.425], [353787.088, 6901304.659], [352365.202, 6901393.548], [352004.437, 6901207.282], [351814.901, 6900400.466], [351897.633, 6900118.666], [352411.331, 6899986.972], [351575.436, 6898333.39], [351121.105, 6897886.046], [350809.28, 6897231.949], [350416.262, 6897414.976], [350263.748, 6897887.729], [349750.549, 6898215.699], [349233.748, 6897682.944], [349083.798, 6897118.844], [348167.618, 6897357.202], [347575.537, 6896591.378], [347012.654, 6896938.241], [346283.029, 6895601.541], [345587.855, 6893890.194], [345382.816, 6891191.697], [342499.175, 6893025.99], [339400.132, 6894159.091], [338880.069, 6894510.952], [338069.907, 6895869.608], [337458.771, 6895964.05], [337233.164, 6895617.757], [336410.226, 6897371.766], [335851.273, 6898435.948], [334884.316, 6898502.558], [334426.904, 6897386.605], [336586.275, 6892485.493], [334889.439, 6891252.703], [333625.22, 6891345.126], [332853.741, 6890729.143], [332427.01, 6889306.606], [332274.053, 6888999.717], [332297.748, 6888568.876], [332205.534, 6888237.195], [331609.344, 6888155.42], [331076.893, 6887900.327], [330622.887, 6887822.548], [330297.41, 6887580.743], [328341.363, 6888940.497], [326675.837, 6888024.827], [324642.406, 6886969.457], [319421.316, 6892184.389], [318778.676, 6892564.573], [313738.511, 6896936.1], [311248.686, 6904814.865], [304770.712, 6916054.671], [304928.165, 6916471.996], [304153.954, 6917135.548], [303722.172, 6917387.209], [304557.424, 6918599.408], [304582.831, 6919024.121], [304443.81, 6919329.209], [304771.39, 6919350.96], [305006.473, 6919039.782], [305248.121, 6919752.177], [305848.285, 6919848.181], [305991.684, 6919496.622], [306810.359, 6919850.312], [306670.641, 6920199.306], [306949.593, 6921221.147], [306336.852, 6921033.314], [306092.343, 6921653.445], [307589.854, 6925168.085], [310933.466, 6926894.948], [310739.623, 6926324.497], [310740.236, 6925423.721], [311223.136, 6924891.075], [311807.83, 6925403.748], [312556.608, 6924539.479], [311899.599, 6923976.23], [312224.973, 6923674.716], [312777.727, 6924272.215], [313350.101, 6923606.307], [313410.146, 6922749.722], [315029.68, 6921444.987], [316169.578, 6921054.096], [317757.498, 6921783.127], [319892.311, 6920033.249], [319415.82, 6925258.906], [322979.767, 6924761.088], [327654.949, 6924153.087], [332876.856, 6929137.749], [333907.931, 6929240.817], [333753.681, 6929498.285], [334454.584, 6930197.409], [334923.994, 6929233.05], [335415.965, 6928765.619], [335555.61, 6929039.629], [335375.785, 6929821.898], [335908.271, 6930228.305], [335270.372, 6931504.254], [336977.473, 6933246.544], [336987.61, 6929367.886]]]}}, {\\\"id\\\": \\\"155\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hailuoto\\\", \\\"elakelaisten_osuus\\\": 43.5, \\\"freshwarea\\\": 1.69, \\\"gml_id\\\": 1601100001, \\\"landarea\\\": 205.66, \\\"namefin\\\": \\\"Hailuoto\\\", \\\"nameswe\\\": \\\"Karl\\\\u00f6\\\", \\\"natcode\\\": \\\"072\\\", \\\"seawarea\\\": 875.35, \\\"totalarea\\\": 1082.7}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[403898.34, 7225741.843], [412254.653, 7216585.946], [411722.421, 7215387.29], [407784.854, 7208121.521], [405158.02, 7206221.723], [396054.571, 7199665.012], [393701.714, 7199025.715], [360431.691, 7212610.604], [362935.407, 7220553.464], [364872.193, 7230928.956], [403898.34, 7225741.843]]]}}, {\\\"id\\\": \\\"156\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kaavi\\\", \\\"elakelaisten_osuus\\\": 43.6, \\\"freshwarea\\\": 115.53, \\\"gml_id\\\": 1601100346, \\\"landarea\\\": 674.07, \\\"namefin\\\": \\\"Kaavi\\\", \\\"nameswe\\\": \\\"Kaavi\\\", \\\"natcode\\\": \\\"204\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 789.6}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[592454.262, 6997369.501], [592537.421, 6996890.095], [592655.625, 6996342.444], [592964.81, 6995948.878], [593257.002, 6995668.851], [593470.617, 6995115.403], [593370.599, 6994784.689], [593633.82, 6994220.892], [593808.104, 6993697.193], [594071.775, 6993305.435], [594427.609, 6993135.014], [594639.966, 6993145.15], [594878.03, 6992920.713], [595448.325, 6992766.431], [595848.724, 6992384.613], [595957.685, 6992110.76], [596470.334, 6992295.184], [597409.5, 6991065.729], [603179.212, 6988433.798], [604624.085, 6985773.066], [604769.267, 6985511.617], [600951.146, 6983125.651], [601288.074, 6982379.281], [601134.211, 6982304.263], [600817.084, 6983041.679], [600004.69, 6982527.134], [600300.323, 6982130.271], [599592.72, 6981070.662], [601032.277, 6980708.389], [601148.464, 6980171.303], [600634.009, 6980300.484], [601327.515, 6979098.637], [600520.579, 6978666.383], [599687.828, 6978742.902], [598181.638, 6980303.522], [598006.633, 6979998.463], [598467.246, 6977705.912], [599035.585, 6977652.382], [599351.976, 6977236.85], [599939.743, 6977092.184], [599725.925, 6976782.691], [600096.102, 6976221.818], [600489.358, 6975959.837], [601118.559, 6975606.52], [601727.993, 6973823.995], [602339.378, 6974126.681], [602386.277, 6973823.38], [602052.51, 6973516.023], [602254.595, 6973094.307], [603328.504, 6972761.958], [604178.073, 6971666.939], [604572.325, 6971984.091], [605263.127, 6971277.462], [605620.118, 6971268.911], [606127.63, 6970652.673], [606486.574, 6970599.583], [606795.79, 6970125.15], [600253.626, 6965170.24], [599157.333, 6962004.419], [598528.382, 6961955.347], [596852.811, 6963585.258], [596944.851, 6964221.214], [596178.319, 6964546.156], [594804.275, 6965422.38], [594217.13, 6965599.842], [593303.536, 6966822.173], [593557.874, 6967246.858], [593407.877, 6967411.829], [592898.437, 6967288.324], [592178.462, 6967957.981], [591179.258, 6968338.911], [590971.118, 6968032.506], [590410.127, 6967702.932], [588917.517, 6965889.245], [587750.825, 6966309.018], [586694.586, 6967763.286], [587146.21, 6968751.843], [586754.345, 6969424.324], [586632.529, 6969847.01], [585575.12, 6971033.813], [584536.543, 6972596.292], [584477.328, 6972686.825], [584305.799, 6973842.948], [584310.041, 6973884.595], [583791.628, 6974001.735], [583323.975, 6973947.549], [583212.232, 6974119.25], [583047.095, 6974263.118], [582824.809, 6974358.307], [582747.876, 6974420.221], [581407.369, 6974960.777], [580637.318, 6975058.867], [580539.066, 6975882.396], [579255.043, 6977157.343], [578780.628, 6977113.104], [577339.339, 6978540.576], [576399.176, 6978692.687], [576161.055, 6978660.952], [575596.362, 6979135.297], [575174.74, 6979205.773], [574679.682, 6979969.122], [574767.346, 6980136.724], [573245.503, 6980640.546], [573329.096, 6980923.426], [573141.947, 6981442.567], [572356.133, 6981269.302], [572592.041, 6982072.238], [571687.788, 6982415.469], [570284.522, 6982319.942], [571983.445, 6984329.84], [572241.373, 6985197.05], [572068.143, 6985692.157], [572387.838, 6986388.113], [572862.649, 6986142.955], [573057.551, 6986388.982], [573248.6, 6986164.362], [573702.404, 6986522.452], [573783.207, 6987117.207], [574577.481, 6987854.197], [574163.694, 6988158.428], [572335.585, 6991282.943], [571733.551, 6991275.974], [571640.112, 6992014.534], [571393.852, 6992250.435], [570809.415, 6991975.702], [570678.616, 6992184.047], [570748.676, 6993623.086], [571156.377, 6993264.364], [571805.805, 6993098.427], [571478.993, 6993796.211], [571860.211, 6993989.585], [571628.25, 6994530.892], [571884.101, 6994396.105], [572071.823, 6994820.198], [571598.39, 6995079.477], [574636.769, 6996431.194], [574564.49, 6996920.37], [574040.726, 6997165.868], [574257.162, 6997527.924], [574061.276, 6998169.958], [574258.551, 6998400.855], [575595.299, 6998272.453], [577163.756, 6998612.34], [577129.47, 6999071.876], [578030.113, 6999120.953], [577962.833, 7000380.05], [582304.669, 7000640.637], [582972.905, 7000391.019], [583562.361, 7000386.901], [588843.378, 7002040.871], [592454.262, 6997369.501]]]}}, {\\\"id\\\": \\\"157\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kemi\\\", \\\"elakelaisten_osuus\\\": 33.8, \\\"freshwarea\\\": 7.38, \\\"gml_id\\\": 1601100403, \\\"landarea\\\": 95.37, \\\"namefin\\\": \\\"Kemi\\\", \\\"nameswe\\\": \\\"Kemi\\\", \\\"natcode\\\": \\\"240\\\", \\\"seawarea\\\": 644.53, \\\"totalarea\\\": 747.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[388570.103, 7298829.981], [389258.448, 7297812.724], [389883.5, 7297355.627], [389945.182, 7297747.327], [393000.651, 7295717.355], [392947.81, 7294661.255], [393557.315, 7294613.774], [394766.558, 7293967.312], [394644.891, 7293676.559], [393844.901, 7293969.106], [393663.388, 7293847.826], [393656.937, 7293520.858], [394051.098, 7293089.47], [394514.079, 7290690.837], [396443.969, 7290581.243], [396035.422, 7290066.137], [395393.088, 7290347.27], [395391.592, 7289347.595], [396006.827, 7289239.257], [395836.599, 7288166.204], [396561.004, 7287772.167], [393569.713, 7283988.54], [392279.663, 7283657.013], [382862.563, 7261658.231], [367343.815, 7249044.486], [367435.866, 7268614.049], [367437.08, 7268913.439], [367671.471, 7270576.236], [369174.752, 7279707.957], [382603.667, 7296353.473], [385992.898, 7297648.827], [386195.869, 7297953.1], [388122.169, 7299270.588], [388570.103, 7298829.981]]]}}, {\\\"id\\\": \\\"158\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tuusniemi\\\", \\\"elakelaisten_osuus\\\": 44.8, \\\"freshwarea\\\": 156.25, \\\"gml_id\\\": 1601100638, \\\"landarea\\\": 543.17, \\\"namefin\\\": \\\"Tuusniemi\\\", \\\"nameswe\\\": \\\"Tuusniemi\\\", \\\"natcode\\\": \\\"857\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 699.42}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[572592.041, 6982072.238], [572356.133, 6981269.302], [573141.947, 6981442.567], [573329.096, 6980923.426], [573245.503, 6980640.546], [574767.346, 6980136.724], [574679.682, 6979969.122], [575174.74, 6979205.773], [575596.362, 6979135.297], [576161.055, 6978660.952], [576399.176, 6978692.687], [577339.339, 6978540.576], [578780.628, 6977113.104], [579255.043, 6977157.343], [580539.066, 6975882.396], [580637.318, 6975058.867], [581407.369, 6974960.777], [582747.876, 6974420.221], [582824.809, 6974358.307], [583047.095, 6974263.118], [583212.232, 6974119.25], [583323.975, 6973947.549], [583791.628, 6974001.735], [584310.041, 6973884.595], [584305.799, 6973842.948], [584477.328, 6972686.825], [584536.543, 6972596.292], [585575.12, 6971033.813], [586632.529, 6969847.01], [586754.345, 6969424.324], [587146.21, 6968751.843], [586694.586, 6967763.286], [587750.825, 6966309.018], [588917.517, 6965889.245], [589124.816, 6964415.962], [587637.091, 6961501.947], [587318.356, 6961708.872], [586781.731, 6961402.507], [586372.708, 6961774.851], [585768.374, 6961786.608], [583873.471, 6960006.168], [583417.623, 6958121.116], [584040.305, 6956378.601], [587148.6, 6952676.304], [584774.075, 6949717.383], [584812.796, 6948464.778], [584207.172, 6947549.328], [584215.715, 6946305.723], [584007.664, 6945002.859], [583817.125, 6944444.13], [582049.398, 6943203.253], [583460.984, 6942754.805], [583387.674, 6942040.794], [582902.44, 6941673.925], [582367.609, 6940740.846], [582070.838, 6940774.639], [581052.878, 6939796.349], [580138.826, 6941657.974], [579142.681, 6940543.712], [578939.485, 6940197.838], [578286.654, 6940360.357], [577636.468, 6940279.889], [576365.61, 6940622.383], [575737.419, 6940443.723], [575358.681, 6940004.235], [575019.273, 6940139.827], [574673.507, 6940980.084], [573446.394, 6942245.162], [572286.96, 6942568.721], [571911.809, 6942867.597], [571429.803, 6943017.233], [570604.837, 6942913.569], [569835.846, 6943143.769], [569882.075, 6943616.534], [569336.414, 6944118.444], [569817.745, 6944339.056], [569438.188, 6945314.793], [570186.575, 6945325.348], [569294.955, 6946037.91], [568561.461, 6946557.71], [567926.799, 6946736.052], [567248.3, 6947448.528], [567637.326, 6947559.207], [569718.567, 6952673.969], [570379.925, 6952493.116], [570569.272, 6952584.973], [570479.919, 6952801.036], [570162.69, 6953150.803], [569703.954, 6953769.01], [569651.836, 6954411.842], [569404.581, 6954807.93], [569049.477, 6955140.742], [568819.566, 6955646.357], [568532.682, 6955860.714], [567941.005, 6955711.724], [567878.446, 6955877.671], [567996.016, 6956986.575], [567383.612, 6957241.162], [566531.461, 6958786.938], [565949.591, 6959995.959], [566999.018, 6960287.285], [567964.938, 6960009.314], [568394.355, 6960047.031], [568016.083, 6961152.694], [567859.272, 6961597.938], [566948.311, 6962657.428], [565222.803, 6961126.907], [564891.235, 6960473.694], [564334.853, 6960318.624], [563816.703, 6960456.932], [566521.504, 6963132.529], [567745.495, 6963129.954], [567908.612, 6964056.469], [568239.264, 6964701.207], [568048.271, 6965776.447], [567509.711, 6965528.522], [567260.324, 6966269.145], [567339.676, 6966607.574], [567418.776, 6967470.752], [567334.243, 6967785.605], [564508.293, 6965089.983], [564100.564, 6966025.021], [563640.182, 6966049.711], [563289.883, 6966313.925], [562706.893, 6966552.034], [562422.506, 6967068.017], [562099.173, 6967444.743], [561692.516, 6967941.18], [561112.914, 6968470.716], [561612.989, 6969220.679], [561447.753, 6969559.541], [561557.605, 6969988.568], [560929.351, 6970918.187], [560396.461, 6971570.12], [559343.081, 6972366.99], [559143.678, 6973267.712], [560055.784, 6973274.028], [560508.395, 6973864.092], [561742.102, 6973172.78], [563007.087, 6972026.803], [563574.132, 6971810.111], [563904.827, 6971986.284], [563921.596, 6972288.933], [563758.138, 6972821.483], [563518.336, 6973235.557], [563216.202, 6973460.573], [563345.045, 6973925.886], [565630.927, 6973071.647], [565739.976, 6973765.767], [566133.015, 6973965.589], [564418.603, 6974762.455], [564554.442, 6975385.203], [565713.776, 6975023.558], [565750.758, 6975348.326], [566013.352, 6975319.04], [566047.627, 6976518.655], [565066.422, 6976756.052], [564588.991, 6977264.844], [564984.039, 6977614.375], [565132.786, 6977872.8], [565479.294, 6978187.781], [565862.183, 6978290.35], [566361.821, 6978303.778], [566453.146, 6978652.992], [566115.64, 6979133.73], [565321.606, 6979442.186], [564631.672, 6979793.218], [563188.166, 6980011.06], [561846.791, 6980728.921], [562037.08, 6981198.842], [563359.47, 6980478.152], [566535.388, 6979928.196], [569542.577, 6980297.982], [570600.289, 6981089.902], [570284.522, 6982319.942], [571687.788, 6982415.469], [572592.041, 6982072.238]]]}}, {\\\"id\\\": \\\"159\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lohja\\\", \\\"elakelaisten_osuus\\\": 27.4, \\\"freshwarea\\\": 170.56, \\\"gml_id\\\": 1601100022, \\\"landarea\\\": 939.17, \\\"namefin\\\": \\\"Lohja\\\", \\\"nameswe\\\": \\\"Lojo\\\", \\\"natcode\\\": \\\"444\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1109.73}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[332162.632, 6727612.894], [332283.617, 6727231.085], [333014.817, 6726919.3], [333831.31, 6726317.468], [334371.929, 6726306.184], [336222.196, 6724541.267], [336719.739, 6724930.643], [337096.257, 6724257.507], [336905.383, 6723911.912], [337329.431, 6723446.878], [336691.403, 6722628.462], [335970.914, 6722756.012], [335363.142, 6721764.357], [335614.969, 6721446.236], [336149.589, 6721123.568], [337095.663, 6722165.544], [337396.548, 6722934.84], [340873.387, 6715975.412], [343830.319, 6711946.476], [343689.743, 6711161.061], [344565.478, 6708737.405], [343088.693, 6705507.978], [342320.02, 6702608.377], [342332.096, 6701328.023], [342588.24, 6700785.319], [342449.466, 6700524.444], [341980.601, 6700173.762], [341664.302, 6699827.095], [342640.679, 6699725.891], [342067.039, 6698486.552], [343618.334, 6698186.568], [343903.356, 6696816.829], [344796.879, 6696988.756], [345536.454, 6695499.79], [345790.284, 6695101.034], [345907.536, 6694529.922], [345724.96, 6693756.118], [345912.732, 6693008.579], [345493.322, 6690244.929], [345713.071, 6687943.616], [348417.581, 6689549.867], [349093.986, 6688735.556], [349518.905, 6689020.53], [350363.933, 6688252.079], [351084.214, 6687267.974], [350150.857, 6686590.204], [348432.639, 6684532.268], [347755.179, 6683675.588], [346658.898, 6683627.58], [346110.335, 6683692.275], [343177.709, 6680551.318], [343117.684, 6681906.059], [342100.125, 6680560.278], [342829.409, 6680197.418], [341984.342, 6679755.135], [341112.128, 6680696.181], [339355.676, 6680363.89], [338766.559, 6680052.266], [338602.741, 6680623.867], [338116.178, 6680332.146], [338370.847, 6679743.356], [337345.651, 6678886.728], [336504.425, 6678461.636], [336202.331, 6677948.558], [335803.444, 6677775.55], [336079.221, 6677116.583], [336139.187, 6676444.443], [335415.626, 6676257.048], [334931.274, 6676379.156], [334085.902, 6675495.796], [334582.909, 6675293.781], [334593.506, 6674736.995], [334488.258, 6674031.399], [334644.843, 6673704.074], [334388.106, 6672664.936], [334526.292, 6672025.248], [336005.637, 6671797.73], [334911.515, 6670348.246], [333527.226, 6669946.107], [332317.643, 6670155.027], [330821.842, 6669801.593], [330160.479, 6669763.78], [328783.329, 6671838.636], [328038.44, 6673533.125], [328012.191, 6674712.929], [328567.008, 6676115.136], [328240.594, 6676815.612], [328141.853, 6677924.216], [328151.94, 6678390.657], [327029.838, 6678055.1], [327190.495, 6677658.81], [326752.368, 6677405.863], [324721.03, 6676726.073], [324054.825, 6677641.332], [323110.393, 6676729.425], [321863.285, 6676633.198], [320642.594, 6675615.488], [318863.262, 6674785.151], [317904.701, 6674690.987], [317123.94, 6674795.452], [316139.473, 6675078.747], [315717.729, 6675395.335], [314986.273, 6674897.838], [314265.561, 6675110.09], [312606.84, 6674738.33], [311998.839, 6675089.31], [311679.743, 6675768.827], [311623.041, 6676747.121], [312410.676, 6677169.89], [312658.828, 6677827.908], [314278.739, 6678574.4], [313993.449, 6679357.709], [314253.062, 6679640.469], [313729.863, 6680577.226], [313549.956, 6681769.58], [313608.45, 6682308.012], [314298.047, 6682451.864], [313632.967, 6683270.744], [312236.212, 6684157.07], [311893.034, 6684183.946], [311807.545, 6684683.595], [311139.037, 6685125.451], [311402.739, 6685482.729], [311672.632, 6685673.071], [311633.409, 6685884.911], [311879.08, 6685929.454], [312636.046, 6685266.045], [312771.764, 6686403.47], [313064.193, 6686375.57], [313042.056, 6685303.479], [313407.291, 6685196.412], [313660.858, 6687654.06], [314406.387, 6687630.939], [316234.726, 6689800.029], [317054.174, 6688711.47], [318599.844, 6689674.073], [319231.631, 6690169.649], [319425.238, 6690794.283], [319409.151, 6692532.305], [319813.052, 6693508.174], [319757.935, 6694107.783], [319836.611, 6695490.734], [319703.935, 6695854.48], [319234.718, 6695995.216], [319314.378, 6696972.814], [320340.276, 6697060.956], [320907.257, 6697465.156], [322338.971, 6698959.51], [322622.818, 6698673.89], [323127.585, 6698912.221], [323121.55, 6698918.567], [322884.789, 6700820.565], [323346.815, 6702887.257], [323521.746, 6703467.077], [323117.104, 6705869.091], [318062.995, 6706087.889], [319406.81, 6707686.962], [319136.184, 6708592.486], [320774.171, 6710467.086], [325493.682, 6710711.926], [326277.398, 6710299.979], [327992.013, 6711743.402], [328244.548, 6712063.462], [327917.366, 6713591.638], [327749.454, 6713873.671], [327624.08, 6713907.718], [327624.999, 6714024.393], [327494.928, 6714122.357], [327516.528, 6714275.339], [327372.421, 6714411.264], [327251.032, 6714638.848], [327438.632, 6714803.662], [327383.022, 6714872.665], [327643.662, 6715019.231], [328037.555, 6715192.55], [328002.562, 6715511.561], [327071.772, 6717260.806], [327002.246, 6717531.525], [329369.756, 6717651.055], [329538.069, 6719382.828], [330656.411, 6720753.845], [331428.893, 6722861.159], [328533.193, 6724398.218], [330561.662, 6727772.87], [331531.475, 6728183.032], [332162.632, 6727612.894]]]}}, {\\\"id\\\": \\\"160\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kaarina\\\", \\\"elakelaisten_osuus\\\": 24.0, \\\"freshwarea\\\": 1.05, \\\"gml_id\\\": 1601100342, \\\"landarea\\\": 150.65, \\\"namefin\\\": \\\"Kaarina\\\", \\\"nameswe\\\": \\\"S:t Karins\\\", \\\"natcode\\\": \\\"202\\\", \\\"seawarea\\\": 27.88, \\\"totalarea\\\": 179.58}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[257066.481, 6714452.398], [257212.873, 6714707.055], [257446.584, 6713502.467], [257299.702, 6713010.931], [257534.588, 6712560.654], [257272.581, 6712383.465], [257517.69, 6711836.8], [257619.415, 6709672.103], [257318.54, 6709768.931], [257040.024, 6709398.744], [257641.557, 6709312.335], [257766.937, 6705467.721], [257527.964, 6705005.012], [256811.564, 6704579.284], [257754.814, 6704127.765], [257203.771, 6703443.778], [257834.386, 6703206.768], [257945.707, 6702009.431], [257642.924, 6701722.189], [257285.343, 6701095.376], [256302.593, 6700619.42], [256120.94, 6699836.912], [254777.4, 6699406.538], [254131.465, 6698342.865], [253263.73, 6699454.95], [252481.244, 6699956.133], [251618.891, 6698953.09], [251166.445, 6698872.105], [250716.896, 6698999.901], [250213.026, 6698813.27], [249709.224, 6698463.159], [249333.861, 6699004.649], [248806.785, 6699282.254], [248345.07, 6699473.846], [247739.825, 6699922.772], [247899.547, 6700196.869], [248501.265, 6700688.666], [248599.454, 6701857.878], [247795.906, 6702155.608], [246953.274, 6702063.973], [246646.968, 6701900.693], [245811.129, 6701838.426], [245519.042, 6701493.617], [244648.514, 6701346.796], [243467.383, 6700981.615], [242848.909, 6701215.192], [242586.616, 6701498.548], [242173.459, 6701448.133], [241481.885, 6700941.815], [241174.872, 6701432.765], [241384.58, 6701972.949], [241197.924, 6703081.102], [240373.16, 6703192.745], [240051.274, 6703759.665], [240200.39, 6704259.06], [240036.254, 6705106.084], [239767.447, 6705590.767], [240582.211, 6706184.043], [241030.459, 6706214.132], [241776.984, 6706438.115], [242897.594, 6707103.652], [243575.088, 6707737.168], [244865.892, 6708294.322], [245139.861, 6708768.784], [244869.462, 6709369.222], [245266.866, 6709451.216], [244460.089, 6711826.499], [244095.139, 6712519.864], [243762.982, 6712390.701], [243438.857, 6712982.504], [244279.15, 6714124.228], [245058.936, 6713448.535], [245370.121, 6713650.59], [246348.984, 6711392.688], [246904.943, 6710051.877], [248326.493, 6710494.214], [249138.58, 6710567.666], [249127.668, 6710201.136], [250203.755, 6710357.776], [250466.79, 6711006.867], [251364.554, 6711261.809], [252959.785, 6712239.521], [253811.266, 6712904.892], [254323.403, 6712241.042], [254662.539, 6712554.895], [254088.965, 6713109.862], [255544.191, 6714079.823], [256564.38, 6714725.429], [257066.481, 6714452.398]]]}}, {\\\"id\\\": \\\"161\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Halsua\\\", \\\"elakelaisten_osuus\\\": 36.5, \\\"freshwarea\\\": 15.32, \\\"gml_id\\\": 1601100117, \\\"landarea\\\": 413.02, \\\"namefin\\\": \\\"Halsua\\\", \\\"nameswe\\\": \\\"Halsua\\\", \\\"natcode\\\": \\\"074\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 428.34}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[361992.935, 7048013.702], [363040.234, 7048776.159], [362978.199, 7049290.843], [363043.621, 7049840.926], [363193.361, 7049847.635], [363587.214, 7048897.567], [362792.097, 7048218.522], [362814.762, 7047863.404], [362555.475, 7047780.68], [362395.677, 7047666.317], [366662.923, 7043990.815], [367400.966, 7044688.69], [367673.776, 7044400.547], [368361.798, 7045084.633], [367574.977, 7045514.404], [367346.154, 7045368.174], [367054.39, 7045437.739], [366394.242, 7045682.928], [366483.128, 7046098.7], [366713.141, 7045822.86], [367291.436, 7045895.014], [368584.366, 7045298.537], [370959.148, 7047641.992], [372978.266, 7045479.255], [374026.326, 7046622.371], [375704.143, 7044833.012], [375917.317, 7045263.261], [376147.525, 7045093.904], [377260.599, 7046448.84], [378377.148, 7046180.973], [378342.541, 7044968.25], [377546.307, 7043882.242], [376755.509, 7043713.511], [377063.648, 7043386.456], [377086.864, 7041546.341], [375846.13, 7040198.235], [377113.288, 7039375.952], [377118.27, 7038935.371], [377496.364, 7038511.495], [377635.634, 7037979.999], [376883.302, 7037160.438], [376662.199, 7037362.745], [375691.363, 7036302.643], [375795.437, 7036072.848], [373275.525, 7034944.775], [373491.019, 7034495.96], [374101.469, 7034789.466], [375626.753, 7031588.23], [374026.127, 7030837.784], [374329.738, 7029859.59], [370293.451, 7029678.875], [368311.879, 7025840.863], [361813.563, 7027035.695], [361422.964, 7026662.235], [360935.555, 7027162.652], [358048.851, 7025710.982], [357848.768, 7026462.836], [359344.89, 7027281.454], [359813.382, 7027952.088], [359558.905, 7028437.638], [358736.7, 7028665.051], [358679.863, 7028508.291], [357790.64, 7029278.235], [356191.962, 7030297.235], [356038.167, 7030589.603], [356711.348, 7031461.727], [355614.066, 7032246.011], [356380.37, 7032997.856], [355374.182, 7034831.3], [354574.5, 7034828.044], [354522.297, 7034181.772], [355234.521, 7033682.646], [355021.022, 7033407.456], [354582.626, 7033745.303], [354126.067, 7033308.988], [353844.073, 7033156.743], [353465.95, 7033420.294], [354021.97, 7038537.854], [353358.672, 7040505.2], [354597.61, 7041268.702], [353890.844, 7042287.18], [354895.471, 7042973.357], [355217.569, 7044069.025], [354787.428, 7044819.691], [354243.771, 7044590.444], [353492.654, 7046340.735], [352829.619, 7047102.871], [352918.254, 7047105.757], [352964.543, 7047350.3], [352789.636, 7047383.2], [352748.026, 7047233.904], [352507.231, 7047470.066], [352645.633, 7047644.051], [352760.876, 7047634.99], [352980.019, 7047769.599], [352920.95, 7047856.85], [353073.37, 7047984.33], [353367.545, 7048485.754], [353508.522, 7048401.236], [353776.885, 7049560.067], [353961.746, 7049692.385], [353432.667, 7050443.076], [354208.134, 7051862.952], [354665.976, 7051593.978], [355999.493, 7053151.35], [361992.935, 7048013.702]]]}}, {\\\"id\\\": \\\"162\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rovaniemi\\\", \\\"elakelaisten_osuus\\\": 23.5, \\\"freshwarea\\\": 435.24, \\\"gml_id\\\": 1601100441, \\\"landarea\\\": 7581.51, \\\"namefin\\\": \\\"Rovaniemi\\\", \\\"nameswe\\\": \\\"Rovaniemi\\\", \\\"natcode\\\": \\\"698\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 8016.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[428225.465, 7449190.611], [428510.971, 7449194.171], [439783.761, 7447292.232], [439864.442, 7443756.549], [441904.732, 7443241.658], [442431.183, 7446371.194], [442375.084, 7446880.74], [443914.672, 7446611.512], [443979.364, 7446077.903], [444563.305, 7446133.498], [444624.143, 7446491.831], [445592.175, 7446329.286], [446044.534, 7445951.883], [446029.096, 7446267.544], [452469.739, 7445168.698], [469159.234, 7430996.277], [469561.888, 7430551.328], [469724.744, 7430667.283], [471704.895, 7427914.232], [471560.807, 7427805.159], [472593.655, 7426370.374], [472803.488, 7426627.286], [473599.506, 7426182.978], [474247.473, 7426513.576], [474380.713, 7426246.65], [474052.592, 7426032.877], [478933.385, 7425099.02], [476747.712, 7424183.039], [479535.844, 7419967.287], [482775.729, 7413840.117], [484879.162, 7411583.272], [487336.531, 7388696.712], [486582.212, 7383990.811], [507395.134, 7359359.02], [511192.147, 7356938.071], [510487.383, 7354769.37], [512214.036, 7350805.994], [511734.922, 7348523.66], [514039.777, 7347093.346], [514687.481, 7346415.994], [511710.473, 7342032.767], [511430.613, 7342223.719], [511398.289, 7342580.689], [510549.41, 7342321.741], [508896.663, 7342246.265], [508434.047, 7341934.666], [504368.778, 7342356.769], [503880.735, 7342906.34], [503296.932, 7343013.207], [502994.744, 7343533.351], [502914.426, 7344478.911], [502364.393, 7344673.949], [501308.819, 7344908.359], [501306.643, 7345096.074], [501726.364, 7345777.128], [501759.162, 7346048.991], [500965.991, 7346672.452], [500109.423, 7347538.638], [498700.36, 7346912.29], [498452.953, 7348054.485], [497960.504, 7348192.827], [497812.346, 7347872.385], [498319.328, 7347369.19], [497943.636, 7346989.851], [497325.941, 7346967.578], [496895.851, 7347606.631], [497279.453, 7348387.664], [496789.839, 7348850.95], [496965.94, 7349047.847], [496994.607, 7349819.234], [496356.87, 7350722.555], [496010.891, 7352584.256], [495660.353, 7352513.153], [495535.822, 7353564.179], [495412.555, 7353560.131], [494893.713, 7352923.449], [494419.968, 7352799.452], [494099.53, 7353063.713], [494078.607, 7353488.915], [494060.948, 7353498.588], [492699.581, 7353429.766], [487771.299, 7353224.598], [481133.189, 7351742.13], [481085.208, 7349732.969], [482188.486, 7349668.8], [482256.027, 7349268.003], [481263.053, 7349108.674], [480752.784, 7347663.452], [481337.577, 7347363.929], [481615.069, 7346546.214], [483530.02, 7345025.514], [482855.508, 7344139.762], [476092.148, 7340941.284], [475504.657, 7341334.976], [474851.537, 7343345.403], [474858.468, 7344085.991], [473756.75, 7344098.048], [473764.902, 7344865.517], [471563.333, 7344903.843], [471672.949, 7344557.206], [469798.11, 7343959.856], [468071.99, 7342265.828], [468023.708, 7341915.491], [466397.029, 7341971.238], [464056.317, 7340212.43], [463120.705, 7340412.976], [462068.881, 7339659.063], [460770.999, 7337969.309], [460567.28, 7338419.233], [459895.239, 7338530.412], [459563.534, 7339208.503], [459128.2, 7339206.662], [459130.488, 7338626.096], [458736.026, 7338025.663], [458819.568, 7337531.496], [457934.233, 7337960.185], [452522.9, 7340575.256], [452351.052, 7339960.582], [451898.944, 7340207.1], [452242.297, 7340711.583], [444853.57, 7344279.765], [434485.956, 7344048.166], [434294.556, 7344457.067], [434104.01, 7344242.201], [434060.204, 7344049.189], [425254.52, 7344288.386], [419840.958, 7347820.19], [415906.354, 7350333.902], [411114.474, 7353361.247], [401561.363, 7359275.278], [405450.151, 7363995.214], [413178.062, 7374305.669], [412499.786, 7390323.379], [412284.105, 7394267.949], [412035.943, 7398569.006], [411780.011, 7401738.84], [411431.451, 7402183.838], [411736.599, 7402270.586], [411402.469, 7405428.684], [410941.021, 7407214.327], [410555.001, 7406972.236], [410269.597, 7407273.587], [410325.318, 7407457.559], [410822.204, 7407720.82], [410393.861, 7409755.931], [410673.665, 7409834.931], [410719.948, 7411626.776], [410405.207, 7411672.258], [410215.922, 7410585.533], [408763.358, 7417278.326], [409423.99, 7417331.926], [409580.035, 7417959.226], [408560.891, 7418204.463], [408640.436, 7419672.575], [408848.759, 7420090.103], [408565.452, 7420135.889], [408258.283, 7419674.536], [406913.773, 7426046.917], [406318.284, 7428850.514], [406495.398, 7429223.069], [406113.615, 7429785.127], [402830.611, 7445148.327], [403173.487, 7445078.796], [403275.76, 7445311.71], [402746.625, 7445638.082], [402638.583, 7446197.379], [402848.86, 7446709.413], [402450.905, 7447167.556], [401952.851, 7450100.357], [407471.426, 7452716.507], [428225.465, 7449190.611]]]}}, {\\\"id\\\": \\\"163\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kivij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 45.9, \\\"freshwarea\\\": 115.92, \\\"gml_id\\\": 1601100437, \\\"landarea\\\": 483.96, \\\"namefin\\\": \\\"Kivij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Kivij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"265\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 599.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[390543.096, 7013842.652], [398765.11, 7012978.815], [404997.049, 7013443.761], [406100.98, 7012930.05], [406380.889, 7013464.827], [415187.249, 7017754.47], [417944.63, 7015240.824], [418598.16, 7013933.236], [415409.531, 7013715.616], [416243.432, 7004263.989], [417980.501, 6997686.862], [415279.52, 6997465.632], [409559.159, 6996768.814], [407056.988, 6995879.364], [406632.844, 6993800.996], [406862.156, 6990601.843], [406198.822, 6989870.001], [405308.726, 6990611.153], [404012.229, 6990282.464], [404239.471, 6989775.572], [403924.781, 6989505.585], [403730.955, 6990201.829], [402883.47, 6990123.484], [403336.98, 6988480.955], [401391.256, 6987961.64], [400224.392, 6992283.04], [398271.071, 6992115.202], [397962.149, 6991186.929], [397320.986, 6991049.415], [396408.544, 6991135.367], [393293.146, 6991026.531], [392882.821, 6992449.832], [392497.779, 6996301.495], [387848.408, 7002364.531], [387722.5, 7002395.289], [385696.266, 7003990.698], [386612.126, 7009629.973], [387535.842, 7011924.633], [387123.571, 7015642.183], [387878.205, 7015986.847], [387296.023, 7017190.734], [389814.314, 7018219.869], [390543.096, 7013842.652]]]}}, {\\\"id\\\": \\\"164\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kokem\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 35.4, \\\"freshwarea\\\": 50.78, \\\"gml_id\\\": 1601100594, \\\"landarea\\\": 480.48, \\\"namefin\\\": \\\"Kokem\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Kumo\\\", \\\"natcode\\\": \\\"271\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 531.26}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[260519.503, 6818726.479], [263236.792, 6817580.91], [263748.329, 6815011.608], [262883.624, 6814780.764], [264251.866, 6808859.591], [262460.383, 6807729.462], [264528.391, 6804790.051], [264362.048, 6804367.733], [263766.103, 6804151.454], [264692.351, 6801683.504], [264680.039, 6800779.63], [262979.515, 6799631.995], [261823.927, 6798138.535], [261215.647, 6798409.508], [261042.989, 6798083.878], [261921.493, 6797169.814], [261614.126, 6796475.47], [261236.8, 6796008.788], [261186.609, 6795011.854], [260977.567, 6794749.789], [260517.096, 6794468.61], [260447.953, 6794135.422], [259011.851, 6795243.666], [258955.778, 6794452.525], [258174.839, 6793955.76], [259279.988, 6793089.133], [256997.76, 6790195.252], [253803.569, 6793179.746], [246310.079, 6793564.282], [241334.386, 6800405.003], [240709.941, 6801260.276], [238966.13, 6802053.866], [238940.819, 6802705.332], [238188.062, 6803039.945], [238676.334, 6804822.362], [240678.433, 6804285.356], [243240.898, 6803122.737], [243284.861, 6803458.087], [243876.903, 6803399.199], [243698.638, 6802836.576], [244226.689, 6803166.506], [244472.782, 6804355.056], [243441.158, 6804942.157], [244099.204, 6806169.888], [244321.937, 6806904.356], [244336.218, 6807415.127], [245277.843, 6807615.157], [245530.933, 6808224.243], [245679.363, 6809006.975], [245339.557, 6808975.792], [245212.673, 6809408.404], [245688.606, 6809924.623], [246503.759, 6810017.019], [247010.391, 6810307.934], [246684.208, 6810684.98], [247259.045, 6810958.771], [246445.529, 6812417.922], [246167.082, 6812506.022], [246125.599, 6813001.728], [245406.169, 6813520.646], [244812.718, 6814694.687], [243747.259, 6816498.866], [244627.987, 6817099.047], [244149.578, 6817574.745], [245988.279, 6818473.314], [247214.744, 6818439.338], [248698.524, 6818563.014], [256997.689, 6825762.4], [260519.503, 6818726.479]]]}}, {\\\"id\\\": \\\"165\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Parkano\\\", \\\"elakelaisten_osuus\\\": 37.7, \\\"freshwarea\\\": 56.74, \\\"gml_id\\\": 1601100247, \\\"landarea\\\": 852.93, \\\"namefin\\\": \\\"Parkano\\\", \\\"nameswe\\\": \\\"Parkano\\\", \\\"natcode\\\": \\\"581\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 909.67}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[292847.171, 6902990.773], [293429.874, 6903266.368], [293408.32, 6901765.473], [294286.318, 6901761.643], [294280.345, 6898732.776], [294569.222, 6897911.658], [295684.346, 6896457.368], [295864.907, 6895313.285], [296287.523, 6894928.401], [296523.958, 6893533.308], [296832.092, 6893304.118], [297826.319, 6893772.822], [297686.953, 6892231.556], [297277.857, 6892167.089], [297695.621, 6891181.07], [298498.932, 6890041.777], [298515.309, 6889387.86], [300753.285, 6889450.293], [303425.555, 6889505.103], [304304.449, 6889186.754], [304702.423, 6889676.482], [305688.692, 6889975.799], [305767.405, 6889360.707], [306556.562, 6888949.323], [308082.872, 6888171.256], [308106.153, 6887549.454], [309561.128, 6887575.23], [310145.228, 6887445.005], [309982.605, 6883789.476], [308938.913, 6881751.294], [309302.757, 6880211.524], [307348.687, 6877745.982], [307236.528, 6877253.31], [306921.704, 6877445.607], [307132.545, 6876639.82], [306551.8, 6875938.515], [306164.701, 6875299.577], [306526.779, 6874055.906], [306054.178, 6873782.575], [306184.906, 6868744.272], [298116.818, 6868555.33], [298027.259, 6868720.853], [297717.874, 6868660.474], [297160.857, 6870986.654], [295992.451, 6871505.151], [296399.311, 6872544.7], [296174.694, 6873153.872], [296291.292, 6873549.238], [296920.44, 6873837.937], [297545.156, 6873772.866], [298101.16, 6873832.847], [298010.671, 6874198.944], [297504.414, 6874346.5], [294594.715, 6873726.119], [293633.943, 6873726.907], [292658.808, 6873168.31], [292624.543, 6872562.221], [291001.564, 6869897.938], [290121.841, 6870881.29], [289594.115, 6870779.882], [288706.019, 6871131.626], [288135.292, 6871074.12], [287866.532, 6877633.844], [286571.455, 6877346.133], [285749.186, 6875245.865], [285087.319, 6874521.186], [284838.619, 6875247.022], [285651.803, 6875999.758], [285540.194, 6877032.109], [283049.208, 6875811.589], [282899.318, 6875361.175], [282203.708, 6875541.329], [282410.512, 6876185.347], [280543.178, 6876588.11], [280650.222, 6874634.009], [280058.91, 6874685.988], [279835.125, 6873748.394], [276267.698, 6871570.627], [275885.414, 6872139.68], [275323.976, 6872333.451], [275315.93, 6872759.145], [274850.954, 6872494.898], [273437.465, 6872987.396], [272598.825, 6874051.206], [272023.804, 6875965.587], [271747.796, 6876503.156], [272285.428, 6876780.299], [272284.096, 6877936.503], [270517.333, 6878421.852], [270869.943, 6879793.934], [270167.395, 6880373.457], [269982.002, 6880207.72], [270275.283, 6879458.856], [269811.08, 6878173.579], [269335.935, 6878164.907], [269188.59, 6879134.629], [269750.138, 6879422.856], [269594.366, 6879865.833], [268657.973, 6880338.361], [268111.236, 6880174.072], [265892.059, 6881961.973], [265604.691, 6882061.381], [265534.528, 6882446.651], [266498.242, 6882295.559], [267868.558, 6883316.302], [268316.86, 6884072.023], [270056.732, 6886111.32], [273731.978, 6887419.275], [273251.424, 6886577.759], [273668.704, 6886339.63], [274445.337, 6887671.762], [275055.77, 6887314.384], [279532.37, 6888121.838], [279291.257, 6897176.927], [279725.49, 6898572.869], [282330.985, 6899664.929], [282491.403, 6899164.528], [282888.481, 6899218.773], [282948.014, 6899373.35], [283056.388, 6899309.256], [284575.913, 6900287.774], [284173.085, 6901215.432], [283629.204, 6901946.889], [284026.338, 6903029.016], [284420.523, 6903162.065], [283929.311, 6904362.077], [284204.897, 6904466.86], [283972.17, 6905004.74], [283858.852, 6906225.5], [284029.158, 6907503.804], [283923.159, 6907759.119], [283105.171, 6907642.375], [283567.028, 6909286.087], [283518.208, 6909603.087], [283762.358, 6909688.478], [283403.351, 6910509.331], [283701.696, 6911326.951], [287089.675, 6910900.346], [292281.129, 6912796.944], [292847.171, 6902990.773]], [[284163.636, 6878953.042], [284529.413, 6877576.393], [284488.131, 6877155.726], [283938.579, 6877182.881], [283984.948, 6877596.563], [283697.327, 6878275.469], [283209.286, 6878080.685], [283106.931, 6877248.55], [282711.725, 6877281.338], [282671.351, 6878151.068], [282934.053, 6878922.504], [283388.179, 6879354.658], [284163.636, 6878953.042]]]}}, {\\\"id\\\": \\\"166\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Orip\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 30.3, \\\"freshwarea\\\": 0.08, \\\"gml_id\\\": 1601100208, \\\"landarea\\\": 117.64, \\\"namefin\\\": \\\"Orip\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Orip\\\\u00e4\\\\u00e4\\\", \\\"natcode\\\": \\\"561\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 117.72}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[262864.135, 6769538.468], [261547.886, 6767805.953], [260228.214, 6767544.723], [260453.834, 6766992.793], [260273.288, 6766640.709], [261906.975, 6766296.309], [261542.276, 6764518.83], [260797.574, 6764229.146], [257779.821, 6768440.944], [259284.949, 6769135.523], [260942.911, 6769767.253], [262864.135, 6769538.468]]], [[[270234.312, 6761390.084], [270756.745, 6761666.39], [270827.408, 6760961.345], [270825.138, 6755416.674], [270297.624, 6753790.496], [271244.907, 6750496.837], [272536.435, 6749239.962], [269332.746, 6749678.537], [268663.875, 6750141.368], [268497.564, 6750847.861], [268214.675, 6750621.712], [267904.906, 6750877.99], [265548.574, 6751474.511], [263769.786, 6751382.9], [262113.411, 6752950.561], [260436.312, 6753935.293], [258623.453, 6756894.97], [259236.822, 6757191.994], [259474.956, 6757798.275], [258697.329, 6757976.773], [259190.35, 6759178.957], [259833.832, 6759912.942], [260892.532, 6760578.264], [260791.972, 6760960.05], [261310.08, 6762245.338], [261728.108, 6762641.748], [262536.479, 6761148.167], [262926.268, 6761713.269], [263175.389, 6760872.689], [264131.843, 6761149.175], [264370.494, 6759954.756], [267905.994, 6760155.556], [269719.065, 6761118.296], [269720.298, 6763195.854], [270251.786, 6763214.648], [270234.312, 6761390.084]]]]}}, {\\\"id\\\": \\\"167\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Oulu\\\", \\\"elakelaisten_osuus\\\": 19.9, \\\"freshwarea\\\": 80.08, \\\"gml_id\\\": 1601100216, \\\"landarea\\\": 2971.96, \\\"namefin\\\": \\\"Oulu\\\", \\\"nameswe\\\": \\\"Ule\\\\u00e5borg\\\", \\\"natcode\\\": \\\"564\\\", \\\"seawarea\\\": 765.5, \\\"totalarea\\\": 3817.54}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[435609.141, 7249252.604], [432819.367, 7248335.924], [432575.526, 7248425.641], [432651.55, 7249188.537], [435596.671, 7249434.605], [435609.141, 7249252.604]]], [[[454541.099, 7271357.86], [454689.127, 7270616.058], [461012.297, 7270595.634], [460892.921, 7264753.013], [461829.217, 7264753.401], [462065.657, 7264317.803], [460866.028, 7263402.904], [460818.539, 7261099.149], [461329.173, 7260610.15], [461376.242, 7260217.956], [461180.564, 7260200.061], [460805.317, 7260669.371], [460700.885, 7255425.283], [472162.137, 7250232.787], [473314.69, 7247271.047], [471670.56, 7247556.266], [471266.904, 7245456.396], [469996.536, 7245093.948], [469195.914, 7244999.034], [468174.847, 7245584.04], [467826.188, 7245667.785], [467404.968, 7245570.153], [467296.157, 7245435.485], [468164.453, 7245289.956], [469030.616, 7244761.003], [469433.944, 7244688.273], [471272.057, 7245038.713], [472010.361, 7244865.746], [470974.357, 7243936.154], [469885.986, 7244381.284], [469486.148, 7243468.261], [466450.287, 7239721.078], [465233.745, 7240335.297], [464234.849, 7239236.425], [468009.568, 7231051.786], [475394.804, 7224931.99], [480617.687, 7219881.979], [480898.69, 7219399.672], [482550.406, 7219321.807], [482511.286, 7218447.031], [483051.779, 7218599.301], [483177.126, 7218273.313], [482451.614, 7218233.329], [482511.559, 7217793.069], [482433.139, 7216885.53], [482498.577, 7216433.498], [481673.172, 7214525.888], [483946.324, 7210095.09], [484484.313, 7209919.485], [484909.749, 7210070.683], [485547.498, 7209948.22], [486108.712, 7210049.838], [486526.606, 7209301.121], [485848.322, 7208527.126], [484698.533, 7208266.135], [484671.702, 7208103.549], [485520.896, 7208147.746], [484869.946, 7207406.204], [485310.087, 7206136.857], [487687.552, 7207375.227], [488615.371, 7204851.929], [489212.055, 7204161.91], [488875.547, 7203985.017], [489185.771, 7203676.045], [488905.238, 7203393.428], [489060.395, 7203209.791], [485062.106, 7199180.203], [484991.917, 7199525.36], [485030.403, 7199847.128], [484863.342, 7199956.938], [484699.471, 7199822.089], [484634.194, 7199386.685], [484724.666, 7199129.238], [483975.656, 7196420.516], [482570.677, 7196524.689], [481549.587, 7197095.068], [481471.919, 7197407.787], [481043.445, 7197523.488], [480974.68, 7197269.048], [480318.462, 7197616.784], [480084.818, 7197558.095], [479907.349, 7198014.411], [479200.446, 7198155.58], [477842.145, 7193155.706], [477094.633, 7191754.258], [476055.556, 7192040.503], [476284.444, 7192886.745], [475723.81, 7193335.32], [475630.272, 7193848.165], [475245.356, 7193985.954], [474792.617, 7193751.726], [474318.697, 7192016.92], [472836.461, 7192794.205], [472900.206, 7193073.71], [471748.255, 7193931.586], [471179.627, 7194844.033], [470992.982, 7195373.86], [470667.816, 7195480.533], [470553.5, 7195327.617], [470825.235, 7194914.815], [471302.173, 7194051.805], [471893.398, 7193557.487], [471272.134, 7191252.664], [470190.148, 7192104.154], [468815.623, 7193188.223], [468376.402, 7192628.189], [467213.815, 7193549.533], [467640.636, 7194076.758], [466514.166, 7195027.249], [466030.856, 7194487.016], [465324.897, 7194508.701], [464482.338, 7194784.938], [463264.563, 7195279.722], [465608.498, 7198169.996], [464965.35, 7198854.76], [463371.362, 7199430.183], [462729.928, 7199409.936], [461925.943, 7200131.506], [461881.169, 7200984.877], [461715.217, 7201434.652], [462538.155, 7202085.092], [461758.819, 7203136.159], [461248.766, 7202429.007], [461042.318, 7202643.953], [460129.584, 7202765.132], [459394.531, 7202481.919], [458772.98, 7202668.908], [458368.205, 7202915.259], [457900.404, 7203272.079], [457347.665, 7202938.655], [456943.54, 7202633.036], [456537.913, 7202678.222], [457297.009, 7205506.559], [456711.415, 7205505.653], [455978.988, 7205906.259], [455529.293, 7205782.716], [455212.025, 7206321.527], [454714.217, 7205860.802], [454641.581, 7206075.817], [452122.336, 7204716.322], [451684.555, 7205071.094], [451995.151, 7205404.68], [451810.65, 7205605.707], [451427.707, 7205440.645], [451503.348, 7206341.315], [451298.365, 7206372.952], [449922.61, 7203902.173], [450090.16, 7203731.282], [451400.904, 7204981.831], [451692.431, 7204372.934], [451859.703, 7204575.974], [452514.718, 7203826.126], [445082.473, 7197035.875], [445124.977, 7196769.367], [444894.902, 7196609.982], [444628.921, 7197009.975], [444433.001, 7196804.384], [444188.545, 7197272.937], [444038.434, 7197449.583], [443233.471, 7196945.75], [442969.099, 7197253.45], [441822.183, 7196944.258], [441801.28, 7196696.349], [441414.527, 7195826.948], [441351.033, 7196378.233], [441195.26, 7196612.329], [440834.202, 7196667.966], [440331.054, 7196554.657], [439980.948, 7196840.426], [440361.296, 7196882.91], [440107.431, 7197265.781], [440372.786, 7197460.702], [439819.994, 7198411.25], [439410.179, 7199117.032], [437397.397, 7200739.678], [437868.012, 7200987.136], [437864.88, 7201451.532], [437175.562, 7200882.337], [434499.733, 7202605.988], [430531.487, 7202640.455], [428847.322, 7202947.939], [426188.062, 7203600.46], [426063.946, 7203160.564], [426094.275, 7202566.478], [426320.166, 7202154.113], [426231.047, 7201713.286], [425934.667, 7201222.769], [425549.598, 7200640.147], [425711.926, 7200044.475], [425853.555, 7199853.078], [425963.431, 7199665.062], [425865.918, 7199487.647], [426059.702, 7198661.89], [425994.868, 7198552.285], [426401.642, 7197497.376], [426386.798, 7197366.2], [426230.992, 7196134.158], [424311.252, 7196521.252], [423581.433, 7195557.463], [420782.008, 7196394.278], [420929.535, 7196824.492], [420391.319, 7196643.734], [407784.854, 7208121.521], [411722.421, 7215387.29], [412254.653, 7216585.946], [403898.34, 7225741.843], [364872.193, 7230928.956], [366270.584, 7238420.621], [388075.268, 7234147.593], [414985.888, 7237798.666], [414822.784, 7236281.805], [417042.583, 7235995.332], [418420.272, 7237409.324], [420987.788, 7238750.265], [421537.328, 7238769.747], [422030.849, 7238385.984], [422774.725, 7238065.007], [430615.373, 7237222.465], [432388.139, 7237418.018], [432420.399, 7237414.132], [433400.201, 7237297.111], [433402.186, 7237296.874], [433608.298, 7237271.33], [434320.768, 7237185.676], [434438.188, 7237171.559], [434497.404, 7237165.236], [434602.02, 7237152.753], [434646.26, 7237147.916], [434752.608, 7237136.649], [434800.38, 7237130.895], [434912.957, 7237120.241], [434970.836, 7237111.278], [435019.752, 7237103.647], [435038.837, 7237101.383], [435351.734, 7237066.104], [435478.632, 7237051.633], [435624.928, 7237060.673], [435687.613, 7237070.645], [435729.949, 7237024.836], [435881.213, 7237005.15], [435988.959, 7237000.373], [436182.707, 7236886.15], [436366.553, 7236779.105], [436429.496, 7236714.907], [436485.022, 7236687.947], [436542.438, 7236683.949], [436760.946, 7236344.701], [436859.98, 7236244.509], [437289.106, 7235928.857], [437355.76, 7235859.602], [437389.747, 7235913.698], [437413.501, 7235933.846], [437686.982, 7236167.735], [438231.937, 7236636.213], [438504.662, 7236870.284], [438526.001, 7236889.247], [438602.398, 7236954.301], [438864.25, 7237179.957], [438945.178, 7237251.149], [439046.893, 7237340.495], [439062.289, 7237353.2], [439168.31, 7237446.069], [440010.195, 7238177.315], [440053.065, 7238214.597], [440096.977, 7238253.406], [440234.758, 7238375.142], [440288.527, 7238422.652], [440356.408, 7238482.085], [440492.43, 7238600.925], [440645.284, 7238729.566], [440816.204, 7238878.92], [440950.474, 7239000.968], [441023.528, 7239065.933], [440920.634, 7239214.877], [440744.562, 7239469.75], [440711.04, 7239518.275], [440642.577, 7239617.378], [440623.165, 7239699.402], [440791.706, 7239830.216], [440657.888, 7239991.759], [440531.821, 7240143.947], [440764.104, 7240513.239], [440803.616, 7240575.772], [440766.081, 7240624.079], [440717.382, 7240686.751], [440551.4, 7240899.664], [439966.074, 7240708.313], [439927.722, 7240760.033], [439741.231, 7240683.145], [438997.292, 7240946.528], [438728.124, 7241042.393], [438639.057, 7241094.811], [438564.399, 7241190.253], [438262.376, 7241581.211], [438235.084, 7241616.967], [438232.294, 7241621.352], [438220.193, 7241641.175], [438096.342, 7241845.769], [438163.656, 7241886.246], [438179.275, 7241895.156], [438137.337, 7241950.552], [438085.811, 7241997.501], [438041.018, 7242050.956], [438025.059, 7242070.697], [438014.618, 7242083.213], [437970.055, 7242134.017], [437940.698, 7242149.533], [437911.582, 7242142.927], [437899.732, 7242121.208], [437853.772, 7242159.216], [437945.408, 7242368.672], [438015.636, 7242377.294], [438051.624, 7242369.948], [438095.049, 7242380.402], [438139.462, 7242364.957], [438181.096, 7242328.807], [438219.247, 7242266.379], [438218.289, 7242252.044], [438187.594, 7242234.837], [438209.38, 7242209.675], [438259.446, 7242096.623], [438259.1, 7242072.29], [438246.435, 7242068.834], [438245.121, 7242051.644], [438321.253, 7241969.836], [438375.29, 7241929.107], [438448.365, 7241898.253], [438501.841, 7241891.876], [438590.359, 7241923.095], [438618.006, 7241923.28], [438668.934, 7241974.682], [438688.957, 7242030.326], [438713.384, 7242069.44], [438698.776, 7242081.44], [438716.179, 7242148.231], [438771.774, 7242233.316], [438795.08, 7242251.049], [438831.065, 7242271.482], [438841.317, 7242268.741], [438860.38, 7242281.774], [438885.853, 7242275.042], [438902.487, 7242306.637], [438940.64, 7242336.284], [438992.607, 7242454.969], [439016.699, 7242546.718], [439018.324, 7242597.39], [439048.618, 7242712.863], [439029.194, 7242821.531], [438987.0, 7242907.518], [438935.47, 7242985.146], [438813.323, 7243034.883], [438742.559, 7243073.685], [438711.489, 7243100.556], [438653.168, 7243155.234], [438570.546, 7243211.932], [438496.034, 7243224.357], [438438.448, 7243214.646], [438412.783, 7243220.777], [438371.926, 7243249.069], [438348.187, 7243283.952], [438342.633, 7243318.158], [438300.685, 7243362.365], [438306.317, 7243381.242], [438327.857, 7243406.756], [438317.404, 7243506.46], [438333.785, 7243618.452], [438379.751, 7243720.938], [438394.456, 7243776.943], [438466.979, 7243905.113], [438505.248, 7243997.049], [438537.338, 7244178.42], [438585.33, 7244237.576], [438609.72, 7244255.41], [438623.807, 7244275.156], [438623.521, 7244296.747], [438645.227, 7244328.606], [438707.046, 7244374.257], [438731.087, 7244419.7], [438739.176, 7244482.295], [438729.611, 7244554.542], [438652.376, 7244722.096], [438575.456, 7244836.812], [438517.183, 7244906.351], [438482.158, 7244984.02], [438409.377, 7245186.164], [438413.847, 7245251.836], [438405.563, 7245253.26], [438365.097, 7245262.39], [438300.916, 7245358.721], [438277.568, 7245382.323], [438179.146, 7245226.887], [437920.405, 7245059.052], [437671.586, 7245566.51], [437771.771, 7245716.043], [437839.755, 7245814.967], [437676.614, 7245973.074], [437741.614, 7246042.049], [435486.112, 7248251.902], [437101.716, 7251320.914], [436755.625, 7252505.571], [444079.256, 7270323.677], [449211.357, 7271229.371], [449250.194, 7271301.868], [454068.902, 7271714.991], [454541.099, 7271357.86]], [[484067.512, 7201371.061], [484119.141, 7200252.672], [484350.559, 7200179.941], [484576.93, 7199904.956], [483877.178, 7199918.456], [483850.869, 7198905.421], [482977.729, 7199140.003], [483328.194, 7201498.637], [483859.673, 7201626.338], [484067.512, 7201371.061]], [[483960.445, 7203194.991], [484976.406, 7203438.889], [485412.04, 7202933.429], [485418.887, 7202411.019], [484746.387, 7202503.742], [485058.026, 7202811.502], [484736.278, 7202974.075], [483736.809, 7202623.376], [483447.245, 7202688.878], [483375.2, 7202801.8], [483649.685, 7203102.423], [483568.932, 7203462.987], [483960.445, 7203194.991]], [[456431.141, 7248705.838], [456766.802, 7248138.04], [457360.943, 7247970.644], [459258.555, 7248453.677], [460015.237, 7247820.89], [460520.949, 7242121.548], [453395.501, 7240901.587], [453304.001, 7241823.144], [453168.835, 7243281.572], [452976.425, 7245448.545], [452673.328, 7248026.658], [453721.83, 7248064.032], [454679.509, 7248187.745], [454676.239, 7248470.344], [455867.482, 7248770.67], [456431.141, 7248705.838]]]]}}, {\\\"id\\\": \\\"168\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ruokolahti\\\", \\\"elakelaisten_osuus\\\": 39.6, \\\"freshwarea\\\": 277.58, \\\"gml_id\\\": 1601100443, \\\"landarea\\\": 942.27, \\\"namefin\\\": \\\"Ruokolahti\\\", \\\"nameswe\\\": \\\"Ruokolahti\\\", \\\"natcode\\\": \\\"700\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1219.85}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[620151.114, 6827002.29], [618976.698, 6822775.013], [618961.202, 6822781.622], [618959.17, 6822774.405], [618556.525, 6821336.418], [617953.956, 6818825.979], [616934.369, 6819136.207], [616440.175, 6819746.949], [615680.838, 6819528.231], [614937.321, 6819785.317], [613916.497, 6818368.728], [613350.867, 6817724.999], [612570.536, 6817623.219], [612394.416, 6817927.151], [611581.985, 6818337.888], [610033.227, 6815822.391], [611681.196, 6814924.61], [612109.663, 6814273.815], [613287.563, 6813250.195], [613648.111, 6813324.835], [615023.114, 6812491.613], [614790.972, 6811964.521], [613863.907, 6810975.914], [613909.552, 6810425.981], [613652.36, 6809727.207], [613502.726, 6808842.434], [612970.962, 6806620.452], [612669.583, 6806301.651], [612086.467, 6806453.713], [609604.464, 6806683.562], [609442.911, 6806897.4], [608356.053, 6807293.944], [607889.976, 6806883.307], [608233.914, 6806527.044], [608722.584, 6806805.981], [609330.881, 6806548.118], [609310.884, 6806212.706], [610931.76, 6805770.365], [610177.766, 6804582.797], [610151.83, 6804132.758], [610777.953, 6803879.01], [611134.807, 6802750.563], [610262.988, 6802405.638], [610136.203, 6801735.097], [610256.487, 6801363.137], [609819.806, 6800881.004], [609666.338, 6800359.754], [610536.864, 6798906.628], [611075.882, 6798638.78], [611201.586, 6798294.372], [610816.91, 6798130.993], [609877.752, 6798031.681], [609386.034, 6798165.399], [608875.624, 6797795.772], [609331.8, 6797242.202], [610367.84, 6796625.01], [610329.748, 6796038.511], [609943.921, 6795825.829], [610373.902, 6795216.418], [610452.754, 6794743.548], [609968.633, 6794441.103], [609515.457, 6794293.079], [609043.947, 6794321.848], [609185.527, 6792786.074], [609484.7, 6792534.617], [609296.602, 6791821.333], [608560.973, 6791652.929], [610488.015, 6789015.407], [610861.94, 6788936.183], [611631.689, 6788369.955], [611969.414, 6788012.02], [609151.794, 6785866.767], [608698.741, 6785463.503], [608340.239, 6785752.209], [608339.867, 6785752.508], [603481.503, 6789663.155], [603912.652, 6790749.549], [603425.182, 6790904.384], [602761.39, 6791332.681], [603074.977, 6792576.039], [602890.257, 6793122.363], [602534.202, 6793268.213], [602024.201, 6792775.966], [602190.985, 6793377.261], [602873.162, 6795012.41], [602392.775, 6795958.022], [602086.541, 6795477.001], [599669.874, 6794877.355], [598941.403, 6795109.88], [598466.211, 6794274.749], [599346.282, 6792701.622], [599204.259, 6792013.805], [597829.105, 6790248.147], [597225.264, 6790900.146], [594667.94, 6790521.272], [593682.619, 6791103.442], [591600.941, 6789522.577], [591358.837, 6789769.532], [590731.268, 6790415.065], [588050.936, 6789358.495], [588651.35, 6788698.311], [588745.838, 6787998.473], [586253.678, 6786335.467], [586394.714, 6785968.495], [585889.599, 6786089.993], [580741.853, 6790605.096], [574927.383, 6795299.456], [572035.026, 6799994.33], [570104.336, 6801060.389], [568422.799, 6804020.559], [566913.4, 6805721.647], [567647.605, 6805338.011], [567322.732, 6806203.053], [567456.176, 6806459.55], [568055.634, 6806242.644], [568668.681, 6807035.426], [568711.062, 6807414.371], [569323.81, 6808056.314], [569794.608, 6809923.955], [570287.21, 6809660.368], [571512.413, 6809889.788], [571548.622, 6811103.766], [571611.776, 6811611.702], [572376.92, 6811868.767], [572218.613, 6812335.399], [572631.944, 6812587.301], [573049.675, 6812643.283], [574207.305, 6813180.98], [575172.613, 6814167.395], [576045.059, 6814506.169], [575596.635, 6817590.723], [575718.785, 6818224.569], [576626.611, 6820614.718], [577153.999, 6820542.953], [577618.34, 6819454.134], [577874.71, 6819246.883], [579323.121, 6820886.44], [581202.267, 6819220.706], [581149.842, 6816953.893], [581815.155, 6817073.99], [581990.121, 6816690.388], [582296.247, 6816815.96], [583155.829, 6816630.993], [584032.415, 6816790.525], [584439.839, 6816553.567], [584644.836, 6815998.289], [587022.962, 6816208.759], [587791.2, 6816699.644], [587853.116, 6815685.2], [589040.968, 6816138.666], [589413.997, 6816104.506], [589715.42, 6817049.628], [590489.684, 6817407.605], [591585.069, 6817815.57], [592276.282, 6817623.793], [593466.402, 6817891.525], [595424.474, 6817314.955], [595438.864, 6819265.774], [596561.602, 6820001.675], [596433.819, 6820651.16], [596718.363, 6821421.612], [596327.952, 6823806.064], [596879.88, 6823986.246], [597543.986, 6823690.271], [598091.278, 6823686.95], [599250.305, 6823211.564], [599879.391, 6823224.035], [600339.558, 6822975.738], [603980.674, 6824572.057], [604875.308, 6824099.292], [606818.159, 6824234.436], [607543.852, 6824001.872], [608945.766, 6823948.263], [610697.076, 6824648.54], [617951.047, 6827182.424], [620151.114, 6827002.29]]]}}, {\\\"id\\\": \\\"169\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Taivassalo\\\", \\\"elakelaisten_osuus\\\": 37.5, \\\"freshwarea\\\": 1.68, \\\"gml_id\\\": 1601100620, \\\"landarea\\\": 140.28, \\\"namefin\\\": \\\"Taivassalo\\\", \\\"nameswe\\\": \\\"T\\\\u00f6vsala\\\", \\\"natcode\\\": \\\"833\\\", \\\"seawarea\\\": 75.72, \\\"totalarea\\\": 217.68}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[196668.657, 6734991.766], [196207.868, 6734848.822], [196328.1, 6734488.125], [196328.404, 6734487.214], [196328.715, 6734486.28], [196341.432, 6734448.129], [195994.392, 6734576.494], [195768.046, 6734082.207], [196665.219, 6733749.633], [196985.835, 6733986.17], [197256.222, 6733779.525], [197700.902, 6734193.418], [198131.59, 6734299.788], [199431.638, 6733873.249], [199128.857, 6732834.778], [199276.768, 6732741.728], [200078.324, 6733046.312], [200836.804, 6732996.353], [201893.511, 6733298.73], [201911.684, 6732992.367], [202747.62, 6733106.47], [202944.206, 6733250.651], [203287.119, 6732996.678], [203464.428, 6732707.528], [204078.315, 6732798.927], [204493.692, 6732162.114], [205359.178, 6731151.498], [205942.622, 6731267.194], [206333.833, 6731254.387], [207341.981, 6731695.551], [207573.149, 6731969.23], [208058.535, 6732702.467], [208420.917, 6732993.837], [208770.171, 6733002.452], [209938.592, 6731518.089], [210466.239, 6730688.182], [210756.33, 6729854.584], [211452.292, 6728395.149], [211684.089, 6727794.583], [212009.516, 6727740.584], [212305.854, 6728224.432], [212737.8, 6727749.691], [213145.727, 6727613.489], [214247.914, 6726375.842], [213829.192, 6725561.012], [213020.784, 6724988.746], [212666.578, 6725094.901], [212267.27, 6724810.316], [211863.904, 6724213.416], [211468.966, 6723983.186], [211129.99, 6723891.315], [210800.714, 6724257.575], [210611.713, 6724453.203], [209751.23, 6724719.66], [209622.708, 6724425.277], [209381.041, 6723213.336], [208586.659, 6721440.512], [208735.315, 6721366.326], [208986.515, 6720127.157], [208866.164, 6719773.628], [208477.544, 6719570.733], [208486.602, 6719331.368], [208558.563, 6719051.384], [208360.244, 6719094.54], [208027.195, 6719299.329], [207778.093, 6719110.198], [207866.453, 6718885.384], [207944.572, 6718048.583], [208229.426, 6717701.334], [208419.783, 6717493.374], [207715.057, 6717548.731], [206825.9, 6717720.804], [206231.228, 6717947.675], [204900.481, 6716119.568], [203663.663, 6715607.006], [199729.771, 6715828.949], [199244.059, 6718739.965], [198856.749, 6719007.097], [198718.91, 6719390.193], [198531.645, 6720324.362], [198730.751, 6720472.579], [198811.077, 6721123.901], [198931.498, 6721642.805], [199293.314, 6721506.899], [199305.922, 6722050.634], [198258.485, 6723103.684], [197689.565, 6723310.926], [197483.776, 6723636.168], [197198.389, 6724267.326], [197367.459, 6724835.154], [197802.175, 6725849.426], [198491.208, 6726160.496], [198495.912, 6726269.098], [198050.176, 6726928.299], [196809.792, 6728434.026], [193747.868, 6731395.801], [192762.13, 6731724.553], [192169.833, 6732315.211], [191924.172, 6734143.657], [192613.512, 6734127.278], [192904.154, 6733453.59], [193149.394, 6733378.276], [193295.424, 6733693.414], [193508.331, 6734567.698], [194219.169, 6733586.707], [194263.898, 6733403.293], [194663.56, 6733077.918], [194804.705, 6733371.103], [194729.923, 6733617.239], [195019.65, 6733674.817], [194961.244, 6734167.141], [195011.908, 6734410.759], [195142.247, 6734893.467], [195348.206, 6735108.993], [195417.963, 6735358.742], [195701.788, 6735657.636], [196668.657, 6734991.766]]]}}, {\\\"id\\\": \\\"170\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Mikkeli\\\", \\\"elakelaisten_osuus\\\": 30.3, \\\"freshwarea\\\": 681.22, \\\"gml_id\\\": 1601100193, \\\"landarea\\\": 2548.35, \\\"namefin\\\": \\\"Mikkeli\\\", \\\"nameswe\\\": \\\"S:t Michel\\\", \\\"natcode\\\": \\\"491\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3229.57}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[507952.822, 6895578.39], [508753.806, 6894111.592], [508402.653, 6893496.839], [508400.059, 6892749.443], [509930.768, 6890993.191], [512464.849, 6887776.874], [518164.326, 6880086.976], [517669.366, 6879757.315], [518801.286, 6878448.701], [519289.482, 6877232.305], [519388.106, 6875967.328], [519939.195, 6875124.459], [520552.042, 6874895.344], [520597.747, 6872217.053], [521409.024, 6871258.946], [521656.431, 6870459.271], [522074.665, 6869903.199], [524684.224, 6867326.26], [522597.492, 6865496.683], [523136.58, 6864646.831], [522579.014, 6863890.232], [522075.338, 6861948.814], [522802.566, 6859173.242], [523186.12, 6858051.998], [523759.889, 6857636.47], [524067.171, 6856866.683], [524738.403, 6856186.862], [525242.501, 6855837.707], [525705.827, 6853738.36], [525981.894, 6853627.995], [527692.141, 6851124.328], [528478.024, 6850931.81], [529153.462, 6849385.839], [529145.368, 6849010.091], [528540.621, 6847863.152], [529127.456, 6846974.777], [530113.662, 6846765.81], [530946.209, 6845785.413], [530899.232, 6845219.976], [531351.606, 6844529.416], [531814.526, 6843555.512], [533031.788, 6843100.553], [533294.886, 6842802.131], [533323.564, 6842390.295], [533730.407, 6841531.138], [534405.459, 6840748.452], [535327.823, 6841404.158], [536354.018, 6841313.246], [536981.785, 6841562.29], [537408.186, 6841046.557], [538475.358, 6840721.394], [538819.223, 6840203.506], [538622.804, 6839940.311], [540471.463, 6839192.624], [540791.237, 6838888.733], [542838.406, 6839615.065], [543646.078, 6838550.639], [543635.495, 6837939.048], [543924.373, 6837922.796], [546460.769, 6835848.308], [546490.862, 6834961.367], [546609.719, 6834192.679], [546447.371, 6833601.8], [545358.225, 6833390.561], [545181.588, 6833077.806], [546159.204, 6832206.839], [546411.915, 6831635.012], [546521.076, 6830764.365], [546201.507, 6830547.851], [546398.533, 6829607.932], [545961.618, 6828261.175], [546267.197, 6827859.838], [546276.197, 6827343.747], [546851.168, 6826789.874], [547531.038, 6825415.33], [547859.379, 6823891.352], [547044.932, 6823725.09], [546663.062, 6823914.436], [546213.743, 6823948.82], [545671.963, 6823773.388], [545643.81, 6823274.384], [545052.617, 6823097.259], [544790.825, 6822576.194], [544876.182, 6821916.799], [544030.568, 6820542.724], [543660.504, 6820619.911], [543406.603, 6820025.697], [543086.431, 6820131.452], [542981.276, 6819830.674], [543193.132, 6819264.342], [543147.216, 6818717.426], [541796.259, 6819101.764], [541368.327, 6819810.875], [540503.777, 6819771.587], [540731.493, 6818584.47], [540004.827, 6818234.077], [539680.218, 6818428.128], [539166.627, 6818306.075], [540037.89, 6817705.124], [540062.545, 6817354.666], [540423.684, 6816914.845], [540431.339, 6816338.635], [540786.99, 6815822.291], [540443.729, 6815672.75], [540121.158, 6815826.586], [539618.361, 6815876.563], [540004.561, 6815312.228], [539481.222, 6815160.853], [539641.061, 6814564.596], [539952.737, 6814357.981], [540196.242, 6813846.19], [540525.026, 6811494.846], [538712.359, 6811249.237], [537706.066, 6810845.193], [536986.353, 6810847.384], [536252.352, 6810131.367], [536662.493, 6809393.671], [536417.096, 6808794.412], [536815.138, 6808512.43], [536773.357, 6808213.851], [536242.969, 6808208.648], [536123.526, 6806988.542], [536670.91, 6806589.61], [537311.154, 6806636.398], [537270.474, 6806098.716], [537738.091, 6805505.562], [538939.513, 6804641.819], [540059.564, 6804182.511], [542379.233, 6803375.649], [540382.265, 6799672.642], [537266.521, 6799720.606], [534599.948, 6801263.658], [533577.486, 6800893.289], [532883.759, 6801417.368], [532096.377, 6801040.013], [531862.069, 6801157.263], [531633.565, 6800592.99], [531972.233, 6800095.596], [531929.757, 6799331.507], [531521.828, 6798534.429], [532309.253, 6798563.049], [532862.492, 6798303.235], [532582.314, 6797240.966], [532244.95, 6797206.177], [531709.761, 6797554.23], [531304.335, 6796323.729], [531694.781, 6796048.145], [531337.628, 6795584.032], [529856.413, 6796728.052], [529091.235, 6795122.901], [529956.79, 6794738.365], [530550.157, 6794209.386], [531584.139, 6794548.356], [531973.485, 6794214.696], [530951.313, 6792241.092], [529178.633, 6791501.48], [527218.911, 6792945.679], [524818.382, 6792733.55], [523073.983, 6793120.781], [523370.675, 6791813.317], [523545.608, 6791368.4], [523461.348, 6790744.054], [523251.535, 6790453.971], [522574.91, 6790287.235], [521781.63, 6790328.413], [520893.79, 6790133.287], [520099.707, 6790484.939], [519846.614, 6790008.632], [519557.335, 6789502.137], [519699.948, 6788738.05], [520389.219, 6787322.132], [520334.347, 6786709.482], [519698.777, 6786117.366], [519054.867, 6786323.731], [517689.31, 6787193.867], [517030.066, 6788365.285], [517267.066, 6788854.187], [517313.143, 6789339.089], [518026.15, 6789845.565], [518678.091, 6790033.543], [518645.013, 6790560.019], [518224.362, 6790728.828], [518096.61, 6791134.261], [517435.273, 6791808.582], [516398.985, 6793165.923], [516216.753, 6794022.172], [515597.994, 6795524.156], [515544.611, 6796239.964], [515252.23, 6796241.662], [514970.747, 6795809.336], [514614.289, 6796320.826], [514561.143, 6796236.17], [514023.727, 6796523.439], [512201.465, 6797018.827], [511641.685, 6798136.868], [512118.491, 6798171.456], [512945.593, 6797951.748], [513808.406, 6797879.985], [513939.451, 6798162.87], [513949.942, 6798891.473], [513459.839, 6799149.865], [512724.502, 6799294.216], [512173.555, 6799600.43], [511218.846, 6799698.528], [510234.647, 6799543.586], [509196.373, 6798930.13], [507699.046, 6799313.48], [507487.573, 6798112.554], [507000.468, 6798496.794], [505921.702, 6799101.741], [505536.556, 6799496.878], [504004.076, 6799965.98], [503827.246, 6800312.24], [501698.101, 6801891.99], [500711.901, 6801993.844], [500381.406, 6801637.298], [499739.201, 6801254.138], [499146.242, 6801194.959], [497532.996, 6801506.625], [497932.309, 6802522.25], [500010.075, 6803737.436], [500823.338, 6804696.652], [500810.541, 6805112.684], [501030.648, 6805670.159], [502607.546, 6805176.662], [502724.961, 6805334.904], [503802.623, 6805314.917], [504863.399, 6804330.02], [504767.84, 6803996.355], [505701.061, 6803869.311], [506088.103, 6804137.632], [506533.92, 6804216.875], [507219.535, 6803943.343], [507259.721, 6804869.814], [507473.733, 6805091.426], [507965.233, 6805040.549], [508030.004, 6805507.96], [507777.705, 6805810.936], [508227.414, 6806969.071], [508807.475, 6807537.844], [508287.286, 6807633.502], [506895.251, 6807697.07], [506031.205, 6807287.731], [505668.852, 6807321.115], [505246.624, 6807175.472], [503969.04, 6807703.952], [504105.483, 6808005.331], [503908.957, 6808900.568], [502914.448, 6810936.04], [502522.006, 6811137.656], [502326.278, 6812306.783], [503296.68, 6812963.922], [503326.068, 6813452.267], [503605.444, 6814553.114], [502889.836, 6814398.34], [503041.968, 6815342.659], [500929.32, 6816275.871], [500413.424, 6815437.348], [500513.296, 6815215.598], [500381.755, 6814409.223], [499470.225, 6814532.668], [499467.324, 6814876.529], [499140.753, 6815600.533], [498604.571, 6815629.518], [498399.311, 6816127.896], [498670.618, 6816752.322], [498066.771, 6818863.905], [498287.679, 6819192.574], [498423.817, 6820280.736], [498666.514, 6820836.413], [499442.898, 6820857.11], [499617.919, 6822011.445], [499854.719, 6822633.496], [500393.398, 6822943.873], [501076.919, 6823044.735], [501318.15, 6823435.759], [501289.522, 6825279.035], [501032.721, 6826056.219], [500185.566, 6825916.471], [500107.482, 6826470.678], [499801.715, 6827003.929], [499279.017, 6828584.488], [499591.389, 6828918.554], [499424.652, 6829654.856], [499136.666, 6830146.455], [498307.009, 6829952.983], [498435.626, 6829203.017], [498032.3, 6829176.566], [497442.151, 6830848.061], [497690.144, 6831900.338], [498503.464, 6831383.712], [498413.945, 6832580.168], [498799.787, 6832788.186], [498950.522, 6833566.272], [499324.371, 6833526.79], [499750.047, 6832532.693], [500367.853, 6832655.149], [500009.293, 6833544.687], [499460.444, 6834188.414], [499216.407, 6834844.657], [499758.882, 6835621.346], [499571.153, 6836484.296], [499403.217, 6836994.489], [498536.266, 6837493.382], [498403.518, 6837888.221], [497731.191, 6838059.747], [497472.79, 6839137.808], [498754.866, 6839570.141], [498729.372, 6840374.614], [499060.835, 6840837.128], [498204.606, 6841240.707], [498168.815, 6840864.117], [497330.743, 6840306.049], [497145.52, 6839907.593], [496972.391, 6839958.97], [496835.744, 6840531.137], [496519.869, 6841217.556], [496640.618, 6841669.573], [496437.452, 6842078.412], [496400.212, 6842368.588], [496608.824, 6843029.221], [496565.438, 6843488.092], [496292.866, 6843738.077], [496083.752, 6844725.864], [496248.516, 6845005.275], [495511.662, 6845070.184], [495434.995, 6844656.151], [494902.713, 6844459.327], [494301.898, 6844579.945], [493865.734, 6844951.219], [494274.462, 6846080.564], [493875.62, 6848092.705], [494171.39, 6848908.415], [494165.586, 6850168.704], [494236.555, 6850516.363], [492549.244, 6850480.864], [492796.436, 6851863.405], [492144.203, 6851645.288], [491641.104, 6852180.967], [490908.079, 6855597.278], [490900.576, 6856569.983], [491168.661, 6857515.602], [491632.971, 6857690.135], [491942.328, 6858283.438], [492292.094, 6859185.933], [492168.139, 6859933.429], [491469.512, 6861567.262], [491672.927, 6861940.113], [492435.718, 6861785.281], [492978.885, 6863187.214], [493475.481, 6863385.936], [493706.192, 6862845.258], [494318.04, 6863170.929], [494348.32, 6863906.129], [495438.012, 6863998.215], [495825.116, 6864157.835], [495743.118, 6864715.404], [496308.149, 6864499.415], [496503.609, 6864707.627], [496529.108, 6865274.422], [496963.839, 6865520.29], [497430.352, 6865236.51], [497857.684, 6864631.26], [498084.098, 6864028.807], [499088.696, 6863305.51], [499547.978, 6864716.229], [499623.362, 6865053.505], [499404.395, 6865607.501], [499903.44, 6865884.47], [499918.927, 6866575.989], [500676.312, 6867357.779], [501103.341, 6867044.91], [501725.985, 6867315.706], [502161.709, 6867194.759], [502447.891, 6867318.312], [503145.901, 6867944.864], [503041.634, 6869021.226], [503442.168, 6869358.892], [504318.709, 6869557.219], [504861.792, 6869066.622], [505332.101, 6868996.253], [506052.402, 6869600.613], [506637.48, 6870143.566], [506373.457, 6870457.367], [504669.65, 6871254.134], [504019.896, 6873189.941], [504200.816, 6873887.26], [503817.458, 6874269.887], [503772.954, 6873688.005], [503242.857, 6874343.234], [503503.444, 6874606.171], [502994.341, 6875157.91], [501583.198, 6875007.839], [500786.932, 6875335.472], [500508.7, 6875801.847], [499902.015, 6876139.091], [499748.302, 6876641.899], [499772.907, 6877415.511], [499603.252, 6877668.918], [498988.8, 6877223.425], [498575.037, 6878547.675], [497445.42, 6878604.48], [497355.325, 6879378.192], [496853.062, 6879133.296], [495573.15, 6879347.931], [494894.234, 6880334.132], [493436.446, 6879166.913], [493046.865, 6880027.676], [492394.851, 6881106.815], [491195.965, 6882594.132], [491250.688, 6884186.653], [491534.066, 6885480.833], [491158.712, 6886712.432], [491753.569, 6886819.495], [491756.265, 6887480.128], [492319.43, 6888548.702], [492647.595, 6888538.709], [492717.654, 6889067.575], [493948.84, 6889812.718], [494503.236, 6889557.715], [494918.173, 6888472.058], [495742.044, 6887484.164], [496133.383, 6887833.927], [496120.386, 6888190.883], [495632.409, 6889030.285], [495749.224, 6890556.024], [495972.233, 6890631.096], [496180.334, 6890053.438], [496676.551, 6889679.487], [497327.357, 6890127.892], [497227.314, 6891736.06], [497830.373, 6891605.32], [498238.211, 6890856.926], [498584.865, 6891807.646], [498730.198, 6892795.147], [499701.504, 6893022.765], [499544.164, 6893791.352], [499329.345, 6894444.186], [499950.39, 6894888.109], [500378.085, 6894424.242], [501742.478, 6892150.935], [502271.66, 6892433.925], [502897.908, 6891959.422], [502126.821, 6895022.082], [503302.126, 6893809.518], [503821.08, 6893769.906], [504282.197, 6894214.15], [504622.436, 6893899.756], [505252.209, 6894396.834], [504853.894, 6894466.618], [505638.262, 6895755.08], [507048.686, 6896374.06], [507952.822, 6895578.39]]]}}, {\\\"id\\\": \\\"171\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rautalampi\\\", \\\"elakelaisten_osuus\\\": 40.0, \\\"freshwarea\\\": 223.03, \\\"gml_id\\\": 1601100421, \\\"landarea\\\": 538.96, \\\"namefin\\\": \\\"Rautalampi\\\", \\\"nameswe\\\": \\\"Rautalampi\\\", \\\"natcode\\\": \\\"686\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 761.99}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[483246.754, 6968417.548], [484097.44, 6967769.417], [485780.451, 6967338.264], [486435.407, 6967922.596], [487721.702, 6966716.404], [488451.531, 6965433.161], [489016.698, 6964932.947], [489291.423, 6964361.363], [489290.739, 6963784.499], [489471.179, 6963337.872], [489955.304, 6962907.059], [491557.604, 6964449.612], [491950.636, 6963827.477], [495739.647, 6956179.048], [495226.642, 6953616.546], [496150.42, 6949401.785], [496097.619, 6946471.076], [497194.281, 6944914.636], [495888.262, 6943862.205], [495743.735, 6943034.061], [495825.803, 6942288.334], [496500.686, 6942023.564], [497946.484, 6940443.878], [498291.888, 6940363.157], [499490.447, 6941583.481], [499678.349, 6941395.264], [498033.519, 6939522.216], [495221.475, 6940518.094], [495248.626, 6940060.827], [495427.895, 6939324.525], [492747.299, 6939534.931], [491093.104, 6939556.034], [491367.852, 6938855.224], [491820.766, 6938390.351], [492656.622, 6938539.237], [495488.747, 6936168.862], [495172.04, 6935488.876], [494498.431, 6935222.205], [494515.929, 6934883.157], [494102.727, 6934489.215], [493516.921, 6934440.989], [493044.599, 6934152.335], [493072.402, 6933491.134], [493681.359, 6932700.77], [494172.989, 6932857.494], [495106.377, 6932403.011], [495156.045, 6931941.087], [493973.591, 6929319.901], [494074.44, 6928880.184], [493788.071, 6928274.445], [493368.945, 6927753.752], [493404.028, 6927492.789], [492607.558, 6927306.728], [492053.544, 6926524.574], [491409.967, 6926353.788], [490836.528, 6925006.647], [490546.015, 6924779.434], [491357.503, 6923541.203], [487638.623, 6921438.362], [486882.258, 6922377.42], [486496.124, 6922880.016], [486229.228, 6922836.945], [486167.402, 6923603.078], [484991.471, 6924674.438], [484429.694, 6925353.86], [483744.218, 6925844.391], [481068.066, 6924451.701], [478236.926, 6927565.728], [474655.318, 6930607.672], [474546.662, 6930609.871], [473832.964, 6931234.643], [473665.617, 6931040.391], [473282.969, 6931370.355], [473136.857, 6931857.8], [472749.38, 6932102.256], [473436.727, 6933257.536], [473405.906, 6933594.764], [474689.158, 6933671.414], [475184.149, 6934035.833], [476299.979, 6935562.593], [477181.939, 6936869.617], [477876.07, 6938879.092], [478038.127, 6939818.197], [479157.422, 6940051.468], [479411.708, 6940469.437], [478249.466, 6941544.986], [479386.969, 6942287.987], [479045.267, 6945730.463], [477941.621, 6947050.701], [478015.889, 6947937.86], [477904.767, 6948643.448], [477611.021, 6949453.67], [477584.407, 6950202.436], [476716.756, 6951611.785], [475760.939, 6954016.626], [475927.647, 6954737.946], [471765.145, 6962221.13], [473487.499, 6963204.072], [474475.106, 6962377.414], [473945.267, 6964114.392], [476259.876, 6965228.509], [476471.164, 6965629.408], [478056.224, 6965326.842], [478492.954, 6964514.774], [479151.981, 6965063.756], [480126.197, 6963891.438], [481370.758, 6964484.125], [481570.125, 6965007.023], [481127.077, 6965282.981], [481017.004, 6965699.529], [480574.895, 6966000.586], [480283.257, 6967207.928], [483056.071, 6968826.888], [483246.754, 6968417.548]]]}}, {\\\"id\\\": \\\"172\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pieks\\\\u00e4m\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 38.4, \\\"freshwarea\\\": 267.52, \\\"gml_id\\\": 1601100533, \\\"landarea\\\": 1568.71, \\\"namefin\\\": \\\"Pieks\\\\u00e4m\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Pieks\\\\u00e4m\\\\u00e4ki\\\", \\\"natcode\\\": \\\"593\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1836.23}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[519788.018, 6931533.146], [519861.123, 6930550.852], [520244.811, 6930269.431], [521042.272, 6930382.162], [521425.623, 6929425.444], [522744.397, 6928290.694], [523252.599, 6928072.366], [523683.027, 6928184.647], [523779.644, 6927684.084], [523965.11, 6927219.139], [523960.7, 6926720.155], [525184.623, 6926292.926], [527296.975, 6925180.197], [528024.381, 6925178.704], [528926.419, 6924685.512], [529548.17, 6924226.704], [531049.478, 6922745.632], [531264.588, 6922342.786], [532537.482, 6921088.407], [533729.715, 6918891.212], [534186.333, 6918515.969], [535450.227, 6917662.627], [535793.999, 6916121.358], [535755.819, 6915394.953], [534969.05, 6913593.58], [535897.899, 6911473.723], [533568.831, 6910060.24], [532501.981, 6908279.106], [532893.872, 6907771.43], [531974.602, 6907105.497], [532555.466, 6906506.646], [532804.565, 6906629.898], [533721.303, 6905695.083], [533292.893, 6905321.037], [532788.792, 6905863.228], [531444.721, 6905350.907], [530508.999, 6906671.462], [529523.603, 6905937.144], [529142.712, 6905837.95], [528870.916, 6905179.563], [528517.046, 6905858.278], [527805.631, 6905471.856], [527580.555, 6905916.051], [526910.288, 6906326.468], [527020.729, 6905733.192], [526723.448, 6905302.548], [526526.563, 6905486.27], [525626.562, 6904890.354], [526211.243, 6904373.655], [527267.728, 6902678.66], [528126.98, 6901664.48], [528563.503, 6901271.943], [528972.938, 6900715.173], [528777.818, 6900429.288], [529295.509, 6899861.024], [528461.249, 6899495.666], [528133.881, 6899973.768], [527694.983, 6899568.075], [526967.073, 6900229.621], [526491.984, 6900492.606], [526062.923, 6900324.109], [527767.84, 6896252.779], [528418.684, 6895470.201], [528372.009, 6894308.272], [528534.976, 6893457.965], [529063.144, 6892230.92], [529311.429, 6891216.735], [529510.269, 6890756.743], [530369.525, 6891537.109], [530758.966, 6891709.222], [531346.044, 6891823.902], [532883.421, 6891073.612], [532233.285, 6890320.114], [532090.542, 6890463.955], [531904.017, 6890293.023], [532027.171, 6889694.167], [532465.309, 6889950.333], [533069.157, 6889236.559], [533148.227, 6888942.779], [532907.212, 6888507.764], [533340.354, 6888140.306], [532588.86, 6887225.572], [533454.62, 6886325.842], [532635.254, 6885796.451], [533237.914, 6884987.313], [533728.749, 6884152.911], [533388.109, 6884049.854], [533247.478, 6883656.867], [533051.248, 6883782.642], [532435.007, 6883282.345], [532379.697, 6883052.614], [532084.149, 6882835.227], [532697.751, 6881907.383], [532940.204, 6881940.726], [533396.753, 6881511.176], [532509.253, 6880464.205], [532437.997, 6880258.383], [532199.282, 6879964.704], [532836.93, 6879319.374], [532728.549, 6878782.84], [533144.458, 6878589.504], [533479.957, 6879055.518], [533683.384, 6878843.886], [533465.195, 6878632.77], [534402.546, 6877665.815], [534175.036, 6877445.242], [533478.532, 6878271.445], [532776.01, 6877775.159], [531437.221, 6877619.727], [530850.955, 6878630.835], [528262.195, 6878443.401], [528833.372, 6877650.513], [528494.356, 6877489.236], [528182.318, 6877853.158], [527296.324, 6877172.123], [527115.369, 6877429.164], [527966.292, 6878081.162], [527737.45, 6878400.91], [525502.1, 6878229.336], [525775.484, 6877849.715], [524710.524, 6877813.879], [524837.623, 6878180.209], [524267.194, 6878149.183], [522127.447, 6879903.222], [521102.675, 6881517.856], [519407.856, 6880521.488], [520373.644, 6878434.95], [519814.838, 6878060.522], [520577.627, 6877408.432], [520552.042, 6874895.344], [519939.195, 6875124.459], [519388.106, 6875967.328], [519289.482, 6877232.305], [518801.286, 6878448.701], [517669.366, 6879757.315], [518164.326, 6880086.976], [512464.849, 6887776.874], [509930.768, 6890993.191], [508400.059, 6892749.443], [508402.653, 6893496.839], [508753.806, 6894111.592], [507952.822, 6895578.39], [507048.686, 6896374.06], [505638.262, 6895755.08], [504853.894, 6894466.618], [505252.209, 6894396.834], [504622.436, 6893899.756], [504282.197, 6894214.15], [503821.08, 6893769.906], [503302.126, 6893809.518], [502126.821, 6895022.082], [502897.908, 6891959.422], [502271.66, 6892433.925], [501742.478, 6892150.935], [500378.085, 6894424.242], [499950.39, 6894888.109], [499329.345, 6894444.186], [499544.164, 6893791.352], [499701.504, 6893022.765], [498730.198, 6892795.147], [498584.865, 6891807.646], [498238.211, 6890856.926], [497830.373, 6891605.32], [497227.314, 6891736.06], [497327.357, 6890127.892], [496676.551, 6889679.487], [496180.334, 6890053.438], [495972.233, 6890631.096], [495749.224, 6890556.024], [495632.409, 6889030.285], [496120.386, 6888190.883], [496133.383, 6887833.927], [495742.044, 6887484.164], [494918.173, 6888472.058], [494503.236, 6889557.715], [493948.84, 6889812.718], [492717.654, 6889067.575], [492647.595, 6888538.709], [492319.43, 6888548.702], [492192.946, 6888939.602], [491854.909, 6889109.743], [491553.672, 6889526.441], [491098.38, 6890743.148], [490845.627, 6891160.886], [490659.248, 6891855.623], [490669.886, 6892693.11], [490514.648, 6893075.655], [490068.904, 6893613.604], [489852.513, 6894127.948], [489375.506, 6894511.064], [488995.064, 6894331.833], [488520.055, 6894480.243], [488458.883, 6893909.698], [487947.591, 6894517.747], [487705.691, 6894382.8], [486995.504, 6895217.427], [485779.066, 6897713.731], [485783.669, 6896428.454], [485808.915, 6896063.474], [485516.334, 6895906.801], [485281.911, 6896539.271], [484285.139, 6897883.585], [483859.542, 6898909.931], [483943.808, 6899299.569], [483626.938, 6899705.536], [483173.805, 6900779.372], [483260.959, 6902118.931], [483720.404, 6902171.63], [484087.832, 6901122.339], [483963.784, 6900800.168], [484045.954, 6900450.31], [484536.556, 6900254.193], [484974.575, 6900711.011], [485924.297, 6899306.887], [485933.596, 6900248.149], [485767.352, 6900839.665], [485864.905, 6901606.856], [484950.772, 6904244.27], [484563.399, 6905857.331], [484680.05, 6906140.018], [483572.48, 6908502.157], [482486.503, 6910651.182], [483110.099, 6910961.93], [482894.349, 6911327.397], [482774.296, 6911902.185], [482860.032, 6912308.661], [488410.363, 6913649.456], [488076.504, 6914268.859], [486261.823, 6916443.569], [484184.19, 6918204.444], [484157.798, 6918635.073], [483489.126, 6919208.534], [483488.424, 6919483.323], [484466.114, 6921010.214], [484621.423, 6921559.096], [484791.128, 6921787.04], [484417.808, 6922752.799], [484568.855, 6923180.87], [484414.15, 6923815.706], [484650.613, 6924302.686], [484991.471, 6924674.438], [486167.402, 6923603.078], [486229.228, 6922836.945], [486496.124, 6922880.016], [486882.258, 6922377.42], [487638.623, 6921438.362], [491357.503, 6923541.203], [490546.015, 6924779.434], [490836.528, 6925006.647], [491409.967, 6926353.788], [492053.544, 6926524.574], [492607.558, 6927306.728], [493404.028, 6927492.789], [493368.945, 6927753.752], [493788.071, 6928274.445], [494015.685, 6927392.702], [495120.148, 6926070.444], [496713.41, 6925071.557], [496897.785, 6924577.23], [497281.738, 6924110.156], [497493.305, 6923492.7], [498105.643, 6923797.081], [498017.041, 6924411.339], [498547.465, 6924789.184], [498311.083, 6925438.814], [497483.479, 6927158.521], [497537.859, 6927817.613], [498480.313, 6928662.911], [498925.389, 6927604.051], [499270.352, 6927500.495], [499683.787, 6927049.08], [499852.823, 6926485.709], [503160.479, 6926689.347], [503516.586, 6927577.799], [504195.908, 6928607.103], [504558.14, 6928458.629], [504838.293, 6928218.713], [505265.032, 6928189.748], [505433.734, 6929230.339], [506102.983, 6929649.511], [505874.645, 6930580.097], [506873.147, 6929597.4], [507085.365, 6929148.583], [508405.24, 6927936.581], [508775.791, 6927236.868], [508637.45, 6926831.531], [509136.198, 6925615.888], [508598.941, 6925350.611], [510084.372, 6924990.589], [509765.393, 6926570.933], [510883.215, 6927539.844], [511238.256, 6927096.684], [510460.615, 6926185.998], [510650.231, 6925616.404], [511379.634, 6925864.301], [511594.191, 6927678.736], [512923.607, 6927659.298], [512944.067, 6927035.395], [513812.093, 6925769.997], [514245.671, 6926063.019], [514639.03, 6925702.548], [514947.394, 6925889.388], [515592.643, 6928346.987], [517400.241, 6929606.302], [518672.908, 6929515.493], [517892.708, 6930872.506], [518821.659, 6930779.302], [519126.314, 6931399.871], [517734.413, 6932478.908], [518411.365, 6933201.719], [518710.738, 6933279.584], [519788.018, 6931533.146]]]}}, {\\\"id\\\": \\\"173\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Alaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 33.0, \\\"freshwarea\\\": 47.92, \\\"gml_id\\\": 1601100010, \\\"landarea\\\": 1008.83, \\\"namefin\\\": \\\"Alaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Alaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"005\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1056.75}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[350749.549, 6962519.423], [350536.485, 6961614.012], [350233.376, 6961683.594], [349992.204, 6960528.208], [350258.812, 6960460.931], [350201.856, 6960216.284], [349567.129, 6960347.228], [349203.997, 6960722.272], [349310.587, 6960973.341], [349208.47, 6961217.275], [349142.025, 6961920.27], [349576.326, 6961814.522], [349721.332, 6962463.856], [349266.381, 6962569.566], [349292.83, 6962826.886], [350749.549, 6962519.423]]], [[[355378.09, 7006296.539], [355741.162, 7006136.802], [356247.124, 7006082.67], [356270.784, 7005868.223], [356791.574, 7005410.779], [357113.298, 7005076.054], [357452.604, 7005219.8], [359118.039, 7005913.191], [362040.89, 7002146.911], [361718.123, 7003363.475], [364150.54, 7004163.783], [366588.895, 7001524.047], [366787.924, 7001300.583], [364487.59, 6995842.523], [362458.797, 6995675.229], [362619.068, 6993966.417], [362081.45, 6993893.991], [362314.486, 6992188.166], [361501.423, 6992082.253], [361560.998, 6991691.116], [360810.584, 6991571.783], [360727.7, 6992213.415], [359139.14, 6992003.281], [359253.887, 6991051.526], [360150.526, 6990856.187], [360138.248, 6991228.844], [360712.309, 6991311.304], [360782.411, 6990767.356], [363111.574, 6992513.781], [363273.193, 6992324.279], [363789.242, 6990500.403], [363132.975, 6990375.999], [363181.559, 6989363.341], [363531.787, 6988666.619], [362732.775, 6988377.622], [363401.754, 6987520.965], [363260.793, 6987161.698], [361103.642, 6986962.139], [359440.518, 6987288.841], [359773.526, 6987491.382], [359796.862, 6988410.936], [359571.896, 6988496.19], [359557.119, 6989160.018], [357053.687, 6988910.385], [357253.221, 6989560.736], [357682.314, 6989617.482], [357374.742, 6990194.169], [356521.54, 6989872.16], [356374.199, 6989501.815], [356823.062, 6987754.571], [357028.645, 6987355.834], [355544.694, 6987206.679], [354474.733, 6986533.071], [354491.878, 6986932.962], [353201.238, 6987021.497], [353148.988, 6986588.102], [352735.097, 6986606.128], [352596.223, 6985774.006], [352599.116, 6984860.202], [351486.828, 6985842.647], [350083.086, 6986744.5], [349712.132, 6986959.375], [349574.585, 6986831.945], [349571.794, 6986826.104], [350779.113, 6985839.506], [350769.665, 6985436.95], [350277.72, 6985726.684], [350032.603, 6986093.496], [349403.004, 6985932.989], [347855.045, 6977136.532], [347587.579, 6977285.136], [346951.941, 6973669.696], [352208.717, 6971788.105], [352076.711, 6971476.667], [354149.024, 6971727.655], [354508.004, 6970011.824], [353146.369, 6969710.866], [352228.488, 6969780.842], [352396.032, 6968940.423], [352148.04, 6968787.232], [351756.852, 6969272.238], [351435.555, 6969068.457], [351733.58, 6968428.665], [351184.705, 6967755.287], [350979.315, 6966989.288], [350929.932, 6966078.164], [350556.548, 6965661.156], [350562.24, 6965076.074], [350346.715, 6964906.287], [350006.155, 6965169.686], [349811.276, 6964741.203], [349920.736, 6964407.767], [349445.746, 6964368.88], [349136.945, 6963885.313], [348320.016, 6960219.487], [348604.168, 6959564.335], [347302.684, 6959056.438], [346754.622, 6960392.901], [347407.831, 6960710.268], [346684.645, 6961242.367], [346836.633, 6961626.646], [346680.51, 6962138.434], [346370.41, 6962622.67], [346033.466, 6962902.709], [345555.806, 6962635.162], [345273.225, 6961724.547], [343298.204, 6961570.195], [340572.015, 6962466.395], [340157.19, 6962295.322], [339734.353, 6962487.597], [339859.916, 6962790.345], [339046.709, 6963078.849], [336830.159, 6965327.371], [333911.129, 6968504.392], [331925.547, 6970644.883], [328845.615, 6976651.359], [325846.0, 6979874.279], [325329.616, 6980289.04], [325181.946, 6980624.328], [324693.63, 6980808.208], [324159.201, 6981217.003], [323928.781, 6981069.822], [323281.486, 6981415.652], [320404.452, 6986053.073], [322248.819, 6986848.722], [322582.275, 6987160.996], [322692.663, 6988079.052], [326686.023, 6990198.5], [326813.055, 6991939.304], [329916.903, 6994485.861], [330165.207, 6994246.771], [330255.87, 6994937.841], [330808.702, 6995023.233], [330698.57, 6995665.808], [330110.392, 6997517.773], [330678.353, 6999788.214], [332374.566, 6999661.105], [332660.314, 7000879.018], [333629.564, 7000713.2], [334329.441, 7002293.676], [335410.104, 7002082.47], [335264.183, 7001363.35], [334678.182, 7000463.592], [334785.181, 6999966.11], [335875.889, 6998150.953], [341921.025, 7002025.352], [342903.79, 7001937.357], [342794.912, 7001249.763], [343000.19, 7000437.209], [343371.715, 7000717.489], [343230.733, 7000963.675], [345476.078, 7001572.78], [352385.537, 7005311.72], [353198.936, 7004095.729], [353758.517, 7004785.768], [354233.29, 7003938.872], [354506.926, 7004065.953], [354223.371, 7004639.464], [355257.33, 7005693.9], [354702.613, 7006452.437], [354806.052, 7006517.327], [355378.09, 7006296.539]]]]}}, {\\\"id\\\": \\\"174\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lestij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 38.1, \\\"freshwarea\\\": 78.76, \\\"gml_id\\\": 1601100656, \\\"landarea\\\": 480.3, \\\"namefin\\\": \\\"Lestij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Lestij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"421\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 559.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[382095.705, 7060308.614], [382074.78, 7060027.664], [388640.584, 7055639.208], [391823.151, 7052793.048], [396223.967, 7045813.228], [402107.619, 7038128.976], [395339.008, 7035351.22], [388595.831, 7027489.373], [382428.688, 7030046.839], [378728.175, 7031589.024], [374632.251, 7028884.941], [374329.738, 7029859.59], [374026.127, 7030837.784], [375626.753, 7031588.23], [374101.469, 7034789.466], [373491.019, 7034495.96], [373275.525, 7034944.775], [375795.437, 7036072.848], [375691.363, 7036302.643], [376662.199, 7037362.745], [376883.302, 7037160.438], [377635.634, 7037979.999], [377496.364, 7038511.495], [377118.27, 7038935.371], [377113.288, 7039375.952], [375846.13, 7040198.235], [377086.864, 7041546.341], [377063.648, 7043386.456], [376755.509, 7043713.511], [377546.307, 7043882.242], [378342.541, 7044968.25], [378377.148, 7046180.973], [377260.599, 7046448.84], [376147.525, 7045093.904], [375917.317, 7045263.261], [375704.143, 7044833.012], [374026.326, 7046622.371], [375370.463, 7048084.477], [372366.465, 7050892.728], [372000.551, 7050495.081], [371310.62, 7051260.955], [373933.57, 7053973.293], [374730.238, 7054179.076], [375044.408, 7054493.481], [374573.093, 7055427.188], [376696.55, 7056952.339], [377760.852, 7056850.974], [378073.243, 7056269.757], [378522.306, 7056607.355], [377646.531, 7057639.508], [379031.093, 7058631.026], [378008.459, 7059250.739], [377587.763, 7059212.02], [377545.757, 7059452.847], [378059.719, 7059559.345], [378953.964, 7059098.67], [379380.389, 7058881.148], [381397.054, 7060356.629], [381634.052, 7060104.657], [381923.367, 7060577.08], [382095.705, 7060308.614]]]}}, {\\\"id\\\": \\\"175\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kemi\\\\u00f6nsaari\\\", \\\"elakelaisten_osuus\\\": 38.1, \\\"freshwarea\\\": 10.91, \\\"gml_id\\\": 1601100523, \\\"landarea\\\": 686.84, \\\"namefin\\\": \\\"Kemi\\\\u00f6nsaari\\\", \\\"nameswe\\\": \\\"Kimito\\\\u00f6n\\\", \\\"natcode\\\": \\\"322\\\", \\\"seawarea\\\": 2103.26, \\\"totalarea\\\": 2801.01}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[270264.563, 6687416.932], [270710.961, 6687732.813], [270956.42, 6687336.53], [270752.862, 6686514.01], [270969.28, 6686189.452], [271358.412, 6686160.68], [271679.027, 6686174.549], [272376.068, 6686296.848], [273279.148, 6687394.227], [273726.319, 6687815.33], [274069.563, 6687208.504], [274272.536, 6686334.936], [273321.97, 6685369.798], [273379.044, 6684492.497], [273113.614, 6684024.872], [272860.048, 6683178.436], [271523.15, 6681935.883], [270789.11, 6680874.368], [270678.956, 6680418.317], [271043.118, 6680178.78], [271409.506, 6679729.618], [271198.777, 6679234.257], [271332.959, 6678710.462], [270342.413, 6678139.253], [270751.669, 6676303.282], [271299.176, 6675376.241], [272356.235, 6673278.834], [270474.039, 6671399.825], [270085.205, 6670475.611], [269319.176, 6669733.371], [269142.593, 6668899.06], [267994.457, 6668360.905], [267929.987, 6667576.663], [267977.402, 6667137.169], [269130.951, 6666229.659], [268068.775, 6664760.524], [266870.436, 6664892.356], [265752.131, 6665401.189], [265857.994, 6663056.007], [266091.484, 6661666.31], [265203.537, 6659118.664], [265131.108, 6654395.663], [266617.741, 6651350.805], [265772.052, 6645183.154], [265381.743, 6642262.002], [265204.952, 6641878.407], [262329.457, 6634156.551], [260786.555, 6630492.333], [260296.414, 6629242.348], [255142.309, 6616098.198], [253746.902, 6615849.108], [239601.928, 6606209.473], [222640.662, 6606081.581], [222476.706, 6628316.514], [221615.162, 6636968.678], [221600.647, 6637114.44], [221108.392, 6642057.967], [221041.479, 6646423.43], [220861.647, 6647117.697], [220157.32, 6647572.778], [219716.28, 6649389.456], [219889.209, 6650329.806], [226266.431, 6655202.401], [230575.092, 6657728.263], [230697.586, 6660053.427], [231242.31, 6660798.276], [231475.95, 6661873.493], [231197.711, 6665258.007], [234265.395, 6669060.096], [236881.861, 6673222.258], [237975.096, 6673931.345], [241054.522, 6673534.838], [241688.079, 6674899.28], [241638.869, 6675501.43], [242741.873, 6676521.598], [243189.269, 6678153.934], [243113.871, 6678863.134], [244437.512, 6679408.462], [244943.823, 6680916.326], [246090.461, 6682388.012], [246363.616, 6683902.563], [248026.628, 6687616.531], [250181.949, 6686937.043], [250470.32, 6686572.08], [250745.984, 6686248.777], [251271.326, 6686156.182], [251787.372, 6685533.016], [251273.079, 6683581.538], [253207.295, 6683133.248], [254479.51, 6683527.573], [255652.778, 6684103.196], [255680.485, 6684370.06], [256534.255, 6684960.135], [257966.843, 6685396.7], [260683.278, 6685790.71], [261081.016, 6686308.483], [261402.43, 6686341.007], [263224.228, 6686031.715], [263457.313, 6685897.352], [264086.197, 6686018.318], [264678.983, 6686710.132], [265272.484, 6686817.086], [266759.825, 6686198.811], [266724.673, 6686827.786], [267328.89, 6686915.129], [268151.311, 6687902.961], [268391.028, 6688022.198], [268872.237, 6688221.782], [270264.563, 6687416.932]]]}}, {\\\"id\\\": \\\"176\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nivala\\\", \\\"elakelaisten_osuus\\\": 26.5, \\\"freshwarea\\\": 9.03, \\\"gml_id\\\": 1601100165, \\\"landarea\\\": 527.84, \\\"namefin\\\": \\\"Nivala\\\", \\\"nameswe\\\": \\\"Nivala\\\", \\\"natcode\\\": \\\"535\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 536.87}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[405043.635, 7073454.897], [404858.867, 7073060.044], [404427.764, 7072635.765], [404472.013, 7071929.164], [404006.997, 7072193.633], [403724.234, 7071705.817], [404138.666, 7071155.707], [404223.09, 7070845.862], [403821.295, 7071063.138], [403474.216, 7071448.715], [403312.837, 7071674.73], [403811.242, 7072356.267], [403479.644, 7072899.507], [403572.882, 7073129.729], [404211.383, 7072795.469], [404568.424, 7073079.784], [404504.384, 7074074.974], [404695.369, 7074409.123], [405043.635, 7073454.897]]], [[[398614.748, 7098768.564], [398683.838, 7098435.776], [398425.321, 7097997.745], [398091.666, 7097607.545], [397544.509, 7097413.226], [396384.272, 7098245.198], [396658.169, 7098382.597], [397114.808, 7098063.256], [397673.366, 7098231.101], [398150.392, 7098396.254], [398377.093, 7098806.908], [398614.748, 7098768.564]]], [[[395828.167, 7098459.944], [395283.16, 7098689.957], [394852.012, 7098330.69], [395036.493, 7097738.791], [394577.95, 7097308.594], [394317.414, 7098119.34], [394544.207, 7098414.931], [394238.295, 7099033.772], [395707.303, 7099091.225], [395828.167, 7098459.944]]], [[[406325.634, 7103536.203], [408837.127, 7101508.174], [409480.343, 7101244.43], [409820.351, 7101780.473], [409479.241, 7103026.648], [410277.754, 7103751.905], [411351.362, 7103900.729], [411704.106, 7104038.678], [412013.69, 7103584.55], [411221.186, 7103325.184], [411007.529, 7102581.572], [411545.761, 7102501.078], [411815.246, 7102140.261], [411882.447, 7101755.315], [412249.705, 7101408.151], [411526.154, 7099938.148], [412283.839, 7099338.06], [419904.813, 7090244.14], [415736.044, 7090900.859], [415370.708, 7090286.735], [415019.832, 7090620.611], [413821.191, 7086388.723], [413274.394, 7086803.69], [413399.394, 7086214.709], [413719.111, 7086036.375], [413124.945, 7083966.119], [414004.609, 7084624.17], [414213.275, 7084367.63], [411611.515, 7081667.319], [410154.647, 7080151.669], [409565.726, 7079225.77], [409277.451, 7079122.565], [409117.389, 7078726.387], [407517.296, 7079592.544], [406829.657, 7079361.124], [406267.643, 7079380.958], [407140.407, 7080809.136], [406932.182, 7081001.408], [406714.469, 7080762.122], [406444.336, 7081019.872], [405829.575, 7080735.444], [405388.511, 7081862.573], [404782.767, 7081992.238], [404609.217, 7081761.005], [404793.148, 7081308.088], [405062.079, 7081329.262], [405290.839, 7080332.491], [405744.857, 7079855.79], [405937.906, 7079142.823], [406905.546, 7079112.965], [407444.567, 7079308.231], [409031.436, 7078475.134], [407824.304, 7075756.954], [407413.988, 7075640.355], [407007.357, 7074116.141], [407431.431, 7073536.432], [407621.704, 7073938.274], [407639.163, 7075215.199], [407916.596, 7075261.657], [408118.418, 7074975.451], [408257.623, 7075305.542], [409101.001, 7075419.036], [410496.984, 7075102.166], [408490.652, 7072709.498], [408713.533, 7072335.775], [408458.155, 7072019.046], [407914.115, 7072018.809], [407886.749, 7072601.48], [405659.317, 7074256.556], [405405.261, 7073880.057], [405110.403, 7074211.201], [404789.889, 7076126.075], [405132.689, 7076531.792], [405022.438, 7076854.284], [404142.546, 7076769.263], [403762.07, 7076238.82], [403219.85, 7076031.388], [402556.635, 7075485.117], [402210.064, 7075647.829], [401783.123, 7075402.214], [401605.894, 7074722.459], [402146.815, 7074402.628], [401870.691, 7074062.799], [402102.784, 7073743.079], [401969.716, 7072896.756], [401704.369, 7072939.824], [401175.352, 7073384.291], [400866.899, 7073774.739], [400635.832, 7074148.499], [400696.224, 7074333.473], [401137.52, 7074058.722], [401490.433, 7074152.26], [401302.158, 7074792.444], [401513.698, 7075572.464], [401104.678, 7075899.949], [402193.632, 7077208.976], [402034.806, 7077586.607], [401745.096, 7077840.361], [402036.017, 7078157.736], [402245.921, 7077981.178], [402640.26, 7078442.206], [402674.889, 7079017.902], [402779.413, 7079438.759], [402630.848, 7079703.481], [401708.039, 7078671.582], [401917.0, 7078461.884], [401566.572, 7078085.001], [401306.411, 7078346.689], [400767.072, 7077786.483], [400732.828, 7078209.335], [400291.869, 7077955.018], [400388.457, 7077578.697], [400775.199, 7077005.682], [400358.469, 7076413.627], [400177.647, 7076822.285], [399885.271, 7076388.236], [399661.117, 7076499.012], [399903.684, 7077060.139], [399100.843, 7078770.502], [398801.026, 7078602.058], [398488.0, 7079192.189], [397902.835, 7079716.611], [398346.315, 7080353.96], [397529.352, 7082069.143], [395307.709, 7083895.069], [395099.752, 7083618.715], [394553.484, 7084072.689], [393830.344, 7084191.857], [393673.62, 7083719.718], [393060.503, 7083536.667], [392978.179, 7083860.351], [392648.207, 7083888.379], [392573.535, 7084164.03], [393244.735, 7084280.997], [392992.647, 7084475.403], [393152.903, 7084984.342], [393070.283, 7085650.653], [391145.53, 7087145.829], [390589.06, 7087859.448], [388882.532, 7090384.636], [387148.592, 7090495.362], [386290.914, 7090974.035], [385327.078, 7091473.462], [385652.962, 7091853.317], [385974.682, 7091905.449], [385950.696, 7092589.928], [384932.82, 7092432.464], [384771.36, 7092959.291], [384323.357, 7093223.3], [384342.984, 7095390.186], [385165.296, 7094760.841], [386742.888, 7094562.4], [387551.349, 7093999.778], [388428.318, 7094217.608], [389005.775, 7093411.071], [389364.791, 7093271.479], [389506.4, 7093477.724], [388782.886, 7094246.431], [388620.052, 7094885.519], [388758.509, 7095565.917], [389097.73, 7096242.88], [389447.972, 7096499.552], [389883.037, 7097067.211], [389396.79, 7097091.462], [389303.1, 7097838.349], [389714.913, 7098261.328], [390374.342, 7097886.689], [390229.855, 7097305.462], [390632.352, 7097272.442], [390946.079, 7097740.246], [390941.155, 7098011.552], [391222.813, 7098092.853], [391526.059, 7097749.352], [391256.334, 7097421.941], [392125.446, 7096544.834], [392459.327, 7097074.729], [392818.242, 7097266.987], [393147.781, 7096889.401], [393584.739, 7097024.416], [393702.848, 7096814.65], [393239.802, 7096602.942], [393549.682, 7096340.35], [393911.904, 7096252.152], [394340.27, 7096452.676], [395082.415, 7095891.496], [395247.981, 7096304.59], [395139.601, 7096597.591], [395532.158, 7096783.791], [396122.102, 7097601.366], [397874.997, 7096815.305], [403461.736, 7106084.121], [406325.634, 7103536.203]]]]}}, {\\\"id\\\": \\\"177\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Miehikk\\\\u00e4l\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 43.4, \\\"freshwarea\\\": 17.9, \\\"gml_id\\\": 1601100085, \\\"landarea\\\": 422.47, \\\"namefin\\\": \\\"Miehikk\\\\u00e4l\\\\u00e4\\\", \\\"nameswe\\\": \\\"Miehikk\\\\u00e4l\\\\u00e4\\\", \\\"natcode\\\": \\\"489\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 440.37}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[524630.075, 6742888.895], [527469.948, 6740530.869], [529917.56, 6740394.849], [532012.909, 6741095.286], [532977.917, 6741313.207], [533539.991, 6741280.526], [536144.442, 6740827.036], [536909.932, 6740884.321], [538283.682, 6740269.784], [538858.65, 6740202.117], [538676.978, 6739600.214], [539642.06, 6736586.392], [540945.537, 6736020.135], [542138.954, 6736180.682], [543196.006, 6737341.418], [544231.998, 6736903.972], [544518.179, 6737137.945], [545726.972, 6737104.987], [546373.838, 6736931.505], [546476.716, 6736006.467], [546768.702, 6735144.863], [546852.966, 6734251.609], [547232.619, 6733454.634], [548054.206, 6731183.759], [548530.918, 6730634.085], [549245.441, 6729308.127], [550827.606, 6728592.727], [552035.718, 6728188.888], [552290.819, 6727232.569], [552060.816, 6726531.448], [551997.444, 6726090.923], [552842.602, 6726047.841], [553434.841, 6726174.68], [553437.766, 6726175.286], [553444.47, 6726176.673], [554169.941, 6726326.841], [550125.439, 6721677.372], [548657.893, 6720007.34], [547343.565, 6719586.008], [547311.039, 6719640.304], [546048.979, 6721578.71], [545522.782, 6723349.692], [544832.553, 6724586.088], [544135.936, 6724321.688], [543851.95, 6724460.729], [543291.176, 6724428.037], [543046.178, 6724018.099], [542386.348, 6723495.104], [542562.779, 6723205.122], [541785.703, 6721619.854], [541266.315, 6721206.416], [540932.147, 6721620.946], [540507.119, 6721681.717], [539828.886, 6722635.326], [538967.638, 6721994.476], [539539.714, 6720951.102], [538104.794, 6720777.958], [536998.408, 6720861.312], [536478.844, 6721814.426], [534140.045, 6724137.729], [533665.562, 6724441.541], [533054.508, 6724595.773], [532376.378, 6725084.27], [531703.05, 6724995.099], [532238.88, 6724019.993], [531554.216, 6724136.144], [531302.317, 6724323.866], [530737.542, 6724750.789], [530157.175, 6724876.033], [529771.634, 6724428.41], [529538.225, 6724834.344], [529138.988, 6724633.121], [529548.251, 6720382.138], [527893.821, 6720083.242], [527075.76, 6718457.091], [526710.297, 6720158.302], [525393.114, 6722276.936], [524868.521, 6722898.181], [524759.444, 6723926.125], [524994.356, 6725200.354], [524224.549, 6727980.327], [523834.601, 6728777.402], [523027.419, 6729875.352], [523346.985, 6730604.96], [523784.195, 6732351.856], [523979.913, 6732841.059], [524367.738, 6735330.853], [524114.427, 6737079.244], [523569.434, 6738701.883], [523457.074, 6739355.418], [523460.569, 6739928.686], [523100.302, 6741519.039], [523012.229, 6742615.395], [523282.6, 6745336.095], [524630.075, 6742888.895]]]}}, {\\\"id\\\": \\\"178\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Akaa\\\", \\\"elakelaisten_osuus\\\": 27.3, \\\"freshwarea\\\": 21.12, \\\"gml_id\\\": 1601100035, \\\"landarea\\\": 293.26, \\\"namefin\\\": \\\"Akaa\\\", \\\"nameswe\\\": \\\"Akaa\\\", \\\"natcode\\\": \\\"020\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 314.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[325496.362, 6795681.713], [325843.842, 6794740.82], [326314.438, 6794988.173], [326294.864, 6794191.574], [327365.606, 6793328.274], [327636.528, 6792948.991], [328844.117, 6792661.711], [328128.002, 6792265.337], [328029.104, 6791170.049], [328743.14, 6790628.314], [329135.321, 6790976.884], [332526.816, 6789277.214], [333757.917, 6789759.788], [334688.198, 6789286.972], [335403.46, 6787249.865], [336519.806, 6787100.617], [336439.544, 6785860.289], [336002.039, 6785229.774], [335667.477, 6784981.32], [335740.676, 6784462.935], [336351.045, 6784452.362], [335862.776, 6783725.251], [335490.703, 6783964.018], [334814.401, 6782781.996], [335376.785, 6782440.274], [334202.592, 6781268.489], [334455.719, 6780887.976], [334991.936, 6781335.098], [335318.616, 6781242.754], [334167.366, 6780035.654], [335283.864, 6778918.678], [334782.552, 6778623.666], [335370.812, 6778073.463], [335752.229, 6778271.54], [336054.713, 6777952.0], [334136.878, 6777044.947], [333256.451, 6776441.871], [329803.666, 6775181.018], [328788.443, 6776117.178], [327649.481, 6775835.285], [326631.119, 6775112.115], [324952.559, 6773513.092], [323730.293, 6774964.704], [323025.198, 6775005.702], [323167.426, 6775455.571], [322661.929, 6775512.792], [322559.986, 6775134.373], [322197.843, 6775035.896], [321126.595, 6775671.721], [320262.66, 6775804.078], [320187.41, 6777202.829], [319814.366, 6778635.311], [318715.865, 6779431.065], [319568.327, 6780771.709], [316285.081, 6782076.181], [315431.856, 6781682.98], [315305.386, 6780879.04], [314710.661, 6781498.544], [314007.717, 6781751.974], [314199.833, 6782403.167], [312834.779, 6783493.164], [312714.164, 6784141.286], [311848.244, 6784902.605], [312604.031, 6784784.322], [312391.798, 6785087.378], [311369.043, 6786031.512], [312487.832, 6787659.023], [313585.482, 6788327.893], [314007.781, 6788828.254], [313817.653, 6790150.983], [314246.201, 6790569.479], [315667.074, 6789857.932], [317209.632, 6790296.18], [322242.168, 6791194.287], [322241.09, 6792016.457], [321290.934, 6792613.27], [321094.744, 6793033.027], [321520.356, 6793270.387], [322204.585, 6793131.204], [322290.513, 6793565.428], [322865.425, 6794163.727], [323755.88, 6794623.86], [324273.095, 6795263.289], [325014.538, 6796004.595], [325496.362, 6795681.713]]]}}, {\\\"id\\\": \\\"179\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Polvij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 39.1, \\\"freshwarea\\\": 154.16, \\\"gml_id\\\": 1601100567, \\\"landarea\\\": 804.16, \\\"namefin\\\": \\\"Polvij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Polvij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"607\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 958.32}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[621080.331, 6999007.407], [621386.684, 6998831.872], [621404.97, 6999653.481], [621912.828, 6999802.476], [624198.89, 6996947.552], [624521.075, 6996609.313], [624837.173, 6996746.659], [626044.153, 6995266.894], [626219.584, 6994935.123], [626253.851, 6994563.861], [626638.043, 6994132.235], [627921.275, 6989100.963], [629322.659, 6986801.369], [632099.484, 6984754.453], [634172.255, 6980882.975], [634502.372, 6979246.802], [635184.981, 6978446.526], [636008.236, 6977987.784], [635228.586, 6973970.859], [635493.168, 6973434.696], [638630.658, 6971477.507], [634981.925, 6966834.451], [630726.038, 6965153.04], [630638.569, 6963264.842], [631094.567, 6962141.542], [631044.539, 6961024.372], [631989.902, 6959407.688], [632074.247, 6958787.186], [632298.858, 6957416.605], [632146.536, 6957206.258], [631929.051, 6957093.322], [630728.495, 6956813.916], [630083.791, 6956951.127], [629877.651, 6956490.429], [629067.796, 6955964.978], [628190.237, 6955640.353], [626489.648, 6957082.457], [625846.497, 6957002.854], [624056.558, 6954854.105], [623274.51, 6953463.228], [622811.278, 6952316.302], [622119.558, 6952518.701], [621949.579, 6953219.442], [620193.552, 6954880.559], [620468.738, 6956328.359], [620045.575, 6956577.095], [618781.253, 6955723.239], [617807.354, 6956270.871], [615127.723, 6960961.656], [614242.961, 6961409.797], [614469.029, 6964953.624], [613322.614, 6965114.11], [613269.014, 6965321.953], [612907.976, 6965357.448], [612703.676, 6965775.848], [612337.745, 6966227.28], [611506.794, 6966767.165], [611712.795, 6967114.442], [611624.14, 6967456.107], [611242.115, 6968056.091], [610655.164, 6968000.572], [610237.248, 6968454.052], [608841.269, 6968801.17], [608524.136, 6969112.01], [608671.061, 6969436.506], [608218.729, 6969406.035], [607994.881, 6969804.939], [607602.893, 6970014.792], [607472.449, 6970416.027], [607236.635, 6970449.015], [606795.79, 6970125.15], [606486.574, 6970599.583], [606127.63, 6970652.673], [605620.118, 6971268.911], [605263.127, 6971277.462], [604572.325, 6971984.091], [604178.073, 6971666.939], [603328.504, 6972761.958], [602254.595, 6973094.307], [602052.51, 6973516.023], [602386.277, 6973823.38], [602339.378, 6974126.681], [601727.993, 6973823.995], [601118.559, 6975606.52], [600489.358, 6975959.837], [600096.102, 6976221.818], [599725.925, 6976782.691], [599939.743, 6977092.184], [599351.976, 6977236.85], [599035.585, 6977652.382], [598467.246, 6977705.912], [598006.633, 6979998.463], [598181.638, 6980303.522], [599687.828, 6978742.902], [600520.579, 6978666.383], [601327.515, 6979098.637], [600634.009, 6980300.484], [601148.464, 6980171.303], [601032.277, 6980708.389], [599592.72, 6981070.662], [600300.323, 6982130.271], [600004.69, 6982527.134], [600817.084, 6983041.679], [601134.211, 6982304.263], [601288.074, 6982379.281], [600951.146, 6983125.651], [604769.267, 6985511.617], [604624.085, 6985773.066], [605637.717, 6985726.488], [607026.019, 6985841.516], [607783.378, 6986258.266], [608711.035, 6990737.317], [611891.656, 6990932.259], [612388.808, 6992306.864], [619031.009, 6993841.465], [619052.983, 6993850.254], [621496.392, 6996036.646], [621052.54, 6997796.322], [620521.433, 6999021.558], [620565.755, 7000040.474], [621080.331, 6999007.407]]]}}, {\\\"id\\\": \\\"180\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"J\\\\u00e4ms\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 35.8, \\\"freshwarea\\\": 252.54, \\\"gml_id\\\": 1601100309, \\\"landarea\\\": 1571.37, \\\"namefin\\\": \\\"J\\\\u00e4ms\\\\u00e4\\\", \\\"nameswe\\\": \\\"J\\\\u00e4ms\\\\u00e4\\\", \\\"natcode\\\": \\\"182\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1823.91}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[395730.728, 6898415.349], [396010.882, 6897891.474], [398043.378, 6896369.994], [401979.077, 6893850.477], [404424.189, 6893635.064], [410640.455, 6892336.108], [412069.554, 6889046.478], [413774.843, 6887509.407], [411880.006, 6885159.272], [412079.128, 6884456.367], [410260.493, 6883246.743], [409056.613, 6880785.675], [413002.761, 6879965.501], [413084.312, 6878494.804], [413278.784, 6877115.65], [414710.242, 6875916.537], [412190.427, 6873946.347], [412486.324, 6872868.617], [412923.533, 6873028.821], [413286.181, 6872470.176], [413064.502, 6871883.508], [412624.076, 6871316.065], [413003.027, 6871218.571], [412690.358, 6869821.359], [413496.032, 6869295.766], [414304.909, 6870324.203], [416362.732, 6868120.58], [416447.796, 6867378.77], [417310.945, 6867505.68], [417552.668, 6867216.917], [418250.703, 6867525.678], [418420.896, 6865901.62], [426101.449, 6857100.673], [424333.889, 6851895.564], [422729.752, 6850493.619], [416178.333, 6847939.183], [415296.408, 6846800.896], [415886.186, 6846288.651], [415096.055, 6844360.878], [413979.945, 6843292.71], [413202.984, 6844044.747], [410283.619, 6844794.272], [408328.954, 6844931.096], [408521.34, 6846079.435], [408300.149, 6846351.928], [407845.748, 6846003.235], [407269.7, 6845117.57], [406764.975, 6844964.332], [405897.511, 6846140.972], [405229.428, 6845884.996], [404379.54, 6845367.213], [403839.581, 6846139.968], [403584.889, 6846272.445], [403028.676, 6846334.808], [402296.075, 6846500.266], [393433.93, 6852102.657], [392429.615, 6851381.322], [392467.486, 6850973.606], [393915.266, 6849316.118], [393349.722, 6848921.249], [394056.642, 6846687.29], [394520.626, 6845861.52], [393183.375, 6844853.733], [392603.636, 6845128.092], [392165.456, 6845608.666], [392534.026, 6846222.143], [392240.985, 6846578.649], [392620.216, 6847430.599], [392079.423, 6848643.274], [391440.088, 6848167.935], [391460.496, 6847902.346], [391745.862, 6847355.115], [391546.977, 6846627.971], [391398.563, 6846664.843], [390408.539, 6844728.99], [390276.024, 6844258.033], [389676.252, 6843251.025], [389835.419, 6843044.1], [389822.98, 6842774.463], [390115.536, 6841794.707], [390513.484, 6840821.116], [391138.196, 6840261.891], [391853.414, 6839278.17], [392203.595, 6838191.197], [392226.042, 6837809.869], [391738.438, 6837171.846], [392025.823, 6836723.259], [391446.233, 6836524.81], [391322.585, 6835905.029], [391889.348, 6834729.064], [389654.585, 6834836.836], [389221.624, 6835465.877], [388128.706, 6836701.796], [387458.779, 6836423.942], [385803.027, 6836985.17], [385414.913, 6837358.348], [385252.909, 6837100.608], [384986.645, 6837218.87], [384140.798, 6838254.77], [386462.799, 6839646.979], [383161.904, 6841673.594], [381842.331, 6840101.339], [381642.055, 6840863.234], [380243.861, 6842149.361], [381011.804, 6844948.99], [380939.607, 6846032.347], [379755.73, 6849931.582], [379980.076, 6851710.509], [380522.212, 6851511.834], [380818.367, 6851848.573], [381321.296, 6851964.929], [381511.688, 6852455.645], [381825.574, 6851968.569], [381289.288, 6851299.764], [382358.688, 6850465.759], [382559.985, 6849943.952], [383004.145, 6849310.302], [384662.458, 6848746.62], [384426.55, 6849862.895], [384917.781, 6850087.053], [385011.119, 6850500.343], [383990.209, 6852035.97], [383859.806, 6852653.279], [383528.516, 6852284.265], [383055.066, 6852946.141], [382491.742, 6853187.425], [382712.999, 6853535.899], [382603.601, 6854078.72], [380386.067, 6855472.741], [379826.847, 6856516.502], [377255.891, 6861121.622], [374551.642, 6863913.868], [372848.11, 6865017.808], [371431.611, 6866831.23], [369984.957, 6866558.109], [371052.307, 6869333.994], [370958.477, 6869788.211], [371018.369, 6870175.709], [371935.277, 6869930.722], [371971.745, 6870241.597], [371593.385, 6870608.442], [371945.79, 6870705.723], [371925.457, 6871183.601], [373248.856, 6871152.844], [374214.18, 6872285.809], [375397.616, 6875632.581], [376244.924, 6876305.022], [377140.199, 6875804.333], [377334.841, 6876223.901], [377805.496, 6876213.731], [378158.968, 6876592.019], [378854.957, 6876669.718], [381259.133, 6878840.604], [389079.739, 6882556.808], [386726.012, 6888613.35], [392183.079, 6897094.918], [394359.983, 6899320.787], [395730.728, 6898415.349]]]}}, {\\\"id\\\": \\\"181\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kauhajoki\\\", \\\"elakelaisten_osuus\\\": 32.1, \\\"freshwarea\\\": 16.56, \\\"gml_id\\\": 1601100389, \\\"landarea\\\": 1298.99, \\\"namefin\\\": \\\"Kauhajoki\\\", \\\"nameswe\\\": \\\"Kauhajoki\\\", \\\"natcode\\\": \\\"232\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1315.55}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[257874.983, 6942264.318], [258004.196, 6941327.835], [261622.516, 6939251.2], [261265.588, 6937625.421], [264563.584, 6936221.167], [267514.489, 6935613.142], [270362.463, 6934041.164], [272250.402, 6934073.154], [272533.534, 6932644.813], [273044.524, 6931083.535], [274944.779, 6927638.634], [274194.45, 6922133.353], [275076.657, 6918996.374], [275342.546, 6917080.388], [273716.601, 6915336.617], [271593.882, 6916626.569], [267970.149, 6906871.158], [267361.558, 6906568.563], [267649.982, 6906300.152], [267352.98, 6905639.789], [266365.824, 6906075.511], [263397.842, 6904604.612], [258966.185, 6898659.253], [255859.251, 6894485.423], [249539.259, 6894974.367], [248728.146, 6900520.771], [237858.422, 6912305.976], [237376.971, 6913468.796], [234319.031, 6920908.979], [235006.972, 6924928.098], [235016.563, 6924992.6], [234990.134, 6925005.508], [239715.333, 6932820.597], [239831.676, 6932789.264], [239892.18, 6932893.044], [239776.246, 6932924.438], [241583.005, 6936113.178], [242514.416, 6939057.935], [242963.583, 6941228.611], [242684.019, 6941983.918], [243305.093, 6942518.149], [243511.582, 6943420.761], [243416.103, 6943899.506], [243160.9, 6943994.731], [243465.62, 6944318.495], [243271.361, 6944767.957], [243511.328, 6944844.137], [243667.482, 6944783.995], [243600.856, 6943919.121], [245092.32, 6944296.194], [249401.104, 6942366.118], [250323.226, 6944948.534], [257874.983, 6942264.318]]]}}, {\\\"id\\\": \\\"182\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Forssa\\\", \\\"elakelaisten_osuus\\\": 35.3, \\\"freshwarea\\\": 4.62, \\\"gml_id\\\": 1601100092, \\\"landarea\\\": 248.76, \\\"namefin\\\": \\\"Forssa\\\", \\\"nameswe\\\": \\\"Forssa\\\", \\\"natcode\\\": \\\"061\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 253.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[323623.191, 6767593.425], [323464.302, 6766308.588], [325149.65, 6766777.448], [325640.862, 6766626.104], [326103.046, 6765809.67], [326640.495, 6765809.765], [328776.641, 6760201.18], [327839.403, 6759242.022], [324795.257, 6759863.202], [324225.629, 6760248.96], [321616.061, 6756342.76], [321563.738, 6756010.612], [322045.173, 6755113.438], [320961.202, 6753927.426], [319650.688, 6754252.184], [318038.833, 6753668.194], [318950.253, 6752766.631], [319188.329, 6749521.841], [319279.727, 6748354.244], [319090.155, 6747573.124], [320793.508, 6747122.596], [320586.47, 6745606.739], [320040.311, 6745877.646], [319757.257, 6745427.455], [319166.12, 6745693.749], [318978.582, 6745180.187], [317633.395, 6743422.372], [316771.415, 6742928.94], [312251.77, 6744213.355], [312732.664, 6745235.705], [312784.352, 6745682.043], [312589.48, 6747430.802], [312614.635, 6748578.157], [313269.812, 6748856.701], [312586.106, 6751459.035], [312385.039, 6753536.521], [312814.51, 6754369.968], [313174.818, 6755861.675], [313075.059, 6757449.897], [312868.972, 6759376.302], [312561.453, 6759593.617], [312226.016, 6759534.162], [312024.126, 6759720.603], [311971.848, 6760135.856], [311691.769, 6760438.98], [311571.388, 6760969.473], [311087.9, 6761201.951], [310864.292, 6761550.988], [310490.703, 6762013.978], [310430.167, 6762583.996], [310027.442, 6762827.879], [310040.429, 6763202.982], [309926.83, 6763394.981], [309143.035, 6763855.071], [308494.589, 6764536.373], [308664.845, 6765124.966], [308663.125, 6765553.47], [308118.064, 6765933.473], [308185.517, 6766112.178], [308843.904, 6766045.3], [308931.534, 6766582.699], [309571.537, 6766804.612], [310685.698, 6766815.134], [311306.574, 6767093.892], [312361.052, 6766349.073], [313118.669, 6767173.548], [313714.463, 6767605.181], [314249.7, 6767212.284], [314357.692, 6767768.106], [315466.184, 6767123.128], [315186.96, 6766538.714], [314813.135, 6766905.599], [314632.612, 6766585.963], [315314.119, 6765828.433], [315842.017, 6766446.611], [316552.947, 6766575.294], [317182.141, 6767787.183], [317641.113, 6767523.765], [317843.978, 6767913.684], [318869.276, 6767549.556], [319459.11, 6767591.492], [319687.984, 6768020.357], [320781.262, 6767652.203], [321322.677, 6767946.127], [322286.219, 6768255.124], [323623.191, 6767593.425]]]}}, {\\\"id\\\": \\\"183\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"\\\\u00c4\\\\u00e4nekoski\\\", \\\"elakelaisten_osuus\\\": 32.2, \\\"freshwarea\\\": 253.81, \\\"gml_id\\\": 1601100606, \\\"landarea\\\": 884.57, \\\"namefin\\\": \\\"\\\\u00c4\\\\u00e4nekoski\\\", \\\"nameswe\\\": \\\"\\\\u00c4\\\\u00e4nekoski\\\", \\\"natcode\\\": \\\"992\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1138.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[439107.707, 6975602.753], [442263.692, 6972930.905], [442581.466, 6972919.265], [443662.778, 6973389.073], [444851.02, 6973316.388], [446311.254, 6972608.846], [448488.097, 6971321.671], [450350.963, 6975273.333], [450775.791, 6974798.016], [451066.899, 6974603.474], [451491.412, 6973997.033], [451920.673, 6973890.174], [452626.858, 6973610.366], [457542.012, 6971661.854], [458719.053, 6970465.058], [458392.429, 6969880.409], [457013.971, 6968961.99], [456811.171, 6968809.34], [453848.006, 6967979.933], [450310.043, 6966508.131], [450806.678, 6964549.138], [451115.313, 6964142.152], [451164.781, 6963567.752], [451335.251, 6963117.425], [451737.207, 6962433.42], [452160.903, 6961894.71], [452365.219, 6961319.414], [452768.681, 6960853.181], [453321.693, 6960613.372], [454031.123, 6960701.89], [454519.175, 6960232.356], [454985.547, 6960096.641], [455815.178, 6959175.019], [456195.899, 6958039.915], [455809.048, 6953731.546], [457047.041, 6951136.807], [460762.497, 6949987.9], [456448.486, 6947529.827], [455772.408, 6944342.346], [454337.693, 6941963.477], [450476.004, 6939564.802], [445216.633, 6933094.676], [445077.706, 6933088.375], [442627.086, 6934814.064], [439670.735, 6935452.677], [439566.824, 6935255.567], [439931.88, 6934668.706], [440458.289, 6934406.695], [440598.415, 6934201.245], [440549.991, 6933710.778], [440306.457, 6933602.6], [440519.418, 6933115.059], [440218.794, 6932844.93], [440001.298, 6932913.64], [439606.707, 6932499.412], [439254.466, 6932289.51], [438445.782, 6931438.828], [438075.656, 6931958.391], [434562.321, 6930697.343], [434429.856, 6929372.413], [434144.671, 6929440.384], [433727.949, 6928362.717], [432665.479, 6928507.952], [432762.406, 6929615.249], [432443.75, 6930803.022], [432560.366, 6931044.716], [432461.229, 6932096.583], [431351.881, 6932181.757], [431291.6, 6932922.657], [432378.461, 6932704.352], [432174.329, 6934467.438], [429617.969, 6934094.872], [429393.938, 6936732.004], [425104.742, 6937066.692], [423853.693, 6935808.742], [422021.596, 6936040.476], [421844.458, 6941083.023], [424107.164, 6942473.565], [424089.135, 6942758.424], [423342.021, 6944465.825], [421856.345, 6945963.448], [421755.834, 6946316.579], [423152.835, 6951521.856], [422908.889, 6955970.967], [423542.433, 6955876.485], [423455.665, 6956692.304], [432357.33, 6959154.223], [433491.844, 6962014.069], [433017.863, 6963474.55], [431134.569, 6965481.942], [429353.062, 6969293.785], [427279.716, 6970716.39], [432182.868, 6975105.771], [434367.042, 6977417.745], [439107.707, 6975602.753]]]}}, {\\\"id\\\": \\\"184\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Geta\\\", \\\"elakelaisten_osuus\\\": 23.9, \\\"freshwarea\\\": 2.92, \\\"gml_id\\\": 1601100101, \\\"landarea\\\": 84.5500000000001, \\\"namefin\\\": \\\"Geta\\\", \\\"nameswe\\\": \\\"Geta\\\", \\\"natcode\\\": \\\"065\\\", \\\"seawarea\\\": 518.18, \\\"totalarea\\\": 605.65}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[98781.919, 6709867.93], [99298.719, 6709236.539], [98534.684, 6707996.855], [97744.937, 6708702.591], [97291.148, 6708624.175], [96771.483, 6708143.966], [95979.303, 6709749.158], [96921.617, 6709993.462], [97401.693, 6710409.03], [97468.908, 6710674.947], [97932.603, 6710585.857], [98622.442, 6710941.343], [98781.919, 6709867.93]]], [[[109256.595, 6723254.537], [113277.995, 6720056.424], [114676.301, 6718570.434], [112904.358, 6717129.398], [112946.181, 6716023.974], [112541.416, 6715516.664], [112609.121, 6715281.607], [111541.877, 6714393.608], [111529.815, 6714149.452], [111431.387, 6713312.456], [110954.183, 6712795.864], [110185.579, 6712509.434], [109065.23, 6712172.588], [108460.597, 6712346.811], [108188.771, 6711887.86], [108154.22, 6711265.533], [107935.808, 6710861.732], [108025.875, 6710533.417], [107589.64, 6709342.62], [106747.393, 6708916.679], [105874.208, 6708903.802], [105303.311, 6708398.681], [104458.618, 6708840.398], [103798.033, 6709325.939], [103471.305, 6709256.637], [101302.112, 6710596.97], [100239.99, 6711728.863], [98760.077, 6712268.169], [97541.568, 6711267.949], [97541.477, 6711267.874], [97515.21, 6712535.632], [98506.551, 6712886.023], [98890.413, 6714262.955], [99256.564, 6715115.484], [99255.609, 6715117.836], [99452.09, 6717575.173], [99451.828, 6717578.607], [99429.953, 6717865.373], [99429.869, 6717866.463], [99174.988, 6719054.675], [99045.613, 6719238.081], [98498.918, 6720318.464], [97442.838, 6721018.08], [89255.764, 6749132.339], [93385.028, 6750383.751], [94006.701, 6750562.372], [94633.252, 6750722.81], [95264.301, 6750864.955], [95899.148, 6750988.707], [96537.295, 6751093.967], [97178.241, 6751180.634], [97821.486, 6751248.708], [98444.649, 6751296.691], [107440.164, 6751862.314], [109256.595, 6723254.537]], [[102712.168, 6721478.264], [102259.084, 6721227.7], [101800.073, 6721160.664], [101328.556, 6721272.043], [101215.968, 6722676.021], [101172.986, 6723192.736], [102421.024, 6723514.835], [102712.168, 6721478.264]]]]}}, {\\\"id\\\": \\\"185\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Eura\\\", \\\"elakelaisten_osuus\\\": 31.8, \\\"freshwarea\\\": 51.4, \\\"gml_id\\\": 1601100070, \\\"landarea\\\": 578.8, \\\"namefin\\\": \\\"Eura\\\", \\\"nameswe\\\": \\\"Eura\\\", \\\"natcode\\\": \\\"050\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 630.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[228415.784, 6806848.099], [229000.519, 6806634.365], [229242.546, 6806718.259], [229400.257, 6805801.004], [229967.165, 6806350.075], [230387.858, 6806216.264], [230405.554, 6805778.096], [231264.332, 6805889.148], [232204.822, 6805676.003], [232817.34, 6805578.279], [233394.317, 6805753.473], [234311.88, 6803114.678], [235290.058, 6802798.909], [235989.293, 6802827.588], [236238.88, 6803287.985], [238966.13, 6802053.866], [240709.941, 6801260.276], [241334.386, 6800405.003], [240490.58, 6797259.324], [239160.084, 6796013.57], [239679.014, 6795623.427], [239844.503, 6795212.964], [239703.374, 6794772.793], [243026.081, 6790770.652], [243236.926, 6787345.638], [242335.755, 6786050.969], [243522.321, 6784329.754], [243379.886, 6784226.958], [241864.449, 6783096.237], [243149.982, 6768481.585], [241789.4, 6766421.928], [243395.267, 6763918.679], [242161.355, 6763667.92], [241410.974, 6763182.519], [239132.529, 6761341.812], [240679.382, 6760583.736], [240420.954, 6760189.153], [239108.513, 6760946.922], [237974.134, 6758761.085], [237353.515, 6758229.25], [235893.98, 6761936.978], [229548.463, 6762051.225], [229322.05, 6761676.042], [228946.623, 6761950.006], [228775.427, 6761697.008], [228110.673, 6762167.036], [228833.851, 6763402.797], [226279.671, 6767397.541], [226929.748, 6770748.484], [225561.264, 6770766.964], [224395.722, 6771976.606], [223636.952, 6771499.654], [222966.427, 6771709.856], [222381.743, 6773283.02], [221421.513, 6774809.228], [223175.84, 6775316.248], [225582.093, 6775158.278], [226437.18, 6775421.918], [227004.413, 6775880.873], [227520.87, 6775127.111], [228150.741, 6775320.997], [228415.246, 6775145.786], [228930.647, 6775309.803], [229097.574, 6776079.319], [229531.834, 6776633.73], [230038.471, 6776721.823], [230754.905, 6776416.962], [231174.617, 6776392.55], [233925.762, 6777536.029], [233892.529, 6777841.179], [233102.792, 6781832.366], [231957.071, 6782911.068], [229966.938, 6782661.15], [228052.399, 6784450.895], [225591.522, 6786429.559], [225049.416, 6788110.869], [223873.007, 6789854.999], [225586.3, 6791762.741], [226943.719, 6791808.203], [228320.316, 6792513.998], [228311.619, 6794665.851], [226187.815, 6798146.308], [225828.691, 6799167.506], [225238.036, 6799992.913], [226039.015, 6802920.209], [227362.612, 6804975.66], [225662.856, 6806606.062], [226487.056, 6807892.814], [228415.784, 6806848.099]]]}}, {\\\"id\\\": \\\"186\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Simo\\\", \\\"elakelaisten_osuus\\\": 39.2, \\\"freshwarea\\\": 19.98, \\\"gml_id\\\": 1601100529, \\\"landarea\\\": 1447.34, \\\"namefin\\\": \\\"Simo\\\", \\\"nameswe\\\": \\\"Simo\\\", \\\"natcode\\\": \\\"751\\\", \\\"seawarea\\\": 618.96, \\\"totalarea\\\": 2086.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[444094.817, 7330386.502], [447684.232, 7322077.929], [439885.681, 7308498.831], [443891.274, 7303881.635], [445907.067, 7303082.864], [445772.234, 7302744.646], [444676.039, 7302974.713], [451429.652, 7295129.029], [444538.768, 7291543.363], [427779.649, 7292121.84], [424782.152, 7290505.51], [422247.895, 7285846.901], [418662.272, 7284085.111], [417081.14, 7282367.373], [416709.711, 7282704.962], [416237.483, 7282185.395], [416607.922, 7281848.708], [415427.335, 7280561.571], [413803.717, 7277425.091], [412128.027, 7275809.87], [411715.851, 7275474.38], [388320.874, 7252065.826], [367320.513, 7244045.46], [367343.815, 7249044.486], [382862.563, 7261658.231], [392279.663, 7283657.013], [393569.713, 7283988.54], [396561.004, 7287772.167], [398844.171, 7290544.441], [398750.883, 7290617.015], [398865.122, 7290756.048], [398956.845, 7290681.867], [399673.008, 7291548.939], [399581.255, 7291628.236], [399978.762, 7292108.619], [400066.703, 7292035.479], [400758.967, 7292919.496], [400334.855, 7293312.843], [400439.839, 7294076.89], [401022.911, 7293415.508], [401818.058, 7294909.912], [404373.698, 7293467.402], [404271.915, 7293984.094], [404148.778, 7294174.255], [403837.465, 7294320.991], [404107.969, 7294446.44], [404332.775, 7294505.948], [404405.505, 7294777.038], [404282.674, 7295056.35], [404623.697, 7295299.383], [404899.381, 7295065.933], [405627.75, 7295280.362], [405403.46, 7295615.224], [404917.912, 7295425.042], [404493.459, 7295651.417], [405378.828, 7297259.57], [404840.651, 7297552.88], [407079.546, 7301988.165], [415850.194, 7309875.449], [416302.029, 7309513.811], [416850.386, 7310190.377], [416468.877, 7310433.802], [419297.567, 7312996.177], [418873.192, 7316128.82], [419356.794, 7316762.731], [429881.546, 7330576.368], [431380.098, 7331622.223], [432074.729, 7330901.278], [433965.291, 7332207.887], [433392.263, 7333030.11], [434263.655, 7333629.767], [444094.817, 7330386.502]]]}}, {\\\"id\\\": \\\"187\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Juva\\\", \\\"elakelaisten_osuus\\\": 39.5, \\\"freshwarea\\\": 182.51, \\\"gml_id\\\": 1601100301, \\\"landarea\\\": 1163.18, \\\"namefin\\\": \\\"Juva\\\", \\\"nameswe\\\": \\\"Juva\\\", \\\"natcode\\\": \\\"178\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1345.69}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[522127.447, 6879903.222], [524267.194, 6878149.183], [524837.623, 6878180.209], [524710.524, 6877813.879], [525775.484, 6877849.715], [525502.1, 6878229.336], [527737.45, 6878400.91], [527966.292, 6878081.162], [527115.369, 6877429.164], [527296.324, 6877172.123], [528182.318, 6877853.158], [528494.356, 6877489.236], [528833.372, 6877650.513], [528262.195, 6878443.401], [530850.955, 6878630.835], [531437.221, 6877619.727], [532776.01, 6877775.159], [533478.532, 6878271.445], [534175.036, 6877445.242], [534937.549, 6876940.414], [535043.715, 6876740.861], [536645.735, 6875330.708], [539018.986, 6874787.344], [539506.694, 6874273.455], [539658.552, 6874757.177], [540266.215, 6874603.801], [541582.97, 6873070.756], [543752.579, 6875095.752], [544568.842, 6876069.964], [545654.414, 6875206.721], [546349.138, 6874780.198], [546659.342, 6875202.249], [546895.516, 6875002.412], [546562.347, 6874609.577], [547348.142, 6873981.626], [547610.234, 6874297.6], [549283.866, 6873264.026], [549682.102, 6873653.972], [550017.371, 6873177.965], [549372.556, 6872396.482], [550187.999, 6872395.371], [551255.48, 6871832.514], [551836.204, 6871972.526], [552215.086, 6871557.022], [553256.664, 6871650.592], [554457.888, 6869925.991], [555794.246, 6869436.732], [555795.344, 6869435.942], [556902.745, 6868619.87], [557700.808, 6868365.315], [558418.668, 6868901.336], [558815.413, 6869375.124], [557896.683, 6869983.877], [557780.027, 6870460.784], [558174.015, 6870818.567], [558515.7, 6871470.773], [559344.14, 6872164.633], [560240.911, 6871897.911], [560416.643, 6872093.845], [561098.513, 6871621.745], [562009.79, 6871747.477], [562687.72, 6871059.157], [562911.855, 6870609.116], [563480.825, 6870669.564], [564394.436, 6870076.615], [563926.448, 6869190.52], [564115.078, 6867829.082], [563273.618, 6868427.093], [562706.237, 6868664.829], [562342.786, 6868356.651], [562494.728, 6868053.075], [562040.019, 6867280.985], [562387.986, 6866543.087], [562144.988, 6866146.946], [562103.712, 6865425.239], [561714.848, 6864720.916], [560752.952, 6865824.964], [559376.824, 6864280.18], [559217.998, 6863384.284], [558883.363, 6863811.232], [557890.322, 6863521.861], [558146.745, 6863303.456], [557239.91, 6861880.163], [558983.33, 6861381.357], [559306.371, 6860979.257], [559845.594, 6860703.252], [560309.702, 6860663.442], [561269.208, 6859660.771], [560656.158, 6859291.216], [560000.323, 6859268.519], [559890.398, 6858897.881], [559857.4, 6857389.78], [558035.749, 6855869.58], [557926.606, 6853751.392], [558320.907, 6853327.722], [558764.882, 6853231.858], [559250.541, 6852904.492], [562702.54, 6848352.274], [562232.834, 6847583.28], [561848.706, 6847417.505], [561892.281, 6846172.548], [562054.852, 6845748.76], [561829.523, 6845545.834], [561231.398, 6845944.544], [560817.9, 6846282.046], [560767.073, 6846806.574], [560399.755, 6847282.784], [558079.618, 6846251.081], [558558.23, 6845554.467], [559074.33, 6844394.542], [559411.896, 6843999.105], [559764.653, 6844169.439], [560325.53, 6843743.916], [560862.412, 6843935.044], [561799.234, 6843996.228], [562166.891, 6843209.649], [560549.559, 6840531.599], [560120.834, 6840431.252], [559831.243, 6840126.556], [560009.382, 6839858.582], [559561.265, 6839370.473], [559619.666, 6839018.669], [559047.178, 6838717.782], [559518.216, 6837695.486], [558834.374, 6836484.625], [560037.295, 6835622.786], [559510.672, 6833435.284], [559730.969, 6833093.369], [559415.165, 6832239.94], [558694.138, 6831920.741], [557376.775, 6834058.688], [557108.315, 6833907.871], [556832.179, 6833296.574], [556314.73, 6833158.305], [555733.04, 6833864.059], [555081.932, 6834041.308], [555374.953, 6835246.307], [555061.791, 6835415.314], [554542.689, 6836006.91], [554201.345, 6835847.249], [552778.52, 6835749.281], [551947.353, 6836243.877], [551392.101, 6836202.72], [551253.103, 6833932.268], [552525.079, 6832188.314], [552723.774, 6830648.96], [551427.064, 6830511.306], [550011.175, 6829633.64], [549812.071, 6827209.22], [550151.115, 6825615.624], [549856.115, 6824725.14], [547859.379, 6823891.352], [547531.038, 6825415.33], [546851.168, 6826789.874], [546276.197, 6827343.747], [546267.197, 6827859.838], [545961.618, 6828261.175], [546398.533, 6829607.932], [546201.507, 6830547.851], [546521.076, 6830764.365], [546411.915, 6831635.012], [546159.204, 6832206.839], [545181.588, 6833077.806], [545358.225, 6833390.561], [546447.371, 6833601.8], [546609.719, 6834192.679], [546490.862, 6834961.367], [546460.769, 6835848.308], [543924.373, 6837922.796], [543635.495, 6837939.048], [543646.078, 6838550.639], [542838.406, 6839615.065], [540791.237, 6838888.733], [540471.463, 6839192.624], [538622.804, 6839940.311], [538819.223, 6840203.506], [538475.358, 6840721.394], [537408.186, 6841046.557], [536981.785, 6841562.29], [536354.018, 6841313.246], [535327.823, 6841404.158], [534405.459, 6840748.452], [533730.407, 6841531.138], [533323.564, 6842390.295], [533294.886, 6842802.131], [533031.788, 6843100.553], [531814.526, 6843555.512], [531351.606, 6844529.416], [530899.232, 6845219.976], [530946.209, 6845785.413], [530113.662, 6846765.81], [529127.456, 6846974.777], [528540.621, 6847863.152], [529145.368, 6849010.091], [529153.462, 6849385.839], [528478.024, 6850931.81], [527692.141, 6851124.328], [525981.894, 6853627.995], [525705.827, 6853738.36], [525242.501, 6855837.707], [524738.403, 6856186.862], [524067.171, 6856866.683], [523759.889, 6857636.47], [523186.12, 6858051.998], [522802.566, 6859173.242], [522075.338, 6861948.814], [522579.014, 6863890.232], [523136.58, 6864646.831], [522597.492, 6865496.683], [524684.224, 6867326.26], [522074.665, 6869903.199], [521656.431, 6870459.271], [521409.024, 6871258.946], [520597.747, 6872217.053], [520552.042, 6874895.344], [520577.627, 6877408.432], [519814.838, 6878060.522], [520373.644, 6878434.95], [519407.856, 6880521.488], [521102.675, 6881517.856], [522127.447, 6879903.222]]]}}, {\\\"id\\\": \\\"188\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ecker\\\\u00f6\\\", \\\"elakelaisten_osuus\\\": 26.1, \\\"freshwarea\\\": 1.46, \\\"gml_id\\\": 1601100060, \\\"landarea\\\": 107.72, \\\"namefin\\\": \\\"Ecker\\\\u00f6\\\", \\\"nameswe\\\": \\\"Ecker\\\\u00f6\\\", \\\"natcode\\\": \\\"043\\\", \\\"seawarea\\\": 643.49, \\\"totalarea\\\": 752.67}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[82008.282, 6723672.551], [90259.114, 6718352.615], [93585.731, 6717887.263], [95033.121, 6715842.384], [95235.616, 6713868.975], [93788.885, 6712042.118], [93035.798, 6710891.118], [93911.437, 6709800.328], [93733.514, 6709122.724], [93355.411, 6708463.322], [93438.553, 6707832.178], [93583.134, 6707584.03], [92854.539, 6707083.669], [92508.364, 6706547.46], [92816.435, 6705790.166], [93155.706, 6704632.264], [93726.539, 6704616.734], [94266.922, 6703176.477], [94164.171, 6702356.349], [93852.158, 6701794.185], [93590.629, 6701490.806], [93505.632, 6700781.29], [93748.214, 6700234.962], [94279.228, 6699973.874], [94993.499, 6699371.516], [94664.572, 6698877.268], [94745.045, 6697469.378], [94876.082, 6697024.16], [94858.211, 6695850.928], [94470.465, 6695430.531], [94284.098, 6694924.571], [94527.585, 6694459.538], [94150.571, 6694283.447], [93885.433, 6693325.265], [93416.893, 6692182.381], [93412.789, 6690836.509], [92644.554, 6690008.785], [89134.548, 6689568.716], [89039.646, 6687535.706], [72884.215, 6679017.315], [69127.278, 6685754.306], [75712.828, 6689167.087], [83521.387, 6693605.895], [83166.492, 6697972.381], [80181.728, 6699153.428], [83390.452, 6704564.518], [76918.718, 6710048.243], [68416.736, 6718890.031], [74774.854, 6744728.818], [82008.282, 6723672.551]], [[85515.452, 6711413.438], [80644.32, 6710966.426], [79484.308, 6712455.886], [80994.169, 6715620.987], [85515.452, 6711413.438]]]}}, {\\\"id\\\": \\\"189\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rusko\\\", \\\"elakelaisten_osuus\\\": 22.0, \\\"freshwarea\\\": 0.75, \\\"gml_id\\\": 1601100450, \\\"landarea\\\": 127.15, \\\"namefin\\\": \\\"Rusko\\\", \\\"nameswe\\\": \\\"Rusko\\\", \\\"natcode\\\": \\\"704\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 127.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[248104.726, 6731563.523], [247772.946, 6731373.64], [248030.263, 6731020.237], [247806.495, 6730482.339], [246938.099, 6729125.065], [246270.765, 6728419.956], [244013.124, 6726471.69], [242636.725, 6724182.534], [242019.815, 6721658.12], [241582.428, 6720831.328], [241438.801, 6720231.044], [240966.093, 6719689.578], [240176.902, 6718406.035], [239865.075, 6718991.8], [239720.651, 6718819.753], [239844.47, 6718435.527], [239613.159, 6718301.412], [239225.506, 6718845.252], [238266.697, 6719326.242], [237832.263, 6719201.024], [238887.308, 6718239.33], [238408.189, 6717771.664], [238650.348, 6717524.717], [239031.602, 6717088.129], [236626.841, 6717432.035], [236275.907, 6717589.017], [236249.119, 6717856.375], [236436.744, 6718228.914], [235644.148, 6718838.122], [235463.543, 6719123.509], [233641.175, 6720243.662], [233684.64, 6720534.296], [234218.548, 6721263.963], [234532.975, 6721474.227], [235824.324, 6723135.847], [235695.126, 6723266.63], [236088.898, 6724075.872], [236527.634, 6723919.15], [236874.82, 6724725.158], [237288.056, 6724956.928], [237754.212, 6725583.851], [237793.53, 6726147.712], [238006.628, 6726547.95], [238151.842, 6727052.079], [237783.639, 6727106.648], [237803.37, 6727309.803], [238008.588, 6727654.564], [238460.544, 6727496.997], [238774.137, 6727937.422], [240069.201, 6727591.834], [240321.02, 6728553.248], [240523.909, 6729091.549], [240025.605, 6729592.455], [240272.815, 6730177.28], [240196.172, 6730674.522], [240351.618, 6730843.366], [240831.138, 6730949.16], [240143.44, 6731614.483], [240716.944, 6732538.198], [241278.359, 6732400.636], [241381.368, 6733164.504], [241986.525, 6733234.96], [242453.511, 6734160.255], [243709.331, 6735398.724], [244908.882, 6736272.14], [247230.068, 6738232.614], [250110.717, 6742255.941], [248104.726, 6731563.523]]]}}, {\\\"id\\\": \\\"190\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Toivakka\\\", \\\"elakelaisten_osuus\\\": 31.0, \\\"freshwarea\\\": 52.49, \\\"gml_id\\\": 1601100652, \\\"landarea\\\": 361.45, \\\"namefin\\\": \\\"Toivakka\\\", \\\"nameswe\\\": \\\"Toivakka\\\", \\\"natcode\\\": \\\"850\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 413.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[458109.985, 6899226.834], [461462.321, 6900285.834], [461463.623, 6899858.708], [460722.967, 6899367.678], [465203.294, 6898115.267], [464407.337, 6896701.058], [459342.968, 6887632.55], [465037.534, 6878458.625], [462967.907, 6879196.918], [460674.823, 6878620.133], [456232.756, 6878749.175], [453699.465, 6874116.315], [453501.9, 6874216.22], [452843.608, 6875721.35], [452408.784, 6875726.344], [451529.13, 6877465.633], [451574.109, 6877950.437], [450526.404, 6878262.592], [449942.616, 6878251.479], [449138.233, 6878556.988], [446454.094, 6878593.808], [446359.11, 6877377.815], [445334.515, 6874667.032], [445076.777, 6874341.848], [439124.156, 6879679.644], [435701.534, 6880259.189], [435607.855, 6881871.84], [437070.844, 6883996.996], [437094.213, 6885285.371], [437141.033, 6887403.681], [437618.514, 6889037.83], [438461.234, 6888941.842], [440149.758, 6889748.782], [440662.531, 6889559.686], [443223.249, 6884676.96], [445709.658, 6882931.776], [445059.694, 6886424.957], [444774.182, 6889891.05], [446758.548, 6893501.598], [450544.412, 6893508.118], [450487.338, 6894267.401], [449874.075, 6894584.578], [449346.385, 6895100.965], [449044.179, 6894698.866], [448585.193, 6895178.429], [448065.604, 6896087.884], [448596.979, 6896321.666], [448633.745, 6897156.442], [448877.044, 6897252.067], [449829.788, 6895223.019], [450467.029, 6894738.746], [452088.646, 6895557.833], [452117.548, 6895993.699], [454310.031, 6900162.943], [455003.944, 6900756.906], [458109.985, 6899226.834]]]}}, {\\\"id\\\": \\\"191\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Alavieska\\\", \\\"elakelaisten_osuus\\\": 28.7, \\\"freshwarea\\\": 1.55, \\\"gml_id\\\": 1601100041, \\\"landarea\\\": 251.47, \\\"namefin\\\": \\\"Alavieska\\\", \\\"nameswe\\\": \\\"Alavieska\\\", \\\"natcode\\\": \\\"009\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 253.02}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[371482.912, 7129662.964], [374214.283, 7127202.616], [378469.196, 7123750.398], [380556.177, 7121005.928], [382543.364, 7120022.976], [382899.505, 7119849.311], [379204.01, 7118108.854], [378800.67, 7118626.555], [378541.964, 7118471.702], [378778.654, 7117935.556], [376606.347, 7116905.318], [376724.254, 7116637.759], [375900.905, 7116053.18], [375687.348, 7116478.362], [374389.812, 7115874.108], [373991.129, 7116323.377], [373358.234, 7116446.164], [373119.497, 7115874.429], [372645.944, 7116054.774], [373204.44, 7115164.496], [372600.049, 7115148.911], [372546.393, 7111640.368], [371823.694, 7109246.416], [371446.804, 7109699.265], [371568.503, 7110509.77], [370658.604, 7110159.351], [371535.809, 7108197.54], [370424.741, 7104339.038], [370146.694, 7104619.325], [370048.178, 7105121.392], [369723.801, 7105170.862], [369702.708, 7105733.485], [369186.203, 7106356.035], [368581.321, 7106926.206], [368037.086, 7107424.825], [367961.824, 7108109.644], [367637.785, 7108316.084], [363058.018, 7115212.537], [363503.578, 7115551.147], [363214.512, 7116568.205], [362722.282, 7116441.369], [362528.098, 7116699.669], [362382.931, 7118796.172], [361856.494, 7119594.791], [361427.113, 7119664.574], [360962.992, 7121469.11], [361579.68, 7121568.82], [361127.642, 7122071.108], [361476.246, 7122259.226], [362444.482, 7122120.974], [362512.765, 7121930.389], [363080.798, 7121657.804], [363260.967, 7121832.587], [363521.47, 7121536.658], [363370.559, 7121298.809], [363770.412, 7120720.287], [367243.758, 7123247.233], [366866.709, 7123702.442], [365794.5, 7125301.078], [364294.474, 7127811.214], [365869.267, 7129393.919], [366381.56, 7128880.929], [366912.449, 7129240.785], [366449.594, 7129749.098], [366469.269, 7130195.844], [366016.144, 7130932.301], [367172.046, 7131298.761], [367540.977, 7132232.659], [368269.766, 7132592.902], [368791.01, 7133254.305], [371482.912, 7129662.964]]]}}, {\\\"id\\\": \\\"192\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sysm\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 46.6, \\\"freshwarea\\\": 269.88, \\\"gml_id\\\": 1601100565, \\\"landarea\\\": 666.3, \\\"namefin\\\": \\\"Sysm\\\\u00e4\\\", \\\"nameswe\\\": \\\"Sysm\\\\u00e4\\\", \\\"natcode\\\": \\\"781\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 936.18}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[453215.5, 6812136.771], [453336.713, 6811921.271], [453247.991, 6811429.358], [452184.327, 6811061.996], [452038.484, 6811573.688], [452164.429, 6812141.659], [452685.814, 6812510.614], [453215.5, 6812136.771]]], [[[430753.738, 6843031.205], [431375.998, 6842754.337], [432632.375, 6842637.08], [433841.088, 6841932.175], [434293.824, 6841348.939], [433814.903, 6841253.649], [433490.141, 6840569.122], [434977.032, 6839710.96], [435522.034, 6837703.694], [435743.157, 6835908.319], [438443.456, 6836047.588], [439693.949, 6835579.388], [440433.852, 6834975.937], [440818.199, 6834525.122], [440701.752, 6833813.908], [440342.606, 6832673.963], [438886.896, 6833195.54], [439342.653, 6827387.981], [440545.658, 6828110.702], [441526.362, 6827510.752], [443435.579, 6828265.266], [441360.24, 6826192.481], [444814.719, 6823663.43], [442688.067, 6821140.667], [440309.974, 6817889.24], [440553.329, 6817306.241], [441016.74, 6817057.748], [439992.459, 6816466.674], [439809.134, 6816606.016], [439418.594, 6816055.234], [440282.642, 6815549.749], [440534.485, 6814949.433], [441037.395, 6814180.192], [441292.909, 6813471.315], [441932.336, 6812894.956], [442709.864, 6811811.99], [445364.086, 6811204.568], [445870.579, 6811751.152], [447553.486, 6812614.62], [447722.128, 6813175.196], [449373.925, 6816396.362], [451199.614, 6813590.562], [451628.745, 6812567.081], [451539.09, 6811077.384], [452231.153, 6810837.122], [452504.201, 6810406.365], [452840.863, 6810469.943], [453530.279, 6811017.528], [454574.653, 6811018.937], [454687.908, 6810777.936], [456292.159, 6809970.679], [456543.46, 6809233.18], [454793.575, 6809043.14], [454767.088, 6808685.685], [455356.158, 6807001.873], [455822.769, 6806830.846], [454641.357, 6805644.715], [453444.335, 6807236.559], [451958.739, 6805403.185], [451370.175, 6805999.038], [450701.546, 6805783.018], [449593.152, 6806556.877], [449120.208, 6806189.002], [449309.307, 6805871.368], [448946.954, 6805652.153], [448705.652, 6805198.934], [447837.402, 6805407.24], [447291.223, 6805063.374], [446306.622, 6805064.562], [445620.202, 6804628.63], [444145.947, 6804342.042], [443543.431, 6803688.501], [443149.021, 6803704.083], [442750.974, 6803418.385], [441927.604, 6804927.765], [441390.323, 6804938.654], [440282.076, 6804082.887], [439761.556, 6803971.742], [440004.369, 6802828.168], [440531.42, 6802941.433], [440625.742, 6802506.729], [440096.457, 6802393.268], [440202.833, 6801885.257], [439941.517, 6801440.442], [439511.327, 6801265.95], [439043.241, 6801358.12], [439014.628, 6800613.223], [438179.885, 6800517.488], [436529.922, 6797962.118], [436139.68, 6798279.085], [432732.949, 6804050.61], [430753.562, 6801508.514], [426813.13, 6801279.627], [425663.734, 6801443.68], [425173.633, 6801803.328], [422133.777, 6800320.791], [418372.933, 6808815.704], [419495.344, 6812537.654], [416789.253, 6818020.26], [420849.832, 6834306.836], [420678.769, 6839096.004], [422249.43, 6839061.331], [422444.099, 6839447.602], [424147.16, 6838653.711], [426355.357, 6839397.129], [428010.871, 6840947.919], [428583.628, 6842248.001], [429396.29, 6843255.003], [429623.196, 6843331.274], [429953.864, 6843044.693], [430659.473, 6843507.212], [430753.738, 6843031.205]]]]}}, {\\\"id\\\": \\\"193\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Multia\\\", \\\"elakelaisten_osuus\\\": 40.9, \\\"freshwarea\\\": 32.39, \\\"gml_id\\\": 1601100098, \\\"landarea\\\": 733.24, \\\"namefin\\\": \\\"Multia\\\", \\\"nameswe\\\": \\\"Multia\\\", \\\"natcode\\\": \\\"495\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 765.63}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[382380.012, 6935477.19], [385026.966, 6936527.138], [386836.662, 6937444.16], [388901.949, 6940390.638], [392185.816, 6943010.068], [394930.61, 6939592.02], [405926.288, 6940502.283], [406701.07, 6940362.62], [410065.516, 6935294.782], [408283.49, 6936280.872], [407127.784, 6935037.751], [406654.3, 6932950.693], [406217.602, 6927436.297], [404066.781, 6925146.58], [403170.836, 6923157.032], [400597.923, 6922646.117], [398074.782, 6916640.714], [397897.448, 6916008.131], [398295.193, 6915975.972], [398736.49, 6914899.984], [398631.302, 6914393.686], [399280.347, 6914365.234], [399848.036, 6913137.211], [399970.949, 6912665.932], [396388.29, 6911952.989], [394266.286, 6911524.329], [392455.231, 6911148.069], [391277.737, 6911128.563], [391015.217, 6911836.824], [389233.613, 6912769.978], [390459.528, 6914156.477], [389767.938, 6914972.405], [387535.785, 6914642.56], [387693.37, 6913735.74], [386951.494, 6913487.278], [386320.597, 6914063.098], [383004.765, 6912698.609], [384711.358, 6916118.082], [383898.706, 6916221.578], [383710.43, 6915910.756], [382968.969, 6916261.585], [382557.748, 6915943.054], [381693.279, 6915890.013], [381539.893, 6917589.746], [381285.029, 6917543.368], [381142.491, 6918563.86], [379439.117, 6918203.743], [379227.436, 6918557.194], [378749.151, 6918557.132], [378765.531, 6919147.369], [378365.027, 6919483.563], [378443.07, 6919792.938], [378155.388, 6920210.903], [378050.218, 6920623.404], [378143.806, 6921006.114], [377923.958, 6921251.864], [377552.867, 6921705.915], [379449.46, 6922939.945], [379224.73, 6923161.678], [377355.533, 6921947.367], [376482.758, 6923015.269], [380143.067, 6925507.298], [380875.85, 6925268.462], [380402.15, 6926078.927], [376198.3, 6923361.368], [375515.091, 6924192.629], [379454.742, 6926122.718], [378499.362, 6926862.409], [377210.478, 6926689.508], [377248.605, 6926402.991], [376826.6, 6926347.979], [376687.732, 6926554.051], [374668.373, 6925225.006], [373217.855, 6927114.746], [375469.069, 6927104.392], [374847.499, 6931101.398], [372926.096, 6935477.746], [372350.716, 6936799.291], [372735.27, 6936971.627], [373030.433, 6936296.178], [373352.832, 6936379.243], [372763.801, 6938861.006], [373831.896, 6939120.711], [373385.501, 6940934.129], [375019.394, 6941243.75], [374447.476, 6944292.001], [376037.789, 6944649.72], [375790.919, 6945737.599], [373837.705, 6945237.765], [371940.958, 6945869.658], [372408.821, 6947361.48], [376149.768, 6950563.473], [382380.012, 6935477.19]]]}}, {\\\"id\\\": \\\"194\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nousiainen\\\", \\\"elakelaisten_osuus\\\": 23.3, \\\"freshwarea\\\": 0.57, \\\"gml_id\\\": 1601100173, \\\"landarea\\\": 198.99, \\\"namefin\\\": \\\"Nousiainen\\\", \\\"nameswe\\\": \\\"Nousis\\\", \\\"natcode\\\": \\\"538\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 199.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[250110.717, 6742255.941], [248820.721, 6741084.805], [244902.339, 6737470.818], [245022.848, 6737335.197], [245380.87, 6737457.472], [245539.754, 6737254.385], [245139.829, 6737034.406], [244474.933, 6737078.488], [243397.56, 6736082.221], [243709.331, 6735398.724], [242453.511, 6734160.255], [241986.525, 6733234.96], [241381.368, 6733164.504], [241278.359, 6732400.636], [241213.81, 6732550.218], [240846.328, 6732915.201], [240730.172, 6733240.591], [240325.913, 6733245.318], [239677.811, 6732531.799], [239371.667, 6731678.987], [239688.003, 6731394.397], [240143.44, 6731614.483], [240831.138, 6730949.16], [240351.618, 6730843.366], [240196.172, 6730674.522], [240272.815, 6730177.28], [240025.605, 6729592.455], [240523.909, 6729091.549], [240321.02, 6728553.248], [240069.201, 6727591.834], [238774.137, 6727937.422], [238460.544, 6727496.997], [238008.588, 6727654.564], [237803.37, 6727309.803], [237807.737, 6727878.114], [238020.747, 6728172.343], [237983.956, 6728778.245], [237627.055, 6728742.048], [237426.886, 6728888.411], [237680.78, 6729237.52], [238050.58, 6729129.155], [238138.388, 6729791.972], [237739.155, 6729922.582], [237966.451, 6730200.965], [238132.365, 6730077.84], [238261.155, 6730253.268], [237906.849, 6730554.857], [237307.454, 6729862.806], [237537.962, 6729528.443], [236788.603, 6729126.526], [236306.435, 6728774.167], [236020.921, 6728527.591], [235415.837, 6728119.909], [235462.007, 6727855.397], [234918.401, 6727794.668], [234802.524, 6727058.424], [234371.997, 6727352.742], [233668.459, 6727198.936], [233005.104, 6726976.1], [231341.847, 6725943.021], [231283.038, 6726705.46], [231060.675, 6726739.522], [230795.019, 6726292.264], [230345.644, 6726284.734], [230076.229, 6726097.314], [229931.659, 6725391.984], [229667.022, 6725541.493], [228450.596, 6725074.604], [228462.299, 6724789.424], [228956.852, 6724952.333], [229025.249, 6724682.14], [228271.614, 6724502.485], [227886.956, 6725412.79], [228409.355, 6725828.025], [228363.554, 6725983.442], [227606.72, 6725868.164], [227588.497, 6726198.708], [227171.619, 6726251.093], [226459.284, 6725878.959], [226500.884, 6726669.14], [226431.747, 6728845.683], [226198.756, 6728803.795], [225590.913, 6729543.134], [225364.27, 6730101.313], [225039.142, 6729798.131], [224809.007, 6730032.395], [224480.304, 6729790.118], [223755.39, 6729401.034], [223736.899, 6729652.412], [224103.94, 6729981.013], [223861.228, 6730154.694], [223261.984, 6730002.466], [222406.589, 6729193.856], [222239.72, 6729485.544], [222422.247, 6729859.558], [222735.96, 6730009.524], [223878.064, 6730815.329], [224225.733, 6731180.778], [224623.126, 6731555.67], [224989.034, 6731132.692], [225325.999, 6731505.884], [225537.864, 6731983.545], [225525.804, 6732260.921], [225408.917, 6732872.713], [225832.68, 6733078.948], [225788.011, 6733485.343], [226050.54, 6733718.055], [226233.872, 6733580.708], [226260.677, 6733167.953], [226866.94, 6733274.029], [227283.908, 6733606.723], [228234.449, 6734016.495], [232273.868, 6737930.348], [247977.626, 6743542.751], [250110.717, 6742255.941]], [[247002.795, 6742308.512], [247491.614, 6741082.34], [247439.622, 6740754.706], [247189.82, 6740193.301], [246904.169, 6741014.688], [246413.692, 6740822.634], [245416.085, 6741988.415], [246797.013, 6742473.879], [247002.795, 6742308.512]]]}}, {\\\"id\\\": \\\"195\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rautavaara\\\", \\\"elakelaisten_osuus\\\": 48.5, \\\"freshwarea\\\": 84.59, \\\"gml_id\\\": 1601100423, \\\"landarea\\\": 1150.66, \\\"namefin\\\": \\\"Rautavaara\\\", \\\"nameswe\\\": \\\"Rautavaara\\\", \\\"natcode\\\": \\\"687\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1235.25}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[570334.147, 7067322.876], [572235.875, 7064255.755], [573713.244, 7063692.544], [573843.915, 7064171.859], [575444.383, 7064165.976], [576662.759, 7064585.051], [577554.408, 7063765.283], [578370.94, 7063256.524], [579481.623, 7061760.204], [578864.851, 7061204.653], [578504.794, 7060002.02], [579018.032, 7057477.778], [579022.1, 7056949.859], [579773.495, 7050707.633], [580076.279, 7050960.278], [580329.444, 7050801.619], [580442.059, 7050445.866], [580120.659, 7050133.223], [580375.487, 7049811.189], [581395.402, 7049372.276], [582462.604, 7048841.993], [582880.682, 7049200.219], [583722.089, 7048270.529], [582046.756, 7046851.673], [581341.857, 7047703.639], [580212.882, 7046752.076], [579805.114, 7046006.627], [579904.539, 7045681.826], [579744.138, 7045357.909], [580115.676, 7044734.969], [580153.932, 7044253.618], [580510.396, 7043741.283], [581762.132, 7039713.863], [582201.515, 7039259.585], [583161.766, 7033823.162], [584677.658, 7032408.971], [585139.581, 7032552.874], [587470.278, 7029920.295], [587931.855, 7030006.2], [587025.332, 7021459.087], [585561.801, 7019944.738], [586099.061, 7019518.125], [584438.457, 7018343.722], [585411.27, 7018396.286], [585657.226, 7017054.751], [584296.455, 7016267.309], [584174.574, 7015248.937], [582750.379, 7014521.657], [582677.4, 7014330.671], [583454.881, 7013595.515], [581015.594, 7009316.911], [580291.392, 7009651.636], [580042.272, 7010005.696], [578175.492, 7011431.242], [577843.975, 7012082.208], [577484.392, 7012157.911], [577187.285, 7012453.358], [575299.962, 7012626.076], [573697.951, 7013932.525], [573310.064, 7014783.988], [572668.302, 7016790.715], [573142.962, 7017085.35], [572906.368, 7017753.735], [572876.663, 7018429.37], [572648.601, 7018981.317], [572583.656, 7019413.527], [572194.621, 7019450.959], [572398.472, 7020075.732], [572249.299, 7020448.631], [571971.279, 7020823.239], [572008.933, 7021735.308], [572188.501, 7021996.914], [572127.857, 7022240.514], [572434.869, 7022440.759], [572233.703, 7023025.54], [572366.502, 7023366.358], [572690.568, 7023195.086], [572729.086, 7023728.581], [572118.548, 7024186.356], [571907.272, 7024836.576], [572020.88, 7025258.279], [572001.571, 7025540.166], [571690.381, 7025777.516], [571583.799, 7026519.878], [571229.711, 7026652.466], [571243.153, 7027121.488], [570564.925, 7027610.211], [570397.483, 7028151.367], [569630.416, 7027691.876], [568844.893, 7027583.935], [568112.538, 7028133.289], [567946.912, 7028009.536], [567136.426, 7022506.299], [564001.617, 7022781.387], [563553.24, 7022845.424], [562945.666, 7029138.716], [560983.814, 7027885.288], [560588.414, 7028000.62], [560463.451, 7027478.207], [559892.367, 7027487.27], [559737.297, 7027970.456], [559271.98, 7028014.202], [558908.552, 7028425.443], [558670.203, 7027981.751], [558212.327, 7027554.337], [558011.004, 7028036.077], [557532.203, 7028425.583], [557441.784, 7028753.936], [557094.414, 7029244.035], [554366.998, 7030987.967], [553989.85, 7031372.909], [552733.641, 7035107.593], [553193.335, 7034939.455], [553302.402, 7034279.322], [553523.964, 7034038.062], [553685.556, 7033614.937], [554151.873, 7033443.485], [554582.949, 7033473.699], [555171.926, 7033259.372], [555389.962, 7033556.762], [555673.687, 7034337.391], [555193.336, 7034806.429], [554966.034, 7035348.277], [554995.95, 7036059.617], [555100.036, 7036623.913], [555325.646, 7037092.424], [555692.15, 7037093.308], [555804.047, 7037567.545], [556328.154, 7039065.12], [556114.933, 7040487.644], [555561.031, 7041028.92], [555426.008, 7041356.189], [555343.134, 7042499.327], [555005.569, 7042945.244], [554296.356, 7043119.869], [554384.513, 7043916.348], [553705.655, 7044891.468], [553370.232, 7045827.301], [552953.146, 7046138.711], [552769.258, 7046615.754], [552175.436, 7046652.551], [551986.42, 7047162.035], [551773.224, 7047305.505], [551564.441, 7047673.126], [551998.128, 7047850.761], [551885.234, 7048092.538], [551995.297, 7048471.678], [552339.893, 7048164.261], [552594.324, 7048188.254], [552753.469, 7048527.051], [552613.419, 7048993.698], [552250.041, 7049429.666], [552458.828, 7049888.612], [552070.123, 7050370.574], [552338.657, 7051033.69], [552583.93, 7051070.639], [552948.132, 7050791.93], [552958.02, 7051473.896], [553346.662, 7051995.314], [553392.449, 7052334.833], [553151.005, 7052789.109], [553487.27, 7052866.764], [553451.413, 7053235.76], [552646.59, 7053837.849], [552275.511, 7054329.314], [551907.318, 7054590.752], [551747.103, 7055001.686], [551964.323, 7055300.106], [552849.183, 7055449.82], [554032.136, 7057571.29], [556305.075, 7062684.654], [556935.134, 7062945.009], [557140.349, 7063129.284], [556835.539, 7063486.793], [557454.56, 7064441.67], [557283.635, 7065020.838], [557710.527, 7065881.285], [559290.42, 7065338.115], [560035.192, 7064500.252], [562153.475, 7061355.213], [563043.244, 7060737.936], [567078.911, 7070399.907], [570334.147, 7067322.876]]]}}, {\\\"id\\\": \\\"196\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tuusula\\\", \\\"elakelaisten_osuus\\\": 20.8, \\\"freshwarea\\\": 5.96, \\\"gml_id\\\": 1601100666, \\\"landarea\\\": 219.5, \\\"namefin\\\": \\\"Tuusula\\\", \\\"nameswe\\\": \\\"Tusby\\\", \\\"natcode\\\": \\\"858\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 225.46}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[392888.155, 6717249.589], [398475.842, 6710386.973], [397947.388, 6709203.435], [396648.029, 6709421.917], [396215.745, 6709084.51], [396040.624, 6708549.29], [395662.383, 6708853.887], [395536.093, 6709458.64], [395737.502, 6709879.18], [394119.612, 6710156.906], [394059.184, 6709762.275], [392299.561, 6710040.347], [393217.887, 6707520.591], [392713.103, 6707077.764], [392829.824, 6706758.376], [392338.19, 6706726.984], [392296.152, 6706000.394], [393296.122, 6704419.685], [392394.005, 6703964.248], [392604.146, 6703628.252], [392747.796, 6702964.899], [394387.911, 6702448.794], [395335.217, 6702375.806], [396736.427, 6702713.613], [396619.558, 6703175.581], [397346.868, 6703347.497], [397260.462, 6703680.032], [396597.639, 6703594.254], [396537.318, 6703928.307], [398206.29, 6704310.03], [398164.736, 6702901.474], [398347.951, 6702173.09], [394500.261, 6700394.312], [394296.721, 6699370.115], [393928.533, 6699598.525], [393842.583, 6699049.737], [394283.413, 6698915.685], [394248.026, 6696673.552], [394493.643, 6695308.597], [393961.205, 6695261.492], [393738.29, 6694727.48], [393916.943, 6694490.093], [393721.294, 6694301.427], [393597.39, 6694256.56], [393443.603, 6694275.064], [393357.568, 6694188.686], [393253.837, 6694140.46], [392713.045, 6694617.159], [392674.797, 6694579.377], [392631.168, 6694588.155], [392585.024, 6694525.007], [392570.997, 6694522.291], [392511.0, 6694452.41], [392476.08, 6694313.323], [392067.121, 6693991.362], [391818.765, 6694318.46], [391615.906, 6694184.811], [391435.163, 6694416.411], [390864.644, 6694019.402], [391270.033, 6693438.579], [392348.256, 6691854.422], [392281.636, 6691810.226], [392345.124, 6691701.998], [391687.909, 6691145.787], [389794.713, 6690193.444], [389583.713, 6690171.531], [388086.16, 6690204.789], [387070.673, 6690187.983], [386415.123, 6690916.784], [385803.386, 6691773.387], [384530.145, 6693873.715], [382884.152, 6696008.878], [382960.116, 6696144.578], [382996.28, 6696325.706], [382996.953, 6696538.523], [382987.851, 6696674.777], [382889.974, 6696840.412], [382770.967, 6696943.284], [382715.368, 6697048.678], [382586.033, 6697177.885], [382494.664, 6697291.458], [382506.957, 6697552.438], [382438.25, 6697647.282], [382443.229, 6697726.269], [382575.481, 6697867.459], [382590.573, 6697998.256], [382611.313, 6698010.177], [384059.646, 6700055.278], [384504.574, 6701791.092], [386239.927, 6703320.322], [386235.411, 6703324.431], [386495.569, 6704552.238], [388164.25, 6707998.643], [388284.885, 6708534.575], [388141.223, 6708924.305], [388809.063, 6711136.016], [388804.391, 6711625.308], [387967.182, 6711132.45], [387819.025, 6711519.725], [387382.642, 6711222.187], [387558.264, 6710891.859], [387039.324, 6710585.779], [386563.676, 6710972.248], [386913.195, 6711268.468], [386402.016, 6711870.378], [386278.152, 6712928.695], [385457.443, 6713782.74], [385516.648, 6715109.21], [388455.138, 6716686.756], [389091.205, 6716493.83], [389797.168, 6716075.338], [391724.482, 6716415.835], [391816.219, 6717405.93], [392539.411, 6717680.693], [392888.155, 6717249.589]]]}}, {\\\"id\\\": \\\"197\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hankasalmi\\\", \\\"elakelaisten_osuus\\\": 36.9, \\\"freshwarea\\\": 116.06, \\\"gml_id\\\": 1601100257, \\\"landarea\\\": 571.69, \\\"namefin\\\": \\\"Hankasalmi\\\", \\\"nameswe\\\": \\\"Hankasalmi\\\", \\\"natcode\\\": \\\"077\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 687.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[460335.072, 6937816.264], [460854.862, 6937801.274], [461000.857, 6937477.269], [462169.336, 6936846.668], [462139.353, 6936171.941], [462639.254, 6935706.632], [468796.986, 6931941.094], [469100.672, 6930714.591], [472155.808, 6933684.213], [472415.998, 6934175.017], [472811.89, 6933709.596], [473405.906, 6933594.764], [473436.727, 6933257.536], [472749.38, 6932102.256], [473136.857, 6931857.8], [473282.969, 6931370.355], [473665.617, 6931040.391], [473832.964, 6931234.643], [474546.662, 6930609.871], [474655.318, 6930607.672], [478236.926, 6927565.728], [481068.066, 6924451.701], [483744.218, 6925844.391], [484429.694, 6925353.86], [484991.471, 6924674.438], [484650.613, 6924302.686], [484414.15, 6923815.706], [484568.855, 6923180.87], [484417.808, 6922752.799], [484791.128, 6921787.04], [484621.423, 6921559.096], [484466.114, 6921010.214], [483488.424, 6919483.323], [483489.126, 6919208.534], [484157.798, 6918635.073], [484184.19, 6918204.444], [486261.823, 6916443.569], [488076.504, 6914268.859], [488410.363, 6913649.456], [482860.032, 6912308.661], [482774.296, 6911902.185], [482894.349, 6911327.397], [483110.099, 6910961.93], [482486.503, 6910651.182], [483572.48, 6908502.157], [482738.021, 6908227.762], [482872.469, 6907954.373], [481998.203, 6907565.087], [481661.162, 6907707.464], [479811.124, 6907102.546], [480478.005, 6906153.301], [480932.374, 6905804.228], [480867.106, 6905102.211], [480534.086, 6904681.291], [480504.003, 6904149.524], [480723.175, 6903824.026], [481322.848, 6901828.635], [481220.243, 6900851.178], [481739.784, 6900327.915], [482292.713, 6900101.976], [481947.444, 6899302.997], [481935.342, 6898394.919], [480593.077, 6897782.865], [480412.648, 6898158.212], [479931.242, 6898421.003], [479817.039, 6898736.646], [479952.824, 6899406.005], [479577.27, 6900192.984], [479045.505, 6899636.195], [478706.826, 6899967.87], [477377.429, 6902563.604], [476904.007, 6902790.86], [476326.06, 6903855.184], [475190.031, 6902691.547], [474657.446, 6902943.142], [474934.941, 6902012.12], [472899.369, 6901802.592], [473222.543, 6901176.747], [473816.014, 6899782.214], [473089.712, 6899369.077], [473170.106, 6899126.762], [472359.218, 6898543.209], [472044.15, 6898931.641], [471379.837, 6898497.83], [471371.673, 6897991.595], [470989.812, 6897645.397], [470756.457, 6898299.12], [470773.756, 6898960.248], [470628.009, 6899529.397], [469917.028, 6899322.174], [469557.945, 6898702.825], [469693.792, 6897891.654], [469558.748, 6897473.622], [468534.462, 6897671.736], [466973.395, 6897413.031], [467101.577, 6897062.853], [465137.752, 6895843.056], [464790.628, 6896725.794], [464407.337, 6896701.058], [465203.294, 6898115.267], [464582.659, 6898953.992], [463454.391, 6903480.855], [464910.795, 6904025.144], [464640.376, 6904232.779], [463953.07, 6905783.027], [463422.468, 6907808.206], [458473.226, 6914024.762], [460274.082, 6914401.089], [461340.86, 6914157.926], [461685.336, 6913619.441], [462645.142, 6912836.269], [462742.007, 6916077.386], [464391.666, 6919315.179], [461653.486, 6919843.63], [459736.887, 6929131.066], [459363.423, 6930946.031], [459012.159, 6931798.585], [458611.006, 6933761.49], [459432.568, 6934243.301], [459856.001, 6933657.84], [460691.129, 6934282.429], [460492.155, 6935164.469], [460217.138, 6935182.69], [459285.495, 6938206.1], [459600.362, 6938835.848], [460335.072, 6937816.264]]]}}, {\\\"id\\\": \\\"198\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Loviisa\\\", \\\"elakelaisten_osuus\\\": 33.1, \\\"freshwarea\\\": 25.84, \\\"gml_id\\\": 1601100005, \\\"landarea\\\": 819.74, \\\"namefin\\\": \\\"Loviisa\\\", \\\"nameswe\\\": \\\"Lovisa\\\", \\\"natcode\\\": \\\"434\\\", \\\"seawarea\\\": 905.94, \\\"totalarea\\\": 1751.52}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[467343.597, 6724342.132], [468908.569, 6723888.276], [470378.484, 6722709.768], [471636.296, 6719934.103], [471708.858, 6717995.3], [473286.842, 6718220.613], [474731.373, 6717785.985], [474758.328, 6717759.786], [474886.715, 6715538.614], [475070.653, 6713753.838], [475008.681, 6713299.022], [473503.892, 6712833.593], [473394.934, 6713113.479], [473067.665, 6713232.927], [472965.51, 6712626.871], [472605.358, 6712262.216], [471924.734, 6712054.793], [472072.278, 6711585.185], [472652.804, 6711499.786], [473158.546, 6710610.79], [473171.244, 6710238.94], [472901.455, 6709897.975], [472478.425, 6709944.152], [472074.592, 6709365.082], [472210.74, 6708947.853], [471969.839, 6708710.146], [470940.938, 6708822.921], [470656.458, 6708466.269], [470786.323, 6707787.507], [470389.587, 6707191.344], [470539.481, 6706830.354], [469860.805, 6706690.84], [469660.843, 6706380.052], [469890.898, 6706150.359], [471700.599, 6701373.312], [472040.077, 6699096.736], [472052.984, 6697416.916], [471050.994, 6696805.354], [472528.212, 6694514.693], [475673.652, 6692068.282], [476270.228, 6690201.573], [476843.435, 6682646.971], [480933.752, 6670541.394], [478409.372, 6669488.64], [475363.929, 6669086.999], [471793.797, 6668616.344], [460715.864, 6656800.825], [459410.026, 6656612.165], [447733.414, 6680764.178], [443700.526, 6679352.018], [443818.541, 6678652.876], [442751.498, 6678392.262], [441244.53, 6678687.873], [440770.826, 6678581.0], [440653.091, 6679024.416], [440618.595, 6679041.443], [440424.946, 6679137.026], [440360.598, 6679483.631], [440492.119, 6679423.986], [441291.42, 6679509.325], [441429.493, 6679562.513], [441572.478, 6679538.348], [442518.68, 6680108.353], [442432.056, 6680416.591], [441817.277, 6680604.124], [441521.511, 6681243.678], [440949.28, 6681567.622], [440842.256, 6682561.233], [440658.466, 6683325.345], [440226.512, 6684222.574], [440238.037, 6686802.754], [440362.369, 6687478.534], [440534.558, 6689133.388], [440543.013, 6690608.187], [440777.546, 6691475.931], [442126.961, 6695025.907], [441981.101, 6697323.176], [440678.905, 6699988.086], [439819.249, 6700574.842], [437792.767, 6701253.251], [437034.762, 6702573.302], [434968.786, 6704726.724], [434110.318, 6706238.575], [435528.188, 6711744.437], [435590.55, 6713100.484], [435775.766, 6714002.618], [437176.779, 6715782.408], [440616.382, 6715428.295], [441795.1, 6715650.319], [443531.073, 6717831.949], [442791.169, 6718908.022], [442871.701, 6719425.925], [442309.739, 6720400.252], [443186.422, 6720337.258], [443609.975, 6720715.268], [444545.23, 6720857.284], [445195.098, 6720712.928], [445480.975, 6720421.356], [445900.712, 6720871.37], [446071.622, 6721496.355], [445688.448, 6722342.716], [445343.495, 6723529.062], [449391.837, 6723569.39], [450277.394, 6721881.086], [450470.228, 6720524.54], [450143.084, 6717622.116], [452025.658, 6715458.079], [453524.092, 6715321.262], [454696.644, 6717911.046], [456658.87, 6715432.769], [457025.128, 6714570.621], [457154.888, 6712990.061], [457279.551, 6711470.576], [458535.76, 6709483.491], [459031.554, 6710166.421], [459482.571, 6710095.309], [460268.123, 6709227.323], [460513.591, 6708501.319], [460382.946, 6708000.297], [460761.028, 6707666.214], [460791.156, 6707265.49], [463715.775, 6708444.266], [465962.776, 6708202.682], [465014.428, 6711141.991], [465270.518, 6712092.409], [464851.763, 6715615.68], [464374.531, 6719150.045], [464312.711, 6725246.074], [467343.597, 6724342.132]]]}}, {\\\"id\\\": \\\"199\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ranua\\\", \\\"elakelaisten_osuus\\\": 34.3, \\\"freshwarea\\\": 241.18, \\\"gml_id\\\": 1601100417, \\\"landarea\\\": 3453.61, \\\"namefin\\\": \\\"Ranua\\\", \\\"nameswe\\\": \\\"Ranua\\\", \\\"natcode\\\": \\\"683\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3694.79}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[495660.353, 7352513.153], [496010.891, 7352584.256], [496356.87, 7350722.555], [496994.607, 7349819.234], [496965.94, 7349047.847], [496789.839, 7348850.95], [497279.453, 7348387.664], [496895.851, 7347606.631], [497325.941, 7346967.578], [497943.636, 7346989.851], [498319.328, 7347369.19], [497812.346, 7347872.385], [497960.504, 7348192.827], [498452.953, 7348054.485], [498700.36, 7346912.29], [500109.423, 7347538.638], [500965.991, 7346672.452], [501759.162, 7346048.991], [501726.364, 7345777.128], [501306.643, 7345096.074], [501308.819, 7344908.359], [502364.393, 7344673.949], [502914.426, 7344478.911], [502994.744, 7343533.351], [503296.932, 7343013.207], [503880.735, 7342906.34], [504368.778, 7342356.769], [508434.047, 7341934.666], [508896.663, 7342246.265], [510549.41, 7342321.741], [511398.289, 7342580.689], [511430.613, 7342223.719], [511710.473, 7342032.767], [511583.982, 7341846.137], [512311.532, 7335857.737], [521208.571, 7331556.466], [521120.404, 7328251.817], [521511.456, 7328498.387], [522382.534, 7328227.435], [522150.728, 7327978.892], [521688.753, 7328153.164], [521109.68, 7327849.841], [520795.847, 7316637.623], [518748.091, 7313463.748], [519132.056, 7313143.161], [519226.394, 7312959.252], [519122.505, 7312708.644], [518845.212, 7312611.05], [518504.474, 7313091.031], [515327.33, 7308163.016], [515802.239, 7308088.796], [515799.148, 7307772.498], [515125.083, 7307843.199], [511529.369, 7302247.424], [511279.346, 7302467.646], [510762.418, 7302235.932], [510845.385, 7301771.808], [511182.114, 7301706.19], [510643.715, 7300863.891], [510343.04, 7301054.458], [510198.168, 7300524.436], [510346.426, 7300404.934], [507436.658, 7295872.402], [508212.012, 7295299.661], [507479.963, 7294891.142], [507166.61, 7295450.605], [505056.583, 7292164.352], [504039.851, 7291733.689], [504634.667, 7291145.659], [503301.393, 7289791.985], [502260.953, 7290134.425], [501636.379, 7290752.891], [500253.45, 7290165.373], [500310.68, 7288928.564], [500988.292, 7288966.558], [501042.17, 7288021.036], [499235.538, 7287920.681], [499142.254, 7289689.139], [491950.939, 7286610.701], [485123.272, 7287582.702], [484995.636, 7286582.189], [484387.523, 7287656.105], [471025.547, 7288118.193], [461385.917, 7289578.81], [461616.22, 7300363.885], [451429.652, 7295129.029], [444676.039, 7302974.713], [445772.234, 7302744.646], [445907.067, 7303082.864], [443891.274, 7303881.635], [439885.681, 7308498.831], [447684.232, 7322077.929], [444094.817, 7330386.502], [457544.313, 7336146.669], [457368.442, 7336792.211], [457934.233, 7337960.185], [458819.568, 7337531.496], [458736.026, 7338025.663], [459130.488, 7338626.096], [459128.2, 7339206.662], [459563.534, 7339208.503], [459895.239, 7338530.412], [460567.28, 7338419.233], [460770.999, 7337969.309], [462068.881, 7339659.063], [463120.705, 7340412.976], [464056.317, 7340212.43], [466397.029, 7341971.238], [468023.708, 7341915.491], [468071.99, 7342265.828], [469798.11, 7343959.856], [471672.949, 7344557.206], [471563.333, 7344903.843], [473764.902, 7344865.517], [473756.75, 7344098.048], [474858.468, 7344085.991], [474851.537, 7343345.403], [475504.657, 7341334.976], [476092.148, 7340941.284], [482855.508, 7344139.762], [483530.02, 7345025.514], [481615.069, 7346546.214], [481337.577, 7347363.929], [480752.784, 7347663.452], [481263.053, 7349108.674], [482256.027, 7349268.003], [482188.486, 7349668.8], [481085.208, 7349732.969], [481133.189, 7351742.13], [487771.299, 7353224.598], [492699.581, 7353429.766], [494060.948, 7353498.588], [494078.607, 7353488.915], [494099.53, 7353063.713], [494419.968, 7352799.452], [494893.713, 7352923.449], [495412.555, 7353560.131], [495535.822, 7353564.179], [495660.353, 7352513.153]]]}}, {\\\"id\\\": \\\"200\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Saarij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 37.0, \\\"freshwarea\\\": 171.02, \\\"gml_id\\\": 1601100491, \\\"landarea\\\": 1251.7, \\\"namefin\\\": \\\"Saarij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Saarij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"729\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1422.72}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[427279.716, 6970716.39], [429353.062, 6969293.785], [431134.569, 6965481.942], [433017.863, 6963474.55], [433491.844, 6962014.069], [432357.33, 6959154.223], [423455.665, 6956692.304], [423542.433, 6955876.485], [422908.889, 6955970.967], [423152.835, 6951521.856], [421755.834, 6946316.579], [421856.345, 6945963.448], [423342.021, 6944465.825], [424089.135, 6942758.424], [424107.164, 6942473.565], [421844.458, 6941083.023], [422021.596, 6936040.476], [421591.256, 6936094.008], [421265.698, 6935286.428], [419885.828, 6935172.275], [420201.715, 6933989.57], [417949.047, 6933215.534], [415739.273, 6934277.43], [415570.142, 6934913.023], [413366.837, 6935258.52], [410065.516, 6935294.782], [406701.07, 6940362.62], [405926.288, 6940502.283], [394930.61, 6939592.02], [392185.816, 6943010.068], [388901.949, 6940390.638], [386836.662, 6937444.16], [385026.966, 6936527.138], [382380.012, 6935477.19], [376149.768, 6950563.473], [373036.311, 6953044.961], [372356.168, 6955798.067], [374473.468, 6956451.377], [374207.491, 6957389.042], [375379.589, 6957482.924], [376702.724, 6960169.175], [379344.012, 6958432.097], [380224.213, 6959740.96], [383041.896, 6959580.079], [384373.053, 6961522.212], [384170.332, 6961656.664], [385305.346, 6963448.709], [386160.078, 6962680.333], [385971.904, 6962477.151], [386125.19, 6962072.993], [386491.09, 6962328.391], [386958.623, 6961909.718], [386909.075, 6963092.513], [387043.452, 6963242.999], [387721.245, 6962949.586], [387950.744, 6963038.152], [388107.994, 6963612.81], [388929.975, 6964100.211], [389285.192, 6964843.749], [389676.242, 6963845.389], [390219.018, 6963748.402], [390478.029, 6962641.765], [390448.728, 6961962.114], [390604.739, 6961331.646], [390555.24, 6960635.358], [390624.68, 6960285.968], [390881.407, 6960057.207], [391125.421, 6959364.477], [391568.968, 6959398.309], [394174.544, 6958027.296], [395020.243, 6959530.37], [393794.442, 6959953.479], [393383.68, 6960289.673], [393574.348, 6960388.876], [394193.567, 6960067.267], [395570.461, 6962611.101], [395098.265, 6962872.589], [395308.741, 6963387.582], [394898.159, 6963966.964], [394646.093, 6964006.633], [394404.258, 6963281.52], [393740.409, 6963317.455], [393315.369, 6962786.825], [392414.49, 6963359.535], [391551.333, 6965752.723], [400093.761, 6971771.032], [400683.538, 6971397.951], [401464.645, 6970746.982], [401659.166, 6970900.67], [402085.948, 6970570.56], [402354.786, 6970321.027], [402486.194, 6970102.848], [402519.209, 6969863.259], [402749.504, 6969170.585], [403099.317, 6968502.28], [403470.24, 6967892.058], [404070.015, 6967705.737], [404581.339, 6967318.02], [405708.232, 6966540.728], [406358.817, 6965863.256], [406827.238, 6964481.634], [413355.656, 6965786.865], [413384.497, 6966506.166], [422124.876, 6976321.002], [426671.993, 6976335.019], [427279.716, 6970716.39]]]}}, {\\\"id\\\": \\\"201\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Outokumpu\\\", \\\"elakelaisten_osuus\\\": 37.1, \\\"freshwarea\\\": 138.23, \\\"gml_id\\\": 1601100319, \\\"landarea\\\": 445.83, \\\"namefin\\\": \\\"Outokumpu\\\", \\\"nameswe\\\": \\\"Outokumpu\\\", \\\"natcode\\\": \\\"309\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 584.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[607472.449, 6970416.027], [607602.893, 6970014.792], [607994.881, 6969804.939], [608218.729, 6969406.035], [608671.061, 6969436.506], [608524.136, 6969112.01], [608841.269, 6968801.17], [610237.248, 6968454.052], [610655.164, 6968000.572], [611242.115, 6968056.091], [611624.14, 6967456.107], [611712.795, 6967114.442], [611506.794, 6966767.165], [612337.745, 6966227.28], [612703.676, 6965775.848], [612907.976, 6965357.448], [613269.014, 6965321.953], [613322.614, 6965114.11], [614469.029, 6964953.624], [614242.961, 6961409.797], [615127.723, 6960961.656], [617807.354, 6956270.871], [617121.13, 6952663.72], [616554.232, 6952200.822], [613061.524, 6952776.731], [612490.011, 6953213.914], [610552.663, 6954087.821], [610317.686, 6954319.058], [609488.34, 6953907.567], [606643.219, 6951331.979], [607082.934, 6950809.335], [604035.554, 6948693.454], [601449.984, 6947163.254], [601861.35, 6945771.208], [603856.715, 6945308.146], [604355.647, 6943606.017], [604896.158, 6942945.931], [603586.277, 6941691.054], [602800.538, 6940730.343], [602619.812, 6940145.648], [601758.534, 6939262.506], [600926.757, 6939420.77], [599881.115, 6939946.668], [598795.529, 6940509.266], [595646.042, 6942395.353], [591806.631, 6946786.153], [585838.41, 6947597.643], [584812.796, 6948464.778], [584774.075, 6949717.383], [587148.6, 6952676.304], [584040.305, 6956378.601], [583417.623, 6958121.116], [583873.471, 6960006.168], [585768.374, 6961786.608], [586372.708, 6961774.851], [586781.731, 6961402.507], [587318.356, 6961708.872], [587637.091, 6961501.947], [589124.816, 6964415.962], [588917.517, 6965889.245], [590410.127, 6967702.932], [590971.118, 6968032.506], [591179.258, 6968338.911], [592178.462, 6967957.981], [592898.437, 6967288.324], [593407.877, 6967411.829], [593557.874, 6967246.858], [593303.536, 6966822.173], [594217.13, 6965599.842], [594804.275, 6965422.38], [596178.319, 6964546.156], [596944.851, 6964221.214], [596852.811, 6963585.258], [598528.382, 6961955.347], [599157.333, 6962004.419], [600253.626, 6965170.24], [606795.79, 6970125.15], [607236.635, 6970449.015], [607472.449, 6970416.027]]]}}, {\\\"id\\\": \\\"202\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kitee\\\", \\\"elakelaisten_osuus\\\": 40.8, \\\"freshwarea\\\": 470.71, \\\"gml_id\\\": 1601100137, \\\"landarea\\\": 1253.67, \\\"namefin\\\": \\\"Kitee\\\", \\\"nameswe\\\": \\\"Kitee\\\", \\\"natcode\\\": \\\"260\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1724.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[659920.089, 6904559.571], [661289.921, 6903598.386], [661477.032, 6904722.421], [661739.375, 6904606.944], [661966.889, 6904248.602], [663163.728, 6904237.255], [663329.854, 6904467.86], [663696.443, 6904809.919], [664250.562, 6904757.297], [664967.04, 6904895.231], [665643.888, 6904515.249], [665960.397, 6904144.477], [666245.194, 6902894.297], [667345.65, 6900413.122], [667287.038, 6899960.565], [667460.734, 6899229.415], [666844.751, 6898791.583], [667228.898, 6898233.546], [667596.608, 6898149.715], [667630.165, 6897723.873], [667815.657, 6897516.522], [667822.751, 6897100.395], [667979.02, 6896783.922], [667855.516, 6896373.51], [667795.119, 6895848.18], [668047.728, 6895198.494], [668065.41, 6894421.046], [668175.748, 6893990.531], [667971.875, 6893802.995], [667974.554, 6893435.125], [668119.202, 6893188.979], [668116.833, 6893101.56], [668628.611, 6893295.98], [669738.307, 6894147.409], [670672.782, 6893569.474], [671821.103, 6893908.314], [671755.824, 6891974.066], [672804.279, 6891604.813], [673758.324, 6892051.532], [675174.573, 6890937.354], [675991.082, 6890721.844], [677361.491, 6889258.658], [676881.263, 6888282.445], [677853.243, 6886706.563], [678449.811, 6886677.312], [679015.596, 6886489.424], [679444.199, 6886159.145], [679578.481, 6885719.439], [680181.794, 6885896.163], [681089.318, 6885822.899], [681153.054, 6886025.907], [681573.05, 6886242.264], [681990.185, 6886181.692], [680094.2, 6883051.9], [680283.9, 6882839.6], [680121.5, 6882589.5], [679863.9, 6882673.7], [679118.4, 6881445.6], [678356.3, 6880661.4], [676824.8, 6878731.4], [675609.878, 6876489.027], [674911.2, 6875699.2], [674403.2, 6875659.9], [674333.0, 6875554.2], [674286.4, 6875522.7], [674246.9, 6875469.2], [674231.8, 6875371.3], [674045.6, 6875254.4], [673900.3, 6875197.5], [673855.5, 6875138.6], [673791.1, 6875097.8], [673721.0, 6875023.0], [673685.8, 6874961.5], [673621.4, 6874924.8], [673527.4, 6874926.6], [673302.4, 6874635.5], [673231.1, 6874427.5], [673334.5, 6874296.1], [673346.0, 6874198.6], [673773.7, 6872486.2], [673678.12, 6872143.692], [673198.796, 6871339.993], [671812.7, 6871121.6], [670255.1, 6868598.7], [668746.0, 6866400.7], [667845.4, 6866197.8], [668004.8, 6865193.1], [666006.7, 6862393.0], [665588.119, 6861917.961], [665420.369, 6861728.461], [664812.979, 6863038.915], [664812.171, 6863040.658], [663817.638, 6862548.566], [663817.628, 6862548.561], [663398.964, 6862341.408], [663398.838, 6862341.339], [662181.473, 6861675.648], [657039.853, 6858531.507], [656504.524, 6857800.869], [656016.403, 6857881.629], [635242.406, 6845880.073], [635785.532, 6847461.808], [638020.68, 6849771.589], [639246.316, 6850340.19], [641081.744, 6853884.046], [641672.678, 6857092.908], [641733.531, 6858267.698], [641527.646, 6859027.668], [640241.788, 6860913.261], [641850.718, 6862018.777], [638232.128, 6866159.579], [638146.805, 6866699.62], [637321.821, 6867290.204], [637292.456, 6869786.78], [639420.601, 6874464.818], [636908.78, 6876762.035], [635835.704, 6878362.882], [634288.533, 6879602.465], [634579.396, 6880205.069], [633881.244, 6880519.399], [633105.098, 6880639.799], [631481.922, 6881156.918], [631243.588, 6880984.983], [630409.129, 6882220.079], [630085.335, 6882507.293], [629753.474, 6882978.749], [628963.409, 6885115.301], [628458.24, 6885658.01], [628425.304, 6886302.137], [626445.571, 6894193.259], [625230.644, 6898987.177], [626271.814, 6902900.183], [626294.615, 6902892.602], [628924.498, 6902826.779], [632280.933, 6899522.708], [636046.726, 6896449.609], [637319.84, 6897732.125], [638428.456, 6897783.52], [640956.131, 6896389.371], [642748.673, 6897233.142], [642927.996, 6898055.964], [643931.338, 6898249.346], [644860.205, 6899063.538], [646053.142, 6898160.516], [648213.163, 6897712.312], [649011.898, 6897261.278], [649416.568, 6897192.281], [650532.371, 6896175.357], [653806.551, 6893961.432], [653509.595, 6895470.246], [651894.537, 6897128.411], [651729.433, 6897559.285], [652612.31, 6898980.901], [652140.418, 6899458.995], [651693.86, 6899988.2], [651360.279, 6900463.114], [650819.806, 6900574.6], [649645.306, 6901104.978], [649534.599, 6901448.336], [650343.485, 6902444.124], [651204.388, 6903427.261], [653070.164, 6902724.598], [653104.174, 6903585.576], [654508.85, 6903828.121], [654189.985, 6904941.76], [654528.396, 6904915.316], [654587.375, 6904628.808], [654965.557, 6904499.19], [656095.95, 6905020.107], [657502.158, 6905666.325], [658047.529, 6906187.791], [658423.263, 6905964.833], [658686.766, 6906111.18], [658710.472, 6906336.614], [659552.851, 6906604.779], [659920.089, 6904559.571]]]}}, {\\\"id\\\": \\\"203\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nurmes\\\", \\\"elakelaisten_osuus\\\": 41.2, \\\"freshwarea\\\": 291.49, \\\"gml_id\\\": 1601100179, \\\"landarea\\\": 2401.37, \\\"namefin\\\": \\\"Nurmes\\\", \\\"nameswe\\\": \\\"Nurmes\\\", \\\"natcode\\\": \\\"541\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2692.86}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[631746.055, 7086294.3], [634339.733, 7071800.544], [637169.834, 7066938.585], [636832.998, 7066537.636], [632676.191, 7063354.154], [631243.26, 7064196.845], [626047.929, 7056606.744], [625888.975, 7049248.64], [624496.361, 7049565.314], [623984.106, 7049030.143], [624477.634, 7048279.794], [625842.012, 7047529.469], [625647.491, 7042105.612], [626240.458, 7042053.684], [626875.662, 7041488.183], [627354.944, 7040616.454], [627904.302, 7039900.34], [628025.223, 7036424.158], [626671.203, 7033471.161], [626129.839, 7029195.019], [624946.735, 7028764.029], [623462.217, 7026722.969], [616616.715, 7027941.906], [608878.941, 7036930.996], [607203.808, 7035838.978], [605056.385, 7037424.897], [604674.405, 7036781.942], [603966.562, 7036900.901], [603035.039, 7036178.674], [601657.924, 7036020.715], [601542.016, 7036292.468], [601142.507, 7036209.574], [600660.753, 7035915.099], [599787.868, 7035655.225], [592550.749, 7031533.413], [592246.675, 7031328.909], [592027.164, 7031420.551], [591882.182, 7031103.66], [591443.203, 7031095.4], [591312.523, 7030896.559], [590993.045, 7030833.026], [590965.119, 7030443.762], [591304.074, 7029793.323], [591244.954, 7029452.872], [591545.756, 7028696.357], [591297.381, 7028188.283], [591507.088, 7027835.862], [591384.535, 7027621.226], [591160.801, 7027636.055], [590874.74, 7027953.455], [590581.589, 7027998.9], [590482.194, 7028462.179], [590340.31, 7028592.224], [590123.55, 7028231.251], [589698.181, 7028369.816], [589044.799, 7028803.646], [588818.186, 7029095.243], [588734.709, 7029432.639], [588459.93, 7029633.559], [588244.954, 7030009.643], [587931.855, 7030006.2], [587470.278, 7029920.295], [585139.581, 7032552.874], [584677.658, 7032408.971], [583161.766, 7033823.162], [582201.515, 7039259.585], [581762.132, 7039713.863], [580510.396, 7043741.283], [580153.932, 7044253.618], [580115.676, 7044734.969], [579744.138, 7045357.909], [579904.539, 7045681.826], [579805.114, 7046006.627], [580212.882, 7046752.076], [581341.857, 7047703.639], [582046.756, 7046851.673], [583722.089, 7048270.529], [582880.682, 7049200.219], [582462.604, 7048841.993], [581395.402, 7049372.276], [580375.487, 7049811.189], [580120.659, 7050133.223], [580442.059, 7050445.866], [580329.444, 7050801.619], [580076.279, 7050960.278], [579773.495, 7050707.633], [579022.1, 7056949.859], [579018.032, 7057477.778], [578504.794, 7060002.02], [578864.851, 7061204.653], [579481.623, 7061760.204], [578370.94, 7063256.524], [577554.408, 7063765.283], [576662.759, 7064585.051], [575444.383, 7064165.976], [573843.915, 7064171.859], [573713.244, 7063692.544], [572235.875, 7064255.755], [570334.147, 7067322.876], [567078.911, 7070399.907], [572443.86, 7082072.139], [571733.856, 7083473.122], [573485.878, 7084307.211], [573709.114, 7084778.258], [575411.88, 7084178.079], [577260.491, 7083740.433], [584358.113, 7082197.697], [592736.498, 7080090.685], [597232.124, 7080895.685], [603849.594, 7081611.248], [606127.874, 7081796.115], [609999.639, 7082122.697], [613632.135, 7082669.316], [624975.482, 7085186.935], [631746.055, 7086294.3]]]}}, {\\\"id\\\": \\\"204\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Viitasaari\\\", \\\"elakelaisten_osuus\\\": 40.9, \\\"freshwarea\\\": 340.57, \\\"gml_id\\\": 1601100220, \\\"landarea\\\": 1248.55, \\\"namefin\\\": \\\"Viitasaari\\\", \\\"nameswe\\\": \\\"Viitasaari\\\", \\\"natcode\\\": \\\"931\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1589.12}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[419376.739, 7017035.262], [422990.921, 7017457.411], [423066.115, 7017725.639], [423524.052, 7017539.03], [424728.289, 7016140.803], [425367.382, 7015587.907], [425512.535, 7015147.963], [425796.66, 7015010.01], [428799.676, 7014440.513], [429126.482, 7015846.426], [431048.571, 7015469.688], [430740.605, 7014213.157], [432061.845, 7013673.334], [431808.117, 7015024.66], [434653.536, 7017587.748], [437002.822, 7018165.712], [443270.066, 7016668.71], [451030.645, 7018254.742], [456944.478, 7016484.555], [458397.887, 7013210.974], [458378.495, 7012885.682], [458600.908, 7012749.306], [459013.652, 7009603.22], [457141.634, 7009276.441], [457843.939, 7002246.838], [459242.826, 7000494.399], [458977.646, 6999987.567], [459074.029, 6999229.576], [459286.173, 6999085.392], [459768.844, 6998480.163], [460021.93, 6998166.958], [460024.958, 6997314.793], [460268.331, 6997007.19], [460267.908, 6996562.365], [460458.111, 6996447.503], [460641.066, 6996155.147], [460559.19, 6995814.834], [460684.115, 6995532.969], [461831.317, 6994161.022], [461785.333, 6993699.555], [462095.686, 6993306.522], [463873.038, 6992141.201], [464760.626, 6991231.596], [466088.266, 6990545.334], [466320.21, 6989673.188], [461507.934, 6990710.121], [460656.913, 6988709.902], [464005.057, 6983814.039], [466173.475, 6983934.095], [465210.011, 6981169.848], [463064.891, 6977448.452], [462759.45, 6978506.395], [460537.808, 6980747.209], [455573.873, 6980648.896], [453799.153, 6979248.592], [451260.41, 6978834.552], [452626.858, 6973610.366], [451920.673, 6973890.174], [451491.412, 6973997.033], [451066.899, 6974603.474], [450775.791, 6974798.016], [450350.963, 6975273.333], [448488.097, 6971321.671], [446311.254, 6972608.846], [444851.02, 6973316.388], [443662.778, 6973389.073], [442581.466, 6972919.265], [442263.692, 6972930.905], [439107.707, 6975602.753], [434367.042, 6977417.745], [433193.53, 6981213.581], [430003.652, 6979610.802], [429551.944, 6979689.338], [428799.54, 6981017.866], [427263.294, 6982989.998], [425285.408, 6984783.095], [424874.766, 6984900.748], [424278.331, 6985005.111], [424295.151, 6985286.854], [425075.588, 6989135.051], [425653.566, 6990167.015], [417896.595, 6997336.918], [417980.501, 6997686.862], [416243.432, 7004263.989], [415409.531, 7013715.616], [418598.16, 7013933.236], [417944.63, 7015240.824], [415187.249, 7017754.47], [416417.539, 7018339.659], [419376.739, 7017035.262]]]}}, {\\\"id\\\": \\\"205\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siilinj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 24.4, \\\"freshwarea\\\": 106.85, \\\"gml_id\\\": 1601100525, \\\"landarea\\\": 400.96, \\\"namefin\\\": \\\"Siilinj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Siilinj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"749\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 507.81}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[535150.42, 7013637.242], [535190.0, 7013199.33], [535048.603, 7012816.942], [535237.395, 7012045.385], [535612.375, 7011977.51], [536294.851, 7011597.347], [536653.742, 7011283.387], [536809.464, 7010870.27], [537645.362, 7011020.467], [538682.708, 7010744.508], [539024.865, 7010497.635], [539223.105, 7010187.66], [539843.987, 7009520.701], [541090.832, 7008879.002], [541606.329, 7007652.401], [541625.799, 7006941.27], [541779.586, 7006637.739], [541610.628, 7006237.426], [541698.186, 7005931.794], [541675.988, 7005527.791], [541258.547, 7005678.432], [541080.66, 7005524.636], [541223.168, 7005190.733], [540788.975, 7003825.562], [540784.461, 7003132.024], [540561.657, 7002960.455], [540533.56, 7002518.129], [541412.243, 7001410.42], [541675.76, 7000906.595], [542102.767, 7000444.215], [542378.759, 6999622.249], [542751.777, 6999474.039], [543531.395, 6998702.528], [543486.917, 6997834.98], [543282.303, 6997016.411], [543243.623, 6996131.569], [543467.933, 6995815.699], [544756.313, 6995055.214], [544399.16, 6994605.195], [543695.444, 6994995.233], [543192.949, 6995002.627], [542586.596, 6994673.058], [542268.828, 6994053.007], [541909.779, 6992972.244], [541679.379, 6991428.869], [540239.067, 6990912.271], [540850.024, 6989753.244], [544175.791, 6986996.578], [545059.634, 6986886.627], [547361.444, 6987150.149], [547766.041, 6986670.028], [548071.021, 6986305.977], [546110.237, 6983863.155], [543074.047, 6985912.711], [541746.391, 6985127.123], [542155.844, 6983075.755], [542009.711, 6982189.313], [542207.846, 6980499.897], [541206.253, 6980549.347], [540168.566, 6981130.432], [540378.977, 6981536.769], [540290.362, 6982634.23], [539897.456, 6983247.374], [538844.096, 6983009.989], [536095.082, 6981665.648], [536091.66, 6981683.032], [535008.351, 6982854.115], [535002.928, 6983119.579], [534272.784, 6983488.492], [533960.687, 6982857.662], [533274.998, 6982299.664], [532196.473, 6982672.459], [531627.405, 6982310.6], [530651.999, 6982403.255], [530457.184, 6981417.949], [529411.405, 6981749.608], [529257.782, 6982285.537], [528319.418, 6982350.167], [528291.748, 6983187.522], [527875.613, 6983352.499], [527502.22, 6983376.782], [526655.207, 6983700.504], [526393.733, 6983266.158], [527381.025, 6981892.336], [526824.75, 6981938.713], [524557.362, 6983927.637], [523891.528, 6983111.42], [521289.973, 6984943.456], [520970.6, 6985371.48], [520839.151, 6985919.356], [520618.239, 6986174.251], [520609.541, 6986515.113], [519951.706, 6986864.266], [519649.221, 6988454.518], [519362.534, 6989100.053], [519385.82, 6990203.806], [517823.148, 6991099.33], [517559.596, 6991252.663], [517155.213, 6991689.787], [517080.964, 6992028.14], [517869.497, 6992146.583], [517919.403, 6992008.663], [518542.454, 6991674.502], [518928.598, 6991801.854], [518988.876, 6991655.394], [519065.499, 6991574.415], [519054.048, 6991485.183], [519665.86, 6991131.212], [519820.539, 6991252.294], [520312.949, 6991604.109], [520927.588, 6991969.302], [522602.306, 6992941.521], [523425.774, 6992726.514], [523548.424, 6992693.929], [523755.623, 6992728.181], [523785.629, 6992788.916], [524105.426, 6994026.519], [524836.297, 6994019.001], [525947.632, 6995361.353], [526153.65, 6997018.395], [526102.904, 6997298.52], [526027.669, 6997368.856], [525908.097, 6997408.5], [525825.557, 6997532.808], [525674.64, 6997578.868], [525582.508, 6997684.231], [525324.881, 6997834.258], [525321.082, 6997907.328], [525139.385, 6998351.62], [524921.034, 6998331.979], [524839.61, 6998194.312], [524733.685, 6998156.426], [524507.501, 6998199.359], [524312.433, 6998154.91], [524167.462, 6998205.325], [524089.914, 6998329.862], [523968.793, 6998420.566], [523805.61, 6998544.927], [523652.811, 6998644.418], [523525.425, 6998716.585], [523426.099, 6998872.034], [523318.747, 6998930.079], [523293.915, 6999040.822], [523315.993, 6999117.683], [523427.382, 6999238.159], [523454.324, 6999311.439], [523543.843, 6999320.744], [523824.474, 6999450.994], [523801.981, 6999819.245], [524031.685, 7000273.963], [524155.726, 7001649.208], [523785.462, 7003599.317], [524285.961, 7003526.25], [524649.618, 7003027.454], [526526.957, 7003766.368], [526928.499, 7003222.591], [527482.678, 7002837.85], [527647.658, 7003527.02], [527038.558, 7003924.132], [527069.246, 7004294.707], [527389.36, 7004865.566], [527729.465, 7005512.806], [527932.169, 7006403.986], [528637.186, 7006930.603], [528820.514, 7006548.959], [529034.885, 7006882.582], [529355.597, 7006759.178], [529595.103, 7006499.384], [530214.548, 7007194.008], [530646.475, 7007049.369], [531284.322, 7006491.799], [531422.968, 7006229.106], [531819.31, 7006011.197], [532034.33, 7006435.477], [532093.402, 7007122.767], [531898.261, 7008708.808], [531977.827, 7009044.673], [532295.697, 7009359.748], [531620.666, 7009892.228], [530901.753, 7010756.2], [531142.259, 7010856.55], [531650.385, 7010544.028], [531761.604, 7010950.573], [532581.937, 7010842.168], [532825.962, 7011211.216], [532955.897, 7012001.357], [532650.937, 7012189.084], [532698.799, 7012452.974], [533033.66, 7012414.817], [533523.387, 7011971.303], [533714.128, 7011619.946], [534084.91, 7011311.26], [534204.846, 7011866.564], [534552.871, 7012283.784], [534174.325, 7012740.561], [534097.602, 7013232.476], [534401.18, 7013354.207], [534884.726, 7013837.559], [535150.42, 7013637.242]]]}}, {\\\"id\\\": \\\"206\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Aura\\\", \\\"elakelaisten_osuus\\\": 22.3, \\\"freshwarea\\\": 0.57, \\\"gml_id\\\": 1601100033, \\\"landarea\\\": 95.01, \\\"namefin\\\": \\\"Aura\\\", \\\"nameswe\\\": \\\"Aura\\\", \\\"natcode\\\": \\\"019\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 95.58}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[251601.995, 6739883.737], [251977.238, 6740429.484], [252272.446, 6740068.501], [251939.598, 6739849.088], [252634.236, 6739332.002], [252148.291, 6739017.061], [252919.298, 6738108.011], [253411.517, 6737014.039], [254029.689, 6736068.225], [256459.071, 6732989.546], [258273.467, 6733541.136], [259311.934, 6733627.545], [260870.156, 6733179.454], [264328.788, 6731767.923], [263938.323, 6730398.827], [263852.335, 6730164.759], [261413.308, 6727949.858], [260508.056, 6726673.942], [259996.733, 6726843.282], [259577.461, 6726535.517], [258208.095, 6726260.956], [258122.139, 6726518.819], [259334.794, 6726915.67], [259649.823, 6727350.35], [257911.659, 6727362.361], [257601.229, 6727013.076], [257178.4, 6726491.597], [256331.775, 6725335.334], [256851.029, 6723578.801], [257832.681, 6724254.093], [257985.242, 6724055.984], [258076.793, 6723670.818], [257947.81, 6722922.643], [257754.092, 6722813.639], [257607.98, 6723117.889], [257226.507, 6722616.045], [257019.551, 6722629.399], [254927.938, 6724758.02], [252771.279, 6723487.742], [252348.788, 6726734.48], [252908.705, 6728601.717], [253283.526, 6729659.13], [253718.466, 6730114.704], [254023.134, 6729937.081], [254539.286, 6730559.132], [251038.068, 6731421.609], [251589.987, 6732957.986], [251652.34, 6734393.748], [251757.892, 6734926.868], [251719.145, 6736864.75], [250110.717, 6742255.941], [251601.995, 6739883.737]]]}}, {\\\"id\\\": \\\"207\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Taipalsaari\\\", \\\"elakelaisten_osuus\\\": 28.5, \\\"freshwarea\\\": 417.25, \\\"gml_id\\\": 1601100583, \\\"landarea\\\": 344.7, \\\"namefin\\\": \\\"Taipalsaari\\\", \\\"nameswe\\\": \\\"Taipalsaari\\\", \\\"natcode\\\": \\\"831\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 761.95}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[568422.799, 6804020.559], [570104.336, 6801060.389], [572035.026, 6799994.33], [574927.383, 6795299.456], [570249.837, 6791052.193], [569894.086, 6790281.106], [570690.236, 6786721.539], [575790.737, 6783230.944], [572521.183, 6779486.042], [571700.048, 6777931.408], [570421.647, 6777173.267], [569923.748, 6778261.135], [569486.019, 6778354.076], [569046.199, 6778126.764], [567890.07, 6777823.477], [567347.593, 6777346.966], [567031.823, 6776880.753], [566579.409, 6776507.8], [566552.625, 6775689.434], [565049.136, 6775328.868], [564436.789, 6774667.933], [563852.219, 6775737.792], [563753.256, 6776354.74], [563101.514, 6777467.781], [562288.54, 6778108.314], [561143.706, 6777767.144], [561129.114, 6777346.316], [561567.841, 6776504.962], [562275.158, 6775989.577], [562488.573, 6775632.125], [562421.704, 6774862.938], [562685.247, 6773929.59], [562555.292, 6773814.629], [561805.547, 6774569.365], [561155.768, 6774924.239], [560825.456, 6774033.364], [559925.824, 6773548.555], [559560.27, 6773989.972], [559645.333, 6774347.127], [558762.647, 6775398.698], [557613.949, 6775794.622], [557483.223, 6774597.469], [556619.01, 6773853.973], [556774.608, 6772521.051], [555678.558, 6771490.063], [554706.901, 6770748.126], [554401.979, 6770840.018], [554432.764, 6771305.928], [553883.188, 6771063.123], [553499.951, 6770045.635], [553065.622, 6770711.66], [552854.389, 6774023.808], [552465.743, 6774629.658], [551137.075, 6775480.9], [551016.014, 6776843.243], [550332.885, 6777705.286], [549379.076, 6776916.9], [548576.388, 6778859.3], [547773.719, 6777964.659], [547492.639, 6777028.839], [547172.666, 6777362.001], [547175.263, 6777728.651], [546419.463, 6778565.703], [547166.952, 6779894.866], [546739.122, 6780235.724], [545659.961, 6779988.616], [545390.268, 6780291.39], [545732.28, 6781988.686], [545359.069, 6781943.915], [544696.754, 6781709.045], [543682.853, 6781237.79], [542841.099, 6780395.127], [542196.954, 6781271.564], [542709.038, 6782540.35], [543348.775, 6783081.935], [543742.316, 6783084.537], [543668.044, 6783449.487], [544140.248, 6784059.842], [544099.56, 6784799.539], [543363.916, 6783977.813], [543097.069, 6784286.141], [543255.095, 6785796.725], [543681.721, 6785968.159], [543442.312, 6786865.99], [543730.691, 6787513.728], [544209.293, 6788087.498], [543685.0, 6788870.674], [542747.982, 6788432.545], [542291.263, 6789059.585], [542833.739, 6789684.834], [542742.173, 6790169.336], [541923.107, 6789737.806], [541738.181, 6789957.914], [540889.122, 6790227.297], [540481.312, 6789830.259], [540220.093, 6790220.495], [540397.118, 6790453.168], [540173.208, 6790785.364], [540102.632, 6791516.365], [540436.79, 6792450.386], [541003.062, 6792378.02], [542060.933, 6792483.685], [542562.732, 6792227.793], [543020.547, 6792198.809], [544499.957, 6790811.388], [545251.053, 6790795.5], [545284.136, 6791365.067], [544437.072, 6792539.38], [545735.247, 6792457.623], [546583.798, 6793400.043], [546173.261, 6794013.088], [545183.658, 6794557.858], [545199.649, 6794968.689], [544863.782, 6795470.481], [545131.668, 6796410.098], [544770.409, 6797203.27], [545419.242, 6797799.311], [546420.831, 6798943.569], [546639.137, 6799912.273], [547529.874, 6800333.507], [549805.424, 6802171.894], [551228.665, 6802525.636], [556679.658, 6802850.843], [557485.23, 6803184.013], [558844.777, 6803669.924], [560597.067, 6803902.241], [566913.4, 6805721.647], [568422.799, 6804020.559]]]}}, {\\\"id\\\": \\\"208\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lieksa\\\", \\\"elakelaisten_osuus\\\": 43.7, \\\"freshwarea\\\": 649.82, \\\"gml_id\\\": 1601100658, \\\"landarea\\\": 3417.89, \\\"namefin\\\": \\\"Lieksa\\\", \\\"nameswe\\\": \\\"Lieksa\\\", \\\"natcode\\\": \\\"422\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 4067.71}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[651426.6, 7068103.3], [651346.4, 7067880.8], [651371.1, 7067772.0], [651316.4, 7067765.2], [651234.7, 7067629.3], [651601.7, 7067384.8], [651730.1, 7067064.1], [651932.0, 7066847.2], [651898.8, 7066651.7], [652060.2, 7066569.4], [652428.7, 7066196.1], [652637.1, 7066083.2], [652751.7, 7065917.9], [653364.3, 7065416.6], [653489.0, 7065232.9], [653637.4, 7065187.5], [653787.9, 7065059.0], [653981.1, 7064722.8], [654221.6, 7064490.1], [654397.7, 7064090.4], [654540.2, 7063926.5], [654553.2, 7063796.3], [657730.1, 7060581.2], [660849.677, 7057333.246], [661503.6, 7055074.8], [661679.0, 7054772.2], [661868.9, 7054682.0], [662158.8, 7054415.7], [662423.7, 7054319.8], [662463.2, 7054228.9], [662607.2, 7054264.2], [668169.6, 7050819.3], [672202.7, 7044328.2], [673586.4, 7042313.5], [674767.2, 7041737.2], [683064.3, 7038401.5], [689109.1, 7036337.4], [692030.0, 7033341.3], [692034.6, 7033182.8], [692086.4, 7033044.7], [692186.8, 7032989.4], [692112.5, 7032932.2], [692194.2, 7032922.7], [692272.3, 7032841.3], [692206.2, 7032655.3], [692239.5, 7032612.3], [692314.7, 7032634.0], [692361.9, 7032528.7], [692405.4, 7032540.0], [692429.8, 7032484.5], [692492.6, 7032471.4], [692471.2, 7032425.8], [692646.7, 7032393.7], [692647.9, 7032358.6], [692722.7, 7032338.1], [692834.7, 7032268.5], [692861.8, 7032325.2], [692921.8, 7032336.8], [693029.5, 7032214.0], [693236.3, 7032132.2], [693301.1, 7032035.3], [693555.0, 7032135.5], [693612.2, 7032104.6], [693655.8, 7032000.8], [693761.1, 7031974.9], [693843.4, 7031921.4], [693870.8, 7031831.0], [693991.6, 7031856.3], [694146.5, 7031792.9], [694176.5, 7031865.5], [694462.6, 7031763.5], [694657.9, 7031787.4], [694680.4, 7031738.5], [694715.6, 7031781.3], [694767.2, 7031752.2], [694803.0, 7031775.8], [694843.4, 7031717.1], [694992.9, 7031694.0], [695027.8, 7031653.9], [695077.5, 7031699.1], [695182.7, 7031678.7], [695220.9, 7031617.1], [695304.6, 7031642.8], [695355.8, 7031569.3], [695465.1, 7031570.9], [695485.8, 7031522.2], [695606.9, 7031530.6], [695643.2, 7031576.4], [695719.4, 7031552.8], [695743.5, 7031491.3], [695796.0, 7031494.8], [695809.3, 7031446.1], [695882.4, 7031453.8], [695913.6, 7031390.1], [695989.0, 7031383.6], [695967.5, 7031331.5], [696017.4, 7031293.1], [696149.3, 7031320.4], [696194.4, 7031266.3], [696242.1, 7031286.0], [696254.5, 7031309.0], [696230.4, 7031337.7], [696401.3, 7031372.9], [696534.6, 7031344.4], [696644.3, 7031312.6], [696701.4, 7031267.7], [696768.7, 7031240.5], [697377.2, 7029176.4], [699334.4, 7026068.8], [699504.7, 7026008.1], [699565.7, 7025935.4], [699685.9, 7025936.9], [699686.3, 7026018.7], [699744.3, 7026036.8], [700052.0, 7025669.3], [700211.1, 7025733.6], [701443.5, 7025693.3], [704852.9, 7023460.6], [704982.2, 7023229.6], [704979.7, 7023162.3], [705089.4, 7023063.5], [705112.9, 7022957.7], [705212.2, 7022874.0], [705252.9, 7022798.1], [705367.0, 7022745.1], [705498.7, 7022537.7], [705650.7, 7022484.8], [705736.5, 7022358.2], [706447.0, 7022379.3], [706707.7, 7022308.1], [706839.0, 7022183.9], [706978.3, 7022201.1], [707069.3, 7022106.3], [707106.9, 7022009.9], [707197.4, 7021886.3], [707083.3, 7021862.2], [707076.5, 7021788.3], [707331.8, 7021537.0], [707436.4, 7021564.6], [707478.9, 7021651.9], [707464.2, 7021749.6], [707564.2, 7021834.3], [707714.1, 7021661.7], [707835.5, 7021583.1], [707942.4, 7021478.4], [708041.5, 7021485.2], [708160.8, 7021274.9], [708310.6, 7021117.0], [708486.0, 7020831.2], [708444.6, 7020678.4], [708465.5, 7020602.2], [708790.3, 7020189.1], [708797.9, 7020048.9], [708877.9, 7019948.1], [708910.5, 7019806.3], [709075.8, 7019574.7], [709216.2, 7019518.6], [709428.4, 7019307.2], [709755.4, 7019165.8], [709779.6, 7019066.7], [709871.7, 7019002.5], [709867.1, 7018921.1], [710035.7, 7018879.5], [710118.1, 7018687.6], [710306.0, 7018581.1], [710611.8, 7018521.0], [710688.6, 7018399.3], [711082.0, 7018289.4], [711171.8, 7018233.2], [711191.5, 7018164.3], [711305.9, 7018109.8], [711356.8, 7018131.7], [711534.3, 7018083.8], [711622.6, 7018005.4], [711645.2, 7017884.7], [712057.9, 7017496.5], [712143.2, 7017496.7], [712342.1, 7017329.1], [712549.8, 7017279.8], [713033.4, 7017017.1], [713109.6, 7016864.7], [713144.2, 7016634.5], [713122.5, 7016441.5], [713128.3, 7014370.9], [711187.863, 7013914.665], [704344.182, 7012305.786], [699577.354, 7010395.895], [696975.582, 7006332.632], [690518.996, 7003282.04], [685562.644, 7000929.202], [683382.17, 7001025.496], [681228.347, 6999487.618], [676302.556, 6993001.424], [670780.237, 6990223.072], [670214.749, 6989861.773], [668345.445, 6991808.972], [666239.208, 6992704.325], [665157.012, 6994171.849], [663795.508, 6994446.548], [661128.937, 6994473.887], [661031.492, 6994527.678], [660913.339, 6994518.394], [658838.979, 6993077.417], [657750.642, 6993534.47], [653761.679, 6994511.778], [653020.72, 6994390.293], [652974.341, 6993673.986], [652759.555, 6993054.833], [651894.592, 6993063.455], [650852.469, 6994189.95], [649612.358, 6992908.431], [649790.562, 6991216.563], [649304.273, 6991016.339], [647535.605, 6992907.43], [646526.859, 6994217.78], [645363.68, 6995341.188], [644746.744, 6996142.216], [642531.216, 6993889.09], [640895.471, 6994382.714], [639223.732, 6994881.967], [637421.146, 6997650.048], [636953.541, 7000315.042], [636556.22, 7000515.004], [635960.577, 7001463.064], [636217.391, 7002324.037], [634361.283, 7004428.254], [633040.769, 7005612.376], [633655.431, 7006963.104], [633998.737, 7009064.463], [633314.494, 7010501.591], [631749.417, 7010888.626], [630851.828, 7011798.933], [631282.867, 7011969.612], [631506.267, 7013636.945], [632038.821, 7015479.339], [630580.279, 7015869.613], [630257.126, 7016193.777], [628915.036, 7016435.713], [629184.829, 7018055.984], [628009.43, 7020614.967], [627902.029, 7021183.734], [627506.724, 7021254.069], [627263.873, 7022123.559], [628967.858, 7024136.43], [628947.939, 7024433.713], [626723.105, 7025822.026], [624983.267, 7025463.832], [623462.217, 7026722.969], [624946.735, 7028764.029], [626129.839, 7029195.019], [626671.203, 7033471.161], [628025.223, 7036424.158], [627904.302, 7039900.34], [627354.944, 7040616.454], [626875.662, 7041488.183], [626240.458, 7042053.684], [625647.491, 7042105.612], [625842.012, 7047529.469], [624477.634, 7048279.794], [623984.106, 7049030.143], [624496.361, 7049565.314], [625888.975, 7049248.64], [626047.929, 7056606.744], [631243.26, 7064196.845], [632676.191, 7063354.154], [636832.998, 7066537.636], [637169.834, 7066938.585], [641828.736, 7072259.878], [645174.593, 7072924.116], [645175.2, 7072924.236], [645179.136, 7072925.018], [645181.824, 7072925.551], [646409.504, 7073169.277], [646581.916, 7073365.668], [651426.6, 7068103.3]]]}}, {\\\"id\\\": \\\"209\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Laitila\\\", \\\"elakelaisten_osuus\\\": 28.5, \\\"freshwarea\\\": 13.47, \\\"gml_id\\\": 1601100616, \\\"landarea\\\": 531.85, \\\"namefin\\\": \\\"Laitila\\\", \\\"nameswe\\\": \\\"Laitila\\\", \\\"natcode\\\": \\\"400\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 545.32}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[220619.778, 6777643.236], [219404.71, 6776165.007], [221421.513, 6774809.228], [222381.743, 6773283.02], [222966.427, 6771709.856], [223636.952, 6771499.654], [224395.722, 6771976.606], [225561.264, 6770766.964], [226929.748, 6770748.484], [226279.671, 6767397.541], [228833.851, 6763402.797], [228110.673, 6762167.036], [228775.427, 6761697.008], [228946.623, 6761950.006], [229322.05, 6761676.042], [229548.463, 6762051.225], [235893.98, 6761936.978], [231976.774, 6759876.199], [232568.306, 6757830.857], [230380.491, 6758842.746], [227866.024, 6755671.553], [225517.022, 6753464.127], [224330.069, 6751881.107], [221542.303, 6750160.126], [221808.962, 6749399.166], [221705.817, 6749337.675], [221256.67, 6749980.281], [220079.665, 6749217.69], [218583.733, 6746517.55], [216986.432, 6745157.51], [216583.581, 6744890.601], [216422.303, 6745002.674], [216176.659, 6745072.928], [215803.376, 6745241.134], [215130.754, 6745747.192], [213924.026, 6746317.088], [213729.152, 6746551.826], [213650.921, 6746743.286], [213515.125, 6746920.359], [213501.362, 6747120.968], [213657.514, 6747210.948], [213575.473, 6747419.725], [213134.531, 6747495.92], [213317.294, 6748691.146], [214224.941, 6748708.114], [212441.0, 6750580.383], [212330.693, 6750941.067], [212523.474, 6752544.608], [212999.714, 6752576.085], [212099.839, 6754039.705], [210684.683, 6755462.5], [209510.838, 6756193.78], [209473.921, 6756463.109], [209298.123, 6756556.339], [209058.01, 6756478.994], [208134.451, 6757058.005], [208264.087, 6757305.656], [207570.197, 6757761.354], [207209.022, 6757648.451], [206354.632, 6758196.21], [204610.461, 6757284.498], [203997.226, 6757986.793], [203467.033, 6757932.852], [203613.984, 6758875.562], [202713.595, 6759160.505], [203098.809, 6761868.535], [202311.607, 6762338.842], [201981.428, 6762310.155], [201798.599, 6762861.552], [202002.115, 6763592.887], [201312.686, 6763733.792], [203158.009, 6764900.614], [202330.463, 6765536.114], [203189.415, 6765815.775], [203122.57, 6767786.499], [203164.127, 6769479.752], [202875.589, 6770441.269], [202699.819, 6770651.285], [203122.906, 6771259.358], [201949.404, 6772680.152], [201571.367, 6773362.64], [202331.728, 6774071.747], [204816.094, 6773668.626], [205231.006, 6773498.06], [205142.545, 6772866.876], [204616.913, 6772774.492], [204411.807, 6772580.121], [204206.978, 6771898.137], [204664.724, 6771521.696], [205063.931, 6771588.796], [205320.239, 6770871.425], [206008.913, 6769665.909], [206814.661, 6769388.597], [207266.757, 6769371.405], [207979.512, 6769735.557], [207679.226, 6770119.047], [207393.043, 6770872.102], [208035.459, 6770839.404], [211038.651, 6773769.144], [211671.977, 6774130.133], [213147.8, 6774583.185], [213233.294, 6774810.807], [213856.409, 6774652.47], [214289.173, 6774219.621], [215425.511, 6774335.59], [217247.151, 6775621.35], [216672.581, 6777106.399], [217953.144, 6777848.471], [220619.778, 6777643.236]]]}}, {\\\"id\\\": \\\"210\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ristij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 43.4, \\\"freshwarea\\\": 62.17, \\\"gml_id\\\": 1601100439, \\\"landarea\\\": 835.77, \\\"namefin\\\": \\\"Ristij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Ristij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"697\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 897.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[554081.921, 7169838.25], [554667.678, 7168474.81], [559551.799, 7168560.612], [562697.46, 7164847.566], [562728.279, 7163782.681], [563256.154, 7163384.285], [563722.908, 7164007.08], [567428.172, 7163559.172], [568477.134, 7164321.929], [568497.679, 7164284.406], [575534.163, 7160589.245], [575896.398, 7159735.104], [576415.271, 7160125.951], [577988.93, 7159300.402], [577563.957, 7158537.095], [578764.704, 7157896.2], [579170.472, 7158680.066], [583466.705, 7156416.103], [583723.976, 7155935.411], [584008.52, 7156129.628], [589351.221, 7153309.61], [587275.958, 7152515.004], [589308.963, 7143251.048], [587606.177, 7136319.633], [585167.672, 7132823.816], [584731.874, 7132752.879], [582013.795, 7132356.815], [577288.726, 7134613.587], [577543.14, 7134923.126], [577379.863, 7135706.702], [576649.893, 7135416.65], [575266.504, 7136253.712], [574890.416, 7135771.211], [573863.228, 7136271.869], [570594.488, 7139642.95], [564731.951, 7142002.513], [564711.141, 7142013.353], [564601.905, 7142418.953], [564034.838, 7142726.066], [563710.47, 7142608.613], [560499.92, 7145704.433], [559167.627, 7146114.198], [559031.883, 7145678.855], [557726.591, 7146064.733], [557260.463, 7146967.396], [556327.933, 7147748.572], [556036.393, 7147192.63], [554253.856, 7148304.563], [554571.818, 7149314.021], [553102.218, 7149590.896], [553169.909, 7149001.628], [551889.277, 7149806.046], [550396.056, 7152018.754], [550597.419, 7155357.625], [550842.977, 7155574.74], [546733.934, 7160082.681], [547091.711, 7160431.181], [546714.292, 7160706.931], [546766.725, 7160903.558], [546511.873, 7161168.834], [546482.096, 7161460.973], [546051.693, 7161602.98], [545674.519, 7161241.341], [544834.359, 7162161.172], [541695.419, 7161633.333], [543017.706, 7164416.606], [551354.01, 7167975.529], [552882.358, 7168439.627], [552830.261, 7168806.817], [552324.291, 7168896.18], [552219.359, 7169439.837], [553159.615, 7170589.47], [554081.921, 7169838.25]]]}}, {\\\"id\\\": \\\"211\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Luhanka\\\", \\\"elakelaisten_osuus\\\": 47.9, \\\"freshwarea\\\": 98.75, \\\"gml_id\\\": 1601100007, \\\"landarea\\\": 214.5, \\\"namefin\\\": \\\"Luhanka\\\", \\\"nameswe\\\": \\\"Luhanka\\\", \\\"natcode\\\": \\\"435\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 313.25}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[439556.55, 6862532.984], [441897.02, 6860678.158], [443239.255, 6858883.81], [441726.525, 6855936.816], [440384.546, 6854858.15], [440851.392, 6854297.953], [440966.771, 6853936.613], [440143.411, 6853655.998], [439855.456, 6853233.65], [439158.303, 6853155.316], [439110.805, 6852598.036], [439225.877, 6852311.217], [439347.228, 6851478.12], [439640.485, 6850872.99], [439659.334, 6850290.241], [439067.911, 6849675.954], [438773.207, 6849383.136], [438618.702, 6849354.452], [438323.792, 6848889.962], [434977.032, 6839710.96], [433490.141, 6840569.122], [433814.903, 6841253.649], [434293.824, 6841348.939], [433841.088, 6841932.175], [432632.375, 6842637.08], [431375.998, 6842754.337], [430753.738, 6843031.205], [430659.473, 6843507.212], [429953.864, 6843044.693], [429623.196, 6843331.274], [429396.29, 6843255.003], [428583.628, 6842248.001], [428010.871, 6840947.919], [426355.357, 6839397.129], [424147.16, 6838653.711], [422444.099, 6839447.602], [422249.43, 6839061.331], [420678.769, 6839096.004], [420643.476, 6840114.592], [420522.909, 6842187.355], [420875.219, 6848689.333], [422729.752, 6850493.619], [424333.889, 6851895.564], [426101.449, 6857100.673], [426658.191, 6858729.218], [427502.344, 6859263.009], [429523.223, 6859202.449], [434295.044, 6858049.571], [436611.82, 6862773.351], [439556.55, 6862532.984]]]}}, {\\\"id\\\": \\\"212\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Helsinki\\\", \\\"elakelaisten_osuus\\\": 19.6, \\\"freshwarea\\\": 0.91, \\\"gml_id\\\": 1601100141, \\\"landarea\\\": 214.25, \\\"namefin\\\": \\\"Helsinki\\\", \\\"nameswe\\\": \\\"Helsingfors\\\", \\\"natcode\\\": \\\"091\\\", \\\"seawarea\\\": 500.32, \\\"totalarea\\\": 715.48}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[402614.625, 6685603.09], [403434.138, 6685818.265], [403516.149, 6685567.289], [403017.003, 6685389.467], [403466.148, 6684945.228], [402897.947, 6684431.254], [402893.083, 6683702.407], [403336.846, 6683401.992], [403253.471, 6683155.565], [402826.728, 6682979.462], [402360.86, 6683005.931], [402182.555, 6682483.79], [402206.313, 6681961.24], [401913.233, 6681807.992], [402458.273, 6681254.676], [402627.876, 6680612.858], [402620.314, 6680141.562], [401850.326, 6680029.843], [401623.898, 6679780.387], [401808.886, 6679388.548], [400548.902, 6678367.399], [400349.205, 6677070.273], [401345.24, 6674985.491], [399732.084, 6669114.856], [398600.997, 6663222.358], [397119.274, 6646433.498], [384970.135, 6644566.77], [376718.723, 6664611.807], [379768.621, 6667904.746], [380050.19, 6670115.488], [380148.339, 6670198.605], [380148.339, 6670615.249], [380148.339, 6670916.41], [380381.881, 6671804.412], [380394.723, 6672659.046], [380402.06, 6675166.845], [380656.966, 6676048.243], [380640.369, 6677115.115], [380776.843, 6677700.102], [380445.725, 6678000.761], [380227.204, 6679742.437], [379983.85, 6681677.614], [380402.966, 6682225.844], [381443.67, 6681580.076], [382253.446, 6681613.497], [382543.152, 6682291.394], [383433.773, 6683179.204], [384438.804, 6683466.8], [385212.185, 6683822.904], [385798.687, 6683898.268], [386389.758, 6684186.137], [386969.299, 6683938.502], [386932.169, 6683597.195], [387142.976, 6683182.986], [387466.386, 6682804.814], [388001.153, 6682639.793], [388143.404, 6682978.819], [388012.611, 6683190.741], [388417.243, 6684180.691], [389163.963, 6684434.41], [389429.588, 6684974.633], [390587.083, 6685274.051], [391152.104, 6684820.34], [391521.014, 6685096.633], [391741.718, 6684369.445], [392195.008, 6684000.574], [392338.906, 6683739.547], [393623.266, 6683650.066], [394237.387, 6683152.603], [394172.454, 6681823.842], [393859.815, 6680762.439], [394340.078, 6680245.367], [396776.252, 6679289.143], [397205.078, 6680111.587], [397591.948, 6680179.274], [398143.117, 6680542.14], [397991.167, 6681181.115], [397651.602, 6681601.262], [397331.415, 6681726.289], [397248.729, 6682902.962], [399775.22, 6683958.338], [399936.362, 6684600.244], [400258.311, 6684176.97], [400745.666, 6684657.097], [400567.687, 6684841.722], [401634.138, 6685194.721], [402143.657, 6685895.131], [402614.625, 6685603.09]]]}}, {\\\"id\\\": \\\"213\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pomarkku\\\", \\\"elakelaisten_osuus\\\": 36.6, \\\"freshwarea\\\": 30.87, \\\"gml_id\\\": 1601100569, \\\"landarea\\\": 301.18, \\\"namefin\\\": \\\"Pomarkku\\\", \\\"nameswe\\\": \\\"P\\\\u00e5mark\\\", \\\"natcode\\\": \\\"608\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 332.05}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[244964.714, 6858301.623], [245263.592, 6855281.8], [246288.787, 6854927.817], [246458.089, 6854411.019], [246197.29, 6852384.001], [245560.222, 6852568.114], [245469.822, 6852228.379], [245898.92, 6851917.036], [245366.531, 6851012.342], [245693.609, 6850597.76], [246393.212, 6850490.749], [246590.079, 6849132.773], [246958.338, 6852895.655], [247238.286, 6853401.354], [247580.444, 6853400.981], [247579.895, 6853831.824], [247212.54, 6854020.711], [247410.232, 6854650.534], [247708.273, 6854900.415], [248155.482, 6855218.014], [248231.58, 6856285.66], [248960.33, 6856172.372], [252896.767, 6855121.348], [256002.203, 6850467.681], [254730.855, 6851183.489], [254323.7, 6851344.839], [253738.166, 6851470.098], [253410.213, 6851483.381], [253401.245, 6851070.005], [253738.87, 6850546.523], [253389.279, 6850129.248], [248193.87, 6849542.349], [247977.686, 6849382.724], [247567.385, 6845977.933], [244808.115, 6843391.425], [244603.476, 6843636.468], [244192.479, 6843463.146], [243933.05, 6843084.753], [243340.289, 6843198.915], [242340.69, 6843046.876], [241943.967, 6843649.823], [241501.592, 6841725.197], [240882.562, 6841770.472], [240089.9, 6841913.021], [239311.797, 6841947.339], [238094.685, 6841737.083], [238037.43, 6841477.731], [237551.207, 6841525.632], [236817.074, 6841335.77], [234214.694, 6843144.308], [227728.139, 6849487.788], [227240.796, 6850509.842], [226698.672, 6850495.926], [225918.266, 6851590.76], [221808.002, 6857384.242], [226884.686, 6857279.844], [231655.348, 6858683.093], [235043.787, 6858477.361], [238230.858, 6855951.77], [239455.984, 6858478.339], [240044.205, 6858523.641], [240817.593, 6858942.275], [241042.32, 6859759.356], [244964.714, 6858301.623]]]}}, {\\\"id\\\": \\\"214\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pet\\\\u00e4j\\\\u00e4vesi\\\", \\\"elakelaisten_osuus\\\": 28.7, \\\"freshwarea\\\": 39.01, \\\"gml_id\\\": 1601100269, \\\"landarea\\\": 456.4, \\\"namefin\\\": \\\"Pet\\\\u00e4j\\\\u00e4vesi\\\", \\\"nameswe\\\": \\\"Pet\\\\u00e4j\\\\u00e4vesi\\\", \\\"natcode\\\": \\\"592\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 495.41}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[407426.252, 6922247.712], [410649.709, 6921053.84], [411349.66, 6918711.998], [412161.221, 6916039.044], [414076.5, 6916726.796], [415666.672, 6917312.341], [416208.333, 6916669.568], [419364.571, 6914933.275], [419445.931, 6913605.884], [421768.443, 6913763.393], [420058.91, 6909578.23], [417623.195, 6904866.724], [418088.644, 6902448.101], [416087.126, 6902369.482], [413464.114, 6901262.435], [414035.756, 6897273.568], [413180.13, 6895525.97], [412436.266, 6894758.376], [410640.455, 6892336.108], [404424.189, 6893635.064], [401979.077, 6893850.477], [398043.378, 6896369.994], [396010.882, 6897891.474], [395730.728, 6898415.349], [394359.983, 6899320.787], [397921.212, 6898837.623], [399808.415, 6902188.866], [397892.171, 6903484.783], [398730.031, 6908729.441], [399970.949, 6912665.932], [399848.036, 6913137.211], [399280.347, 6914365.234], [398631.302, 6914393.686], [398736.49, 6914899.984], [398295.193, 6915975.972], [397897.448, 6916008.131], [398074.782, 6916640.714], [400597.923, 6922646.117], [403170.836, 6923157.032], [407426.252, 6922247.712]]]}}, {\\\"id\\\": \\\"215\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siikajoki\\\", \\\"elakelaisten_osuus\\\": 27.7, \\\"freshwarea\\\": 8.74, \\\"gml_id\\\": 1601100592, \\\"landarea\\\": 1054.05, \\\"namefin\\\": \\\"Siikajoki\\\", \\\"nameswe\\\": \\\"Siikajoki\\\", \\\"natcode\\\": \\\"748\\\", \\\"seawarea\\\": 591.1, \\\"totalarea\\\": 1653.89}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[432954.414, 7134581.96], [432676.612, 7134073.532], [432477.43, 7134090.691], [432210.283, 7134369.094], [429827.325, 7134284.858], [429213.636, 7135049.584], [429560.262, 7135226.047], [432780.693, 7136873.376], [432954.414, 7134581.96]]], [[[393701.714, 7199025.715], [396054.571, 7199665.012], [405158.02, 7206221.723], [405590.859, 7200711.263], [405072.695, 7196857.605], [405179.934, 7196188.49], [405544.479, 7196139.391], [405688.488, 7195850.74], [404879.342, 7195451.674], [404483.163, 7192503.685], [402826.439, 7189072.135], [405630.273, 7185147.935], [412772.128, 7180091.469], [413260.624, 7179728.339], [416674.091, 7176231.788], [416929.572, 7176750.551], [416967.364, 7175958.76], [417372.041, 7175591.868], [417593.225, 7176247.576], [417471.512, 7176530.737], [417716.272, 7176605.045], [418030.937, 7176323.531], [417960.861, 7175970.273], [417599.491, 7175103.672], [417846.452, 7174999.858], [418294.864, 7175778.667], [418872.652, 7175376.409], [418391.302, 7174868.258], [419973.536, 7174052.416], [419752.112, 7173788.375], [419021.416, 7174277.218], [418789.999, 7174092.083], [419805.875, 7173300.101], [420381.774, 7172517.5], [429259.375, 7167927.441], [428584.262, 7167123.789], [429661.013, 7166694.445], [429596.34, 7166396.644], [428849.473, 7166699.455], [428800.532, 7166443.147], [428061.006, 7166923.743], [427679.7, 7166662.366], [426944.892, 7166978.974], [426218.196, 7166771.24], [424831.673, 7165377.56], [423859.318, 7163097.329], [423342.525, 7161445.116], [422665.706, 7161435.817], [422720.883, 7160770.84], [422341.065, 7160578.229], [422400.774, 7158974.026], [422896.306, 7159689.869], [423294.952, 7160200.304], [423482.213, 7160150.122], [424197.9, 7159228.452], [424053.736, 7159105.255], [423319.264, 7159790.44], [422982.656, 7159270.168], [423836.322, 7158539.117], [424207.261, 7158034.098], [424108.53, 7157905.741], [423292.165, 7158485.748], [423021.736, 7158269.689], [423316.393, 7157979.511], [423405.584, 7157656.368], [423250.69, 7157553.355], [422627.591, 7158172.804], [422415.744, 7158582.465], [422307.573, 7157278.686], [424639.323, 7155741.35], [426842.86, 7153699.23], [425501.729, 7151201.154], [424786.524, 7151221.479], [425181.474, 7150073.845], [425958.69, 7150097.319], [426241.064, 7149967.178], [426214.36, 7149727.698], [425231.432, 7149864.946], [424955.048, 7149514.695], [425154.263, 7149346.872], [426937.16, 7145583.317], [425603.259, 7144706.83], [425369.047, 7144992.904], [424936.215, 7144919.165], [424905.645, 7144262.72], [424720.519, 7144142.786], [424470.4, 7144319.003], [424122.588, 7144634.584], [423888.317, 7144446.071], [423743.472, 7144896.278], [416808.96, 7149206.607], [417202.672, 7149655.746], [417107.603, 7149914.032], [416742.271, 7150131.639], [416149.933, 7149631.461], [415817.208, 7149837.336], [415918.611, 7150188.174], [415463.09, 7150056.432], [415252.818, 7150181.06], [411800.775, 7151100.125], [411413.917, 7151340.041], [410889.439, 7152064.504], [411291.109, 7152531.0], [410703.73, 7152332.094], [407944.738, 7156167.948], [403595.649, 7159409.427], [400714.759, 7160678.18], [398336.735, 7160934.169], [396418.168, 7161922.903], [391626.297, 7164350.758], [394417.617, 7171373.578], [395393.432, 7172654.781], [395022.106, 7172922.986], [394843.521, 7172689.518], [394590.353, 7172853.289], [395007.282, 7173390.811], [394417.346, 7173756.007], [393896.044, 7173675.406], [393318.202, 7173664.498], [393205.314, 7174103.317], [393417.96, 7174222.454], [392055.432, 7178013.385], [391853.25, 7178473.526], [390853.335, 7180262.423], [391400.128, 7180444.756], [389572.125, 7183178.061], [389353.656, 7182846.225], [389027.914, 7183762.075], [389184.314, 7184030.8], [388851.793, 7184271.679], [388726.942, 7184041.171], [388142.829, 7185078.539], [388322.195, 7185319.106], [388639.567, 7184823.207], [388890.819, 7184942.223], [388441.546, 7185741.264], [388180.414, 7185927.426], [387544.828, 7186138.757], [387906.439, 7186308.874], [387801.466, 7186547.979], [387378.528, 7186635.993], [386899.716, 7186656.658], [386163.973, 7186239.966], [386047.625, 7185881.966], [385300.806, 7185653.948], [384247.443, 7186595.85], [355123.285, 7195769.413], [360431.691, 7212610.604], [393701.714, 7199025.715]]]]}}, {\\\"id\\\": \\\"216\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kontiolahti\\\", \\\"elakelaisten_osuus\\\": 20.5, \\\"freshwarea\\\": 230.63, \\\"gml_id\\\": 1601100195, \\\"landarea\\\": 799.2, \\\"namefin\\\": \\\"Kontiolahti\\\", \\\"nameswe\\\": \\\"Kontiolahti\\\", \\\"natcode\\\": \\\"276\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1029.83}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[645363.68, 6995341.188], [646526.859, 6994217.78], [647535.605, 6992907.43], [649304.273, 6991016.339], [649790.562, 6991216.563], [649956.9, 6989665.751], [649831.263, 6989551.261], [649984.951, 6989407.898], [650443.95, 6984106.048], [650560.484, 6983688.777], [650516.082, 6982831.658], [650492.848, 6982361.755], [650175.143, 6976302.143], [649880.827, 6976093.871], [652958.837, 6970896.529], [653087.79, 6970195.598], [654076.735, 6968566.472], [655004.356, 6964709.983], [657806.219, 6961440.344], [659200.405, 6960763.64], [660607.165, 6959872.447], [661381.754, 6959622.604], [662683.073, 6958983.897], [663198.362, 6959111.927], [663682.525, 6957972.933], [664240.344, 6956227.449], [668229.975, 6951886.784], [668125.664, 6949869.748], [668582.209, 6948948.489], [668216.934, 6948570.097], [667210.78, 6949417.305], [666953.264, 6949785.673], [665823.552, 6947993.708], [664665.386, 6947504.088], [664295.988, 6947026.551], [664125.304, 6946552.682], [664764.288, 6945883.77], [664344.508, 6944403.979], [663614.683, 6944484.436], [661118.679, 6945537.437], [659635.411, 6945837.657], [654057.377, 6942458.344], [654334.696, 6942034.647], [654044.872, 6941859.173], [653909.619, 6942028.69], [652151.751, 6940937.294], [651945.803, 6941129.881], [651244.409, 6940711.585], [651052.422, 6941322.604], [651107.273, 6941734.153], [650575.746, 6941905.528], [649422.37, 6941453.341], [649117.501, 6942296.755], [650206.575, 6943639.692], [649996.412, 6944466.19], [650282.676, 6944557.164], [648754.384, 6947504.294], [640937.244, 6947585.669], [638808.2, 6948032.908], [636669.252, 6948479.895], [635799.486, 6949153.943], [635429.925, 6949992.142], [635129.845, 6949861.893], [633083.493, 6952264.975], [633263.961, 6952570.042], [633921.392, 6952275.187], [633768.984, 6953762.831], [633882.823, 6954437.921], [633328.553, 6955137.468], [633004.715, 6956179.635], [632526.216, 6956208.318], [632146.536, 6957206.258], [632298.858, 6957416.605], [632074.247, 6958787.186], [631989.902, 6959407.688], [631044.539, 6961024.372], [631094.567, 6962141.542], [630638.569, 6963264.842], [630726.038, 6965153.04], [634981.925, 6966834.451], [638630.658, 6971477.507], [635493.168, 6973434.696], [635228.586, 6973970.859], [636008.236, 6977987.784], [635184.981, 6978446.526], [634502.372, 6979246.802], [634172.255, 6980882.975], [632099.484, 6984754.453], [632628.968, 6986213.588], [638619.896, 6989157.324], [641271.62, 6993678.702], [640895.471, 6994382.714], [642531.216, 6993889.09], [644746.744, 6996142.216], [645363.68, 6995341.188]]]}}, {\\\"id\\\": \\\"217\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sauvo\\\", \\\"elakelaisten_osuus\\\": 30.0, \\\"freshwarea\\\": 1.27, \\\"gml_id\\\": 1601100507, \\\"landarea\\\": 252.6, \\\"namefin\\\": \\\"Sauvo\\\", \\\"nameswe\\\": \\\"Sagu\\\", \\\"natcode\\\": \\\"738\\\", \\\"seawarea\\\": 45.61, \\\"totalarea\\\": 299.48}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[266119.185, 6702630.874], [265709.428, 6701977.364], [266240.792, 6701135.719], [267669.917, 6699970.234], [269253.277, 6700115.454], [269524.021, 6700258.507], [270633.654, 6698647.29], [270213.779, 6698348.883], [270774.268, 6697008.736], [270536.716, 6696216.522], [272432.554, 6692499.31], [272383.994, 6691454.85], [271644.101, 6690445.668], [271283.935, 6688122.92], [270710.961, 6687732.813], [270264.563, 6687416.932], [268872.237, 6688221.782], [268391.028, 6688022.198], [268151.311, 6687902.961], [267328.89, 6686915.129], [266724.673, 6686827.786], [266759.825, 6686198.811], [265272.484, 6686817.086], [264678.983, 6686710.132], [264086.197, 6686018.318], [263457.313, 6685897.352], [263224.228, 6686031.715], [261402.43, 6686341.007], [261081.016, 6686308.483], [260683.278, 6685790.71], [257966.843, 6685396.7], [256534.255, 6684960.135], [255680.485, 6684370.06], [255652.778, 6684103.196], [254479.51, 6683527.573], [253207.295, 6683133.248], [251273.079, 6683581.538], [251787.372, 6685533.016], [251271.326, 6686156.182], [250745.984, 6686248.777], [250470.32, 6686572.08], [250181.949, 6686937.043], [248026.628, 6687616.531], [248133.062, 6687854.019], [247858.876, 6688717.737], [247830.049, 6689853.336], [248666.092, 6690616.817], [250109.776, 6692762.145], [251434.053, 6693941.828], [252371.595, 6695868.763], [253194.461, 6696273.711], [254131.465, 6698342.865], [254777.4, 6699406.538], [256120.94, 6699836.912], [256302.593, 6700619.42], [257285.343, 6701095.376], [257642.924, 6701722.189], [257945.707, 6702009.431], [259397.756, 6699956.979], [260263.534, 6700510.278], [260836.931, 6700459.117], [261351.242, 6700714.04], [261769.99, 6700478.278], [262248.458, 6700730.418], [262574.171, 6700460.255], [263051.922, 6700760.188], [264929.537, 6702268.812], [265543.724, 6702394.511], [265937.215, 6702739.428], [266119.185, 6702630.874]]]}}, {\\\"id\\\": \\\"218\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Parainen\\\", \\\"elakelaisten_osuus\\\": 31.2, \\\"freshwarea\\\": 10.1, \\\"gml_id\\\": 1601100025, \\\"landarea\\\": 883.12, \\\"namefin\\\": \\\"Parainen\\\", \\\"nameswe\\\": \\\"Pargas\\\", \\\"natcode\\\": \\\"445\\\", \\\"seawarea\\\": 4654.92, \\\"totalarea\\\": 5548.14}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[211887.792, 6701645.598], [212419.222, 6701693.127], [211742.24, 6699582.572], [210864.557, 6699002.17], [210622.052, 6700109.849], [211063.349, 6701755.139], [211887.792, 6701645.598]]], [[[186604.751, 6716432.425], [191038.458, 6717531.282], [191993.822, 6717458.499], [192649.548, 6717398.234], [194846.442, 6716583.817], [195403.674, 6715519.498], [195748.052, 6714718.828], [197335.339, 6713122.634], [198381.306, 6711944.119], [197649.599, 6710433.514], [198928.357, 6708887.955], [198507.546, 6708470.296], [197854.925, 6706736.992], [198336.176, 6705803.473], [200422.541, 6707091.431], [202416.079, 6705973.116], [201459.584, 6704052.32], [202087.844, 6702233.877], [203926.596, 6700343.523], [204505.562, 6697220.412], [206493.673, 6697411.293], [207027.919, 6694865.842], [208849.996, 6693802.315], [210129.898, 6695288.121], [211352.099, 6694951.753], [211668.861, 6695727.741], [211728.219, 6695806.303], [212496.388, 6696219.182], [212936.633, 6696405.094], [213460.961, 6696600.861], [214246.981, 6696330.288], [215055.74, 6695765.069], [214832.461, 6695340.857], [214314.243, 6694924.87], [214576.964, 6694548.751], [214557.038, 6694143.533], [215538.797, 6693707.137], [217665.069, 6691300.089], [220965.074, 6691634.205], [222873.11, 6692976.464], [224521.111, 6693052.248], [226297.424, 6694335.234], [226916.101, 6696420.888], [227792.948, 6698615.937], [228193.083, 6699615.667], [228597.413, 6699757.856], [230061.904, 6699111.899], [231163.917, 6699468.75], [231638.026, 6699229.97], [232909.428, 6698932.925], [233449.271, 6699015.245], [234204.039, 6698501.413], [234899.196, 6698220.645], [235792.214, 6698209.134], [236347.31, 6698852.852], [236900.355, 6698434.226], [237284.214, 6698507.348], [237727.773, 6698846.377], [238235.56, 6699101.525], [239241.198, 6698998.88], [240008.098, 6699378.475], [240956.864, 6699162.204], [241259.876, 6699404.627], [241681.605, 6700245.15], [241481.885, 6700941.815], [242173.459, 6701448.133], [242586.616, 6701498.548], [242848.909, 6701215.192], [243467.383, 6700981.615], [244648.514, 6701346.796], [245519.042, 6701493.617], [245811.129, 6701838.426], [246646.968, 6701900.693], [246953.274, 6702063.973], [247795.906, 6702155.608], [248599.454, 6701857.878], [248501.265, 6700688.666], [247899.547, 6700196.869], [247739.825, 6699922.772], [248345.07, 6699473.846], [248806.785, 6699282.254], [249333.861, 6699004.649], [249709.224, 6698463.159], [250213.026, 6698813.27], [250716.896, 6698999.901], [251166.445, 6698872.105], [251618.891, 6698953.09], [252481.244, 6699956.133], [253263.73, 6699454.95], [254131.465, 6698342.865], [253194.461, 6696273.711], [252371.595, 6695868.763], [251434.053, 6693941.828], [250109.776, 6692762.145], [248666.092, 6690616.817], [247830.049, 6689853.336], [247858.876, 6688717.737], [248133.062, 6687854.019], [248026.628, 6687616.531], [246363.616, 6683902.563], [246090.461, 6682388.012], [244943.823, 6680916.326], [244437.512, 6679408.462], [243113.871, 6678863.134], [243189.269, 6678153.934], [242741.873, 6676521.598], [241638.869, 6675501.43], [241688.079, 6674899.28], [241054.522, 6673534.838], [237975.096, 6673931.345], [236881.861, 6673222.258], [234265.395, 6669060.096], [231197.711, 6665258.007], [231475.95, 6661873.493], [231242.31, 6660798.276], [230697.586, 6660053.427], [230575.092, 6657728.263], [226266.431, 6655202.401], [219889.209, 6650329.806], [219716.28, 6649389.456], [220157.32, 6647572.778], [220861.647, 6647117.697], [221041.479, 6646423.43], [221108.392, 6642057.967], [221600.647, 6637114.44], [221615.162, 6636968.678], [222476.706, 6628316.514], [222640.662, 6606081.581], [190518.415, 6605839.312], [189819.737, 6605844.875], [189121.619, 6605872.361], [188424.701, 6605921.837], [187729.582, 6605993.105], [187037.162, 6606086.264], [186347.941, 6606201.015], [185662.719, 6606337.457], [184937.743, 6606506.505], [170739.665, 6610069.233], [177959.57, 6638840.211], [181097.209, 6646222.985], [183780.112, 6652180.833], [177862.179, 6658560.503], [174684.898, 6660201.744], [173499.649, 6664445.477], [173445.193, 6670509.506], [173415.386, 6671793.648], [172798.744, 6674623.732], [170185.666, 6677823.73], [168214.52, 6680237.598], [170464.773, 6688053.02], [172356.227, 6688592.108], [173474.272, 6694160.65], [173346.017, 6695594.488], [175225.004, 6702610.378], [175811.453, 6706801.338], [175697.142, 6708678.879], [177347.626, 6716920.445], [178778.019, 6720746.968], [178985.102, 6721226.62], [186604.751, 6716432.425]]]]}}, {\\\"id\\\": \\\"219\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"H\\\\u00e4meenlinna\\\", \\\"elakelaisten_osuus\\\": 29.4, \\\"freshwarea\\\": 246.32, \\\"gml_id\\\": 1601100177, \\\"landarea\\\": 1785.22, \\\"namefin\\\": \\\"H\\\\u00e4meenlinna\\\", \\\"nameswe\\\": \\\"Tavastehus\\\", \\\"natcode\\\": \\\"109\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2031.54}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[388683.629, 6799573.069], [388570.139, 6796523.811], [388622.0, 6796521.85], [388691.172, 6796519.235], [388824.632, 6796503.804], [388817.18, 6796701.256], [388792.46, 6796903.018], [388848.978, 6796949.211], [388887.103, 6797020.849], [388923.763, 6797089.734], [389006.368, 6797123.558], [389081.893, 6797154.483], [389131.114, 6797126.487], [389276.722, 6797043.667], [389375.089, 6797182.54], [389351.005, 6797324.848], [389449.216, 6797400.279], [389601.331, 6797445.971], [389698.46, 6797325.946], [389806.054, 6797139.516], [389905.976, 6797054.745], [390028.371, 6797038.283], [390103.81, 6797028.136], [390125.816, 6796837.836], [390275.523, 6796722.908], [390337.948, 6796669.394], [390502.112, 6796420.791], [390603.723, 6796294.21], [390740.405, 6796049.239], [390936.109, 6795894.74], [391064.297, 6795793.542], [391036.153, 6795730.213], [390980.983, 6795606.071], [391282.943, 6795343.309], [391405.227, 6795366.008], [391497.794, 6795496.653], [391526.551, 6795657.323], [391641.298, 6795661.212], [391804.107, 6795673.826], [391946.114, 6795514.402], [392181.837, 6795560.371], [392474.198, 6795559.451], [393517.903, 6796828.215], [393465.775, 6795936.92], [394254.442, 6791800.016], [397906.052, 6792789.629], [399751.312, 6792181.474], [402689.517, 6790866.083], [403543.819, 6790950.967], [403321.352, 6788860.331], [404168.445, 6788189.007], [404565.365, 6787725.623], [405049.224, 6787035.15], [405126.069, 6786312.915], [405819.153, 6785808.028], [406241.342, 6785766.563], [406063.954, 6785184.927], [406441.67, 6784737.811], [406389.66, 6784299.182], [405873.607, 6783690.232], [406234.849, 6783164.31], [406080.567, 6782628.908], [406876.241, 6781524.029], [406265.646, 6781833.301], [405999.854, 6780622.507], [405370.66, 6780349.245], [405044.307, 6779651.612], [405543.606, 6778672.92], [406219.526, 6778344.36], [406006.036, 6778040.352], [405567.344, 6777880.867], [405156.381, 6776822.41], [404375.957, 6776455.044], [403654.905, 6775615.02], [402784.055, 6772618.129], [401269.783, 6772409.141], [400270.848, 6771210.613], [395087.371, 6769919.838], [394097.294, 6768194.948], [393495.338, 6767837.503], [394143.31, 6766455.961], [394351.313, 6766216.83], [394248.842, 6765521.12], [393768.382, 6765456.134], [393266.806, 6764872.406], [393299.352, 6763686.468], [394702.833, 6764301.44], [394975.511, 6764131.419], [394430.135, 6763576.96], [394481.919, 6763232.042], [395004.212, 6762771.98], [393908.791, 6760764.362], [393110.616, 6760136.654], [392675.227, 6758222.546], [392003.342, 6756401.455], [393094.362, 6756355.691], [393186.881, 6756222.594], [393344.879, 6756010.145], [393182.282, 6755878.24], [393045.361, 6755806.097], [393088.122, 6755596.428], [393142.062, 6755500.189], [393148.26, 6755433.733], [393241.116, 6755301.219], [393336.445, 6755319.091], [393432.192, 6755201.166], [393499.674, 6755137.672], [392804.956, 6754916.935], [392784.356, 6754868.477], [392837.513, 6754808.972], [392911.994, 6754746.501], [392898.579, 6754723.321], [392909.335, 6754619.871], [392894.326, 6754544.207], [392626.171, 6754572.658], [392633.876, 6754644.76], [392298.898, 6754676.908], [392285.957, 6754555.794], [392068.652, 6754424.497], [391862.438, 6754304.598], [391393.184, 6754024.755], [391085.898, 6754545.974], [390773.765, 6754363.655], [390652.398, 6754291.249], [390462.576, 6754177.542], [389954.66, 6756589.599], [389932.835, 6759052.383], [389528.803, 6759402.566], [389469.76, 6759686.921], [388632.617, 6760052.054], [388622.544, 6760383.1], [387933.121, 6760633.36], [386869.298, 6760676.567], [386217.457, 6761482.469], [385835.098, 6761640.592], [385262.287, 6762564.381], [385098.962, 6763075.223], [385322.603, 6763429.44], [384072.316, 6765670.331], [381333.484, 6766861.317], [377464.363, 6767842.058], [376573.449, 6768481.881], [375364.277, 6768582.543], [372120.0, 6768283.183], [373622.287, 6765751.396], [370433.754, 6764534.306], [370423.499, 6763225.652], [370572.779, 6762868.62], [369539.986, 6762282.506], [370007.539, 6761492.703], [369564.239, 6761329.956], [369181.014, 6760658.764], [368679.045, 6760715.411], [368475.955, 6760081.983], [367687.857, 6760173.017], [367116.203, 6760512.116], [366736.616, 6759666.435], [366799.717, 6759307.69], [367503.535, 6759109.233], [367652.078, 6758512.357], [366329.932, 6758429.461], [365508.559, 6758301.136], [363979.842, 6757592.976], [358902.402, 6754764.647], [360872.685, 6752808.407], [360487.681, 6750983.497], [360222.186, 6750194.851], [360770.336, 6750587.964], [362146.552, 6749147.148], [362474.019, 6745986.047], [362909.454, 6744283.876], [361874.164, 6743090.354], [360157.093, 6741472.991], [359641.922, 6740059.325], [359047.913, 6738429.29], [358220.688, 6738194.418], [354953.791, 6742856.402], [353683.062, 6742872.428], [352835.902, 6743348.879], [351949.171, 6743162.278], [350475.333, 6742078.943], [348623.656, 6745110.032], [346415.819, 6746091.162], [343866.012, 6746061.067], [342138.491, 6743581.987], [341714.084, 6742382.547], [340562.372, 6743206.237], [340169.431, 6743358.368], [340080.868, 6743832.051], [338914.956, 6746324.414], [338496.084, 6746758.275], [339456.492, 6747028.044], [340193.714, 6747966.028], [336558.559, 6753133.98], [338597.429, 6758480.188], [337225.84, 6759347.877], [336675.024, 6759528.164], [335533.583, 6760426.929], [334998.396, 6760666.527], [335966.391, 6761762.66], [334481.015, 6762146.618], [331188.676, 6763909.853], [329878.266, 6763698.908], [329707.948, 6764708.23], [327809.259, 6767047.899], [328848.861, 6767215.166], [328892.023, 6768060.356], [329209.783, 6767689.513], [329509.862, 6767899.431], [329999.047, 6768325.406], [330425.841, 6768578.206], [331123.466, 6768906.122], [331332.852, 6769259.209], [330824.33, 6770250.531], [330716.749, 6770991.298], [328684.169, 6770304.607], [326711.239, 6769836.393], [327423.08, 6771011.58], [326977.811, 6771908.483], [327451.427, 6772682.17], [324952.559, 6773513.092], [326631.119, 6775112.115], [327649.481, 6775835.285], [328788.443, 6776117.178], [329803.666, 6775181.018], [333256.451, 6776441.871], [334136.878, 6777044.947], [336054.713, 6777952.0], [339807.335, 6779745.554], [339722.983, 6780009.856], [340421.126, 6780308.139], [340916.594, 6780243.915], [341227.645, 6779799.543], [341703.17, 6779586.654], [341840.976, 6780026.581], [344416.945, 6780513.189], [346053.799, 6779868.307], [346211.674, 6780137.222], [345843.492, 6780850.757], [345714.036, 6781569.922], [345989.535, 6782107.874], [348333.479, 6782214.452], [351222.859, 6782799.339], [351234.258, 6776888.192], [351711.493, 6776036.135], [352140.83, 6775493.546], [351455.406, 6774851.254], [351667.912, 6774016.752], [350284.571, 6773154.874], [349470.133, 6772439.127], [348551.165, 6770772.519], [346582.714, 6768720.031], [342342.615, 6763156.647], [338903.844, 6758348.256], [338136.876, 6756212.603], [338802.836, 6754986.797], [337483.452, 6752882.446], [338962.004, 6752655.968], [339606.821, 6753327.676], [340815.404, 6752567.78], [340605.235, 6752273.95], [341191.071, 6751632.691], [340829.817, 6751102.924], [341735.675, 6750423.562], [342279.866, 6751403.024], [342769.806, 6751107.825], [343492.958, 6752374.263], [344075.426, 6752196.943], [344278.748, 6752445.807], [344768.662, 6752225.652], [347456.32, 6757534.462], [349611.879, 6759430.875], [353289.231, 6762452.82], [355700.304, 6765028.076], [355777.443, 6764548.185], [356498.13, 6764971.174], [355961.526, 6765318.655], [358074.668, 6767622.313], [357880.956, 6768193.086], [358369.811, 6768777.962], [358769.802, 6768562.392], [359102.23, 6768841.637], [360696.419, 6769443.005], [361735.139, 6769613.619], [362477.607, 6769892.178], [363464.519, 6770127.675], [363812.284, 6769285.617], [365906.257, 6770073.084], [365951.083, 6769963.636], [366587.418, 6770249.433], [366554.459, 6770325.285], [366722.17, 6770393.682], [366759.006, 6770310.35], [367588.565, 6770679.341], [371407.353, 6771495.294], [371780.278, 6771929.979], [367244.66, 6774245.637], [367518.543, 6774986.519], [365287.203, 6776733.779], [364406.907, 6778726.385], [363170.404, 6780318.919], [362812.324, 6781131.992], [362124.024, 6781778.869], [360348.144, 6784328.793], [356536.436, 6788803.281], [356798.372, 6789561.845], [356190.501, 6790197.707], [356403.127, 6790220.911], [356114.566, 6790467.78], [355992.688, 6790406.172], [354812.746, 6791648.662], [355196.889, 6791753.407], [358381.447, 6792690.502], [359778.217, 6793401.43], [360463.855, 6793064.363], [360691.173, 6793790.577], [361210.46, 6794154.761], [361934.73, 6794151.115], [362193.528, 6794836.738], [363150.582, 6795503.691], [363620.37, 6795241.797], [364609.01, 6795991.131], [365648.235, 6796764.528], [367129.662, 6797700.019], [370046.948, 6799056.205], [370539.554, 6798309.679], [370837.117, 6797290.822], [371128.194, 6797603.855], [374904.465, 6795841.098], [375132.766, 6796062.161], [376058.471, 6796167.403], [376825.565, 6795291.737], [377133.035, 6795284.15], [377624.284, 6796051.948], [377707.129, 6796528.417], [377857.217, 6798183.037], [378562.461, 6800257.078], [379962.18, 6796077.706], [380451.314, 6794645.894], [382468.829, 6795140.558], [383440.364, 6795461.565], [384242.724, 6795249.091], [384455.903, 6795604.587], [386995.347, 6796629.09], [386365.641, 6797799.791], [388341.3, 6800758.633], [388683.629, 6799573.069]]]}}, {\\\"id\\\": \\\"220\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vehmaa\\\", \\\"elakelaisten_osuus\\\": 32.6, \\\"freshwarea\\\": 3.17, \\\"gml_id\\\": 1601100083, \\\"landarea\\\": 188.91, \\\"namefin\\\": \\\"Vehmaa\\\", \\\"nameswe\\\": \\\"Vehmaa\\\", \\\"natcode\\\": \\\"918\\\", \\\"seawarea\\\": 10.0, \\\"totalarea\\\": 202.08}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[213575.473, 6747419.725], [213657.514, 6747210.948], [213501.362, 6747120.968], [213515.125, 6746920.359], [213650.921, 6746743.286], [213729.152, 6746551.826], [213924.026, 6746317.088], [215130.754, 6745747.192], [215803.376, 6745241.134], [216176.659, 6745072.928], [216422.303, 6745002.674], [216583.581, 6744890.601], [216402.162, 6744543.511], [215894.062, 6741003.229], [216859.702, 6738332.962], [216814.916, 6737991.75], [216496.165, 6737664.367], [216853.485, 6736847.54], [216765.475, 6736758.745], [216351.445, 6737105.625], [216410.642, 6736154.744], [216332.378, 6735969.405], [215742.297, 6735258.537], [215775.222, 6734872.012], [216008.341, 6734373.009], [215809.634, 6733823.628], [215472.418, 6733801.782], [215391.116, 6733377.895], [215029.506, 6733170.96], [215236.813, 6732893.191], [215008.996, 6732401.98], [214397.682, 6732266.342], [214052.214, 6732507.26], [214102.614, 6731574.56], [214670.494, 6730954.385], [215307.883, 6728448.182], [214247.914, 6726375.842], [213145.727, 6727613.489], [212737.8, 6727749.691], [212305.854, 6728224.432], [212009.516, 6727740.584], [211684.089, 6727794.583], [211452.292, 6728395.149], [210756.33, 6729854.584], [210466.239, 6730688.182], [209938.592, 6731518.089], [208770.171, 6733002.452], [208420.917, 6732993.837], [208058.535, 6732702.467], [207573.149, 6731969.23], [207341.981, 6731695.551], [206333.833, 6731254.387], [205942.622, 6731267.194], [205359.178, 6731151.498], [204493.692, 6732162.114], [204078.315, 6732798.927], [204556.514, 6733083.118], [204495.941, 6733471.807], [203653.232, 6734623.52], [203578.276, 6735292.907], [203018.037, 6735285.936], [202684.719, 6736050.606], [201741.225, 6737571.959], [200822.084, 6737415.19], [199938.138, 6737671.952], [200965.809, 6738211.945], [201051.88, 6738427.542], [200340.777, 6739255.801], [201233.865, 6739029.961], [201870.467, 6739058.052], [201868.138, 6739063.936], [202358.026, 6739734.175], [202141.21, 6740108.554], [201592.465, 6740609.898], [201887.743, 6741113.826], [202936.527, 6741696.549], [203838.573, 6741823.349], [204088.896, 6743176.643], [203822.414, 6743605.416], [203587.887, 6743872.998], [202584.1, 6743724.792], [202429.691, 6744059.442], [202834.336, 6744620.644], [203656.075, 6745279.164], [203530.938, 6746118.53], [204342.435, 6746212.549], [205377.236, 6745914.507], [207717.072, 6745986.686], [208709.985, 6745669.383], [209566.051, 6745798.403], [210008.572, 6745307.388], [211382.33, 6745241.653], [212946.885, 6746527.537], [213134.531, 6747495.92], [213575.473, 6747419.725]]]}}, {\\\"id\\\": \\\"221\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kannus\\\", \\\"elakelaisten_osuus\\\": 27.7, \\\"freshwarea\\\": 2.32, \\\"gml_id\\\": 1601100373, \\\"landarea\\\": 468.33, \\\"namefin\\\": \\\"Kannus\\\", \\\"nameswe\\\": \\\"Kannus\\\", \\\"natcode\\\": \\\"217\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 470.65}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[357922.837, 7108191.109], [358152.182, 7101509.765], [358615.832, 7101379.648], [358757.66, 7100877.82], [358172.708, 7100943.512], [359428.975, 7098263.923], [361789.55, 7093196.538], [363590.022, 7092515.935], [363923.635, 7090761.419], [363657.325, 7090492.21], [364064.173, 7090031.491], [364807.017, 7086218.885], [364299.362, 7085819.176], [364193.249, 7086431.63], [362467.851, 7086740.214], [361931.506, 7087351.616], [361639.221, 7087219.811], [361427.181, 7086614.167], [361516.454, 7086328.559], [361578.607, 7085863.272], [361906.771, 7086111.432], [361911.194, 7085791.207], [360517.07, 7084883.562], [359757.705, 7085237.115], [358071.505, 7085882.339], [357570.565, 7085428.766], [353712.687, 7081317.911], [353566.919, 7081440.778], [353629.222, 7082033.34], [353235.56, 7081697.494], [352777.808, 7080986.915], [352756.71, 7080302.535], [351792.818, 7079300.908], [352255.918, 7078854.465], [351994.219, 7078215.353], [350991.082, 7077125.887], [352851.228, 7074739.614], [351298.905, 7073363.513], [348460.668, 7076663.102], [348151.837, 7076368.617], [347899.622, 7076631.985], [347491.633, 7076241.797], [347186.357, 7076561.748], [347593.95, 7076951.289], [347092.372, 7077477.563], [347453.496, 7077830.35], [345722.833, 7079136.526], [343890.377, 7083997.745], [343513.103, 7084068.043], [343287.438, 7083647.927], [342889.818, 7083232.395], [342630.684, 7083477.715], [343063.132, 7083912.23], [342728.908, 7084276.4], [340852.183, 7084735.25], [340875.272, 7085274.806], [340619.855, 7085291.715], [340332.938, 7084862.48], [338680.093, 7085265.266], [339129.948, 7085954.726], [339599.596, 7085347.763], [340146.743, 7086198.627], [340724.166, 7086625.602], [340967.292, 7086931.48], [340789.113, 7087241.848], [341035.531, 7087645.473], [341504.196, 7086839.53], [342213.142, 7086322.589], [341953.596, 7085999.462], [342487.806, 7085411.567], [343186.243, 7085914.396], [341834.648, 7088057.19], [341200.553, 7088270.046], [341279.515, 7088523.921], [340829.375, 7088871.932], [341429.26, 7089332.458], [340654.694, 7090099.457], [341289.323, 7090409.835], [341086.711, 7090745.133], [340880.961, 7090723.55], [340249.967, 7091530.636], [338959.641, 7090583.641], [339751.391, 7089178.49], [339449.961, 7088875.853], [339678.371, 7088317.923], [339318.322, 7088071.653], [339785.777, 7087628.6], [340330.033, 7087694.684], [340550.515, 7087411.457], [339803.384, 7087014.822], [339341.91, 7087500.534], [338699.614, 7087844.275], [339146.659, 7088293.018], [336524.154, 7091245.615], [337025.392, 7091877.223], [336700.556, 7092163.051], [336189.334, 7091923.442], [336259.608, 7092247.084], [337320.782, 7092973.289], [336776.151, 7093553.162], [336435.249, 7093521.597], [336265.842, 7093904.584], [336457.668, 7094098.858], [336970.342, 7093984.856], [337981.286, 7093198.735], [338300.288, 7092415.653], [338591.821, 7091928.309], [339185.469, 7091751.412], [340109.731, 7092592.844], [340168.184, 7092993.865], [340092.691, 7093574.718], [341095.197, 7094632.929], [341668.474, 7094609.544], [342492.297, 7095255.626], [340983.369, 7096912.228], [341379.792, 7097210.048], [340750.179, 7098151.94], [341216.124, 7098565.692], [340667.565, 7099231.498], [341059.993, 7099772.083], [340968.614, 7100252.631], [341244.656, 7100455.986], [341514.442, 7100046.079], [342455.49, 7100658.219], [343303.491, 7099402.644], [345493.163, 7097481.226], [345837.652, 7097742.54], [346100.967, 7097542.895], [347246.022, 7097840.208], [347329.118, 7097493.981], [347926.02, 7097101.808], [348401.203, 7097497.545], [348747.167, 7096776.962], [349596.708, 7097540.229], [350088.246, 7096884.497], [350445.907, 7097384.951], [349679.834, 7098155.892], [347489.105, 7102131.132], [347639.783, 7103011.512], [347814.096, 7103358.751], [348950.487, 7104019.02], [349161.24, 7103786.273], [349469.496, 7104250.621], [349675.818, 7104142.705], [349988.907, 7104616.133], [349471.835, 7105492.231], [349857.615, 7105766.341], [349725.008, 7105962.276], [349377.055, 7106023.879], [349324.437, 7107651.592], [350244.854, 7107263.18], [350327.223, 7107487.772], [349513.421, 7108116.752], [351822.165, 7109127.617], [352245.381, 7108887.683], [351894.437, 7107882.928], [352930.657, 7106827.52], [354268.007, 7109974.503], [354053.497, 7110689.86], [357922.837, 7108191.109]]]}}, {\\\"id\\\": \\\"222\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Laukaa\\\", \\\"elakelaisten_osuus\\\": 23.6, \\\"freshwarea\\\": 177.1, \\\"gml_id\\\": 1601100636, \\\"landarea\\\": 648.49, \\\"namefin\\\": \\\"Laukaa\\\", \\\"nameswe\\\": \\\"Laukaa\\\", \\\"natcode\\\": \\\"410\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 825.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[453070.658, 6933332.825], [455688.132, 6929005.09], [457583.072, 6927759.006], [459019.239, 6929150.248], [459736.887, 6929131.066], [461653.486, 6919843.63], [464391.666, 6919315.179], [462742.007, 6916077.386], [462645.142, 6912836.269], [461685.336, 6913619.441], [461340.86, 6914157.926], [460274.082, 6914401.089], [458473.226, 6914024.762], [463422.468, 6907808.206], [463953.07, 6905783.027], [464640.376, 6904232.779], [464910.795, 6904025.144], [463454.391, 6903480.855], [464582.659, 6898953.992], [465203.294, 6898115.267], [460722.967, 6899367.678], [461463.623, 6899858.708], [461462.321, 6900285.834], [458109.985, 6899226.834], [455003.944, 6900756.906], [454310.031, 6900162.943], [452117.548, 6895993.699], [452088.646, 6895557.833], [450467.029, 6894738.746], [449351.158, 6898238.893], [448968.172, 6899516.403], [449395.823, 6900374.128], [449843.14, 6900533.866], [450047.667, 6899427.557], [450226.087, 6899445.211], [450373.81, 6900752.455], [450699.889, 6900952.102], [450432.575, 6903630.717], [450731.448, 6904351.727], [447919.278, 6905724.057], [446169.47, 6907882.274], [444812.645, 6904869.585], [444246.875, 6904857.786], [444043.25, 6905817.797], [442590.902, 6905971.398], [441801.298, 6905061.403], [441960.183, 6907272.597], [441288.456, 6907181.23], [441000.779, 6906462.119], [440337.346, 6906732.706], [440648.112, 6907668.529], [438646.355, 6908785.546], [439337.765, 6911941.885], [440256.222, 6913634.115], [440099.168, 6915765.852], [438907.64, 6917192.168], [437240.565, 6918211.574], [435041.509, 6917101.281], [432587.987, 6919141.54], [432579.088, 6919546.976], [431565.59, 6920578.912], [430683.046, 6920845.638], [430079.284, 6921745.17], [429245.725, 6921917.289], [428581.185, 6922470.267], [426631.071, 6922750.799], [427911.435, 6925113.094], [429033.855, 6928087.498], [432631.692, 6929571.297], [432762.406, 6929615.249], [432665.479, 6928507.952], [433727.949, 6928362.717], [434144.671, 6929440.384], [434429.856, 6929372.413], [434562.321, 6930697.343], [438075.656, 6931958.391], [438445.782, 6931438.828], [439254.466, 6932289.51], [439606.707, 6932499.412], [440001.298, 6932913.64], [440218.794, 6932844.93], [440519.418, 6933115.059], [440306.457, 6933602.6], [440549.991, 6933710.778], [440598.415, 6934201.245], [440458.289, 6934406.695], [439931.88, 6934668.706], [439566.824, 6935255.567], [439670.735, 6935452.677], [442627.086, 6934814.064], [445077.706, 6933088.375], [445216.633, 6933094.676], [450476.004, 6939564.802], [453070.658, 6933332.825]]]}}, {\\\"id\\\": \\\"223\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Marttila\\\", \\\"elakelaisten_osuus\\\": 31.1, \\\"freshwarea\\\": 0.68, \\\"gml_id\\\": 1601100068, \\\"landarea\\\": 195.31, \\\"namefin\\\": \\\"Marttila\\\", \\\"nameswe\\\": \\\"Marttila\\\", \\\"natcode\\\": \\\"480\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 195.99}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[279891.021, 6737345.31], [279489.249, 6736716.908], [280095.469, 6735479.969], [280385.401, 6735343.259], [280528.084, 6735358.863], [280648.51, 6735218.298], [281743.874, 6733114.505], [282765.988, 6729331.794], [282834.698, 6728660.353], [282639.16, 6728569.001], [282470.624, 6728606.199], [282244.268, 6728544.737], [286367.884, 6721621.783], [284162.61, 6720130.499], [280775.528, 6719172.294], [280409.221, 6719052.252], [279242.214, 6718641.666], [278553.805, 6718485.836], [276912.768, 6718138.055], [275088.049, 6716860.691], [271984.469, 6715508.801], [271837.919, 6716510.001], [271142.545, 6717066.775], [269930.789, 6720671.631], [270007.356, 6724879.305], [270542.795, 6725157.323], [272164.76, 6726627.935], [272613.078, 6727609.378], [273291.59, 6728645.782], [273748.627, 6729710.521], [274215.896, 6731485.548], [275869.555, 6734847.528], [276052.037, 6735063.558], [276374.982, 6734617.458], [276698.181, 6734867.824], [276873.37, 6734578.648], [277853.579, 6735181.253], [278362.539, 6735526.23], [278545.328, 6735900.194], [279207.08, 6735868.581], [279467.508, 6736181.963], [279427.834, 6736548.923], [278874.926, 6736826.659], [277804.586, 6737161.342], [278463.501, 6737971.342], [279891.021, 6737345.31]]]}}, {\\\"id\\\": \\\"224\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lepp\\\\u00e4virta\\\", \\\"elakelaisten_osuus\\\": 36.1, \\\"freshwarea\\\": 383.65, \\\"gml_id\\\": 1601100654, \\\"landarea\\\": 1135.99, \\\"namefin\\\": \\\"Lepp\\\\u00e4virta\\\", \\\"nameswe\\\": \\\"Lepp\\\\u00e4virta\\\", \\\"natcode\\\": \\\"420\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1519.64}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[526541.828, 6951640.78], [527522.074, 6951584.262], [527976.615, 6952093.997], [529258.971, 6951490.784], [529784.299, 6951077.945], [530341.128, 6951204.118], [530558.604, 6951145.425], [534177.795, 6949838.285], [536160.9, 6949563.607], [536519.736, 6951176.19], [537886.938, 6950908.428], [539634.005, 6949222.664], [540025.445, 6949445.277], [540542.74, 6949125.708], [542135.585, 6949593.049], [542082.28, 6949943.487], [542245.428, 6950214.043], [542562.618, 6950078.638], [542661.584, 6949490.974], [543247.745, 6948906.933], [543431.353, 6949337.644], [543431.869, 6949912.11], [543667.842, 6950577.699], [544157.069, 6950405.606], [545046.494, 6949721.152], [548057.379, 6951814.67], [548670.243, 6951503.907], [548618.07, 6950665.846], [547969.928, 6950055.071], [547890.798, 6949450.723], [548027.018, 6949316.687], [548411.27, 6949641.746], [549042.107, 6949370.574], [549338.19, 6948945.149], [550561.651, 6948803.844], [550972.326, 6949414.074], [551430.062, 6949448.501], [551884.943, 6950042.347], [553010.086, 6949473.017], [553947.521, 6949459.983], [554547.38, 6949263.368], [554550.377, 6949552.751], [554996.87, 6949791.745], [555685.117, 6949654.02], [556389.934, 6949213.005], [559217.304, 6947530.609], [559728.694, 6948049.003], [561782.772, 6946876.794], [561828.165, 6945133.301], [562640.145, 6944053.744], [562588.58, 6942035.661], [563118.27, 6941441.406], [564615.658, 6942497.19], [566645.738, 6942582.472], [567848.657, 6941771.11], [568342.559, 6941609.079], [568973.509, 6940948.752], [569544.574, 6941512.128], [568817.062, 6942434.948], [568466.701, 6942787.703], [568505.783, 6943046.298], [568195.605, 6943594.374], [568655.317, 6943945.236], [569312.856, 6943248.523], [569835.846, 6943143.769], [570604.837, 6942913.569], [571429.803, 6943017.233], [571911.809, 6942867.597], [572286.96, 6942568.721], [573446.394, 6942245.162], [574673.507, 6940980.084], [575019.273, 6940139.827], [575358.681, 6940004.235], [576800.107, 6939426.604], [577185.189, 6939342.238], [577361.71, 6939329.881], [577549.886, 6939485.154], [577837.931, 6939293.517], [577878.327, 6939115.356], [578046.59, 6939076.341], [578342.396, 6938895.327], [578449.882, 6938903.444], [578916.722, 6938635.023], [579070.885, 6938659.453], [579429.532, 6938451.895], [578213.164, 6936202.403], [577981.997, 6936382.85], [577771.506, 6936644.535], [577503.907, 6936817.082], [577038.081, 6937298.294], [575941.414, 6938077.769], [575840.354, 6938208.815], [575379.092, 6937875.76], [575137.0, 6938055.423], [575078.427, 6938136.144], [574917.096, 6938201.413], [574754.328, 6938361.377], [574605.744, 6938456.268], [574240.591, 6938653.942], [573763.69, 6938370.244], [573677.769, 6938374.28], [573455.703, 6938524.714], [573142.752, 6938669.861], [572944.182, 6938888.491], [572767.548, 6938918.698], [572635.141, 6938960.494], [572527.751, 6938984.422], [572425.494, 6938908.405], [572356.447, 6938836.808], [572177.727, 6938967.96], [572066.842, 6939019.324], [571993.4, 6939024.957], [572001.767, 6938925.877], [572081.217, 6938802.04], [572162.442, 6938702.755], [572148.732, 6938609.699], [572273.248, 6938574.725], [572345.773, 6938436.081], [572425.188, 6938350.299], [572548.312, 6938304.954], [572667.089, 6938286.798], [572682.038, 6938203.199], [572624.804, 6938131.913], [572596.173, 6938012.153], [572546.353, 6937839.122], [572435.733, 6937810.866], [572417.683, 6937688.25], [572308.388, 6937695.511], [572237.13, 6937445.807], [571923.466, 6937236.227], [571945.135, 6937032.161], [571858.971, 6936881.921], [571852.276, 6936607.932], [572158.755, 6936117.034], [572091.485, 6935712.397], [571951.343, 6935520.274], [571921.057, 6935245.884], [572169.659, 6934884.532], [572311.148, 6934825.851], [572402.845, 6934680.152], [572458.369, 6934562.566], [572478.558, 6934474.964], [572402.52, 6934364.194], [572335.926, 6934292.977], [572346.537, 6934225.37], [572209.383, 6934224.023], [572075.126, 6934248.44], [572030.202, 6934219.24], [572097.209, 6934060.51], [572194.984, 6933883.494], [572122.683, 6933666.324], [571642.639, 6932514.148], [571670.567, 6932299.692], [571545.755, 6931923.154], [571462.751, 6931625.822], [571100.506, 6931646.532], [570979.455, 6931740.293], [570818.92, 6931781.176], [570629.097, 6931616.141], [570565.224, 6931483.994], [570591.814, 6931271.48], [570492.455, 6931148.229], [570451.739, 6930995.747], [570464.679, 6930882.45], [570595.853, 6930761.386], [570514.046, 6930645.851], [570710.498, 6930222.562], [571648.9, 6929467.7], [571519.08, 6929339.031], [571585.772, 6929288.23], [571636.953, 6929191.671], [571782.635, 6929041.878], [571816.148, 6928974.0], [571573.33, 6928089.771], [571430.088, 6927834.249], [571534.984, 6926948.731], [571276.911, 6926370.758], [571124.771, 6926378.47], [571015.538, 6926388.726], [570926.364, 6926381.693], [570832.118, 6926447.628], [570611.353, 6926492.36], [570269.052, 6926394.683], [570178.253, 6926327.882], [570039.335, 6926340.323], [569867.278, 6926302.758], [569451.296, 6926686.123], [569389.921, 6926816.37], [569216.091, 6926875.844], [569151.923, 6926995.144], [569067.623, 6927055.929], [568805.746, 6927203.383], [568598.244, 6927287.283], [568480.895, 6927382.181], [568387.576, 6927437.562], [568321.352, 6927502.208], [568215.092, 6927526.456], [567891.526, 6927324.554], [567590.848, 6927221.494], [567417.319, 6927192.105], [567206.457, 6927270.567], [567085.604, 6927291.184], [566936.213, 6927383.924], [566730.496, 6927527.464], [566706.605, 6927733.281], [566515.382, 6927810.249], [566253.688, 6927747.872], [566328.602, 6927551.317], [565834.031, 6926519.285], [565855.256, 6926346.535], [566057.174, 6926344.037], [566640.339, 6926008.377], [566668.428, 6925830.849], [566792.978, 6925766.875], [567100.693, 6925040.734], [566963.217, 6924081.759], [566396.946, 6924200.407], [565178.653, 6923319.371], [564581.189, 6922873.833], [564286.912, 6922039.77], [564482.334, 6921924.618], [564516.121, 6921775.878], [565246.927, 6921287.481], [565260.42, 6921526.684], [566102.532, 6920949.194], [566390.959, 6920779.097], [566573.9, 6918862.772], [566383.878, 6918822.188], [566392.975, 6918650.857], [566883.178, 6918221.934], [567386.648, 6917904.198], [567719.478, 6917741.784], [568448.011, 6917508.605], [568445.97, 6917327.957], [568582.394, 6917199.871], [568633.119, 6917069.12], [568741.379, 6917005.678], [568786.508, 6916896.133], [568755.548, 6916816.281], [568769.87, 6916720.292], [568653.264, 6916564.774], [568628.705, 6916407.014], [568335.101, 6916047.721], [568237.14, 6915873.895], [568288.721, 6915547.827], [568204.356, 6915326.516], [568261.305, 6914972.073], [568348.729, 6914936.706], [568456.174, 6914849.629], [568499.739, 6914766.046], [568272.532, 6914580.719], [568165.876, 6914414.586], [568071.215, 6914370.703], [566940.521, 6914042.925], [566296.786, 6914418.844], [565882.233, 6914493.212], [565534.457, 6914743.786], [565483.56, 6915280.818], [565033.242, 6915474.136], [564416.794, 6914919.158], [563391.216, 6913696.347], [562752.374, 6913990.524], [561593.244, 6914087.177], [561923.213, 6913467.43], [561066.571, 6911436.947], [560682.429, 6911007.818], [558713.326, 6911517.498], [558484.922, 6910887.152], [556859.981, 6910931.722], [556841.792, 6910219.911], [557164.263, 6909948.323], [556831.999, 6909747.202], [556345.095, 6909984.103], [555486.971, 6909679.472], [555377.839, 6909367.866], [555685.867, 6909118.649], [556076.113, 6908330.171], [555791.43, 6907881.851], [555575.634, 6906800.784], [555057.936, 6906337.272], [554662.424, 6906456.869], [553511.758, 6907524.679], [553083.402, 6907605.706], [552992.935, 6908072.659], [553229.42, 6908411.523], [552872.41, 6909055.554], [552855.615, 6909371.726], [552417.99, 6910039.552], [551598.256, 6911044.695], [551216.071, 6911453.77], [550907.595, 6911574.219], [549556.111, 6913088.206], [548157.994, 6915148.651], [548039.041, 6915540.391], [547624.706, 6916060.277], [547197.076, 6916903.133], [546619.411, 6916800.07], [546229.045, 6915719.353], [545783.078, 6915600.754], [545639.787, 6915695.071], [545048.655, 6915431.314], [544451.9, 6914920.217], [543888.13, 6914755.48], [543761.309, 6914397.342], [543410.485, 6914199.908], [543287.095, 6913707.173], [542777.24, 6913794.059], [541849.256, 6914916.699], [541199.529, 6914793.518], [539220.287, 6915339.175], [535793.999, 6916121.358], [535450.227, 6917662.627], [534186.333, 6918515.969], [533729.715, 6918891.212], [532537.482, 6921088.407], [531264.588, 6922342.786], [531049.478, 6922745.632], [529548.17, 6924226.704], [528926.419, 6924685.512], [528024.381, 6925178.704], [527296.975, 6925180.197], [525184.623, 6926292.926], [523960.7, 6926720.155], [523965.11, 6927219.139], [523779.644, 6927684.084], [523683.027, 6928184.647], [523252.599, 6928072.366], [522744.397, 6928290.694], [521425.623, 6929425.444], [521042.272, 6930382.162], [520950.92, 6930607.775], [521690.259, 6932035.488], [521635.817, 6932542.592], [521619.516, 6933588.272], [521887.801, 6934432.632], [522818.219, 6935240.503], [523082.214, 6934844.361], [523347.785, 6934684.431], [523733.988, 6934641.685], [523778.231, 6935014.489], [523664.549, 6935908.372], [523828.34, 6936255.031], [523816.996, 6936594.934], [524007.492, 6936950.448], [523888.269, 6937502.09], [523314.397, 6938169.424], [523696.037, 6938971.8], [523673.442, 6939635.034], [524158.736, 6939410.665], [524608.061, 6939855.642], [524658.496, 6940334.271], [524110.61, 6940760.22], [523709.612, 6941540.505], [523883.34, 6941914.699], [523608.593, 6942298.43], [523087.657, 6942680.115], [524824.082, 6943593.136], [524566.411, 6943953.275], [525150.002, 6944326.659], [526252.571, 6942264.281], [526958.313, 6942255.46], [527631.311, 6941977.096], [527685.082, 6942835.653], [527242.329, 6943820.045], [527041.768, 6944732.167], [526579.387, 6945559.877], [526437.466, 6946718.596], [526114.288, 6946795.875], [527092.078, 6948103.354], [526248.511, 6949378.245], [525976.019, 6949907.529], [524873.941, 6950930.701], [524700.587, 6951347.074], [524327.818, 6951288.858], [524002.868, 6951620.41], [524239.455, 6952340.11], [524147.445, 6952659.804], [524686.223, 6952902.41], [526541.828, 6951640.78]]]}}, {\\\"id\\\": \\\"225\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vimpeli\\\", \\\"elakelaisten_osuus\\\": 34.7, \\\"freshwarea\\\": 41.47, \\\"gml_id\\\": 1601100113, \\\"landarea\\\": 287.32, \\\"namefin\\\": \\\"Vimpeli\\\", \\\"nameswe\\\": \\\"Vimpeli\\\", \\\"natcode\\\": \\\"934\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 328.79}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[338931.935, 7023487.98], [339192.861, 7022471.395], [339932.107, 7021744.371], [340354.266, 7021134.252], [340075.609, 7020897.149], [339636.289, 7021625.98], [339300.81, 7021495.36], [338196.285, 7023565.7], [338420.421, 7024035.025], [338931.935, 7023487.98]]], [[[347313.906, 7019966.588], [350315.927, 7018971.81], [352036.619, 7017751.916], [354228.049, 7016186.627], [357842.967, 7012259.634], [360769.996, 7007607.465], [358715.103, 7006026.686], [358246.35, 7006753.93], [357888.673, 7006642.602], [357993.919, 7006043.396], [357692.672, 7005876.251], [357452.604, 7005219.8], [357113.298, 7005076.054], [356791.574, 7005410.779], [356270.784, 7005868.223], [356247.124, 7006082.67], [355741.162, 7006136.802], [355378.09, 7006296.539], [354806.052, 7006517.327], [354702.613, 7006452.437], [355257.33, 7005693.9], [354223.371, 7004639.464], [354506.926, 7004065.953], [354233.29, 7003938.872], [353758.517, 7004785.768], [353198.936, 7004095.729], [352385.537, 7005311.72], [345476.078, 7001572.78], [343230.733, 7000963.675], [343371.715, 7000717.489], [343000.19, 7000437.209], [342794.912, 7001249.763], [342903.79, 7001937.357], [341921.025, 7002025.352], [335875.889, 6998150.953], [334785.181, 6999966.11], [334678.182, 7000463.592], [335264.183, 7001363.35], [335410.104, 7002082.47], [334329.441, 7002293.676], [334038.634, 7005280.721], [333800.972, 7009399.192], [337230.074, 7012139.906], [337871.89, 7012394.774], [337726.641, 7012989.472], [338027.402, 7013372.125], [338431.362, 7012082.03], [338491.506, 7011913.481], [338193.65, 7011832.907], [337531.736, 7011662.751], [337721.864, 7011324.213], [338491.438, 7011378.194], [339100.152, 7011632.287], [339062.49, 7011993.112], [339613.604, 7012309.761], [341603.627, 7013056.263], [342199.079, 7013709.329], [342611.354, 7020368.441], [347313.906, 7019966.588]]]]}}, {\\\"id\\\": \\\"226\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Imatra\\\", \\\"elakelaisten_osuus\\\": 35.4, \\\"freshwarea\\\": 36.27, \\\"gml_id\\\": 1601100505, \\\"landarea\\\": 155.01, \\\"namefin\\\": \\\"Imatra\\\", \\\"nameswe\\\": \\\"Imatra\\\", \\\"natcode\\\": \\\"153\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 191.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[602873.162, 6795012.41], [602190.985, 6793377.261], [602024.201, 6792775.966], [602534.202, 6793268.213], [602890.257, 6793122.363], [603074.977, 6792576.039], [602761.39, 6791332.681], [603425.182, 6790904.384], [603912.652, 6790749.549], [603481.503, 6789663.155], [608339.867, 6785752.508], [608340.239, 6785752.209], [608698.741, 6785463.503], [606797.8, 6783769.1], [605322.7, 6781243.5], [605040.9, 6781249.7], [604651.9, 6780838.4], [603692.7, 6780551.9], [603094.6, 6780262.0], [602417.7, 6780380.7], [601406.6, 6780101.1], [600850.0, 6779328.1], [598002.6, 6777691.7], [597482.0, 6774886.2], [597291.9, 6774531.2], [597105.3, 6774433.6], [595843.841, 6772915.996], [595403.92, 6773455.568], [595403.549, 6773456.033], [595401.337, 6773458.807], [595398.993, 6773461.747], [594355.861, 6774632.132], [593521.7, 6775238.009], [593491.371, 6775896.875], [593864.9, 6778500.966], [593960.82, 6780049.722], [593512.214, 6780538.657], [593580.34, 6781216.756], [593460.731, 6781301.533], [593473.442, 6781667.009], [593034.525, 6781677.835], [593114.432, 6783257.421], [593325.685, 6783878.448], [592402.858, 6784794.21], [593001.083, 6785418.999], [591184.497, 6787114.201], [591620.753, 6787594.555], [589610.527, 6788584.563], [591358.837, 6789769.532], [591600.941, 6789522.577], [593682.619, 6791103.442], [594667.94, 6790521.272], [597225.264, 6790900.146], [597829.105, 6790248.147], [599204.259, 6792013.805], [599346.282, 6792701.622], [598466.211, 6794274.749], [598941.403, 6795109.88], [599669.874, 6794877.355], [602086.541, 6795477.001], [602392.775, 6795958.022], [602873.162, 6795012.41]]]}}, {\\\"id\\\": \\\"227\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Liperi\\\", \\\"elakelaisten_osuus\\\": 26.3, \\\"freshwarea\\\": 434.36, \\\"gml_id\\\": 1601100664, \\\"landarea\\\": 726.87, \\\"namefin\\\": \\\"Liperi\\\", \\\"nameswe\\\": \\\"Liperi\\\", \\\"natcode\\\": \\\"426\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1161.23}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[632526.216, 6956208.318], [633004.715, 6956179.635], [633328.553, 6955137.468], [633882.823, 6954437.921], [633768.984, 6953762.831], [633921.392, 6952275.187], [633263.961, 6952570.042], [633083.493, 6952264.975], [635129.845, 6949861.893], [633914.307, 6949327.718], [634656.762, 6948934.426], [635158.652, 6948626.609], [635266.73, 6947868.01], [635152.375, 6947112.966], [635384.477, 6945034.878], [639627.554, 6938670.9], [641593.149, 6935279.406], [642490.814, 6928299.034], [642761.947, 6922622.43], [642812.498, 6921563.802], [639845.445, 6920265.03], [636900.765, 6917058.113], [631158.664, 6922113.32], [630128.715, 6921234.043], [618711.242, 6919371.21], [617168.754, 6921653.408], [615224.056, 6922708.652], [614426.258, 6921976.043], [613965.636, 6921162.962], [613650.869, 6920896.829], [612976.709, 6921191.487], [612545.462, 6921224.958], [612342.095, 6921457.937], [611859.168, 6920812.636], [611682.145, 6920380.801], [612163.317, 6919551.828], [612018.017, 6919096.63], [609797.981, 6919374.967], [608644.615, 6920183.097], [608652.317, 6920556.323], [608308.424, 6920915.469], [608707.992, 6921218.783], [608999.319, 6921748.925], [608764.279, 6922297.35], [607489.861, 6923163.68], [607673.787, 6925423.802], [608499.062, 6929377.352], [609128.315, 6930366.664], [608565.739, 6931012.163], [607318.648, 6930724.794], [606721.362, 6930972.747], [605932.281, 6931813.756], [605077.388, 6932230.637], [604668.03, 6932130.793], [604696.647, 6932519.445], [604210.081, 6932528.472], [603864.674, 6932860.58], [603032.112, 6933153.57], [604859.862, 6933709.92], [604664.828, 6934744.868], [604538.268, 6934929.606], [603288.364, 6935459.366], [602964.52, 6935965.009], [601908.234, 6936562.687], [600944.254, 6937917.129], [599782.285, 6938646.182], [599881.115, 6939946.668], [600926.757, 6939420.77], [601758.534, 6939262.506], [602619.812, 6940145.648], [602800.538, 6940730.343], [603586.277, 6941691.054], [604896.158, 6942945.931], [604355.647, 6943606.017], [603856.715, 6945308.146], [601861.35, 6945771.208], [601449.984, 6947163.254], [604035.554, 6948693.454], [607082.934, 6950809.335], [606643.219, 6951331.979], [609488.34, 6953907.567], [610317.686, 6954319.058], [610552.663, 6954087.821], [612490.011, 6953213.914], [613061.524, 6952776.731], [616554.232, 6952200.822], [617121.13, 6952663.72], [617807.354, 6956270.871], [618781.253, 6955723.239], [620045.575, 6956577.095], [620468.738, 6956328.359], [620193.552, 6954880.559], [621949.579, 6953219.442], [622119.558, 6952518.701], [622811.278, 6952316.302], [623274.51, 6953463.228], [624056.558, 6954854.105], [625846.497, 6957002.854], [626489.648, 6957082.457], [628190.237, 6955640.353], [629067.796, 6955964.978], [629877.651, 6956490.429], [630083.791, 6956951.127], [630728.495, 6956813.916], [631929.051, 6957093.322], [632146.536, 6957206.258], [632526.216, 6956208.318]]]}}, {\\\"id\\\": \\\"228\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sotkamo\\\", \\\"elakelaisten_osuus\\\": 31.3, \\\"freshwarea\\\": 303.11, \\\"gml_id\\\": 1601100589, \\\"landarea\\\": 2648.75, \\\"namefin\\\": \\\"Sotkamo\\\", \\\"nameswe\\\": \\\"Sotkamo\\\", \\\"natcode\\\": \\\"765\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2951.86}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[573863.228, 7136271.869], [574890.416, 7135771.211], [575266.504, 7136253.712], [576649.893, 7135416.65], [577379.863, 7135706.702], [577543.14, 7134923.126], [577288.726, 7134613.587], [582013.795, 7132356.815], [584731.874, 7132752.879], [589092.886, 7125174.871], [589723.863, 7124929.668], [589345.478, 7124717.825], [590027.428, 7123473.763], [589989.355, 7122562.648], [591154.191, 7116821.509], [591144.782, 7116810.957], [590634.08, 7116890.584], [590442.923, 7116005.368], [591219.817, 7115153.553], [590941.634, 7115033.467], [591068.155, 7114344.688], [591713.184, 7114057.208], [591865.772, 7113307.775], [592803.503, 7113453.707], [592637.746, 7112520.824], [592028.043, 7112523.782], [592405.534, 7110691.572], [592138.647, 7109360.583], [592692.838, 7109133.027], [593103.257, 7108796.829], [592975.486, 7108248.541], [593697.541, 7108060.956], [597695.078, 7104371.5], [596758.145, 7103352.808], [600218.014, 7098870.308], [608266.617, 7094962.388], [606127.874, 7081796.115], [603849.594, 7081611.248], [597232.124, 7080895.685], [592736.498, 7080090.685], [584358.113, 7082197.697], [577260.491, 7083740.433], [575411.88, 7084178.079], [573709.114, 7084778.258], [573485.878, 7084307.211], [571733.856, 7083473.122], [572443.86, 7082072.139], [567078.911, 7070399.907], [563043.244, 7060737.936], [562153.475, 7061355.213], [560035.192, 7064500.252], [559290.42, 7065338.115], [557710.527, 7065881.285], [556534.357, 7066842.237], [552296.423, 7073096.138], [545558.664, 7080024.947], [546200.491, 7080614.814], [547972.198, 7081367.701], [547699.719, 7081761.896], [547877.971, 7081968.55], [548396.704, 7081549.733], [549433.7, 7081994.305], [550812.267, 7083205.238], [552290.472, 7086700.074], [550065.201, 7091804.043], [550754.07, 7092632.222], [550533.804, 7092866.261], [549996.022, 7092820.849], [549545.448, 7093159.871], [549070.841, 7094100.537], [544529.761, 7098514.44], [543899.289, 7098738.905], [543924.579, 7099278.777], [542355.255, 7101364.961], [541861.986, 7100836.36], [540603.218, 7102212.076], [541362.757, 7102693.164], [541485.243, 7104275.052], [541203.91, 7104370.085], [541519.641, 7104708.697], [540797.186, 7106430.151], [540893.592, 7108520.317], [540619.595, 7108924.811], [540474.289, 7110746.627], [540598.168, 7111253.311], [540224.542, 7112127.296], [541062.071, 7112769.966], [541399.527, 7113490.034], [541463.446, 7114383.989], [540772.896, 7114532.96], [539327.166, 7114548.571], [538745.374, 7115354.196], [540885.579, 7115020.886], [541020.419, 7115602.459], [543544.497, 7121956.662], [545289.781, 7123433.089], [545936.621, 7123063.868], [546543.723, 7124505.314], [548240.559, 7123587.603], [548409.694, 7123909.508], [547515.046, 7124905.185], [549871.938, 7126737.187], [552932.762, 7130542.862], [553757.794, 7129844.893], [553675.614, 7130689.24], [556015.922, 7131849.309], [554778.497, 7132843.339], [555109.2, 7133409.367], [556376.22, 7133485.754], [558444.19, 7134306.008], [558687.687, 7135470.306], [559907.893, 7135637.459], [562377.712, 7134585.701], [564702.16, 7134968.727], [566153.25, 7137942.105], [570594.488, 7139642.95], [573863.228, 7136271.869]]]}}, {\\\"id\\\": \\\"229\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Suonenjoki\\\", \\\"elakelaisten_osuus\\\": 38.0, \\\"freshwarea\\\": 148.79, \\\"gml_id\\\": 1601100559, \\\"landarea\\\": 713.55, \\\"namefin\\\": \\\"Suonenjoki\\\", \\\"nameswe\\\": \\\"Suonenjoki\\\", \\\"natcode\\\": \\\"778\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 862.34}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[498498.863, 6965137.158], [499042.144, 6962060.719], [498822.701, 6960909.122], [500611.689, 6958409.838], [501019.223, 6958589.69], [501545.781, 6958464.222], [502127.962, 6957720.401], [502625.302, 6957532.751], [504189.07, 6958807.264], [503796.409, 6959137.826], [505977.348, 6959220.208], [506211.11, 6958768.485], [506605.71, 6958363.248], [507108.066, 6958063.131], [507831.691, 6957898.008], [507904.057, 6957588.078], [508366.346, 6957233.224], [508946.211, 6957137.913], [509236.082, 6956930.435], [509358.502, 6956696.132], [509768.685, 6956417.911], [510350.426, 6955832.742], [510514.026, 6955395.801], [511097.958, 6954912.37], [511430.017, 6955067.808], [514109.286, 6952466.858], [516429.57, 6953754.81], [516823.147, 6953596.338], [517430.696, 6953497.248], [517848.327, 6953592.008], [518488.637, 6953277.532], [518772.532, 6952814.493], [519473.588, 6952198.684], [520488.591, 6951967.626], [520978.755, 6952315.137], [521346.581, 6952257.896], [521802.189, 6952112.923], [521845.822, 6952905.912], [522406.266, 6952234.557], [522959.804, 6953330.837], [523295.83, 6953505.962], [523396.204, 6954278.834], [524395.833, 6954055.542], [524686.223, 6952902.41], [524147.445, 6952659.804], [524239.455, 6952340.11], [524002.868, 6951620.41], [524327.818, 6951288.858], [524700.587, 6951347.074], [524873.941, 6950930.701], [525976.019, 6949907.529], [526248.511, 6949378.245], [527092.078, 6948103.354], [526114.288, 6946795.875], [526437.466, 6946718.596], [526579.387, 6945559.877], [527041.768, 6944732.167], [527242.329, 6943820.045], [527685.082, 6942835.653], [527631.311, 6941977.096], [526958.313, 6942255.46], [526252.571, 6942264.281], [525150.002, 6944326.659], [524566.411, 6943953.275], [524824.082, 6943593.136], [523087.657, 6942680.115], [523608.593, 6942298.43], [523883.34, 6941914.699], [523709.612, 6941540.505], [524110.61, 6940760.22], [524658.496, 6940334.271], [524608.061, 6939855.642], [524158.736, 6939410.665], [523673.442, 6939635.034], [523696.037, 6938971.8], [523314.397, 6938169.424], [523888.269, 6937502.09], [524007.492, 6936950.448], [523816.996, 6936594.934], [523828.34, 6936255.031], [523664.549, 6935908.372], [523778.231, 6935014.489], [523733.988, 6934641.685], [523347.785, 6934684.431], [523082.214, 6934844.361], [522818.219, 6935240.503], [521887.801, 6934432.632], [521619.516, 6933588.272], [521635.817, 6932542.592], [521690.259, 6932035.488], [520950.92, 6930607.775], [521042.272, 6930382.162], [520244.811, 6930269.431], [519861.123, 6930550.852], [519788.018, 6931533.146], [518710.738, 6933279.584], [518411.365, 6933201.719], [517734.413, 6932478.908], [519126.314, 6931399.871], [518821.659, 6930779.302], [517892.708, 6930872.506], [518672.908, 6929515.493], [517400.241, 6929606.302], [515592.643, 6928346.987], [514947.394, 6925889.388], [514639.03, 6925702.548], [514245.671, 6926063.019], [513812.093, 6925769.997], [512944.067, 6927035.395], [512923.607, 6927659.298], [511594.191, 6927678.736], [511379.634, 6925864.301], [510650.231, 6925616.404], [510460.615, 6926185.998], [511238.256, 6927096.684], [510883.215, 6927539.844], [509765.393, 6926570.933], [510084.372, 6924990.589], [508598.941, 6925350.611], [509136.198, 6925615.888], [508637.45, 6926831.531], [508775.791, 6927236.868], [508405.24, 6927936.581], [507085.365, 6929148.583], [506873.147, 6929597.4], [505874.645, 6930580.097], [506102.983, 6929649.511], [505433.734, 6929230.339], [505265.032, 6928189.748], [504838.293, 6928218.713], [504558.14, 6928458.629], [504195.908, 6928607.103], [503516.586, 6927577.799], [503160.479, 6926689.347], [499852.823, 6926485.709], [499683.787, 6927049.08], [499270.352, 6927500.495], [498925.389, 6927604.051], [498480.313, 6928662.911], [497537.859, 6927817.613], [497483.479, 6927158.521], [498311.083, 6925438.814], [498547.465, 6924789.184], [498017.041, 6924411.339], [498105.643, 6923797.081], [497493.305, 6923492.7], [497281.738, 6924110.156], [496897.785, 6924577.23], [496713.41, 6925071.557], [495120.148, 6926070.444], [494015.685, 6927392.702], [493788.071, 6928274.445], [494074.44, 6928880.184], [493973.591, 6929319.901], [495156.045, 6931941.087], [495106.377, 6932403.011], [494172.989, 6932857.494], [493681.359, 6932700.77], [493072.402, 6933491.134], [493044.599, 6934152.335], [493516.921, 6934440.989], [494102.727, 6934489.215], [494515.929, 6934883.157], [494498.431, 6935222.205], [495172.04, 6935488.876], [495488.747, 6936168.862], [492656.622, 6938539.237], [491820.766, 6938390.351], [491367.852, 6938855.224], [491093.104, 6939556.034], [492747.299, 6939534.931], [495427.895, 6939324.525], [495248.626, 6940060.827], [495221.475, 6940518.094], [498033.519, 6939522.216], [499678.349, 6941395.264], [499490.447, 6941583.481], [498291.888, 6940363.157], [497946.484, 6940443.878], [496500.686, 6942023.564], [495825.803, 6942288.334], [495743.735, 6943034.061], [495888.262, 6943862.205], [497194.281, 6944914.636], [496097.619, 6946471.076], [496150.42, 6949401.785], [495226.642, 6953616.546], [495739.647, 6956179.048], [491950.636, 6963827.477], [493949.142, 6965621.232], [493664.883, 6966072.759], [494074.153, 6967275.994], [494799.063, 6967856.067], [494976.216, 6967893.646], [495364.254, 6968874.07], [498498.863, 6965137.158]]]}}, {\\\"id\\\": \\\"230\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Isojoki\\\", \\\"elakelaisten_osuus\\\": 37.6, \\\"freshwarea\\\": 5.05, \\\"gml_id\\\": 1601100249, \\\"landarea\\\": 642.38, \\\"namefin\\\": \\\"Isojoki\\\", \\\"nameswe\\\": \\\"Stor\\\\u00e5\\\", \\\"natcode\\\": \\\"151\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 647.43}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[236439.099, 6913273.385], [236769.076, 6912952.904], [236941.459, 6913476.473], [237376.971, 6913468.796], [237858.422, 6912305.976], [248728.146, 6900520.771], [249539.259, 6894974.367], [244232.829, 6887379.314], [236801.933, 6882124.138], [225346.628, 6887071.612], [222946.328, 6887833.806], [220077.099, 6887919.971], [219279.874, 6890304.411], [219915.284, 6891632.822], [220598.229, 6892319.177], [219644.377, 6896875.884], [220672.425, 6898182.983], [220952.133, 6902377.43], [222290.181, 6901278.795], [222639.866, 6901935.83], [223144.816, 6902013.071], [223300.344, 6901573.528], [222826.449, 6900965.132], [223708.692, 6901517.61], [224367.82, 6904027.344], [222606.082, 6906388.024], [225119.667, 6909119.52], [228225.214, 6909312.401], [228071.129, 6909811.776], [228152.922, 6909981.352], [228413.249, 6909859.476], [231256.322, 6910737.189], [232038.375, 6916571.412], [234558.9, 6917838.143], [236439.099, 6913273.385]]]}}, {\\\"id\\\": \\\"231\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Posio\\\", \\\"elakelaisten_osuus\\\": 46.4, \\\"freshwarea\\\": 505.11, \\\"gml_id\\\": 1601100311, \\\"landarea\\\": 3039.79, \\\"namefin\\\": \\\"Posio\\\", \\\"nameswe\\\": \\\"Posio\\\", \\\"natcode\\\": \\\"614\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 3544.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[575470.26, 7375090.259], [574331.064, 7366929.423], [572160.937, 7366924.199], [571438.651, 7366393.298], [570870.689, 7366761.25], [571437.378, 7365418.103], [570785.355, 7365496.054], [570390.764, 7363396.727], [569229.505, 7363445.875], [569234.348, 7359966.517], [569530.172, 7359634.081], [569540.433, 7359062.803], [569244.328, 7358689.635], [569247.407, 7357833.435], [568892.525, 7357831.516], [571229.728, 7351250.243], [571535.284, 7350680.086], [571960.888, 7350559.798], [572146.932, 7350323.093], [573067.55, 7350579.59], [573597.504, 7350603.19], [573711.593, 7350460.738], [573861.763, 7348941.833], [574700.121, 7348468.029], [575614.245, 7350085.478], [575839.838, 7350162.04], [576112.055, 7350105.288], [576530.621, 7349806.88], [576862.927, 7350073.309], [577797.851, 7349747.178], [578610.673, 7349374.686], [578214.194, 7348484.636], [578638.134, 7348267.889], [578947.276, 7347711.139], [579237.101, 7347480.28], [579072.003, 7347315.891], [579008.16, 7346919.562], [579332.683, 7346700.37], [579100.633, 7346573.078], [578970.388, 7346112.395], [578258.483, 7345952.285], [578099.634, 7345625.572], [578181.946, 7345364.513], [578483.531, 7345380.664], [578752.636, 7344989.463], [578139.801, 7343814.066], [579673.784, 7341606.08], [577448.01, 7338846.217], [577450.11, 7336119.469], [576184.002, 7335152.04], [572435.541, 7335122.877], [573539.548, 7330944.378], [574439.627, 7330457.992], [573532.923, 7328766.401], [576820.432, 7327831.078], [576732.305, 7327453.406], [577116.841, 7326887.01], [577806.06, 7326846.825], [578110.252, 7326401.46], [577653.363, 7326099.331], [577854.484, 7325798.504], [578365.892, 7326070.471], [579010.934, 7326741.97], [579928.398, 7325866.071], [578514.582, 7325167.317], [578471.813, 7324507.86], [578712.348, 7323897.549], [579271.839, 7323659.216], [579288.478, 7321216.143], [577101.67, 7321197.137], [575757.955, 7320885.089], [575008.83, 7319436.645], [572544.29, 7319425.845], [572533.614, 7320747.032], [570051.364, 7321770.669], [570054.96, 7321158.727], [567302.553, 7321138.093], [567313.995, 7319556.826], [564099.99, 7319104.59], [564067.37, 7320466.929], [564214.141, 7320793.314], [564846.617, 7321069.7], [565133.33, 7321503.265], [564564.407, 7321678.262], [564215.227, 7321200.5], [563017.365, 7321040.931], [562291.438, 7320821.39], [562216.441, 7320417.873], [562661.828, 7320437.51], [563104.105, 7320196.602], [563267.106, 7318133.286], [563274.71, 7317108.761], [562847.366, 7317386.655], [562374.076, 7317389.286], [562174.792, 7316979.046], [562371.144, 7316158.058], [565167.663, 7314687.818], [566384.16, 7311625.57], [568767.928, 7308451.269], [569086.753, 7303600.565], [566988.618, 7303463.983], [555960.827, 7298229.095], [553138.504, 7299001.446], [552273.747, 7299756.158], [541533.649, 7300441.959], [541550.167, 7300814.594], [541259.366, 7300777.466], [541109.819, 7300461.152], [534776.431, 7300873.374], [535060.569, 7302026.853], [535817.024, 7301806.136], [535884.599, 7302094.746], [535048.175, 7302408.077], [531660.85, 7309046.605], [529768.18, 7315646.993], [529401.652, 7315434.262], [529119.709, 7315457.893], [528977.868, 7315272.473], [528659.807, 7315210.376], [528369.989, 7315100.51], [528226.506, 7315178.631], [528087.124, 7314773.819], [527771.011, 7314801.401], [527685.955, 7315041.923], [527138.055, 7314986.615], [527137.978, 7314815.974], [527046.824, 7314623.068], [526884.518, 7314566.414], [526653.689, 7314223.002], [526456.432, 7313746.442], [526180.542, 7313480.006], [526133.236, 7313263.097], [525842.687, 7312955.607], [525712.282, 7312386.469], [525845.757, 7311895.595], [525605.31, 7311830.115], [525384.513, 7311736.735], [525075.979, 7311856.245], [524669.036, 7311650.939], [524396.557, 7311674.753], [523951.184, 7311273.286], [522617.133, 7312376.021], [521912.154, 7312566.625], [520347.462, 7312026.017], [518845.212, 7312611.05], [519122.505, 7312708.644], [519226.394, 7312959.252], [519132.056, 7313143.161], [518748.091, 7313463.748], [520795.847, 7316637.623], [521109.68, 7327849.841], [521688.753, 7328153.164], [522150.728, 7327978.892], [522382.534, 7328227.435], [521511.456, 7328498.387], [521120.404, 7328251.817], [521208.571, 7331556.466], [512311.532, 7335857.737], [511583.982, 7341846.137], [511710.473, 7342032.767], [514687.481, 7346415.994], [514039.777, 7347093.346], [511734.922, 7348523.66], [512214.036, 7350805.994], [510487.383, 7354769.37], [511192.147, 7356938.071], [518606.762, 7352192.601], [527167.39, 7363214.051], [526623.087, 7364728.303], [535378.621, 7368308.192], [543832.875, 7367003.429], [550800.376, 7368510.817], [554638.626, 7367022.047], [556095.343, 7369113.973], [557279.895, 7369030.03], [557523.268, 7369535.918], [557169.844, 7369520.859], [556809.918, 7369777.13], [556769.304, 7370078.025], [557287.632, 7370831.338], [559803.307, 7373462.411], [560741.431, 7374437.0], [562149.926, 7375474.395], [575470.26, 7375090.259]]]}}, {\\\"id\\\": \\\"232\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ii\\\", \\\"elakelaisten_osuus\\\": 25.7, \\\"freshwarea\\\": 52.33, \\\"gml_id\\\": 1601100223, \\\"landarea\\\": 1614.1, \\\"namefin\\\": \\\"Ii\\\", \\\"nameswe\\\": \\\"Ii\\\", \\\"natcode\\\": \\\"139\\\", \\\"seawarea\\\": 1206.0, \\\"totalarea\\\": 2872.43}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[456431.141, 7248705.838], [456766.802, 7248138.04], [457360.943, 7247970.644], [459258.555, 7248453.677], [460015.237, 7247820.89], [460520.949, 7242121.548], [453395.501, 7240901.587], [453304.001, 7241823.144], [453168.835, 7243281.572], [452976.425, 7245448.545], [452673.328, 7248026.658], [453721.83, 7248064.032], [454679.509, 7248187.745], [454676.239, 7248470.344], [455867.482, 7248770.67], [456431.141, 7248705.838]]], [[[461385.917, 7289578.81], [461012.297, 7270595.634], [454689.127, 7270616.058], [454541.099, 7271357.86], [454068.902, 7271714.991], [449250.194, 7271301.868], [449211.357, 7271229.371], [444079.256, 7270323.677], [436755.625, 7252505.571], [437101.716, 7251320.914], [435486.112, 7248251.902], [437741.614, 7246042.049], [437676.614, 7245973.074], [437839.755, 7245814.967], [437771.771, 7245716.043], [437671.586, 7245566.51], [437920.405, 7245059.052], [438179.146, 7245226.887], [438277.568, 7245382.323], [438300.916, 7245358.721], [438365.097, 7245262.39], [438405.563, 7245253.26], [438413.847, 7245251.836], [438409.377, 7245186.164], [438482.158, 7244984.02], [438517.183, 7244906.351], [438575.456, 7244836.812], [438652.376, 7244722.096], [438729.611, 7244554.542], [438739.176, 7244482.295], [438731.087, 7244419.7], [438707.046, 7244374.257], [438645.227, 7244328.606], [438623.521, 7244296.747], [438623.807, 7244275.156], [438609.72, 7244255.41], [438585.33, 7244237.576], [438537.338, 7244178.42], [438505.248, 7243997.049], [438466.979, 7243905.113], [438394.456, 7243776.943], [438379.751, 7243720.938], [438333.785, 7243618.452], [438317.404, 7243506.46], [438327.857, 7243406.756], [438306.317, 7243381.242], [438300.685, 7243362.365], [438342.633, 7243318.158], [438348.187, 7243283.952], [438371.926, 7243249.069], [438412.783, 7243220.777], [438438.448, 7243214.646], [438496.034, 7243224.357], [438570.546, 7243211.932], [438653.168, 7243155.234], [438711.489, 7243100.556], [438742.559, 7243073.685], [438813.323, 7243034.883], [438935.47, 7242985.146], [438987.0, 7242907.518], [439029.194, 7242821.531], [439048.618, 7242712.863], [439018.324, 7242597.39], [439016.699, 7242546.718], [438992.607, 7242454.969], [438940.64, 7242336.284], [438902.487, 7242306.637], [438885.853, 7242275.042], [438860.38, 7242281.774], [438841.317, 7242268.741], [438831.065, 7242271.482], [438795.08, 7242251.049], [438771.774, 7242233.316], [438716.179, 7242148.231], [438698.776, 7242081.44], [438713.384, 7242069.44], [438688.957, 7242030.326], [438668.934, 7241974.682], [438618.006, 7241923.28], [438590.359, 7241923.095], [438501.841, 7241891.876], [438448.365, 7241898.253], [438375.29, 7241929.107], [438321.253, 7241969.836], [438245.121, 7242051.644], [438246.435, 7242068.834], [438259.1, 7242072.29], [438259.446, 7242096.623], [438209.38, 7242209.675], [438187.594, 7242234.837], [438218.289, 7242252.044], [438219.247, 7242266.379], [438181.096, 7242328.807], [438139.462, 7242364.957], [438095.049, 7242380.402], [438051.624, 7242369.948], [438015.636, 7242377.294], [437945.408, 7242368.672], [437853.772, 7242159.216], [437899.732, 7242121.208], [437911.582, 7242142.927], [437940.698, 7242149.533], [437970.055, 7242134.017], [438014.618, 7242083.213], [438025.059, 7242070.697], [438041.018, 7242050.956], [438085.811, 7241997.501], [438137.337, 7241950.552], [438179.275, 7241895.156], [438163.656, 7241886.246], [438096.342, 7241845.769], [438220.193, 7241641.175], [438232.294, 7241621.352], [438235.084, 7241616.967], [438262.376, 7241581.211], [438564.399, 7241190.253], [438639.057, 7241094.811], [438728.124, 7241042.393], [438997.292, 7240946.528], [439741.231, 7240683.145], [439927.722, 7240760.033], [439966.074, 7240708.313], [440551.4, 7240899.664], [440717.382, 7240686.751], [440766.081, 7240624.079], [440803.616, 7240575.772], [440764.104, 7240513.239], [440531.821, 7240143.947], [440657.888, 7239991.759], [440791.706, 7239830.216], [440623.165, 7239699.402], [440642.577, 7239617.378], [440711.04, 7239518.275], [440744.562, 7239469.75], [440920.634, 7239214.877], [441023.528, 7239065.933], [440950.474, 7239000.968], [440816.204, 7238878.92], [440645.284, 7238729.566], [440492.43, 7238600.925], [440356.408, 7238482.085], [440288.527, 7238422.652], [440234.758, 7238375.142], [440096.977, 7238253.406], [440053.065, 7238214.597], [440010.195, 7238177.315], [439168.31, 7237446.069], [439062.289, 7237353.2], [439046.893, 7237340.495], [438945.178, 7237251.149], [438864.25, 7237179.957], [438602.398, 7236954.301], [438526.001, 7236889.247], [438504.662, 7236870.284], [438231.937, 7236636.213], [437686.982, 7236167.735], [437413.501, 7235933.846], [437389.747, 7235913.698], [437355.76, 7235859.602], [437289.106, 7235928.857], [436859.98, 7236244.509], [436760.946, 7236344.701], [436542.438, 7236683.949], [436485.022, 7236687.947], [436429.496, 7236714.907], [436366.553, 7236779.105], [436182.707, 7236886.15], [435988.959, 7237000.373], [435881.213, 7237005.15], [435729.949, 7237024.836], [435687.613, 7237070.645], [435624.928, 7237060.673], [435478.632, 7237051.633], [435351.734, 7237066.104], [435038.837, 7237101.383], [435019.752, 7237103.647], [434970.836, 7237111.278], [434912.957, 7237120.241], [434800.38, 7237130.895], [434752.608, 7237136.649], [434646.26, 7237147.916], [434602.02, 7237152.753], [434497.404, 7237165.236], [434438.188, 7237171.559], [434320.768, 7237185.676], [433608.298, 7237271.33], [433402.186, 7237296.874], [433400.201, 7237297.111], [432420.399, 7237414.132], [432388.139, 7237418.018], [430615.373, 7237222.465], [422774.725, 7238065.007], [422030.849, 7238385.984], [421537.328, 7238769.747], [420987.788, 7238750.265], [418420.272, 7237409.324], [417042.583, 7235995.332], [414822.784, 7236281.805], [414985.888, 7237798.666], [388075.268, 7234147.593], [366270.584, 7238420.621], [367320.513, 7244045.46], [388320.874, 7252065.826], [411715.851, 7275474.38], [412128.027, 7275809.87], [413803.717, 7277425.091], [415427.335, 7280561.571], [416607.922, 7281848.708], [416237.483, 7282185.395], [416709.711, 7282704.962], [417081.14, 7282367.373], [418662.272, 7284085.111], [422247.895, 7285846.901], [424782.152, 7290505.51], [427779.649, 7292121.84], [444538.768, 7291543.363], [451429.652, 7295129.029], [461616.22, 7300363.885], [461385.917, 7289578.81]], [[435609.141, 7249252.604], [432819.367, 7248335.924], [432575.526, 7248425.641], [432651.55, 7249188.537], [435596.671, 7249434.605], [435609.141, 7249252.604]]]]}}, {\\\"id\\\": \\\"233\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siikalatva\\\", \\\"elakelaisten_osuus\\\": 36.5, \\\"freshwarea\\\": 56.24, \\\"gml_id\\\": 1601100475, \\\"landarea\\\": 2172.94, \\\"namefin\\\": \\\"Siikalatva\\\", \\\"nameswe\\\": \\\"Siikalatva\\\", \\\"natcode\\\": \\\"791\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2229.18}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[431897.75, 7166463.678], [433830.793, 7165105.402], [436872.249, 7159608.408], [437187.63, 7159422.794], [437351.51, 7159064.997], [437619.716, 7158849.768], [437444.732, 7158312.799], [437715.304, 7158066.377], [438848.783, 7156006.923], [439513.348, 7155303.517], [441525.511, 7158017.46], [440713.661, 7158644.107], [441155.496, 7159062.516], [441366.398, 7158767.705], [441531.592, 7159066.216], [442180.607, 7158739.112], [442833.377, 7158835.212], [443722.135, 7157287.389], [444551.397, 7156468.143], [445466.2, 7155537.221], [448539.905, 7159514.905], [462321.252, 7148806.18], [464549.54, 7149280.512], [465921.867, 7150589.585], [470346.026, 7146556.245], [470428.802, 7146743.419], [471005.674, 7146716.238], [471300.753, 7146219.942], [471090.061, 7146091.625], [471216.641, 7145753.814], [472331.753, 7144775.921], [473571.159, 7142131.963], [474005.915, 7141702.54], [474170.552, 7141390.171], [474523.559, 7141776.647], [475171.27, 7141615.502], [475142.34, 7141336.517], [474855.46, 7141021.005], [475221.592, 7140713.302], [474941.826, 7140352.839], [474369.442, 7140447.545], [474857.833, 7139408.769], [473960.568, 7139980.959], [473902.142, 7139783.962], [474981.475, 7138853.12], [474331.89, 7138312.392], [474077.563, 7137821.364], [474285.366, 7137457.117], [474009.195, 7136904.425], [474006.16, 7136407.42], [474598.1, 7136302.976], [476390.37, 7134481.122], [476250.995, 7134149.805], [476685.594, 7133743.277], [476848.56, 7133967.86], [478041.878, 7132753.291], [478854.47, 7132719.476], [479191.848, 7132326.451], [479783.224, 7132625.835], [484564.683, 7132279.761], [484803.835, 7131970.837], [484732.678, 7127848.676], [485377.889, 7127442.435], [485439.378, 7127130.732], [485742.096, 7126738.46], [487801.728, 7126527.084], [488735.814, 7126583.419], [488879.423, 7121106.639], [481937.494, 7120917.542], [481732.525, 7120844.809], [481096.769, 7121373.334], [480531.657, 7121458.239], [477378.208, 7123383.445], [475887.583, 7123846.571], [475414.875, 7124295.547], [475520.763, 7123818.54], [473851.02, 7121949.739], [472717.098, 7122122.251], [472541.801, 7122573.704], [470766.991, 7122659.592], [471210.411, 7120928.45], [469746.464, 7118503.049], [468436.491, 7118787.282], [468067.184, 7119358.168], [467072.306, 7119547.364], [466891.397, 7118076.872], [466866.573, 7116670.354], [467413.628, 7116667.56], [467284.139, 7116091.394], [466824.134, 7116286.293], [465587.685, 7115107.992], [465143.484, 7115582.975], [464524.99, 7114987.366], [464796.352, 7114711.337], [463849.222, 7114340.267], [463136.107, 7113349.386], [462978.733, 7113696.152], [462371.775, 7113747.919], [461196.808, 7114278.52], [460703.24, 7114770.789], [460623.104, 7114694.672], [460425.325, 7113956.714], [459727.888, 7113869.983], [459503.027, 7113434.758], [458575.178, 7112547.562], [458350.203, 7112731.834], [458151.605, 7112800.336], [458173.858, 7112673.987], [458323.398, 7112477.554], [458251.155, 7112404.776], [458393.326, 7112116.86], [459232.465, 7111716.807], [459073.156, 7111452.185], [458548.929, 7111835.362], [458019.445, 7111478.449], [458360.122, 7111247.228], [458204.007, 7111070.203], [458334.299, 7110772.532], [458364.518, 7110545.544], [458517.547, 7110208.615], [458712.797, 7110275.552], [458791.869, 7109971.884], [458946.896, 7109794.926], [459727.113, 7109783.712], [459880.147, 7109149.685], [460454.726, 7108612.814], [460936.279, 7108517.227], [461272.939, 7108896.301], [461458.253, 7108689.03], [461342.089, 7108387.323], [462081.221, 7107716.527], [461929.93, 7107409.221], [462313.422, 7107343.105], [462257.374, 7106904.143], [462035.722, 7107144.745], [460602.068, 7105994.877], [461137.195, 7103347.083], [461403.467, 7103274.88], [461226.591, 7102643.67], [462269.566, 7103148.013], [462313.949, 7102028.367], [460624.167, 7101253.88], [459460.146, 7101219.986], [459711.636, 7099834.536], [460925.073, 7100547.985], [461570.336, 7099749.991], [460317.508, 7096721.518], [458418.159, 7099050.971], [457950.725, 7099224.815], [458209.88, 7098690.43], [457945.448, 7098438.543], [457337.006, 7098972.075], [457111.353, 7098884.225], [455987.803, 7099478.276], [456194.76, 7099799.421], [455681.109, 7100325.496], [456126.838, 7101250.439], [449607.504, 7105619.072], [448140.183, 7105703.166], [448346.983, 7105010.491], [448472.154, 7104526.712], [448313.886, 7104474.808], [447902.265, 7105137.097], [447461.914, 7105740.225], [446522.158, 7106569.01], [443345.377, 7108103.246], [443132.244, 7107462.005], [443249.362, 7106816.546], [443240.27, 7106596.602], [442817.201, 7106792.984], [442740.113, 7107723.233], [442416.869, 7108546.273], [440915.288, 7109285.027], [440434.527, 7109915.434], [439737.433, 7110764.298], [439357.166, 7111302.865], [438973.656, 7111287.472], [438926.985, 7111693.237], [439136.147, 7111768.137], [438062.252, 7113307.167], [435969.928, 7115115.003], [436044.205, 7115660.761], [435986.849, 7116141.419], [436379.623, 7116607.179], [436146.501, 7117148.049], [436224.307, 7117516.822], [435819.211, 7117419.712], [434840.489, 7120109.792], [434441.179, 7120031.902], [432948.444, 7121990.308], [431854.216, 7123066.278], [431970.497, 7123304.486], [431561.468, 7124004.537], [431171.74, 7123756.853], [430525.584, 7124678.937], [430105.917, 7125157.327], [430222.482, 7125357.273], [429577.58, 7125540.654], [429534.938, 7127613.616], [429282.174, 7127588.7], [426839.418, 7132472.724], [426522.483, 7131972.51], [425944.007, 7132953.497], [426063.839, 7133312.104], [426589.356, 7133625.524], [426790.233, 7134243.615], [426397.737, 7135098.648], [426131.147, 7135199.303], [425743.527, 7134996.625], [425528.754, 7135056.838], [425646.306, 7135493.342], [426283.114, 7135660.844], [425748.473, 7137355.075], [425799.694, 7138315.664], [423921.136, 7144295.5], [424470.4, 7144319.003], [424720.519, 7144142.786], [424905.645, 7144262.72], [424936.215, 7144919.165], [425369.047, 7144992.904], [425603.259, 7144706.83], [426937.16, 7145583.317], [425154.263, 7149346.872], [424955.048, 7149514.695], [425231.432, 7149864.946], [426214.36, 7149727.698], [426241.064, 7149967.178], [425958.69, 7150097.319], [425181.474, 7150073.845], [424786.524, 7151221.479], [425501.729, 7151201.154], [426842.86, 7153699.23], [424639.323, 7155741.35], [422307.573, 7157278.686], [422415.744, 7158582.465], [422627.591, 7158172.804], [423250.69, 7157553.355], [423405.584, 7157656.368], [423316.393, 7157979.511], [423021.736, 7158269.689], [423292.165, 7158485.748], [424108.53, 7157905.741], [424207.261, 7158034.098], [423836.322, 7158539.117], [422982.656, 7159270.168], [423319.264, 7159790.44], [424053.736, 7159105.255], [424197.9, 7159228.452], [423482.213, 7160150.122], [423294.952, 7160200.304], [422896.306, 7159689.869], [422400.774, 7158974.026], [422341.065, 7160578.229], [422720.883, 7160770.84], [422665.706, 7161435.817], [423342.525, 7161445.116], [423859.318, 7163097.329], [424831.673, 7165377.56], [426218.196, 7166771.24], [426944.892, 7166978.974], [427679.7, 7166662.366], [428061.006, 7166923.743], [428800.532, 7166443.147], [428849.473, 7166699.455], [429596.34, 7166396.644], [429661.013, 7166694.445], [428584.262, 7167123.789], [429259.375, 7167927.441], [431897.75, 7166463.678]], [[457451.947, 7105663.333], [457701.04, 7105482.0], [458190.666, 7105642.64], [458397.431, 7105139.879], [458742.016, 7103834.258], [457943.465, 7103436.484], [457758.041, 7103732.566], [457708.522, 7104015.7], [458062.192, 7104248.216], [457900.294, 7104576.298], [457537.618, 7104257.915], [457412.848, 7104420.109], [457780.689, 7104892.983], [457430.752, 7104999.859], [457135.784, 7105091.814], [456745.101, 7104199.745], [456316.157, 7104549.358], [455938.522, 7104630.758], [455765.059, 7105177.084], [456622.15, 7105246.228], [456604.402, 7105947.72], [456875.093, 7106006.595], [456936.948, 7106275.422], [457056.215, 7106376.693], [457451.947, 7105663.333]], [[432954.414, 7134581.96], [432676.612, 7134073.532], [432477.43, 7134090.691], [432210.283, 7134369.094], [429827.325, 7134284.858], [429213.636, 7135049.584], [429560.262, 7135226.047], [432780.693, 7136873.376], [432954.414, 7134581.96]]]}}, {\\\"id\\\": \\\"234\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lapua\\\", \\\"elakelaisten_osuus\\\": 28.5, \\\"freshwarea\\\": 13.63, \\\"gml_id\\\": 1601100632, \\\"landarea\\\": 737.15, \\\"namefin\\\": \\\"Lapua\\\", \\\"nameswe\\\": \\\"Lappo\\\", \\\"natcode\\\": \\\"408\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 750.78}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[293251.134, 7000716.396], [293256.779, 6999925.654], [293691.011, 6999683.181], [293658.286, 6999179.516], [300323.748, 6995032.444], [308100.836, 6995990.242], [309963.283, 6995119.524], [309861.427, 6994639.555], [309925.672, 6994249.243], [310618.29, 6993559.44], [311126.421, 6994576.486], [311346.656, 6994471.209], [313414.244, 6994715.809], [315535.978, 6993865.284], [318611.672, 6996005.494], [317509.407, 6996379.458], [317609.81, 6996671.826], [318794.809, 6996132.785], [320884.326, 6997585.179], [323678.067, 6993602.727], [323637.167, 6993373.461], [323939.182, 6993464.19], [323905.394, 6993711.72], [323741.577, 6994061.198], [324106.389, 6994055.351], [324515.16, 6993946.526], [324569.766, 6993648.013], [324950.188, 6993753.585], [324622.552, 6993340.4], [323606.333, 6993190.41], [322692.663, 6988079.052], [322582.275, 6987160.996], [322248.819, 6986848.722], [320404.452, 6986053.073], [323281.486, 6981415.652], [323011.251, 6981430.73], [322579.776, 6981080.36], [322273.401, 6981065.417], [322159.68, 6980735.29], [321791.616, 6980654.096], [321599.856, 6980405.616], [321007.331, 6980442.953], [320351.263, 6980239.0], [319758.372, 6980616.904], [317296.653, 6979547.545], [316626.766, 6978965.299], [316442.142, 6979144.586], [316057.644, 6979006.882], [316433.436, 6978326.15], [316093.924, 6977645.335], [315841.886, 6977362.373], [315787.777, 6977065.865], [313617.307, 6972716.735], [313487.953, 6971769.623], [311266.077, 6969928.572], [310434.857, 6966397.154], [310144.482, 6965973.224], [307768.97, 6966994.044], [306623.758, 6968672.938], [306266.263, 6970339.552], [305867.191, 6970888.752], [297610.294, 6970735.983], [302288.271, 6975938.655], [294898.888, 6978228.867], [294596.996, 6978382.513], [294087.376, 6978011.32], [293793.282, 6978071.798], [287336.625, 6978128.122], [288216.872, 6979776.952], [288388.578, 6983003.988], [288784.501, 6983286.169], [288449.96, 6984117.552], [288536.724, 6985739.94], [287239.678, 6991275.32], [287490.565, 6992762.894], [286845.149, 6996808.744], [288245.149, 6999374.962], [292795.352, 7000398.811], [292839.955, 7000923.559], [293251.134, 7000716.396]]]}}, {\\\"id\\\": \\\"235\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kankaanp\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 32.1, \\\"freshwarea\\\": 15.11, \\\"gml_id\\\": 1601100362, \\\"landarea\\\": 689.63, \\\"namefin\\\": \\\"Kankaanp\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Kankaanp\\\\u00e4\\\\u00e4\\\", \\\"natcode\\\": \\\"214\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 704.74}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[261164.991, 6883400.22], [261260.917, 6883400.983], [265093.673, 6883618.284], [264818.96, 6882333.148], [265604.691, 6882061.381], [265892.059, 6881961.973], [268111.236, 6880174.072], [268657.973, 6880338.361], [269594.366, 6879865.833], [269750.138, 6879422.856], [269188.59, 6879134.629], [269335.935, 6878164.907], [269811.08, 6878173.579], [270275.283, 6879458.856], [269982.002, 6880207.72], [270167.395, 6880373.457], [270869.943, 6879793.934], [270517.333, 6878421.852], [272284.096, 6877936.503], [272285.428, 6876780.299], [271747.796, 6876503.156], [270958.37, 6876045.398], [271125.664, 6873958.489], [270224.89, 6874487.661], [270396.131, 6874960.139], [269858.712, 6875294.584], [269588.736, 6874860.816], [269192.446, 6875092.514], [267574.754, 6874276.135], [267668.031, 6873710.762], [267551.776, 6873619.128], [267047.883, 6874113.449], [265591.546, 6872077.463], [264506.398, 6870917.548], [264565.804, 6870028.141], [266159.771, 6869318.258], [266234.668, 6867922.215], [266266.878, 6866139.203], [266463.337, 6865695.771], [266260.175, 6864968.471], [266478.619, 6864323.015], [265239.556, 6860206.001], [266868.261, 6858846.038], [271821.964, 6855863.802], [271012.094, 6853427.434], [272494.73, 6852837.498], [272629.757, 6852498.621], [272523.775, 6852052.825], [272649.919, 6851642.703], [272069.697, 6851488.86], [271788.802, 6851214.379], [272227.794, 6848590.898], [272006.133, 6848218.054], [269868.088, 6848072.825], [269222.456, 6848033.136], [264982.579, 6847237.863], [256002.203, 6850467.681], [252896.767, 6855121.348], [248960.33, 6856172.372], [248231.58, 6856285.66], [248155.482, 6855218.014], [247708.273, 6854900.415], [247410.232, 6854650.534], [247212.54, 6854020.711], [247579.895, 6853831.824], [247580.444, 6853400.981], [247238.286, 6853401.354], [246958.338, 6852895.655], [246590.079, 6849132.773], [246393.212, 6850490.749], [245693.609, 6850597.76], [245366.531, 6851012.342], [245898.92, 6851917.036], [245469.822, 6852228.379], [245560.222, 6852568.114], [246197.29, 6852384.001], [246458.089, 6854411.019], [246288.787, 6854927.817], [245263.592, 6855281.8], [244964.714, 6858301.623], [241042.32, 6859759.356], [238454.466, 6862380.77], [240715.686, 6866123.581], [242548.493, 6866327.658], [244652.974, 6867353.269], [244142.652, 6867718.005], [246466.189, 6870105.136], [245098.428, 6871537.786], [244656.662, 6872188.992], [244875.314, 6872605.793], [245579.419, 6872530.446], [245340.64, 6872881.859], [245420.519, 6873994.301], [244739.432, 6874098.919], [245670.402, 6874918.105], [247123.009, 6874984.49], [248172.939, 6873227.063], [248786.613, 6873247.727], [248910.039, 6872732.801], [249356.718, 6872719.066], [249358.756, 6873068.021], [249879.535, 6874130.238], [250724.648, 6873971.44], [250783.898, 6874451.367], [251376.592, 6874717.309], [252292.636, 6875731.612], [252506.257, 6876834.675], [251665.638, 6876778.031], [251812.828, 6877911.924], [252911.75, 6878798.341], [254000.432, 6878181.046], [254150.321, 6878449.835], [254894.118, 6878260.422], [255169.277, 6878557.745], [255337.766, 6879344.194], [254871.523, 6879765.344], [255736.219, 6879739.354], [255685.588, 6880207.002], [256139.384, 6880537.81], [256777.977, 6880775.033], [256719.816, 6881666.397], [256345.065, 6881911.747], [256865.836, 6883149.88], [259070.311, 6883275.594], [259200.346, 6883746.109], [261083.355, 6883857.928], [261164.991, 6883400.22]]]}}, {\\\"id\\\": \\\"236\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuusamo\\\", \\\"elakelaisten_osuus\\\": 33.3, \\\"freshwarea\\\": 830.44, \\\"gml_id\\\": 1601100575, \\\"landarea\\\": 4978.52, \\\"namefin\\\": \\\"Kuusamo\\\", \\\"nameswe\\\": \\\"Kuusamo\\\", \\\"natcode\\\": \\\"305\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 5808.96}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[600847.92, 7367226.299], [600723.816, 7369982.334], [612078.878, 7370408.847], [612078.908, 7370408.848], [613389.57, 7370458.079], [614766.058, 7370520.712], [615835.8, 7367722.2], [617685.0, 7363213.5], [619283.8, 7358092.5], [620922.5, 7353752.3], [621053.9, 7353495.2], [621039.5, 7353416.2], [621203.3, 7353421.9], [621306.6, 7353324.2], [621322.2, 7353256.6], [621423.3, 7353207.3], [621493.8, 7353124.8], [621479.1, 7352973.2], [621417.5, 7352896.1], [621271.3, 7352842.2], [621104.1, 7352839.5], [620992.2, 7352766.4], [620977.9, 7352666.5], [621060.9, 7352474.3], [621194.5, 7352324.9], [621352.4, 7352275.0], [621494.7, 7352310.3], [621646.4, 7352449.6], [624860.8, 7347658.5], [628924.6, 7341822.0], [631979.4, 7337161.9], [634258.2, 7329393.0], [634557.1, 7328249.7], [634598.5, 7328200.2], [635028.5, 7328025.9], [634704.9, 7327650.2], [635268.2, 7325888.5], [635664.7, 7325640.5], [635668.9, 7325457.1], [635520.0, 7325349.5], [636100.1, 7320803.2], [637395.4, 7319511.3], [637446.1, 7318624.2], [639296.8, 7313311.1], [639794.5, 7311620.6], [640887.4, 7306726.4], [642023.6, 7300352.3], [642152.0, 7299843.0], [642903.3, 7295839.3], [643867.7, 7290028.3], [644242.1, 7286581.5], [639605.2, 7288429.1], [638519.4, 7289404.2], [635646.5, 7287775.1], [630403.7, 7284987.9], [625258.2, 7282170.4], [626870.0, 7279145.9], [630574.7, 7275679.0], [632179.8, 7273925.6], [629330.4, 7269989.0], [627450.6, 7266675.5], [626850.681, 7266542.107], [626222.252, 7266253.296], [626210.365, 7266254.637], [625891.768, 7266290.583], [625513.142, 7266241.751], [624666.384, 7266501.39], [622744.543, 7266448.483], [617831.862, 7267193.629], [616771.666, 7266543.907], [616770.279, 7266427.995], [616991.952, 7266316.878], [617086.189, 7266224.705], [616806.325, 7266121.958], [616757.784, 7265796.555], [616445.737, 7265640.549], [616225.686, 7265459.776], [615908.356, 7265294.24], [615938.18, 7265151.534], [607264.126, 7268485.668], [602324.006, 7268038.776], [599682.567, 7269408.915], [593246.052, 7275640.415], [588882.281, 7281899.838], [585250.544, 7276519.878], [579713.477, 7277104.23], [576763.503, 7278715.804], [575918.768, 7280896.79], [575442.148, 7290742.522], [576108.407, 7290789.287], [575753.761, 7291071.058], [575416.65, 7291031.442], [575380.486, 7292007.532], [574476.051, 7293830.789], [573330.764, 7296142.049], [571645.663, 7302771.884], [569086.753, 7303600.565], [568767.928, 7308451.269], [566384.16, 7311625.57], [565167.663, 7314687.818], [562371.144, 7316158.058], [562174.792, 7316979.046], [562374.076, 7317389.286], [562847.366, 7317386.655], [563274.71, 7317108.761], [563267.106, 7318133.286], [563104.105, 7320196.602], [562661.828, 7320437.51], [562216.441, 7320417.873], [562291.438, 7320821.39], [563017.365, 7321040.931], [564215.227, 7321200.5], [564564.407, 7321678.262], [565133.33, 7321503.265], [564846.617, 7321069.7], [564214.141, 7320793.314], [564067.37, 7320466.929], [564099.99, 7319104.59], [567313.995, 7319556.826], [567302.553, 7321138.093], [570054.96, 7321158.727], [570051.364, 7321770.669], [572533.614, 7320747.032], [572544.29, 7319425.845], [575008.83, 7319436.645], [575757.955, 7320885.089], [577101.67, 7321197.137], [579288.478, 7321216.143], [579271.839, 7323659.216], [578712.348, 7323897.549], [578471.813, 7324507.86], [578514.582, 7325167.317], [579928.398, 7325866.071], [579010.934, 7326741.97], [578365.892, 7326070.471], [577854.484, 7325798.504], [577653.363, 7326099.331], [578110.252, 7326401.46], [577806.06, 7326846.825], [577116.841, 7326887.01], [576732.305, 7327453.406], [576820.432, 7327831.078], [573532.923, 7328766.401], [574439.627, 7330457.992], [573539.548, 7330944.378], [572435.541, 7335122.877], [576184.002, 7335152.04], [577450.11, 7336119.469], [577448.01, 7338846.217], [579673.784, 7341606.08], [578139.801, 7343814.066], [578752.636, 7344989.463], [578483.531, 7345380.664], [578181.946, 7345364.513], [578099.634, 7345625.572], [578258.483, 7345952.285], [578970.388, 7346112.395], [579100.633, 7346573.078], [579332.683, 7346700.37], [579008.16, 7346919.562], [579072.003, 7347315.891], [579237.101, 7347480.28], [578947.276, 7347711.139], [578638.134, 7348267.889], [578214.194, 7348484.636], [578610.673, 7349374.686], [577797.851, 7349747.178], [576862.927, 7350073.309], [576530.621, 7349806.88], [576112.055, 7350105.288], [575839.838, 7350162.04], [575614.245, 7350085.478], [574700.121, 7348468.029], [573861.763, 7348941.833], [573711.593, 7350460.738], [573597.504, 7350603.19], [573067.55, 7350579.59], [572146.932, 7350323.093], [571960.888, 7350559.798], [571535.284, 7350680.086], [571229.728, 7351250.243], [568892.525, 7357831.516], [569247.407, 7357833.435], [569244.328, 7358689.635], [569540.433, 7359062.803], [569530.172, 7359634.081], [569234.348, 7359966.517], [569229.505, 7363445.875], [570390.764, 7363396.727], [570785.355, 7365496.054], [571437.378, 7365418.103], [570870.689, 7366761.25], [571438.651, 7366393.298], [572160.937, 7366924.199], [574331.064, 7366929.423], [575470.26, 7375090.259], [600847.92, 7367226.299]]]}}, {\\\"id\\\": \\\"237\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyh\\\\u00e4joki\\\", \\\"elakelaisten_osuus\\\": 33.1, \\\"freshwarea\\\": 6.03, \\\"gml_id\\\": 1601100602, \\\"landarea\\\": 543.11, \\\"namefin\\\": \\\"Pyh\\\\u00e4joki\\\", \\\"nameswe\\\": \\\"Pyh\\\\u00e4joki\\\", \\\"natcode\\\": \\\"625\\\", \\\"seawarea\\\": 815.95, \\\"totalarea\\\": 1365.09}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[371201.078, 7158159.342], [371190.892, 7158433.986], [371436.648, 7158639.452], [371948.675, 7158613.373], [372071.989, 7158397.524], [372392.352, 7158391.415], [372434.018, 7158129.626], [372354.853, 7157665.648], [374198.207, 7156873.707], [374927.178, 7156598.412], [377749.852, 7155506.183], [377733.239, 7155081.979], [378176.447, 7154992.307], [378434.164, 7155243.487], [383492.515, 7153288.977], [384681.508, 7153191.646], [387547.384, 7152951.969], [388116.469, 7152812.495], [388403.031, 7152412.397], [388572.573, 7152863.668], [389180.991, 7152811.575], [389040.91, 7152411.399], [389498.93, 7152667.248], [389835.358, 7152313.764], [390452.17, 7151663.887], [390357.663, 7151147.18], [390689.697, 7151231.353], [390826.488, 7150672.896], [391343.425, 7150731.837], [393531.722, 7148421.584], [394539.466, 7147361.864], [394794.906, 7147092.35], [397674.958, 7142382.101], [398198.206, 7141785.062], [396860.288, 7141532.662], [395453.152, 7141526.964], [395348.722, 7142588.983], [394731.54, 7142223.694], [394483.839, 7142467.758], [394215.475, 7142086.455], [393910.602, 7141565.258], [393695.258, 7141396.773], [393726.336, 7140926.876], [391137.614, 7140371.693], [390244.192, 7140355.373], [390594.492, 7139647.985], [390917.33, 7139646.374], [390957.586, 7139369.036], [390239.785, 7139325.863], [389553.514, 7139478.131], [389501.532, 7138958.103], [389109.579, 7138731.501], [387987.367, 7138529.045], [387787.125, 7138595.696], [387729.731, 7138878.23], [387869.239, 7139325.387], [388436.176, 7139855.003], [388806.172, 7139966.393], [388316.346, 7140809.257], [387724.863, 7140084.26], [386849.447, 7141294.418], [386693.361, 7141215.378], [385006.081, 7141056.035], [385380.944, 7141349.025], [385116.536, 7141764.81], [384558.612, 7141403.913], [384308.984, 7140737.04], [383678.325, 7141589.226], [383216.881, 7141305.206], [383450.923, 7140265.503], [383493.356, 7139562.244], [383016.55, 7139330.018], [382485.772, 7140143.511], [382646.024, 7140246.041], [382512.337, 7140674.262], [382309.908, 7140610.729], [382206.489, 7140848.006], [381813.443, 7140753.987], [381785.172, 7141209.702], [382058.905, 7141314.04], [382014.763, 7141647.28], [381101.274, 7141791.921], [381045.025, 7141520.685], [381292.148, 7141359.109], [381425.466, 7140766.119], [380941.621, 7140537.915], [380654.147, 7140589.878], [380254.294, 7140285.456], [380630.047, 7139774.607], [381325.926, 7139183.151], [381081.365, 7139012.924], [380648.872, 7139060.772], [380424.431, 7138852.106], [380668.091, 7138418.494], [376806.969, 7137839.033], [377192.119, 7139709.588], [376767.859, 7140134.752], [377052.278, 7140288.467], [377292.844, 7140202.24], [378186.685, 7139148.5], [378835.908, 7139659.122], [379240.91, 7139532.436], [379632.108, 7139553.932], [379518.627, 7139757.59], [378582.883, 7140413.771], [378591.482, 7140972.27], [378975.156, 7140916.235], [378522.312, 7141526.268], [379042.311, 7141883.84], [378726.802, 7142300.353], [378443.684, 7142024.148], [377985.088, 7142433.632], [376007.533, 7140680.404], [373569.925, 7140184.24], [373123.411, 7139922.489], [373122.368, 7139788.194], [374102.841, 7139757.015], [374461.626, 7139388.951], [374635.111, 7139001.851], [373739.103, 7138479.138], [373765.029, 7137666.45], [372243.391, 7137607.43], [371927.632, 7137323.396], [371936.242, 7136972.103], [371633.611, 7136358.06], [372104.872, 7136144.45], [372085.606, 7135789.008], [371875.01, 7134932.006], [371866.219, 7134460.006], [371327.364, 7134439.114], [370981.109, 7133567.774], [370671.449, 7133635.18], [370560.602, 7133193.09], [370342.235, 7133305.849], [370075.784, 7133753.234], [370752.861, 7134389.882], [371088.873, 7135137.078], [371223.948, 7135729.36], [371060.304, 7136206.755], [371564.166, 7136828.983], [371592.385, 7137148.52], [370201.324, 7136077.373], [369970.829, 7136271.756], [370021.285, 7136701.966], [369745.038, 7136927.221], [369232.94, 7136647.064], [369476.535, 7135971.49], [368390.8, 7135360.603], [368526.327, 7135064.135], [368244.696, 7134922.16], [368439.351, 7134727.041], [368264.464, 7134584.399], [368163.433, 7134694.9], [368074.216, 7134530.996], [367731.058, 7134639.838], [366308.123, 7136413.435], [364543.838, 7136898.724], [364604.588, 7137103.877], [364072.348, 7137218.959], [363516.991, 7137191.679], [362914.526, 7137497.364], [363067.908, 7137796.745], [363026.756, 7138161.145], [362660.585, 7137627.966], [357082.084, 7140597.572], [357137.948, 7140778.343], [356503.563, 7140904.385], [355965.437, 7141198.142], [355817.021, 7141005.502], [355597.966, 7141391.544], [354886.46, 7141865.719], [354536.463, 7142479.686], [314558.837, 7156530.087], [316114.181, 7157633.828], [317127.861, 7158250.98], [341837.983, 7171207.978], [371201.078, 7158159.342]], [[380911.402, 7143726.214], [380836.222, 7143491.241], [381028.457, 7143372.998], [380921.129, 7143011.239], [380429.35, 7142860.059], [380616.729, 7142697.663], [380224.362, 7142381.502], [379680.254, 7142166.466], [379442.737, 7142465.86], [379981.859, 7142828.954], [380041.195, 7143016.575], [379227.955, 7142765.237], [378494.281, 7142932.089], [378875.553, 7143270.21], [379401.519, 7143208.188], [379395.34, 7143635.659], [380351.868, 7143842.539], [380911.402, 7143726.214]]]}}, {\\\"id\\\": \\\"238\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Puumala\\\", \\\"elakelaisten_osuus\\\": 46.7, \\\"freshwarea\\\": 443.57, \\\"gml_id\\\": 1601100325, \\\"landarea\\\": 794.18, \\\"namefin\\\": \\\"Puumala\\\", \\\"nameswe\\\": \\\"Puumala\\\", \\\"natcode\\\": \\\"623\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1237.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[562954.277, 6842653.882], [563173.338, 6842380.4], [563914.703, 6840647.002], [563885.923, 6839498.867], [564231.085, 6839240.374], [564900.715, 6839271.268], [566223.373, 6840526.372], [566286.451, 6840111.941], [566796.446, 6839957.508], [567020.161, 6839150.936], [566990.776, 6838752.197], [567287.598, 6838709.174], [567324.266, 6838221.142], [568790.957, 6837713.434], [570204.384, 6838135.776], [570406.604, 6837973.144], [570952.08, 6838488.74], [571427.79, 6838245.043], [571797.839, 6838575.713], [572635.001, 6838538.036], [572988.862, 6838124.107], [573372.8, 6838219.175], [573711.671, 6838091.161], [574197.777, 6837670.301], [574499.658, 6837274.364], [574309.338, 6836821.746], [574556.94, 6836527.567], [574670.496, 6836021.601], [575305.146, 6835384.537], [576852.923, 6835255.503], [577091.934, 6834155.65], [577100.937, 6833161.852], [577349.447, 6831714.44], [578291.766, 6831909.67], [578505.68, 6831725.946], [579248.282, 6831650.784], [579668.981, 6831984.707], [581120.312, 6832104.754], [582127.652, 6831044.155], [582684.913, 6831009.704], [583404.19, 6830603.966], [583794.72, 6830055.486], [583557.144, 6829480.376], [583680.226, 6828236.349], [584100.892, 6827503.861], [584021.206, 6826928.51], [584182.876, 6826330.052], [584648.701, 6826447.081], [584796.447, 6826852.159], [584447.519, 6827937.625], [584166.167, 6828981.071], [584118.665, 6829798.836], [584587.357, 6829703.861], [585277.898, 6828946.853], [585738.566, 6829110.683], [586058.526, 6828573.553], [586395.002, 6828001.56], [586177.399, 6827047.386], [586569.765, 6827001.824], [587121.145, 6827138.609], [587864.266, 6826749.666], [590646.499, 6826788.529], [591716.596, 6826394.234], [592199.513, 6825932.155], [593477.986, 6825294.147], [594923.774, 6824175.856], [595272.67, 6824236.681], [596327.952, 6823806.064], [596718.363, 6821421.612], [596433.819, 6820651.16], [596561.602, 6820001.675], [595438.864, 6819265.774], [595424.474, 6817314.955], [593466.402, 6817891.525], [592276.282, 6817623.793], [591585.069, 6817815.57], [590489.684, 6817407.605], [589715.42, 6817049.628], [589413.997, 6816104.506], [589040.968, 6816138.666], [587853.116, 6815685.2], [587791.2, 6816699.644], [587022.962, 6816208.759], [584644.836, 6815998.289], [584439.839, 6816553.567], [584032.415, 6816790.525], [583155.829, 6816630.993], [582296.247, 6816815.96], [581990.121, 6816690.388], [581815.155, 6817073.99], [581149.842, 6816953.893], [581202.267, 6819220.706], [579323.121, 6820886.44], [577874.71, 6819246.883], [577618.34, 6819454.134], [577153.999, 6820542.953], [576626.611, 6820614.718], [575718.785, 6818224.569], [575596.635, 6817590.723], [576045.059, 6814506.169], [575172.613, 6814167.395], [574207.305, 6813180.98], [573049.675, 6812643.283], [572631.944, 6812587.301], [572218.613, 6812335.399], [572376.92, 6811868.767], [571611.776, 6811611.702], [571548.622, 6811103.766], [571512.413, 6809889.788], [570287.21, 6809660.368], [569794.608, 6809923.955], [569323.81, 6808056.314], [568711.062, 6807414.371], [568668.681, 6807035.426], [568055.634, 6806242.644], [567456.176, 6806459.55], [567322.732, 6806203.053], [567647.605, 6805338.011], [566913.4, 6805721.647], [560597.067, 6803902.241], [558844.777, 6803669.924], [557485.23, 6803184.013], [556679.658, 6802850.843], [551228.665, 6802525.636], [549805.424, 6802171.894], [545772.871, 6802211.037], [542379.233, 6803375.649], [540059.564, 6804182.511], [538939.513, 6804641.819], [537738.091, 6805505.562], [537270.474, 6806098.716], [537311.154, 6806636.398], [536670.91, 6806589.61], [536123.526, 6806988.542], [536242.969, 6808208.648], [536773.357, 6808213.851], [536815.138, 6808512.43], [536417.096, 6808794.412], [536662.493, 6809393.671], [536252.352, 6810131.367], [536986.353, 6810847.384], [537706.066, 6810845.193], [538712.359, 6811249.237], [540525.026, 6811494.846], [540196.242, 6813846.19], [539952.737, 6814357.981], [539641.061, 6814564.596], [539481.222, 6815160.853], [540004.561, 6815312.228], [539618.361, 6815876.563], [540121.158, 6815826.586], [540443.729, 6815672.75], [540786.99, 6815822.291], [540431.339, 6816338.635], [540423.684, 6816914.845], [540062.545, 6817354.666], [540037.89, 6817705.124], [539166.627, 6818306.075], [539680.218, 6818428.128], [540004.827, 6818234.077], [540731.493, 6818584.47], [540503.777, 6819771.587], [541368.327, 6819810.875], [541796.259, 6819101.764], [543147.216, 6818717.426], [543193.132, 6819264.342], [542981.276, 6819830.674], [543086.431, 6820131.452], [543406.603, 6820025.697], [543660.504, 6820619.911], [544030.568, 6820542.724], [544876.182, 6821916.799], [544790.825, 6822576.194], [545052.617, 6823097.259], [545643.81, 6823274.384], [545671.963, 6823773.388], [546213.743, 6823948.82], [546663.062, 6823914.436], [547044.932, 6823725.09], [547859.379, 6823891.352], [549856.115, 6824725.14], [550151.115, 6825615.624], [549812.071, 6827209.22], [550011.175, 6829633.64], [551427.064, 6830511.306], [552723.774, 6830648.96], [552525.079, 6832188.314], [551253.103, 6833932.268], [551392.101, 6836202.72], [551947.353, 6836243.877], [552778.52, 6835749.281], [554201.345, 6835847.249], [554542.689, 6836006.91], [555061.791, 6835415.314], [555374.953, 6835246.307], [555081.932, 6834041.308], [555733.04, 6833864.059], [556314.73, 6833158.305], [556832.179, 6833296.574], [557108.315, 6833907.871], [557376.775, 6834058.688], [558694.138, 6831920.741], [559415.165, 6832239.94], [559730.969, 6833093.369], [559510.672, 6833435.284], [560037.295, 6835622.786], [558834.374, 6836484.625], [559518.216, 6837695.486], [559047.178, 6838717.782], [559619.666, 6839018.669], [559561.265, 6839370.473], [560009.382, 6839858.582], [559831.243, 6840126.556], [560120.834, 6840431.252], [560549.559, 6840531.599], [562166.891, 6843209.649], [562954.277, 6842653.882]]]}}, {\\\"id\\\": \\\"239\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Juuka\\\", \\\"elakelaisten_osuus\\\": 43.7, \\\"freshwarea\\\": 344.87, \\\"gml_id\\\": 1601100297, \\\"landarea\\\": 1501.7, \\\"namefin\\\": \\\"Juuka\\\", \\\"nameswe\\\": \\\"Juuka\\\", \\\"natcode\\\": \\\"176\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1846.57}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[607203.808, 7035838.978], [608878.941, 7036930.996], [616616.715, 7027941.906], [623462.217, 7026722.969], [624983.267, 7025463.832], [626723.105, 7025822.026], [628947.939, 7024433.713], [628967.858, 7024136.43], [627263.873, 7022123.559], [627506.724, 7021254.069], [627902.029, 7021183.734], [628009.43, 7020614.967], [629184.829, 7018055.984], [628915.036, 7016435.713], [630257.126, 7016193.777], [630580.279, 7015869.613], [632038.821, 7015479.339], [631506.267, 7013636.945], [631282.867, 7011969.612], [630851.828, 7011798.933], [631749.417, 7010888.626], [633314.494, 7010501.591], [633998.737, 7009064.463], [633655.431, 7006963.104], [633040.769, 7005612.376], [634361.283, 7004428.254], [636217.391, 7002324.037], [635960.577, 7001463.064], [636556.22, 7000515.004], [636953.541, 7000315.042], [637421.146, 6997650.048], [639223.732, 6994881.967], [640895.471, 6994382.714], [641271.62, 6993678.702], [638619.896, 6989157.324], [632628.968, 6986213.588], [632099.484, 6984754.453], [629322.659, 6986801.369], [627921.275, 6989100.963], [626638.043, 6994132.235], [626253.851, 6994563.861], [626219.584, 6994935.123], [626044.153, 6995266.894], [624837.173, 6996746.659], [624521.075, 6996609.313], [624198.89, 6996947.552], [621912.828, 6999802.476], [621404.97, 6999653.481], [621386.684, 6998831.872], [621080.331, 6999007.407], [620565.755, 7000040.474], [620521.433, 6999021.558], [621052.54, 6997796.322], [621496.392, 6996036.646], [619052.983, 6993850.254], [619031.009, 6993841.465], [612388.808, 6992306.864], [611891.656, 6990932.259], [608711.035, 6990737.317], [607783.378, 6986258.266], [607026.019, 6985841.516], [605637.717, 6985726.488], [604624.085, 6985773.066], [603179.212, 6988433.798], [597409.5, 6991065.729], [596470.334, 6992295.184], [595957.685, 6992110.76], [595848.724, 6992384.613], [595448.325, 6992766.431], [594878.03, 6992920.713], [594639.966, 6993145.15], [594427.609, 6993135.014], [594071.775, 6993305.435], [593808.104, 6993697.193], [593633.82, 6994220.892], [593370.599, 6994784.689], [593470.617, 6995115.403], [593257.002, 6995668.851], [592964.81, 6995948.878], [592655.625, 6996342.444], [592537.421, 6996890.095], [592454.262, 6997369.501], [588843.378, 7002040.871], [585976.078, 7005720.012], [585462.344, 7007121.275], [583199.352, 7008593.925], [581015.594, 7009316.911], [583454.881, 7013595.515], [582677.4, 7014330.671], [582750.379, 7014521.657], [584174.574, 7015248.937], [584296.455, 7016267.309], [585657.226, 7017054.751], [585411.27, 7018396.286], [584438.457, 7018343.722], [586099.061, 7019518.125], [585561.801, 7019944.738], [587025.332, 7021459.087], [587931.855, 7030006.2], [588244.954, 7030009.643], [588459.93, 7029633.559], [588734.709, 7029432.639], [588818.186, 7029095.243], [589044.799, 7028803.646], [589698.181, 7028369.816], [590123.55, 7028231.251], [590340.31, 7028592.224], [590482.194, 7028462.179], [590581.589, 7027998.9], [590874.74, 7027953.455], [591160.801, 7027636.055], [591384.535, 7027621.226], [591507.088, 7027835.862], [591297.381, 7028188.283], [591545.756, 7028696.357], [591244.954, 7029452.872], [591304.074, 7029793.323], [590965.119, 7030443.762], [590993.045, 7030833.026], [591312.523, 7030896.559], [591443.203, 7031095.4], [591882.182, 7031103.66], [592027.164, 7031420.551], [592246.675, 7031328.909], [592550.749, 7031533.413], [599787.868, 7035655.225], [600660.753, 7035915.099], [601142.507, 7036209.574], [601542.016, 7036292.468], [601657.924, 7036020.715], [603035.039, 7036178.674], [603966.562, 7036900.901], [604674.405, 7036781.942], [605056.385, 7037424.897], [607203.808, 7035838.978]]]}}, {\\\"id\\\": \\\"240\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Joutsa\\\", \\\"elakelaisten_osuus\\\": 42.9, \\\"freshwarea\\\": 199.4, \\\"gml_id\\\": 1601100293, \\\"landarea\\\": 867.02, \\\"namefin\\\": \\\"Joutsa\\\", \\\"nameswe\\\": \\\"Joutsa\\\", \\\"natcode\\\": \\\"172\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1066.42}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[448408.67, 6839367.033], [447544.912, 6839540.324], [447172.863, 6837987.334], [446955.056, 6837863.917], [446674.116, 6838006.806], [446701.928, 6839318.959], [446889.484, 6840064.038], [448622.18, 6840140.641], [448408.67, 6839367.033]]], [[[465037.534, 6878458.625], [469310.883, 6871297.97], [465072.045, 6868875.069], [465154.886, 6868261.887], [464842.603, 6867729.014], [464919.735, 6866624.35], [465396.372, 6866123.39], [465448.603, 6865472.447], [465314.318, 6864197.252], [465476.832, 6863296.159], [464957.025, 6862589.112], [465109.624, 6862373.213], [464990.902, 6861696.735], [464557.351, 6861404.553], [464469.635, 6861000.713], [465952.063, 6861586.854], [467301.63, 6861310.393], [467091.819, 6860866.471], [466918.695, 6859910.458], [467850.329, 6858083.904], [467223.19, 6857187.763], [467281.67, 6856588.306], [467487.79, 6856041.929], [467130.019, 6855732.681], [467026.881, 6855174.354], [467297.163, 6854605.62], [467105.409, 6854258.507], [467152.875, 6853575.549], [466646.517, 6852939.703], [468270.268, 6852508.207], [469723.416, 6851621.01], [470355.284, 6850290.599], [471626.142, 6848619.739], [472764.665, 6846514.494], [473076.889, 6845494.244], [473673.234, 6844207.22], [474190.648, 6843828.427], [474035.456, 6843416.178], [474990.739, 6841361.132], [475332.61, 6839882.934], [474847.251, 6838119.344], [474903.804, 6836831.767], [474385.255, 6836952.475], [474336.298, 6836517.815], [474592.586, 6836128.763], [474345.907, 6835635.435], [474345.184, 6834519.289], [474636.626, 6834962.447], [474732.572, 6834516.619], [474599.694, 6834241.122], [474684.246, 6833832.948], [474328.644, 6833366.637], [474311.498, 6832730.575], [473837.175, 6832779.338], [472460.919, 6833469.712], [470605.068, 6834230.99], [469230.019, 6835388.211], [467013.913, 6836218.059], [467084.991, 6835290.536], [466571.701, 6834993.652], [466484.144, 6834020.246], [465892.6, 6834075.027], [465488.762, 6833626.389], [465509.217, 6833059.181], [465703.58, 6833040.21], [465788.022, 6832233.159], [464881.717, 6831202.773], [464408.608, 6831448.77], [464199.598, 6830754.149], [463664.516, 6830753.345], [463685.217, 6830957.649], [462860.602, 6832871.343], [463667.601, 6834237.156], [462936.108, 6835813.406], [462369.097, 6835397.181], [462028.369, 6836146.618], [461161.475, 6834507.847], [461163.433, 6834489.704], [458993.592, 6834510.286], [457496.01, 6835225.683], [457185.449, 6835460.267], [455502.859, 6831695.757], [454267.839, 6832099.924], [454323.072, 6833248.131], [453805.622, 6834141.123], [452586.713, 6834909.24], [450788.379, 6838039.882], [450836.985, 6838628.64], [451251.268, 6839025.603], [451465.848, 6839450.336], [451556.575, 6839883.764], [451469.0, 6840500.797], [451292.517, 6841115.014], [451444.692, 6841830.456], [451412.38, 6842188.716], [451197.115, 6842296.766], [450869.579, 6842202.411], [450443.347, 6843037.878], [450652.216, 6843205.31], [450707.9, 6843951.649], [450465.773, 6844546.246], [449947.341, 6845396.168], [449705.331, 6845091.532], [449655.002, 6844467.974], [449557.645, 6843991.912], [449344.157, 6843793.949], [449017.267, 6843928.483], [447976.807, 6843436.993], [447032.648, 6844393.552], [446799.004, 6844817.189], [446916.562, 6845473.268], [446359.337, 6846016.912], [446542.231, 6846332.957], [446150.804, 6846437.748], [446157.566, 6846784.553], [446415.344, 6847309.266], [446359.614, 6847818.874], [444461.123, 6849154.728], [443372.644, 6850333.753], [443126.909, 6850962.418], [442340.866, 6848493.548], [441767.564, 6848327.115], [439968.399, 6848097.527], [439745.442, 6848204.736], [441120.189, 6851806.954], [439110.805, 6852598.036], [439158.303, 6853155.316], [439855.456, 6853233.65], [440143.411, 6853655.998], [440966.771, 6853936.613], [440851.392, 6854297.953], [440384.546, 6854858.15], [441726.525, 6855936.816], [443239.255, 6858883.81], [441897.02, 6860678.158], [439556.55, 6862532.984], [441623.456, 6864347.166], [443798.993, 6867447.858], [446771.912, 6870783.003], [446666.152, 6871283.1], [446244.058, 6872128.978], [445769.711, 6872360.412], [445635.759, 6873001.296], [445076.777, 6874341.848], [445334.515, 6874667.032], [446359.11, 6877377.815], [446454.094, 6878593.808], [449138.233, 6878556.988], [449942.616, 6878251.479], [450526.404, 6878262.592], [451574.109, 6877950.437], [451529.13, 6877465.633], [452408.784, 6875726.344], [452843.608, 6875721.35], [453501.9, 6874216.22], [453699.465, 6874116.315], [456232.756, 6878749.175], [460674.823, 6878620.133], [462967.907, 6879196.918], [465037.534, 6878458.625]]]]}}, {\\\"id\\\": \\\"241\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"M\\\\u00e4nts\\\\u00e4l\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 22.3, \\\"freshwarea\\\": 15.3, \\\"gml_id\\\": 1601100243, \\\"landarea\\\": 580.81, \\\"namefin\\\": \\\"M\\\\u00e4nts\\\\u00e4l\\\\u00e4\\\", \\\"nameswe\\\": \\\"M\\\\u00e4nts\\\\u00e4l\\\\u00e4\\\", \\\"natcode\\\": \\\"505\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 596.11}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[403206.296, 6742272.2], [406583.601, 6739083.464], [407242.505, 6736361.608], [408411.192, 6737335.581], [411827.672, 6736406.795], [414607.88, 6740484.35], [414724.928, 6741021.646], [416036.884, 6740969.057], [416961.327, 6740661.414], [418049.26, 6737786.17], [418978.389, 6735649.514], [419548.43, 6732439.567], [419174.539, 6730717.412], [417083.74, 6729930.636], [413935.768, 6726304.675], [414265.317, 6724029.045], [415839.644, 6722173.205], [417210.624, 6719244.888], [417560.683, 6717873.156], [418695.893, 6716908.78], [417853.345, 6714376.312], [416517.649, 6713739.6], [415987.033, 6713740.297], [413073.963, 6712770.878], [412963.006, 6714194.858], [409040.961, 6713246.04], [406120.702, 6713144.423], [404641.805, 6713025.032], [403518.489, 6712618.26], [403663.471, 6712337.058], [401427.364, 6711210.401], [402460.677, 6708594.602], [399460.778, 6709189.412], [398475.842, 6710386.973], [392888.155, 6717249.589], [394487.723, 6719032.347], [393406.254, 6720319.816], [395172.675, 6722687.235], [396836.372, 6726576.903], [396881.264, 6726690.999], [395415.295, 6730809.505], [398844.389, 6732634.254], [401427.038, 6733484.123], [398860.168, 6734306.427], [397446.714, 6736041.627], [397192.501, 6735340.434], [395952.615, 6734129.618], [394576.094, 6732544.186], [394084.197, 6733721.417], [395807.399, 6736903.431], [395971.924, 6737895.136], [399355.782, 6738403.414], [399519.499, 6739515.226], [396745.352, 6743091.568], [397258.069, 6744059.536], [397796.926, 6743800.499], [400590.046, 6744077.191], [401521.187, 6744135.529], [401265.756, 6744671.507], [401508.06, 6745710.041], [401997.66, 6745908.099], [401949.902, 6746283.263], [402662.436, 6746389.445], [403206.296, 6742272.2]]]}}, {\\\"id\\\": \\\"242\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Perho\\\", \\\"elakelaisten_osuus\\\": 27.3, \\\"freshwarea\\\": 27.32, \\\"gml_id\\\": 1601100255, \\\"landarea\\\": 747.87, \\\"namefin\\\": \\\"Perho\\\", \\\"nameswe\\\": \\\"Perho\\\", \\\"natcode\\\": \\\"584\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 775.19}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[382428.688, 7030046.839], [388595.831, 7027489.373], [389814.314, 7018219.869], [387296.023, 7017190.734], [387878.205, 7015986.847], [387123.571, 7015642.183], [387535.842, 7011924.633], [386612.126, 7009629.973], [385696.266, 7003990.698], [387722.5, 7002395.289], [375623.274, 7005527.284], [366787.924, 7001300.583], [366588.895, 7001524.047], [364150.54, 7004163.783], [361718.123, 7003363.475], [362040.89, 7002146.911], [359118.039, 7005913.191], [357452.604, 7005219.8], [357692.672, 7005876.251], [357993.919, 7006043.396], [357888.673, 7006642.602], [358246.35, 7006753.93], [358715.103, 7006026.686], [360769.996, 7007607.465], [357842.967, 7012259.634], [354228.049, 7016186.627], [352036.619, 7017751.916], [352449.988, 7020431.646], [354055.394, 7020332.564], [353819.599, 7021791.794], [354586.628, 7023380.065], [356592.89, 7024791.342], [357121.392, 7023653.04], [357251.601, 7023517.548], [357523.068, 7023438.047], [357411.254, 7023841.893], [357967.541, 7024701.976], [357025.412, 7025100.243], [357514.988, 7025444.962], [358048.851, 7025710.982], [360935.555, 7027162.652], [361422.964, 7026662.235], [361813.563, 7027035.695], [368311.879, 7025840.863], [370293.451, 7029678.875], [374329.738, 7029859.59], [374632.251, 7028884.941], [378728.175, 7031589.024], [382428.688, 7030046.839]]]}}, {\\\"id\\\": \\\"243\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sastamala\\\", \\\"elakelaisten_osuus\\\": 33.9, \\\"freshwarea\\\": 102.71, \\\"gml_id\\\": 1601100577, \\\"landarea\\\": 1429.04, \\\"namefin\\\": \\\"Sastamala\\\", \\\"nameswe\\\": \\\"Sastamala\\\", \\\"natcode\\\": \\\"790\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1531.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[275508.547, 6847821.026], [276756.932, 6847202.23], [279058.358, 6845083.295], [279169.002, 6843356.211], [279792.466, 6840641.314], [279990.099, 6839987.823], [280215.313, 6839376.199], [282269.024, 6837584.376], [284530.866, 6834895.12], [285642.413, 6835525.584], [285818.348, 6834851.058], [286298.281, 6834962.156], [286778.37, 6834309.846], [287064.918, 6834366.587], [288106.989, 6835569.413], [289257.447, 6836126.045], [291273.225, 6834911.684], [291936.694, 6834189.859], [290476.904, 6832296.812], [290982.526, 6831333.114], [291405.441, 6829696.794], [292694.158, 6829465.937], [293962.356, 6829479.405], [296575.524, 6828954.943], [297708.422, 6828597.687], [297636.547, 6827513.561], [298142.816, 6826446.451], [298107.634, 6823759.115], [297805.369, 6821523.706], [297010.319, 6821148.72], [296644.043, 6821351.798], [294365.008, 6821017.228], [294219.939, 6820490.604], [295184.349, 6819848.613], [296154.651, 6819339.708], [297225.786, 6819763.038], [297819.772, 6819211.558], [296886.615, 6818191.077], [295841.127, 6817361.906], [296826.329, 6816739.944], [296718.367, 6816244.726], [297856.137, 6813398.414], [298864.569, 6810048.79], [299235.422, 6809198.957], [299890.929, 6808508.635], [298648.645, 6806773.796], [297788.894, 6805221.834], [300085.282, 6803247.133], [301102.603, 6800694.352], [300703.912, 6797451.822], [300346.112, 6795011.413], [299894.258, 6793125.238], [298246.214, 6793510.993], [297826.825, 6791902.122], [297370.795, 6791707.726], [294145.944, 6792557.749], [294087.919, 6792266.578], [293008.194, 6791922.322], [292607.95, 6791628.348], [290744.236, 6791007.635], [288135.808, 6791197.017], [288605.925, 6789751.067], [287789.643, 6789527.95], [287620.387, 6789852.188], [287804.13, 6790401.505], [287650.863, 6790829.035], [286977.622, 6790746.983], [286885.859, 6790366.588], [285307.458, 6790016.681], [281615.645, 6792413.385], [278407.536, 6794586.992], [278967.265, 6794937.031], [277639.413, 6796110.485], [277028.406, 6795428.499], [275911.884, 6796121.768], [276051.106, 6795755.649], [275568.07, 6795559.752], [275577.231, 6796315.678], [274585.086, 6796929.362], [272987.479, 6797581.89], [269839.516, 6797756.623], [269892.904, 6797253.724], [269478.477, 6797139.966], [269445.303, 6797788.933], [268854.779, 6797729.033], [268451.747, 6797942.93], [267709.741, 6797790.94], [266836.777, 6797785.92], [266428.884, 6798044.509], [266252.788, 6798694.306], [265999.846, 6799373.47], [265481.475, 6799810.81], [266329.427, 6800128.687], [266037.315, 6800566.392], [265336.518, 6803152.676], [264807.819, 6804306.108], [264362.048, 6804367.733], [264528.391, 6804790.051], [262460.383, 6807729.462], [264251.866, 6808859.591], [262883.624, 6814780.764], [263748.329, 6815011.608], [263236.792, 6817580.91], [260519.503, 6818726.479], [256997.689, 6825762.4], [265331.352, 6831822.259], [266361.408, 6831103.776], [268526.519, 6833046.71], [268952.552, 6834951.671], [268959.881, 6835580.478], [271736.938, 6837141.473], [270186.02, 6841924.132], [272349.674, 6839794.226], [273597.562, 6842067.542], [273097.757, 6843059.366], [273118.52, 6844753.645], [273339.148, 6845099.773], [272641.862, 6845005.785], [272494.798, 6845579.075], [271945.638, 6845525.215], [271623.297, 6843948.921], [269965.465, 6843325.258], [269719.358, 6844869.151], [271356.439, 6845135.285], [270115.518, 6846446.2], [269868.088, 6848072.825], [272006.133, 6848218.054], [272227.794, 6848590.898], [273600.902, 6850880.284], [275508.547, 6847821.026]]]}}, {\\\"id\\\": \\\"244\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tornio\\\", \\\"elakelaisten_osuus\\\": 27.4, \\\"freshwarea\\\": 40.46, \\\"gml_id\\\": 1601100634, \\\"landarea\\\": 1188.78, \\\"namefin\\\": \\\"Tornio\\\", \\\"nameswe\\\": \\\"Torne\\\\u00e5\\\", \\\"natcode\\\": \\\"851\\\", \\\"seawarea\\\": 119.59, \\\"totalarea\\\": 1348.83}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[398565.586, 7355562.83], [397127.815, 7353850.66], [394911.569, 7351277.06], [393313.086, 7349486.704], [390203.353, 7346142.255], [387116.986, 7342874.889], [387319.746, 7339764.638], [387117.53, 7339696.101], [387125.854, 7325545.337], [387049.951, 7308052.362], [386702.722, 7308095.917], [386695.339, 7307397.459], [387049.796, 7307381.692], [387089.321, 7306689.615], [386815.425, 7306232.131], [386660.069, 7306180.4], [386678.965, 7305857.407], [386610.713, 7305506.75], [386662.09, 7305112.054], [386529.1, 7304796.923], [385988.63, 7304486.691], [385664.496, 7304530.358], [385489.403, 7304048.839], [385660.681, 7303517.999], [385650.125, 7302995.042], [385198.122, 7302082.383], [384883.168, 7302367.032], [384791.384, 7302106.979], [384962.272, 7301540.987], [384839.027, 7301181.292], [383871.954, 7300814.872], [383388.454, 7300289.747], [383691.306, 7300012.945], [384067.277, 7300301.458], [384293.079, 7300338.868], [384200.683, 7299942.6], [383848.128, 7299725.305], [383630.121, 7299227.873], [383430.121, 7298990.032], [383524.438, 7298648.393], [383537.667, 7298510.809], [383317.746, 7297938.122], [382603.667, 7296353.473], [369174.752, 7279707.957], [369292.725, 7280425.096], [370238.089, 7284966.282], [369826.32, 7288905.429], [370310.386, 7292208.338], [368695.723, 7297451.455], [368535.473, 7298213.927], [368588.902, 7298906.733], [368756.941, 7299434.109], [368912.51, 7300238.743], [369386.867, 7300877.596], [369993.308, 7302290.369], [369790.946, 7304194.23], [369633.148, 7305149.97], [369379.278, 7305678.996], [368914.565, 7306119.212], [368801.775, 7306360.328], [368849.532, 7307059.71], [368908.511, 7307227.651], [369047.15, 7307409.901], [369114.974, 7307551.394], [369128.322, 7307614.917], [369153.486, 7307645.044], [369238.848, 7307644.664], [369538.272, 7307578.497], [369715.961, 7307514.047], [370132.894, 7307537.852], [370058.68, 7307697.372], [370007.939, 7307898.34], [369860.549, 7308338.869], [369639.078, 7308757.451], [369536.39, 7309124.484], [369455.12, 7309732.608], [369416.358, 7309881.387], [369387.26, 7309934.165], [369380.535, 7310161.241], [369333.836, 7310416.852], [369236.004, 7310623.05], [369148.671, 7310745.161], [368945.515, 7310912.279], [368722.456, 7311148.322], [368686.976, 7311222.476], [368598.234, 7311651.005], [368584.494, 7311778.485], [368615.071, 7312051.21], [368609.914, 7312220.163], [368543.771, 7312528.188], [368433.851, 7312893.344], [368416.296, 7313115.39], [368425.636, 7313308.828], [368476.873, 7313452.158], [368553.12, 7313582.918], [368654.586, 7313683.841], [368724.654, 7313858.328], [368764.779, 7314051.934], [368812.686, 7314516.92], [368873.268, 7314686.48], [368842.712, 7314798.081], [368787.102, 7314888.061], [368696.223, 7314987.013], [368577.999, 7315221.078], [368530.886, 7315268.873], [368441.683, 7315320.998], [368334.693, 7315296.415], [368182.155, 7315156.747], [368025.199, 7315098.84], [367727.987, 7315205.712], [367579.315, 7315286.703], [367517.664, 7315344.708], [367411.15, 7315504.559], [367203.187, 7315938.599], [367014.567, 7316702.583], [366961.133, 7316825.793], [366808.144, 7316977.404], [366542.578, 7317106.1], [366430.703, 7317381.418], [366388.169, 7317445.669], [366316.243, 7317503.419], [366119.401, 7317599.705], [366058.968, 7317660.317], [366033.91, 7317853.199], [365958.105, 7318058.548], [365932.438, 7318283.473], [365857.253, 7318458.881], [365682.779, 7318770.404], [365610.539, 7318959.454], [365606.068, 7319090.37], [365663.044, 7319329.641], [365525.735, 7319585.556], [365521.228, 7319647.296], [365538.81, 7319711.147], [365595.784, 7319798.639], [365765.728, 7319922.015], [366043.091, 7320038.901], [366114.538, 7320113.552], [366153.685, 7320239.429], [366062.408, 7320550.31], [366026.052, 7320738.417], [366022.08, 7320904.946], [366057.33, 7321215.123], [366087.874, 7322493.717], [366073.03, 7322706.31], [366035.011, 7322944.88], [365952.323, 7323275.402], [365705.809, 7323862.278], [365682.185, 7323967.945], [365514.851, 7324309.832], [365359.913, 7324576.169], [364626.141, 7325705.56], [364249.647, 7326495.293], [364045.034, 7326816.21], [363907.546, 7327092.723], [363813.09, 7327336.379], [363693.894, 7327666.219], [363491.025, 7328299.951], [363458.328, 7328448.17], [363444.554, 7328728.99], [363382.941, 7328939.868], [363053.55, 7329692.349], [362946.876, 7329860.149], [362723.966, 7330103.41], [362623.069, 7330252.664], [362539.458, 7330412.842], [362423.885, 7330634.879], [362343.44, 7330813.378], [362318.616, 7330904.198], [362279.263, 7331002.512], [362218.47, 7331099.836], [362134.203, 7331175.018], [361862.351, 7331329.205], [361772.488, 7331433.306], [361670.124, 7331546.29], [361561.589, 7331702.203], [361500.707, 7331855.891], [361455.518, 7332099.617], [361446.606, 7332234.989], [361504.668, 7332615.326], [361516.007, 7332813.739], [361488.178, 7333305.382], [361505.175, 7333460.461], [361613.805, 7333856.99], [361636.734, 7334141.54], [361670.187, 7334324.762], [361738.926, 7334478.539], [361926.886, 7334673.936], [361969.75, 7334778.883], [361992.964, 7334927.749], [361982.243, 7335233.366], [361933.097, 7335390.316], [361807.837, 7335557.19], [361679.84, 7335641.261], [361614.426, 7335707.93], [361587.553, 7335774.41], [361579.08, 7335863.177], [361620.158, 7336044.371], [361824.908, 7336432.346], [361872.901, 7336572.802], [361883.218, 7336674.634], [361856.465, 7336751.922], [361727.202, 7336972.768], [361549.854, 7337344.27], [361300.626, 7337761.454], [361169.483, 7337942.718], [360796.463, 7338359.333], [360740.078, 7338460.557], [360725.748, 7338520.182], [360747.754, 7338768.742], [360802.071, 7338919.097], [360855.173, 7338978.197], [361076.632, 7339132.602], [361216.522, 7339293.165], [361298.518, 7339361.706], [361375.834, 7339477.618], [361421.307, 7339665.917], [361409.079, 7339859.277], [361509.306, 7339957.609], [361520.35, 7340017.212], [361452.044, 7340184.713], [361366.242, 7340517.077], [361179.404, 7341101.212], [361072.064, 7341303.642], [361013.515, 7341369.017], [360939.473, 7341417.142], [360656.059, 7341541.502], [360464.281, 7341583.238], [360271.228, 7341719.933], [360154.407, 7341776.41], [360096.268, 7341829.532], [360054.691, 7341938.33], [359905.369, 7342076.242], [360115.78, 7342359.619], [360124.146, 7342809.254], [359988.373, 7343287.761], [359795.423, 7343504.579], [359685.721, 7344074.979], [359823.741, 7344857.06], [359727.323, 7345113.984], [359823.069, 7345556.58], [374427.873, 7350335.182], [373883.216, 7351048.915], [373850.393, 7351352.078], [374347.575, 7351722.395], [373767.434, 7352354.222], [374433.289, 7352772.762], [375275.739, 7351606.288], [375890.482, 7352012.283], [376100.696, 7351331.45], [375745.27, 7350957.673], [375894.276, 7350794.766], [401100.619, 7358688.557], [398565.586, 7355562.83]]]}}, {\\\"id\\\": \\\"245\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tervo\\\", \\\"elakelaisten_osuus\\\": 43.9, \\\"freshwarea\\\": 146.55, \\\"gml_id\\\": 1601100640, \\\"landarea\\\": 347.75, \\\"namefin\\\": \\\"Tervo\\\", \\\"nameswe\\\": \\\"Tervo\\\", \\\"natcode\\\": \\\"844\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 494.3}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[493884.055, 6999885.627], [495154.209, 6997963.303], [497811.369, 6998703.022], [498009.279, 6998227.844], [497844.062, 6997818.385], [497943.58, 6997275.99], [498408.271, 6997183.605], [498903.487, 6996122.111], [499807.347, 6995130.311], [500157.106, 6994409.566], [500399.728, 6994172.49], [501137.999, 6993821.181], [501587.627, 6993515.362], [502541.913, 6992643.816], [504071.068, 6991435.717], [504144.258, 6991028.409], [504321.631, 6990650.452], [503917.398, 6990466.969], [504552.984, 6988963.902], [505120.986, 6989141.293], [507194.793, 6987224.764], [507212.07, 6986955.85], [506358.75, 6986208.614], [505898.623, 6986408.651], [505311.872, 6986871.513], [505001.036, 6987198.132], [504619.832, 6987298.73], [504229.005, 6986921.067], [503656.373, 6986725.824], [503865.355, 6985929.274], [503800.839, 6985581.996], [503221.028, 6986040.062], [502807.635, 6986014.222], [502398.483, 6986189.493], [502424.851, 6986615.082], [501760.592, 6986065.394], [501282.717, 6985898.249], [501436.018, 6984658.915], [500723.841, 6984459.311], [500685.008, 6984759.91], [499698.164, 6984480.136], [498958.396, 6983725.379], [498058.414, 6984091.357], [497054.2, 6985153.007], [496198.322, 6985004.988], [495841.37, 6984661.679], [494704.849, 6984371.583], [495175.069, 6982998.468], [494427.81, 6981565.354], [494735.94, 6980756.519], [495527.622, 6980448.69], [496122.575, 6979147.55], [496788.469, 6977036.498], [496957.478, 6976209.76], [496153.969, 6975319.891], [495792.182, 6975672.022], [495324.718, 6975274.502], [496269.169, 6974196.868], [495327.37, 6973732.135], [495458.252, 6972988.901], [495458.162, 6972297.949], [495761.173, 6971385.831], [495101.701, 6971452.541], [494940.411, 6971090.161], [495579.864, 6970125.147], [495364.254, 6968874.07], [494976.216, 6967893.646], [494799.063, 6967856.067], [494074.153, 6967275.994], [493664.883, 6966072.759], [493949.142, 6965621.232], [491950.636, 6963827.477], [491557.604, 6964449.612], [489955.304, 6962907.059], [489471.179, 6963337.872], [489290.739, 6963784.499], [489291.423, 6964361.363], [489016.698, 6964932.947], [488451.531, 6965433.161], [487721.702, 6966716.404], [486435.407, 6967922.596], [485780.451, 6967338.264], [484097.44, 6967769.417], [483246.754, 6968417.548], [483056.071, 6968826.888], [481589.131, 6972347.429], [482820.629, 6972769.269], [483803.219, 6974284.665], [482089.892, 6976896.598], [482821.362, 6976670.305], [482610.441, 6977302.478], [481779.072, 6978593.43], [480405.544, 6980677.054], [476699.022, 6983736.784], [476399.455, 6984130.605], [477663.622, 6984833.347], [476882.933, 6985539.054], [480904.221, 6987909.067], [480114.214, 6990337.464], [481093.383, 6991321.605], [483579.962, 6991043.497], [484817.356, 6991706.779], [486111.96, 6990838.645], [486915.089, 6992329.756], [487411.802, 6992491.174], [487394.114, 6993312.352], [487946.042, 6993696.835], [489185.645, 6993282.269], [489727.643, 6993394.06], [489990.3, 6993219.338], [490077.024, 6993640.534], [490534.408, 6993924.505], [490426.428, 6994435.668], [490565.024, 6994689.928], [490851.289, 6994518.5], [491415.041, 6994594.086], [493759.185, 6994512.752], [494049.877, 6994769.578], [493615.349, 6994968.81], [493395.013, 6995587.75], [493223.427, 6995825.277], [493383.337, 6996189.78], [494046.18, 6995707.25], [494691.166, 6995533.807], [495456.852, 6995901.886], [493593.212, 6997034.454], [492841.6, 6997758.874], [492427.837, 6998492.124], [492119.455, 6999801.492], [492753.292, 6999959.94], [493118.786, 7000241.232], [493884.055, 6999885.627]]]}}, {\\\"id\\\": \\\"246\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hyvink\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 25.7, \\\"freshwarea\\\": 14.09, \\\"gml_id\\\": 1601100171, \\\"landarea\\\": 322.68, \\\"namefin\\\": \\\"Hyvink\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Hyvinge\\\", \\\"natcode\\\": \\\"106\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 336.77}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[393132.974, 6728795.219], [393672.688, 6728679.497], [394096.887, 6727510.1], [396836.372, 6726576.903], [395172.675, 6722687.235], [393406.254, 6720319.816], [394487.723, 6719032.347], [392888.155, 6717249.589], [392539.411, 6717680.693], [391816.219, 6717405.93], [391724.482, 6716415.835], [389797.168, 6716075.338], [389091.205, 6716493.83], [388455.138, 6716686.756], [385516.648, 6715109.21], [385524.207, 6715301.21], [384896.62, 6716137.049], [384380.796, 6716029.019], [384218.119, 6716765.309], [384018.352, 6717062.774], [381477.763, 6715781.069], [380830.734, 6712274.837], [379166.296, 6712317.587], [379931.524, 6713965.208], [378683.813, 6714744.554], [378810.368, 6715129.206], [379291.068, 6715228.981], [379244.203, 6715603.408], [378032.838, 6716363.993], [378352.475, 6717936.043], [376652.726, 6719107.204], [376093.43, 6717158.633], [374069.231, 6711386.241], [371690.956, 6710280.182], [370926.378, 6711258.416], [370965.851, 6711300.816], [368183.62, 6715888.706], [367281.278, 6719098.266], [366566.184, 6720982.625], [366718.033, 6722751.706], [366878.133, 6724828.718], [367404.222, 6725325.49], [369728.766, 6728123.905], [370959.922, 6727103.778], [371658.943, 6727238.489], [373774.103, 6725944.312], [374972.344, 6725997.961], [376423.919, 6725649.768], [376504.267, 6725969.324], [376946.739, 6725862.978], [377100.874, 6726446.11], [377400.636, 6726383.081], [377798.348, 6726987.713], [378600.996, 6726288.341], [378703.998, 6726425.871], [380321.143, 6728341.144], [380789.706, 6727840.539], [381696.299, 6727565.336], [381699.598, 6726787.923], [384903.493, 6726773.311], [384957.056, 6727214.05], [386372.16, 6727041.281], [386433.836, 6727552.456], [386940.094, 6727784.682], [387050.189, 6728218.131], [389552.355, 6728855.209], [391756.354, 6729090.876], [392330.658, 6728967.769], [392674.162, 6729306.24], [393132.974, 6728795.219]]]}}, {\\\"id\\\": \\\"247\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lemi\\\", \\\"elakelaisten_osuus\\\": 29.4, \\\"freshwarea\\\": 44.58, \\\"gml_id\\\": 1601100646, \\\"landarea\\\": 217.9, \\\"namefin\\\": \\\"Lemi\\\", \\\"nameswe\\\": \\\"Lemi\\\", \\\"natcode\\\": \\\"416\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 262.48}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[545390.268, 6780291.39], [545659.961, 6779988.616], [546739.122, 6780235.724], [547166.952, 6779894.866], [546419.463, 6778565.703], [547175.263, 6777728.651], [547172.666, 6777362.001], [547492.639, 6777028.839], [547773.719, 6777964.659], [548576.388, 6778859.3], [549379.076, 6776916.9], [550332.885, 6777705.286], [551016.014, 6776843.243], [551137.075, 6775480.9], [552465.743, 6774629.658], [552854.389, 6774023.808], [553065.622, 6770711.66], [553499.951, 6770045.635], [552754.163, 6768861.11], [553244.764, 6768876.008], [553512.959, 6768345.326], [553308.044, 6768012.26], [552168.508, 6767904.894], [551727.39, 6767582.622], [551261.978, 6767736.755], [550227.901, 6767393.786], [550628.041, 6767061.225], [550920.828, 6766236.662], [550891.346, 6765390.007], [550495.107, 6765418.792], [550201.523, 6765825.124], [549952.321, 6766328.917], [549720.613, 6766568.218], [548444.135, 6766134.484], [547763.409, 6766475.64], [546857.68, 6766061.9], [547183.656, 6765074.005], [546458.253, 6764721.142], [546304.818, 6764355.09], [546310.924, 6763295.421], [546574.321, 6762691.069], [546389.998, 6762395.088], [545466.773, 6762437.263], [545059.435, 6762856.889], [544435.285, 6763257.62], [541987.779, 6763061.877], [540181.718, 6762616.538], [539317.869, 6762665.009], [538374.247, 6763374.511], [538103.454, 6763785.442], [538113.145, 6764332.02], [537181.822, 6764532.329], [536238.408, 6764279.721], [536596.77, 6763458.858], [536057.292, 6763093.601], [535294.001, 6763332.396], [534243.522, 6764003.312], [534092.181, 6764284.996], [533688.143, 6764560.78], [532271.916, 6764998.088], [531577.6, 6764803.659], [530962.248, 6764893.317], [531608.272, 6766507.568], [532078.777, 6766939.398], [533160.438, 6766850.145], [533581.664, 6767074.359], [533758.19, 6767364.943], [533767.881, 6767860.442], [534159.123, 6767786.476], [534507.584, 6767477.905], [534408.131, 6766746.001], [535055.268, 6766688.631], [534912.108, 6768693.916], [533313.246, 6770086.234], [534052.84, 6770738.277], [534531.247, 6770502.978], [534797.833, 6771092.941], [534260.151, 6771247.872], [534032.936, 6772082.031], [534308.419, 6772574.235], [535125.681, 6773175.299], [537036.498, 6774127.63], [537236.019, 6773876.634], [537923.139, 6774058.766], [538206.571, 6774453.702], [538184.425, 6775032.872], [537272.676, 6777341.125], [537131.725, 6778389.697], [537395.109, 6779784.63], [538269.555, 6779667.985], [539728.56, 6780310.335], [540679.875, 6780375.317], [542049.516, 6780986.279], [542196.954, 6781271.564], [542841.099, 6780395.127], [543682.853, 6781237.79], [544696.754, 6781709.045], [545359.069, 6781943.915], [545732.28, 6781988.686], [545390.268, 6780291.39]]]}}, {\\\"id\\\": \\\"248\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pornainen\\\", \\\"elakelaisten_osuus\\\": 18.7, \\\"freshwarea\\\": 3.57, \\\"gml_id\\\": 1601100579, \\\"landarea\\\": 146.52, \\\"namefin\\\": \\\"Pornainen\\\", \\\"nameswe\\\": \\\"Borgn\\\\u00e4s\\\", \\\"natcode\\\": \\\"611\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 150.09}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[413073.963, 6712770.878], [412974.561, 6711425.238], [413346.511, 6710052.277], [413760.794, 6709312.742], [413954.616, 6708224.21], [413795.168, 6706224.109], [416495.765, 6703678.83], [417449.445, 6702898.098], [418012.334, 6701318.942], [416939.36, 6700119.668], [414618.849, 6698913.891], [412449.0, 6698268.84], [409843.854, 6697758.511], [408782.366, 6699946.592], [407644.735, 6701563.577], [406339.895, 6703376.025], [405444.334, 6704375.991], [404879.929, 6705306.499], [402460.677, 6708594.602], [401427.364, 6711210.401], [403663.471, 6712337.058], [403518.489, 6712618.26], [404641.805, 6713025.032], [406120.702, 6713144.423], [409040.961, 6713246.04], [412963.006, 6714194.858], [413073.963, 6712770.878]]]}}, {\\\"id\\\": \\\"249\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Koski Tl\\\", \\\"elakelaisten_osuus\\\": 36.8, \\\"freshwarea\\\": 0.92, \\\"gml_id\\\": 1601100464, \\\"landarea\\\": 191.49, \\\"namefin\\\": \\\"Koski Tl\\\", \\\"nameswe\\\": \\\"Koski Tl\\\", \\\"natcode\\\": \\\"284\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 192.41}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[278874.926, 6736826.659], [279427.834, 6736548.923], [279467.508, 6736181.963], [279207.08, 6735868.581], [278545.328, 6735900.194], [278119.067, 6736720.374], [278138.999, 6736887.159], [277691.834, 6737030.396], [277804.586, 6737161.342], [278874.926, 6736826.659]]], [[[292222.129, 6739539.638], [293462.602, 6733271.746], [293937.001, 6733131.285], [294391.915, 6732720.282], [294821.4, 6732609.042], [293359.04, 6729021.933], [295306.358, 6727167.025], [295245.555, 6726870.063], [294519.301, 6725929.236], [293574.447, 6724476.571], [293395.265, 6724071.006], [292306.716, 6722632.42], [291279.476, 6721069.583], [289712.028, 6722281.247], [288577.551, 6721994.652], [286994.9, 6721989.918], [286367.884, 6721621.783], [282244.268, 6728544.737], [282470.624, 6728606.199], [282639.16, 6728569.001], [282834.698, 6728660.353], [282765.988, 6729331.794], [281743.874, 6733114.505], [280648.51, 6735218.298], [280528.084, 6735358.863], [280385.401, 6735343.259], [280095.469, 6735479.969], [279489.249, 6736716.908], [279891.021, 6737345.31], [283433.029, 6735783.936], [287196.503, 6739209.58], [287489.901, 6740336.498], [287986.377, 6740740.086], [290626.556, 6743768.628], [292222.129, 6739539.638]]]]}}, {\\\"id\\\": \\\"250\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pihtipudas\\\", \\\"elakelaisten_osuus\\\": 36.5, \\\"freshwarea\\\": 172.58, \\\"gml_id\\\": 1601100399, \\\"landarea\\\": 1074.91, \\\"namefin\\\": \\\"Pihtipudas\\\", \\\"nameswe\\\": \\\"Pihtipudas\\\", \\\"natcode\\\": \\\"601\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1247.49}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[417999.767, 7051437.468], [424479.199, 7045853.194], [424539.134, 7045824.724], [427435.427, 7044777.465], [435241.508, 7044181.914], [437213.116, 7043578.989], [439004.42, 7042516.974], [440697.493, 7041240.938], [444765.3, 7035052.776], [449823.929, 7033795.763], [457055.198, 7036862.779], [458926.46, 7034751.371], [456080.03, 7031129.764], [453493.984, 7025455.896], [454305.846, 7025328.552], [456372.244, 7022676.481], [456944.478, 7016484.555], [451030.645, 7018254.742], [443270.066, 7016668.71], [437002.822, 7018165.712], [434653.536, 7017587.748], [431808.117, 7015024.66], [432061.845, 7013673.334], [430740.605, 7014213.157], [431048.571, 7015469.688], [429126.482, 7015846.426], [428799.676, 7014440.513], [425796.66, 7015010.01], [425512.535, 7015147.963], [425367.382, 7015587.907], [424728.289, 7016140.803], [423524.052, 7017539.03], [423066.115, 7017725.639], [422990.921, 7017457.411], [419376.739, 7017035.262], [416417.539, 7018339.659], [414039.806, 7023568.883], [409188.331, 7032274.613], [404408.486, 7039073.207], [406076.256, 7042943.258], [407657.217, 7050922.609], [412982.72, 7054781.153], [413282.133, 7054997.821], [417999.767, 7051437.468]]]}}, {\\\"id\\\": \\\"251\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ylivieska\\\", \\\"elakelaisten_osuus\\\": 23.9, \\\"freshwarea\\\": 4.5, \\\"gml_id\\\": 1601100187, \\\"landarea\\\": 568.92, \\\"namefin\\\": \\\"Ylivieska\\\", \\\"nameswe\\\": \\\"Ylivieska\\\", \\\"natcode\\\": \\\"977\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 573.42}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[385273.397, 7118697.454], [387793.687, 7118269.548], [388950.576, 7116906.794], [389139.995, 7116991.372], [389658.143, 7116387.387], [389481.676, 7116257.847], [390810.116, 7114726.253], [392464.69, 7113564.625], [397308.226, 7111227.548], [397302.592, 7110823.481], [398092.767, 7110671.231], [399547.853, 7109418.412], [399696.069, 7109515.536], [403461.736, 7106084.121], [397874.997, 7096815.305], [396122.102, 7097601.366], [395532.158, 7096783.791], [395139.601, 7096597.591], [395247.981, 7096304.59], [395082.415, 7095891.496], [394340.27, 7096452.676], [393911.904, 7096252.152], [393549.682, 7096340.35], [393239.802, 7096602.942], [393702.848, 7096814.65], [393584.739, 7097024.416], [393147.781, 7096889.401], [392818.242, 7097266.987], [392459.327, 7097074.729], [392125.446, 7096544.834], [391256.334, 7097421.941], [391526.059, 7097749.352], [391222.813, 7098092.853], [390941.155, 7098011.552], [390946.079, 7097740.246], [390632.352, 7097272.442], [390229.855, 7097305.462], [390374.342, 7097886.689], [389714.913, 7098261.328], [389303.1, 7097838.349], [389396.79, 7097091.462], [389883.037, 7097067.211], [389447.972, 7096499.552], [389097.73, 7096242.88], [388758.509, 7095565.917], [388620.052, 7094885.519], [388782.886, 7094246.431], [389506.4, 7093477.724], [389364.791, 7093271.479], [389005.775, 7093411.071], [388428.318, 7094217.608], [387551.349, 7093999.778], [386742.888, 7094562.4], [385165.296, 7094760.841], [384342.984, 7095390.186], [384323.357, 7093223.3], [383104.343, 7093060.032], [382933.31, 7092789.5], [377271.779, 7095868.673], [372078.336, 7098871.456], [371989.764, 7099580.978], [371713.343, 7100167.957], [372074.148, 7100884.425], [371617.899, 7101088.605], [371521.023, 7100705.638], [370801.907, 7103059.226], [370391.731, 7103008.08], [370443.5, 7102605.316], [369843.234, 7102555.754], [369735.507, 7103092.438], [368795.291, 7101681.398], [368395.877, 7102260.559], [368274.035, 7102437.233], [370391.021, 7104305.316], [370424.741, 7104339.038], [371535.809, 7108197.54], [370658.604, 7110159.351], [371568.503, 7110509.77], [371446.804, 7109699.265], [371823.694, 7109246.416], [372546.393, 7111640.368], [372600.049, 7115148.911], [373204.44, 7115164.496], [372645.944, 7116054.774], [373119.497, 7115874.429], [373358.234, 7116446.164], [373991.129, 7116323.377], [374389.812, 7115874.108], [375687.348, 7116478.362], [375900.905, 7116053.18], [376724.254, 7116637.759], [376606.347, 7116905.318], [378778.654, 7117935.556], [378541.964, 7118471.702], [378800.67, 7118626.555], [379204.01, 7118108.854], [382899.505, 7119849.311], [385273.397, 7118697.454]], [[398614.748, 7098768.564], [398683.838, 7098435.776], [398425.321, 7097997.745], [398091.666, 7097607.545], [397544.509, 7097413.226], [396384.272, 7098245.198], [396658.169, 7098382.597], [397114.808, 7098063.256], [397673.366, 7098231.101], [398150.392, 7098396.254], [398377.093, 7098806.908], [398614.748, 7098768.564]], [[395828.167, 7098459.944], [395283.16, 7098689.957], [394852.012, 7098330.69], [395036.493, 7097738.791], [394577.95, 7097308.594], [394317.414, 7098119.34], [394544.207, 7098414.931], [394238.295, 7099033.772], [395707.303, 7099091.225], [395828.167, 7098459.944]]]}}, {\\\"id\\\": \\\"252\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hattula\\\", \\\"elakelaisten_osuus\\\": 26.1, \\\"freshwarea\\\": 69.6, \\\"gml_id\\\": 1601100131, \\\"landarea\\\": 357.79, \\\"namefin\\\": \\\"Hattula\\\", \\\"nameswe\\\": \\\"Hattula\\\", \\\"natcode\\\": \\\"082\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 427.39}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[355196.889, 6791753.407], [354812.746, 6791648.662], [355992.688, 6790406.172], [356114.566, 6790467.78], [356403.127, 6790220.911], [356190.501, 6790197.707], [356798.372, 6789561.845], [356536.436, 6788803.281], [360348.144, 6784328.793], [362124.024, 6781778.869], [362812.324, 6781131.992], [363170.404, 6780318.919], [364406.907, 6778726.385], [365287.203, 6776733.779], [367518.543, 6774986.519], [367244.66, 6774245.637], [371780.278, 6771929.979], [371407.353, 6771495.294], [367588.565, 6770679.341], [366759.006, 6770310.35], [366722.17, 6770393.682], [366554.459, 6770325.285], [366587.418, 6770249.433], [365951.083, 6769963.636], [365906.257, 6770073.084], [363812.284, 6769285.617], [363464.519, 6770127.675], [362477.607, 6769892.178], [361735.139, 6769613.619], [360696.419, 6769443.005], [359102.23, 6768841.637], [358769.802, 6768562.392], [358369.811, 6768777.962], [357880.956, 6768193.086], [358074.668, 6767622.313], [355961.526, 6765318.655], [356498.13, 6764971.174], [355777.443, 6764548.185], [355700.304, 6765028.076], [353289.231, 6762452.82], [349611.879, 6759430.875], [347456.32, 6757534.462], [344768.662, 6752225.652], [344278.748, 6752445.807], [344075.426, 6752196.943], [343492.958, 6752374.263], [342769.806, 6751107.825], [342279.866, 6751403.024], [341735.675, 6750423.562], [340829.817, 6751102.924], [341191.071, 6751632.691], [340605.235, 6752273.95], [340815.404, 6752567.78], [339606.821, 6753327.676], [338962.004, 6752655.968], [337483.452, 6752882.446], [338802.836, 6754986.797], [338136.876, 6756212.603], [338903.844, 6758348.256], [342342.615, 6763156.647], [346582.714, 6768720.031], [348551.165, 6770772.519], [349470.133, 6772439.127], [350284.571, 6773154.874], [351667.912, 6774016.752], [351455.406, 6774851.254], [352140.83, 6775493.546], [351711.493, 6776036.135], [351234.258, 6776888.192], [351222.859, 6782799.339], [354730.834, 6787129.876], [353116.351, 6789104.767], [352746.008, 6790185.798], [354082.071, 6792429.585], [354164.609, 6792565.666], [355196.889, 6791753.407]]]}}, {\\\"id\\\": \\\"253\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"M\\\\u00e4ntyharju\\\", \\\"elakelaisten_osuus\\\": 41.3, \\\"freshwarea\\\": 230.08, \\\"gml_id\\\": 1601100121, \\\"landarea\\\": 980.9, \\\"namefin\\\": \\\"M\\\\u00e4ntyharju\\\", \\\"nameswe\\\": \\\"M\\\\u00e4ntyharju\\\", \\\"natcode\\\": \\\"507\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1210.98}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[479366.903, 6829692.161], [480033.358, 6829596.94], [480451.924, 6829071.188], [480551.7, 6828767.368], [480595.899, 6828081.644], [481403.041, 6827906.297], [483625.98, 6827964.38], [483822.821, 6828106.171], [484413.283, 6827618.073], [485252.949, 6826319.503], [485538.118, 6825793.039], [485996.141, 6826058.677], [486292.329, 6825735.047], [486295.131, 6825297.024], [486627.795, 6825353.503], [486683.46, 6825805.955], [487083.636, 6826727.688], [487787.91, 6827178.874], [487842.679, 6827490.778], [488468.131, 6827507.146], [488530.409, 6826950.072], [489491.225, 6825748.864], [489496.365, 6824521.709], [489755.23, 6823727.082], [490689.051, 6823456.398], [490913.121, 6821977.771], [491529.782, 6821883.112], [491625.059, 6821458.048], [491272.186, 6821039.772], [492359.34, 6821103.364], [493284.21, 6821131.714], [493473.713, 6820567.706], [493569.884, 6820485.96], [493572.606, 6820350.324], [493713.554, 6820255.408], [493838.087, 6820239.22], [495869.557, 6820451.348], [495797.391, 6819787.516], [496010.584, 6819932.404], [496332.065, 6820998.531], [496707.212, 6821110.488], [497296.529, 6820016.575], [497452.718, 6819389.589], [498066.771, 6818863.905], [498670.618, 6816752.322], [498399.311, 6816127.896], [498604.571, 6815629.518], [499140.753, 6815600.533], [499467.324, 6814876.529], [499470.225, 6814532.668], [500381.755, 6814409.223], [500513.296, 6815215.598], [500413.424, 6815437.348], [500929.32, 6816275.871], [503041.968, 6815342.659], [502889.836, 6814398.34], [503605.444, 6814553.114], [503326.068, 6813452.267], [503296.68, 6812963.922], [502326.278, 6812306.783], [502522.006, 6811137.656], [502914.448, 6810936.04], [503908.957, 6808900.568], [504105.483, 6808005.331], [503969.04, 6807703.952], [505246.624, 6807175.472], [505668.852, 6807321.115], [506031.205, 6807287.731], [506895.251, 6807697.07], [508287.286, 6807633.502], [508807.475, 6807537.844], [508227.414, 6806969.071], [507777.705, 6805810.936], [508030.004, 6805507.96], [507965.233, 6805040.549], [507473.733, 6805091.426], [507259.721, 6804869.814], [507219.535, 6803943.343], [506533.92, 6804216.875], [506088.103, 6804137.632], [505701.061, 6803869.311], [504767.84, 6803996.355], [504863.399, 6804330.02], [503802.623, 6805314.917], [502724.961, 6805334.904], [502607.546, 6805176.662], [501030.648, 6805670.159], [500810.541, 6805112.684], [500823.338, 6804696.652], [500010.075, 6803737.436], [497932.309, 6802522.25], [497532.996, 6801506.625], [499146.242, 6801194.959], [499739.201, 6801254.138], [500381.406, 6801637.298], [500711.901, 6801993.844], [501698.101, 6801891.99], [503827.246, 6800312.24], [504004.076, 6799965.98], [505536.556, 6799496.878], [505921.702, 6799101.741], [507000.468, 6798496.794], [507487.573, 6798112.554], [507699.046, 6799313.48], [509196.373, 6798930.13], [510234.647, 6799543.586], [511218.846, 6799698.528], [512173.555, 6799600.43], [512724.502, 6799294.216], [513459.839, 6799149.865], [513949.942, 6798891.473], [513939.451, 6798162.87], [513808.406, 6797879.985], [512945.593, 6797951.748], [512118.491, 6798171.456], [511641.685, 6798136.868], [512201.465, 6797018.827], [514023.727, 6796523.439], [514561.143, 6796236.17], [514614.289, 6796320.826], [514970.747, 6795809.336], [515252.23, 6796241.662], [515544.611, 6796239.964], [515597.994, 6795524.156], [516216.753, 6794022.172], [516398.985, 6793165.923], [517435.273, 6791808.582], [518096.61, 6791134.261], [518224.362, 6790728.828], [518645.013, 6790560.019], [518678.091, 6790033.543], [518026.15, 6789845.565], [517313.143, 6789339.089], [517267.066, 6788854.187], [517030.066, 6788365.285], [517689.31, 6787193.867], [519054.867, 6786323.731], [519698.777, 6786117.366], [520334.347, 6786709.482], [520632.817, 6786551.176], [520842.24, 6785377.226], [519285.79, 6784554.955], [519282.398, 6783739.388], [519478.927, 6782835.058], [519122.677, 6782169.927], [516974.294, 6781550.982], [516240.837, 6782563.949], [516141.324, 6782319.425], [514478.96, 6781264.768], [512903.995, 6781331.131], [512328.427, 6781418.892], [511075.037, 6780901.795], [508971.588, 6780730.852], [507918.613, 6780974.946], [507084.654, 6780734.539], [506504.587, 6781106.384], [506001.296, 6780384.176], [505183.83, 6780093.989], [504518.1, 6780163.157], [502998.421, 6779674.447], [501677.656, 6779725.218], [501232.334, 6780196.324], [500163.065, 6780579.361], [498212.85, 6781650.712], [496588.704, 6782277.246], [495275.032, 6783192.165], [496213.633, 6786184.652], [496065.187, 6787116.471], [495777.403, 6787284.701], [495744.612, 6787935.336], [494598.87, 6788985.101], [494140.351, 6789797.867], [494457.122, 6789980.394], [493460.602, 6793775.142], [493633.327, 6794561.122], [492083.258, 6794395.281], [488300.007, 6792880.069], [487768.626, 6792454.838], [487841.802, 6791606.684], [487328.018, 6790493.833], [487146.898, 6789500.836], [486618.817, 6789015.229], [486331.738, 6788397.578], [481801.4, 6785877.967], [480120.975, 6787463.909], [482347.689, 6789964.483], [482131.206, 6790934.765], [481228.794, 6792286.561], [480796.742, 6794311.385], [480335.594, 6794872.001], [480126.503, 6795433.237], [479477.555, 6794821.737], [476496.82, 6793001.94], [475851.116, 6793726.835], [475058.303, 6793576.698], [474912.594, 6793200.371], [474163.556, 6793167.891], [473923.367, 6793440.746], [473443.059, 6794111.071], [473199.148, 6795921.536], [472325.886, 6798856.739], [468467.358, 6799180.17], [467854.81, 6798804.117], [464269.164, 6801993.532], [463415.195, 6803061.448], [463557.53, 6804291.851], [465014.233, 6804642.823], [466262.524, 6804657.13], [466923.656, 6804404.938], [467289.206, 6804566.377], [467980.827, 6804086.378], [468518.206, 6804366.969], [470785.679, 6804629.185], [470597.462, 6803658.877], [471160.185, 6802608.584], [471350.164, 6802116.109], [470248.216, 6801720.659], [470636.798, 6801163.494], [470759.29, 6800694.928], [471075.234, 6800607.494], [471662.869, 6799520.528], [472325.886, 6798856.739], [473282.892, 6799523.376], [473767.99, 6800111.141], [473576.864, 6800740.285], [473519.272, 6803358.723], [473899.113, 6804014.159], [473815.343, 6804668.694], [473925.457, 6804950.324], [474791.623, 6803786.633], [475944.574, 6804826.943], [475903.721, 6805667.052], [474202.578, 6805962.172], [474818.77, 6807144.297], [476467.242, 6807835.927], [477219.531, 6808543.945], [477499.511, 6809508.556], [477109.656, 6809372.583], [476884.871, 6809980.834], [476931.338, 6810727.305], [476749.907, 6811169.478], [476562.878, 6811889.462], [476423.92, 6814483.432], [477268.826, 6815399.854], [477897.408, 6816286.511], [479739.292, 6816707.12], [479651.085, 6817759.426], [480273.498, 6818002.858], [481280.618, 6818121.89], [481340.391, 6818638.082], [481132.473, 6819113.588], [480365.195, 6819801.085], [479912.88, 6820320.634], [479931.592, 6820827.677], [480915.616, 6820537.119], [480990.713, 6820908.142], [480635.219, 6821216.754], [481686.051, 6821223.184], [481441.23, 6822111.476], [480226.758, 6822544.082], [481477.031, 6822732.082], [481405.903, 6823167.127], [480081.957, 6822875.607], [479944.789, 6823088.561], [480161.232, 6823355.334], [480885.446, 6823691.034], [479591.739, 6824399.318], [479263.919, 6825711.749], [479557.276, 6825664.127], [479723.971, 6825318.377], [480064.87, 6825471.009], [479004.744, 6826593.347], [478783.56, 6830093.662], [479366.903, 6829692.161]]]}}, {\\\"id\\\": \\\"254\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Urjala\\\", \\\"elakelaisten_osuus\\\": 36.9, \\\"freshwarea\\\": 29.98, \\\"gml_id\\\": 1601100039, \\\"landarea\\\": 475.4, \\\"namefin\\\": \\\"Urjala\\\", \\\"nameswe\\\": \\\"Urjala\\\", \\\"natcode\\\": \\\"887\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 505.38}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[301430.128, 6794669.462], [302019.477, 6794852.05], [302124.849, 6794291.482], [302809.444, 6794492.79], [302933.135, 6793833.684], [304877.821, 6794460.134], [304893.116, 6793683.878], [306133.007, 6794099.794], [306222.922, 6792590.959], [305658.269, 6792122.614], [305625.918, 6791665.178], [306598.061, 6791310.142], [306780.198, 6791559.587], [307465.372, 6791093.519], [307850.331, 6791401.793], [308259.776, 6790959.328], [307593.313, 6790341.531], [314246.201, 6790569.479], [313817.653, 6790150.983], [314007.781, 6788828.254], [313585.482, 6788327.893], [312487.832, 6787659.023], [311369.043, 6786031.512], [312391.798, 6785087.378], [312604.031, 6784784.322], [311848.244, 6784902.605], [312714.164, 6784141.286], [312834.779, 6783493.164], [314199.833, 6782403.167], [314007.717, 6781751.974], [314710.661, 6781498.544], [315305.386, 6780879.04], [315431.856, 6781682.98], [316285.081, 6782076.181], [319568.327, 6780771.709], [318715.865, 6779431.065], [319814.366, 6778635.311], [320187.41, 6777202.829], [320262.66, 6775804.078], [321126.595, 6775671.721], [322197.843, 6775035.896], [322559.986, 6775134.373], [322661.929, 6775512.792], [323167.426, 6775455.571], [323025.198, 6775005.702], [323730.293, 6774964.704], [324952.559, 6773513.092], [327451.427, 6772682.17], [326977.811, 6771908.483], [327423.08, 6771011.58], [326711.239, 6769836.393], [328684.169, 6770304.607], [330716.749, 6770991.298], [330824.33, 6770250.531], [331332.852, 6769259.209], [331123.466, 6768906.122], [330425.841, 6768578.206], [329999.047, 6768325.406], [329509.862, 6767899.431], [329209.783, 6767689.513], [328892.023, 6768060.356], [328848.861, 6767215.166], [327809.259, 6767047.899], [329707.948, 6764708.23], [329878.266, 6763698.908], [330233.488, 6761682.662], [328776.641, 6760201.18], [326640.495, 6765809.765], [326103.046, 6765809.67], [325640.862, 6766626.104], [325149.65, 6766777.448], [323464.302, 6766308.588], [323623.191, 6767593.425], [322286.219, 6768255.124], [321322.677, 6767946.127], [320781.262, 6767652.203], [319687.984, 6768020.357], [319459.11, 6767591.492], [318869.276, 6767549.556], [317843.978, 6767913.684], [317641.113, 6767523.765], [317182.141, 6767787.183], [316552.947, 6766575.294], [315842.017, 6766446.611], [315314.119, 6765828.433], [314632.612, 6766585.963], [314813.135, 6766905.599], [315186.96, 6766538.714], [315466.184, 6767123.128], [314357.692, 6767768.106], [314249.7, 6767212.284], [313714.463, 6767605.181], [313118.669, 6767173.548], [312361.052, 6766349.073], [311306.574, 6767093.892], [310685.698, 6766815.134], [309571.537, 6766804.612], [308931.534, 6766582.699], [308843.904, 6766045.3], [308185.517, 6766112.178], [308118.064, 6765933.473], [308663.125, 6765553.47], [308664.845, 6765124.966], [308494.589, 6764536.373], [309143.035, 6763855.071], [308623.193, 6763975.57], [307985.642, 6764577.177], [307250.616, 6764894.233], [307046.776, 6764598.047], [306420.535, 6764852.997], [305769.984, 6764568.365], [304942.526, 6765824.728], [304223.077, 6768472.871], [303420.561, 6769865.451], [301959.966, 6769441.809], [298359.877, 6770746.386], [297912.327, 6770626.756], [297813.288, 6770909.189], [299677.521, 6774882.564], [298474.223, 6775088.822], [298521.523, 6775580.908], [297326.31, 6775695.096], [296796.581, 6775949.754], [296616.696, 6776641.977], [298067.246, 6776541.901], [297752.536, 6776809.122], [298751.001, 6776737.475], [299093.358, 6777099.428], [299708.266, 6777132.492], [299512.543, 6777452.579], [298711.587, 6777505.132], [298654.376, 6778016.888], [297914.31, 6778070.229], [298136.031, 6779881.462], [297182.195, 6780156.331], [296720.734, 6780661.405], [297121.029, 6780986.42], [297449.981, 6781630.821], [298035.598, 6781529.42], [298475.448, 6781606.439], [299038.66, 6781253.373], [298641.525, 6780791.058], [298993.601, 6780634.445], [299441.503, 6781002.326], [301137.653, 6781163.282], [301251.437, 6781576.494], [305264.715, 6782737.647], [301566.561, 6786740.901], [298836.826, 6788879.988], [299894.258, 6793125.238], [300346.112, 6795011.413], [301430.128, 6794669.462]]]}}, {\\\"id\\\": \\\"255\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Merikarvia\\\", \\\"elakelaisten_osuus\\\": 39.9, \\\"freshwarea\\\": 4.6, \\\"gml_id\\\": 1601100076, \\\"landarea\\\": 446.14, \\\"namefin\\\": \\\"Merikarvia\\\", \\\"nameswe\\\": \\\"Sastmola\\\", \\\"natcode\\\": \\\"484\\\", \\\"seawarea\\\": 795.5, \\\"totalarea\\\": 1246.24}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[220077.099, 6887919.971], [222946.328, 6887833.806], [225346.628, 6887071.612], [224763.833, 6878131.636], [224521.152, 6878170.413], [222758.819, 6871542.319], [221130.561, 6871412.635], [219842.221, 6865149.052], [221808.002, 6857384.242], [220287.519, 6856434.139], [216528.796, 6857374.843], [216190.941, 6857731.503], [215741.599, 6857513.818], [215292.618, 6857686.303], [213867.808, 6858049.795], [213431.768, 6857756.337], [213153.252, 6858227.025], [212571.592, 6858259.586], [212339.081, 6857445.004], [206708.163, 6855811.34], [205498.186, 6855876.09], [202499.941, 6856750.518], [177110.724, 6855934.835], [176308.291, 6880855.366], [200249.249, 6881206.518], [204486.251, 6882577.493], [208432.048, 6887784.308], [213658.47, 6889017.4], [220077.099, 6887919.971]]]}}, {\\\"id\\\": \\\"256\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Maalahti\\\", \\\"elakelaisten_osuus\\\": 30.5, \\\"freshwarea\\\": 4.07, \\\"gml_id\\\": 1601100062, \\\"landarea\\\": 521.75, \\\"namefin\\\": \\\"Maalahti\\\", \\\"nameswe\\\": \\\"Malax\\\", \\\"natcode\\\": \\\"475\\\", \\\"seawarea\\\": 1429.12, \\\"totalarea\\\": 1954.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[198928.241, 7011668.255], [214718.588, 7001851.991], [215149.9, 7001522.135], [215268.304, 7001048.299], [215969.429, 7000488.151], [215857.362, 7000239.514], [216684.072, 6999848.307], [217816.047, 6999861.124], [217877.201, 6999947.551], [218062.239, 7000075.538], [218276.769, 6999955.281], [218273.186, 6999866.89], [221516.905, 6998045.178], [224100.254, 6995266.449], [224706.123, 6995547.622], [224736.825, 6995280.116], [225700.808, 6995393.87], [226520.624, 6994184.332], [227999.886, 6992159.244], [229404.45, 6990666.326], [233443.958, 6986747.961], [233148.491, 6986631.409], [233598.704, 6986145.368], [233933.374, 6986273.848], [234786.913, 6985451.635], [234390.451, 6985308.054], [235110.453, 6984519.06], [234172.221, 6981191.422], [233680.603, 6979445.867], [231587.15, 6976648.721], [231118.654, 6970711.502], [230402.056, 6970713.036], [228945.182, 6967606.74], [227994.262, 6967923.382], [228187.239, 6968346.957], [228088.379, 6968679.549], [227556.6, 6968569.653], [227513.795, 6968132.728], [226855.786, 6968232.571], [226129.857, 6968721.814], [226092.496, 6968542.149], [225835.875, 6968347.423], [225826.298, 6968364.419], [225316.532, 6968333.54], [225407.011, 6969905.637], [222157.229, 6969979.705], [221820.45, 6970818.294], [220647.97, 6970190.435], [220369.98, 6970662.279], [220702.666, 6970946.939], [220633.07, 6971179.744], [214057.559, 6971107.767], [213838.628, 6971105.629], [212960.376, 6971155.43], [212945.705, 6972207.385], [211699.911, 6973745.012], [210923.76, 6975562.38], [209812.632, 6977271.893], [210907.292, 6977773.265], [210243.979, 6978326.707], [210290.578, 6978386.569], [210577.112, 6978197.479], [211192.692, 6978943.918], [211387.727, 6978801.671], [211418.027, 6979063.447], [211310.873, 6979108.339], [211524.372, 6979534.361], [211761.258, 6980635.402], [211384.056, 6982557.919], [212097.03, 6982800.176], [212443.567, 6980508.295], [212423.366, 6980502.445], [212418.842, 6980512.114], [211952.749, 6980535.894], [212076.72, 6980290.345], [212480.482, 6980265.259], [212788.814, 6978202.379], [213243.911, 6978801.705], [213107.832, 6978860.755], [213576.758, 6979833.739], [211703.607, 6984624.119], [211901.302, 6984714.569], [211614.156, 6984980.81], [211518.954, 6985101.118], [211463.829, 6985242.096], [211362.421, 6985320.612], [207929.756, 6991941.097], [188964.666, 6993360.359], [160279.808, 6995507.005], [160272.076, 6995558.621], [156269.296, 7022279.566], [164704.525, 7032920.449], [198928.241, 7011668.255]]]}}, {\\\"id\\\": \\\"257\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Maarianhamina\\\", \\\"elakelaisten_osuus\\\": 24.5, \\\"freshwarea\\\": 0.0, \\\"gml_id\\\": 1601100066, \\\"landarea\\\": 11.8, \\\"namefin\\\": \\\"Maarianhamina\\\", \\\"nameswe\\\": \\\"Mariehamn\\\", \\\"natcode\\\": \\\"478\\\", \\\"seawarea\\\": 8.95, \\\"totalarea\\\": 20.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[109065.355, 6685101.119], [109213.871, 6682698.358], [109606.966, 6682052.048], [108957.647, 6679362.605], [108657.102, 6679222.814], [108426.203, 6678964.271], [108314.781, 6678598.04], [108067.706, 6678337.705], [108021.271, 6678038.524], [107772.447, 6677580.713], [106669.075, 6677676.693], [106774.144, 6678983.494], [106413.73, 6679816.692], [106114.946, 6680335.082], [106610.297, 6680830.433], [106492.59, 6681048.682], [106266.984, 6681154.128], [106188.513, 6681480.275], [106455.806, 6681487.632], [106784.406, 6681691.167], [106924.183, 6682063.906], [106875.138, 6682289.512], [106705.934, 6682399.862], [106630.221, 6682427.294], [106536.73, 6682461.168], [106571.061, 6682851.073], [106691.221, 6682927.092], [106759.883, 6683155.15], [106590.679, 6683263.048], [106725.585, 6683696.546], [106774.597, 6683854.036], [106721.781, 6684146.923], [106946.774, 6684202.991], [107096.491, 6685437.026], [107055.541, 6686268.769], [107856.891, 6686323.354], [107902.072, 6686578.637], [109363.682, 6686625.619], [109065.355, 6685101.119]]]}}, {\\\"id\\\": \\\"258\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vihti\\\", \\\"elakelaisten_osuus\\\": 21.9, \\\"freshwarea\\\": 45.04, \\\"gml_id\\\": 1601100331, \\\"landarea\\\": 522.02, \\\"namefin\\\": \\\"Vihti\\\", \\\"nameswe\\\": \\\"Vichtis\\\", \\\"natcode\\\": \\\"927\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 567.06}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[368183.62, 6715888.706], [370965.851, 6711300.816], [370926.378, 6711258.416], [369643.826, 6711554.014], [366633.292, 6710124.519], [365127.95, 6708432.689], [363954.349, 6707069.304], [365888.007, 6706299.373], [366672.676, 6703867.295], [366694.026, 6702765.801], [367125.803, 6699065.852], [367997.104, 6697059.824], [369134.568, 6693775.377], [368572.913, 6692805.761], [367946.035, 6691143.146], [367225.249, 6689936.88], [365362.86, 6688879.345], [361962.88, 6690367.147], [362472.847, 6686495.759], [361751.588, 6686061.341], [362569.982, 6685740.984], [362624.151, 6685325.923], [360545.372, 6685786.993], [360456.483, 6686609.239], [358665.968, 6687306.956], [358629.146, 6687291.817], [357274.66, 6686963.923], [356697.668, 6685800.744], [355498.108, 6684885.579], [354500.398, 6682887.474], [352899.518, 6681792.724], [352485.409, 6683868.535], [351084.214, 6687267.974], [350363.933, 6688252.079], [349518.905, 6689020.53], [349093.986, 6688735.556], [348417.581, 6689549.867], [345713.071, 6687943.616], [345493.322, 6690244.929], [345912.732, 6693008.579], [345724.96, 6693756.118], [345907.536, 6694529.922], [345790.284, 6695101.034], [345536.454, 6695499.79], [344796.879, 6696988.756], [343903.356, 6696816.829], [343618.334, 6698186.568], [342067.039, 6698486.552], [342640.679, 6699725.891], [341664.302, 6699827.095], [341980.601, 6700173.762], [342449.466, 6700524.444], [342588.24, 6700785.319], [342332.096, 6701328.023], [342320.02, 6702608.377], [343088.693, 6705507.978], [344565.478, 6708737.405], [344726.117, 6708985.216], [346908.349, 6708626.508], [347157.647, 6709005.556], [347127.119, 6709676.088], [348708.216, 6710739.592], [350442.191, 6707960.156], [350158.251, 6707035.125], [350500.573, 6706895.799], [350939.092, 6707435.074], [352638.209, 6707983.574], [355987.583, 6708738.364], [360778.209, 6710231.502], [358726.22, 6715710.045], [365623.834, 6716265.571], [367281.278, 6719098.266], [368183.62, 6715888.706]]]}}, {\\\"id\\\": \\\"259\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"\\\\u00c4ht\\\\u00e4ri\\\", \\\"elakelaisten_osuus\\\": 37.0, \\\"freshwarea\\\": 105.05, \\\"gml_id\\\": 1601100201, \\\"landarea\\\": 805.83, \\\"namefin\\\": \\\"\\\\u00c4ht\\\\u00e4ri\\\", \\\"nameswe\\\": \\\"Etseri\\\", \\\"natcode\\\": \\\"989\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 910.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[346370.41, 6962622.67], [346680.51, 6962138.434], [346836.633, 6961626.646], [346684.645, 6961242.367], [347407.831, 6960710.268], [346754.622, 6960392.901], [347302.684, 6959056.438], [348604.168, 6959564.335], [348320.016, 6960219.487], [349451.161, 6958886.724], [349503.653, 6958611.741], [350670.224, 6957398.553], [352199.941, 6957628.171], [352602.241, 6954957.813], [354881.771, 6954754.83], [354330.276, 6957373.177], [356963.607, 6958464.126], [357177.61, 6957484.111], [356787.609, 6957445.651], [356744.96, 6956131.807], [356329.977, 6955531.371], [358224.611, 6953625.812], [360798.19, 6957289.0], [357636.362, 6959575.281], [358605.026, 6961232.517], [361105.043, 6961695.986], [361299.033, 6960996.085], [360416.74, 6959780.367], [360582.188, 6958944.795], [361496.586, 6958289.877], [361895.352, 6958857.803], [362251.699, 6957997.644], [365428.641, 6956812.475], [365643.369, 6955069.913], [367642.238, 6955313.487], [368410.318, 6953528.435], [369653.826, 6953825.444], [370577.486, 6951977.75], [372133.887, 6952309.675], [371713.314, 6952728.003], [372286.902, 6953381.793], [372885.83, 6952868.862], [373036.311, 6953044.961], [376149.768, 6950563.473], [372408.821, 6947361.48], [371940.958, 6945869.658], [373837.705, 6945237.765], [375790.919, 6945737.599], [376037.789, 6944649.72], [374447.476, 6944292.001], [375019.394, 6941243.75], [373385.501, 6940934.129], [373831.896, 6939120.711], [372763.801, 6938861.006], [373352.832, 6936379.243], [373030.433, 6936296.178], [372735.27, 6936971.627], [372350.716, 6936799.291], [372926.096, 6935477.746], [372218.326, 6935135.598], [371944.111, 6935657.861], [371729.058, 6935540.595], [371559.621, 6934149.749], [371680.354, 6933362.602], [371640.843, 6933095.55], [371944.61, 6932698.537], [371036.517, 6932014.307], [370494.994, 6932246.918], [370410.905, 6931947.235], [368884.285, 6931755.923], [368683.893, 6930774.065], [367232.015, 6929567.187], [366428.199, 6932105.355], [365851.934, 6931938.683], [365776.553, 6932199.31], [366352.819, 6932365.981], [366246.345, 6932750.553], [365668.543, 6932589.881], [365005.786, 6931897.527], [364786.11, 6932843.729], [362483.209, 6931740.306], [362711.194, 6931135.257], [361942.061, 6930776.119], [362504.795, 6929363.334], [362746.296, 6929459.528], [363038.414, 6928736.444], [362797.078, 6928629.543], [361807.394, 6926920.543], [355768.028, 6931075.644], [349972.567, 6923649.061], [350233.547, 6923119.684], [346809.505, 6920085.301], [345455.368, 6918226.112], [344590.659, 6919411.754], [344617.79, 6919777.67], [342540.245, 6920984.86], [342075.228, 6921040.23], [341008.871, 6921479.901], [340961.525, 6922195.209], [340448.679, 6923133.136], [340387.137, 6923823.651], [340262.62, 6924127.964], [340427.319, 6924692.017], [340478.735, 6925243.97], [340261.385, 6925736.272], [340090.974, 6926557.551], [340673.178, 6928541.979], [340194.41, 6928683.492], [340305.99, 6929067.577], [340738.76, 6928959.927], [340214.894, 6931990.53], [338583.246, 6932174.94], [338489.746, 6929365.582], [336987.61, 6929367.886], [336977.473, 6933246.544], [339774.014, 6936999.023], [341656.202, 6936683.408], [343431.897, 6937443.807], [343526.012, 6938093.839], [344072.096, 6939719.957], [344913.627, 6941164.424], [344484.192, 6941306.669], [344065.203, 6941133.928], [344124.189, 6941520.233], [343730.747, 6942192.426], [343976.995, 6942299.011], [345211.276, 6941675.331], [345569.224, 6942289.741], [345086.851, 6944801.999], [344495.569, 6946917.678], [344196.266, 6948614.392], [345266.738, 6950227.027], [346286.633, 6951157.61], [346251.263, 6953327.752], [343831.847, 6959331.648], [343298.204, 6961570.195], [345273.225, 6961724.547], [345555.806, 6962635.162], [346033.466, 6962902.709], [346370.41, 6962622.67]]]}}, {\\\"id\\\": \\\"260\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Paimio\\\", \\\"elakelaisten_osuus\\\": 25.0, \\\"freshwarea\\\": 1.62, \\\"gml_id\\\": 1601100239, \\\"landarea\\\": 238.41, \\\"namefin\\\": \\\"Paimio\\\", \\\"nameswe\\\": \\\"Pemar\\\", \\\"natcode\\\": \\\"577\\\", \\\"seawarea\\\": 2.24, \\\"totalarea\\\": 242.27}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[264191.414, 6719898.342], [264811.025, 6719614.725], [268059.273, 6717470.908], [268471.229, 6717381.943], [269391.303, 6717347.741], [270739.01, 6717118.531], [270623.204, 6716814.338], [271037.404, 6716717.64], [271142.545, 6717066.775], [271837.919, 6716510.001], [271984.469, 6715508.801], [272433.72, 6713632.545], [272420.579, 6713067.957], [271791.405, 6711118.647], [271868.275, 6710463.948], [273166.818, 6708107.437], [271942.536, 6706276.264], [272759.344, 6706045.99], [272614.391, 6705049.736], [271712.212, 6705131.156], [270651.642, 6703892.931], [270363.229, 6701795.995], [269524.021, 6700258.507], [269253.277, 6700115.454], [267669.917, 6699970.234], [266240.792, 6701135.719], [265709.428, 6701977.364], [266119.185, 6702630.874], [265937.215, 6702739.428], [265543.724, 6702394.511], [264929.537, 6702268.812], [263051.922, 6700760.188], [262574.171, 6700460.255], [262248.458, 6700730.418], [261769.99, 6700478.278], [261351.242, 6700714.04], [260836.931, 6700459.117], [260263.534, 6700510.278], [259397.756, 6699956.979], [257945.707, 6702009.431], [257834.386, 6703206.768], [257203.771, 6703443.778], [257754.814, 6704127.765], [256811.564, 6704579.284], [257527.964, 6705005.012], [257766.937, 6705467.721], [257641.557, 6709312.335], [257040.024, 6709398.744], [257318.54, 6709768.931], [257619.415, 6709672.103], [257517.69, 6711836.8], [257272.581, 6712383.465], [257534.588, 6712560.654], [257299.702, 6713010.931], [257446.584, 6713502.467], [257212.873, 6714707.055], [257252.408, 6715150.02], [259973.34, 6716915.663], [260681.641, 6717407.201], [261776.506, 6718398.447], [262876.295, 6719355.015], [263188.224, 6719818.677], [263817.478, 6719686.177], [263670.702, 6720195.353], [264191.414, 6719898.342]]]}}, {\\\"id\\\": \\\"261\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Jomala\\\", \\\"elakelaisten_osuus\\\": 16.2, \\\"freshwarea\\\": 1.72, \\\"gml_id\\\": 1601100288, \\\"landarea\\\": 142.67, \\\"namefin\\\": \\\"Jomala\\\", \\\"nameswe\\\": \\\"Jomala\\\", \\\"natcode\\\": \\\"170\\\", \\\"seawarea\\\": 542.62, \\\"totalarea\\\": 687.01}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[108817.096, 6695781.066], [108884.356, 6695635.452], [108942.421, 6695197.348], [109628.474, 6695123.981], [109974.425, 6694859.828], [110080.348, 6694799.985], [110101.561, 6694768.395], [110168.228, 6694647.456], [110242.904, 6694417.806], [110857.293, 6694485.93], [110934.318, 6694286.437], [110967.376, 6694052.54], [110960.99, 6693684.985], [111339.81, 6693686.319], [111725.722, 6693367.538], [111850.53, 6692819.984], [112069.137, 6692277.651], [112262.061, 6692201.125], [112324.419, 6692092.165], [112610.056, 6692157.812], [112635.599, 6692431.205], [112533.232, 6692568.954], [112671.316, 6692786.326], [112938.309, 6693036.685], [113361.246, 6693227.362], [113871.666, 6693990.054], [115037.249, 6693379.02], [114974.5, 6691379.607], [115392.322, 6690682.064], [119119.776, 6687192.932], [116705.2, 6686678.39], [115079.385, 6684389.033], [114156.947, 6684134.663], [113852.122, 6683535.198], [113816.862, 6682563.743], [113561.309, 6681973.052], [112861.977, 6682381.497], [112483.761, 6682802.606], [112211.991, 6682714.355], [111864.912, 6682719.547], [111202.706, 6682897.761], [111215.629, 6682269.514], [110845.711, 6682192.62], [110787.737, 6681827.959], [110191.91, 6682169.658], [109606.966, 6682052.048], [109213.871, 6682698.358], [109065.355, 6685101.119], [109363.682, 6686625.619], [107902.072, 6686578.637], [107856.891, 6686323.354], [107055.541, 6686268.769], [107096.491, 6685437.026], [106946.774, 6684202.991], [106721.781, 6684146.923], [106774.597, 6683854.036], [106725.585, 6683696.546], [106590.679, 6683263.048], [106759.883, 6683155.15], [106691.221, 6682927.092], [106571.061, 6682851.073], [106536.73, 6682461.168], [106630.221, 6682427.294], [106705.934, 6682399.862], [106875.138, 6682289.512], [106924.183, 6682063.906], [106784.406, 6681691.167], [106455.806, 6681487.632], [106188.513, 6681480.275], [106266.984, 6681154.128], [106492.59, 6681048.682], [106610.297, 6680830.433], [106114.946, 6680335.082], [106413.73, 6679816.692], [106774.144, 6678983.494], [106669.075, 6677676.693], [105860.231, 6678069.951], [104620.598, 6677467.691], [104703.971, 6675789.112], [104351.304, 6675054.16], [88483.137, 6651045.069], [77470.352, 6670793.378], [94806.373, 6686995.636], [95086.904, 6687454.901], [95660.257, 6687447.264], [96185.421, 6687925.85], [98374.195, 6689026.231], [98775.755, 6689207.373], [101452.852, 6689753.272], [101015.517, 6692137.396], [103529.419, 6692244.433], [103785.433, 6692421.699], [103571.878, 6692917.047], [103625.707, 6693417.765], [103485.322, 6693846.502], [104753.709, 6693969.904], [105793.749, 6693401.563], [106350.914, 6693408.849], [106439.817, 6693906.093], [106631.346, 6694275.489], [106725.34, 6694390.147], [106743.968, 6694566.855], [106847.612, 6694636.927], [107073.072, 6694687.649], [107094.779, 6694777.884], [107213.713, 6694982.53], [107217.967, 6695097.484], [107307.847, 6695104.769], [107360.223, 6695248.567], [107439.114, 6695372.045], [108408.936, 6695849.488], [108517.58, 6695848.824], [108700.646, 6695884.607], [108817.096, 6695781.066]]]}}, {\\\"id\\\": \\\"262\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyh\\\\u00e4nt\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 27.9, \\\"freshwarea\\\": 36.81, \\\"gml_id\\\": 1601100336, \\\"landarea\\\": 810.67, \\\"namefin\\\": \\\"Pyh\\\\u00e4nt\\\\u00e4\\\", \\\"nameswe\\\": \\\"Pyh\\\\u00e4nt\\\\u00e4\\\", \\\"natcode\\\": \\\"630\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 847.48}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[457451.947, 7105663.333], [457701.04, 7105482.0], [458190.666, 7105642.64], [458397.431, 7105139.879], [458742.016, 7103834.258], [457943.465, 7103436.484], [457758.041, 7103732.566], [457708.522, 7104015.7], [458062.192, 7104248.216], [457900.294, 7104576.298], [457537.618, 7104257.915], [457412.848, 7104420.109], [457780.689, 7104892.983], [457430.752, 7104999.859], [457135.784, 7105091.814], [456745.101, 7104199.745], [456316.157, 7104549.358], [455938.522, 7104630.758], [455765.059, 7105177.084], [456622.15, 7105246.228], [456604.402, 7105947.72], [456875.093, 7106006.595], [456936.948, 7106275.422], [457056.215, 7106376.693], [457451.947, 7105663.333]]], [[[475887.583, 7123846.571], [477378.208, 7123383.445], [480531.657, 7121458.239], [481096.769, 7121373.334], [481732.525, 7120844.809], [481937.494, 7120917.542], [488879.423, 7121106.639], [489129.12, 7110807.551], [488582.814, 7110316.427], [488722.627, 7110054.641], [489118.094, 7110371.574], [489315.436, 7103395.369], [493669.471, 7101140.706], [480320.629, 7094791.276], [478421.209, 7093042.385], [477770.861, 7092445.144], [477428.32, 7093249.202], [476313.119, 7092992.43], [476771.702, 7091522.345], [471887.497, 7087020.621], [469237.026, 7084830.775], [468923.803, 7085064.318], [468396.956, 7084567.428], [467546.345, 7084470.636], [468071.093, 7083870.106], [462785.501, 7079521.042], [463261.848, 7089025.861], [463238.399, 7091462.177], [460317.508, 7096721.518], [461570.336, 7099749.991], [460925.073, 7100547.985], [459711.636, 7099834.536], [459460.146, 7101219.986], [460624.167, 7101253.88], [462313.949, 7102028.367], [462269.566, 7103148.013], [461226.591, 7102643.67], [461403.467, 7103274.88], [461137.195, 7103347.083], [460602.068, 7105994.877], [462035.722, 7107144.745], [462257.374, 7106904.143], [462313.422, 7107343.105], [461929.93, 7107409.221], [462081.221, 7107716.527], [461342.089, 7108387.323], [461458.253, 7108689.03], [461272.939, 7108896.301], [460936.279, 7108517.227], [460454.726, 7108612.814], [459880.147, 7109149.685], [459727.113, 7109783.712], [458946.896, 7109794.926], [458791.869, 7109971.884], [458712.797, 7110275.552], [458517.547, 7110208.615], [458364.518, 7110545.544], [458334.299, 7110772.532], [458204.007, 7111070.203], [458360.122, 7111247.228], [458019.445, 7111478.449], [458548.929, 7111835.362], [459073.156, 7111452.185], [459232.465, 7111716.807], [458393.326, 7112116.86], [458251.155, 7112404.776], [458323.398, 7112477.554], [458173.858, 7112673.987], [458151.605, 7112800.336], [458350.203, 7112731.834], [458575.178, 7112547.562], [459503.027, 7113434.758], [459727.888, 7113869.983], [460425.325, 7113956.714], [460623.104, 7114694.672], [460703.24, 7114770.789], [461196.808, 7114278.52], [462371.775, 7113747.919], [462978.733, 7113696.152], [463136.107, 7113349.386], [463849.222, 7114340.267], [464796.352, 7114711.337], [464524.99, 7114987.366], [465143.484, 7115582.975], [465587.685, 7115107.992], [466824.134, 7116286.293], [467284.139, 7116091.394], [467413.628, 7116667.56], [466866.573, 7116670.354], [466891.397, 7118076.872], [467072.306, 7119547.364], [468067.184, 7119358.168], [468436.491, 7118787.282], [469746.464, 7118503.049], [471210.411, 7120928.45], [470766.991, 7122659.592], [472541.801, 7122573.704], [472717.098, 7122122.251], [473851.02, 7121949.739], [475520.763, 7123818.54], [475414.875, 7124295.547], [475887.583, 7123846.571]]]]}}, {\\\"id\\\": \\\"263\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vantaa\\\", \\\"elakelaisten_osuus\\\": 18.1, \\\"freshwarea\\\": 1.98, \\\"gml_id\\\": 1601100143, \\\"landarea\\\": 238.37, \\\"namefin\\\": \\\"Vantaa\\\", \\\"nameswe\\\": \\\"Vanda\\\", \\\"natcode\\\": \\\"092\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 240.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[382575.481, 6697867.459], [382443.229, 6697726.269], [382438.25, 6697647.282], [382506.957, 6697552.438], [382494.664, 6697291.458], [382586.033, 6697177.885], [382715.368, 6697048.678], [382770.967, 6696943.284], [382889.974, 6696840.412], [382987.851, 6696674.777], [382996.953, 6696538.523], [382996.28, 6696325.706], [382960.116, 6696144.578], [382884.152, 6696008.878], [384530.145, 6693873.715], [385803.386, 6691773.387], [386415.123, 6690916.784], [387070.673, 6690187.983], [388086.16, 6690204.789], [389583.713, 6690171.531], [389794.713, 6690193.444], [391687.909, 6691145.787], [392345.124, 6691701.998], [392281.636, 6691810.226], [392348.256, 6691854.422], [391270.033, 6693438.579], [390864.644, 6694019.402], [391435.163, 6694416.411], [391615.906, 6694184.811], [391818.765, 6694318.46], [392067.121, 6693991.362], [392476.08, 6694313.323], [392511.0, 6694452.41], [392570.997, 6694522.291], [392585.024, 6694525.007], [392631.168, 6694588.155], [392674.797, 6694579.377], [392713.045, 6694617.159], [393253.837, 6694140.46], [393357.568, 6694188.686], [393443.603, 6694275.064], [393597.39, 6694256.56], [393721.294, 6694301.427], [393916.943, 6694490.093], [394375.772, 6694399.69], [394675.378, 6693732.064], [396010.458, 6693625.721], [396034.786, 6693054.079], [396926.462, 6692862.656], [398036.723, 6692854.03], [397048.739, 6691679.924], [398032.965, 6691388.805], [397993.38, 6690736.507], [397493.096, 6690202.427], [396672.554, 6690176.552], [396441.833, 6690963.399], [396230.376, 6690954.45], [396070.823, 6690272.12], [395227.064, 6690255.984], [397027.615, 6688559.041], [398875.337, 6687504.945], [400112.193, 6685327.02], [399936.362, 6684600.244], [399775.22, 6683958.338], [397248.729, 6682902.962], [397331.415, 6681726.289], [397651.602, 6681601.262], [397991.167, 6681181.115], [398143.117, 6680542.14], [397591.948, 6680179.274], [397205.078, 6680111.587], [396776.252, 6679289.143], [394340.078, 6680245.367], [393859.815, 6680762.439], [394172.454, 6681823.842], [394237.387, 6683152.603], [393623.266, 6683650.066], [392338.906, 6683739.547], [392195.008, 6684000.574], [391741.718, 6684369.445], [391521.014, 6685096.633], [391152.104, 6684820.34], [390587.083, 6685274.051], [389429.588, 6684974.633], [389163.963, 6684434.41], [388417.243, 6684180.691], [388012.611, 6683190.741], [388143.404, 6682978.819], [388001.153, 6682639.793], [387466.386, 6682804.814], [387142.976, 6683182.986], [386932.169, 6683597.195], [386969.299, 6683938.502], [386389.758, 6684186.137], [385798.687, 6683898.268], [385212.185, 6683822.904], [384438.804, 6683466.8], [383433.773, 6683179.204], [382543.152, 6682291.394], [382253.446, 6681613.497], [381443.67, 6681580.076], [380402.966, 6682225.844], [379983.85, 6681677.614], [377355.891, 6680366.179], [376822.62, 6682157.378], [376500.033, 6682866.332], [376371.406, 6683713.235], [376856.143, 6686816.984], [376354.195, 6689748.032], [375531.318, 6689430.332], [375773.698, 6691596.517], [380445.966, 6697310.819], [382590.573, 6697998.256], [382575.481, 6697867.459]]]}}, {\\\"id\\\": \\\"264\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lieto\\\", \\\"elakelaisten_osuus\\\": 21.9, \\\"freshwarea\\\": 2.04, \\\"gml_id\\\": 1601100660, \\\"landarea\\\": 300.52, \\\"namefin\\\": \\\"Lieto\\\", \\\"nameswe\\\": \\\"Lundo\\\", \\\"natcode\\\": \\\"423\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 302.56}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[254539.286, 6730559.132], [254023.134, 6729937.081], [253718.466, 6730114.704], [253283.526, 6729659.13], [252908.705, 6728601.717], [252348.788, 6726734.48], [252771.279, 6723487.742], [254927.938, 6724758.02], [257019.551, 6722629.399], [257226.507, 6722616.045], [257607.98, 6723117.889], [257754.092, 6722813.639], [257947.81, 6722922.643], [258076.793, 6723670.818], [257985.242, 6724055.984], [257832.681, 6724254.093], [256851.029, 6723578.801], [256331.775, 6725335.334], [257178.4, 6726491.597], [257601.229, 6727013.076], [257911.659, 6727362.361], [259649.823, 6727350.35], [259334.794, 6726915.67], [258122.139, 6726518.819], [258208.095, 6726260.956], [259577.461, 6726535.517], [259996.733, 6726843.282], [260508.056, 6726673.942], [261413.308, 6727949.858], [263852.335, 6730164.759], [263938.323, 6730398.827], [264556.397, 6730295.796], [265908.922, 6729415.581], [267410.716, 6729080.842], [269551.435, 6728705.554], [272477.364, 6728416.42], [273291.59, 6728645.782], [272613.078, 6727609.378], [272164.76, 6726627.935], [270542.795, 6725157.323], [270007.356, 6724879.305], [269930.789, 6720671.631], [271142.545, 6717066.775], [271037.404, 6716717.64], [270623.204, 6716814.338], [270739.01, 6717118.531], [269391.303, 6717347.741], [268471.229, 6717381.943], [268059.273, 6717470.908], [264811.025, 6719614.725], [264191.414, 6719898.342], [263670.702, 6720195.353], [263817.478, 6719686.177], [263188.224, 6719818.677], [262876.295, 6719355.015], [261776.506, 6718398.447], [260681.641, 6717407.201], [259973.34, 6716915.663], [257252.408, 6715150.02], [257212.873, 6714707.055], [257066.481, 6714452.398], [256564.38, 6714725.429], [255544.191, 6714079.823], [254088.965, 6713109.862], [254662.539, 6712554.895], [254323.403, 6712241.042], [253811.266, 6712904.892], [252959.785, 6712239.521], [251364.554, 6711261.809], [250466.79, 6711006.867], [250203.755, 6710357.776], [249127.668, 6710201.136], [249138.58, 6710567.666], [248326.493, 6710494.214], [246904.943, 6710051.877], [246348.984, 6711392.688], [245370.121, 6713650.59], [245832.073, 6714528.813], [245363.859, 6714707.18], [244825.727, 6715370.219], [245701.558, 6716884.842], [246667.202, 6718822.446], [246228.54, 6719343.719], [246294.932, 6721075.124], [246300.199, 6721309.72], [246830.533, 6722844.979], [248460.65, 6725741.379], [248775.53, 6725491.379], [249073.975, 6725828.546], [248898.263, 6726195.203], [249886.998, 6727200.66], [250772.145, 6729961.492], [251061.931, 6730032.491], [250828.344, 6730648.815], [251038.068, 6731421.609], [254539.286, 6730559.132]]]}}, {\\\"id\\\": \\\"265\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Heinola\\\", \\\"elakelaisten_osuus\\\": 38.5, \\\"freshwarea\\\": 163.29, \\\"gml_id\\\": 1601100181, \\\"landarea\\\": 675.99, \\\"namefin\\\": \\\"Heinola\\\", \\\"nameswe\\\": \\\"Heinola\\\", \\\"natcode\\\": \\\"111\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 839.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[463668.865, 6807388.997], [463353.098, 6806666.787], [462573.721, 6805903.189], [462197.579, 6805150.69], [461869.214, 6804910.484], [461784.758, 6804007.952], [461910.804, 6803800.034], [462589.725, 6804144.401], [463557.53, 6804291.851], [463415.195, 6803061.448], [464269.164, 6801993.532], [467854.81, 6798804.117], [468467.358, 6799180.17], [472325.886, 6798856.739], [471662.869, 6799520.528], [471075.234, 6800607.494], [470759.29, 6800694.928], [470636.798, 6801163.494], [470248.216, 6801720.659], [471350.164, 6802116.109], [473576.864, 6800740.285], [473767.99, 6800111.141], [473282.892, 6799523.376], [472325.886, 6798856.739], [473199.148, 6795921.536], [473443.059, 6794111.071], [473923.367, 6793440.746], [473473.461, 6792950.611], [472321.193, 6792427.136], [471431.322, 6792215.237], [470177.082, 6792185.906], [470148.17, 6791472.946], [469646.027, 6791385.544], [469145.508, 6790937.15], [469375.013, 6790419.76], [469471.648, 6789352.951], [467575.586, 6786743.196], [466960.144, 6783898.544], [464915.473, 6782309.266], [460749.756, 6781163.186], [460650.401, 6779663.392], [458764.596, 6777509.207], [455122.835, 6778478.314], [454230.123, 6778164.035], [453782.169, 6780409.618], [451736.799, 6778728.477], [448758.183, 6776577.502], [448832.449, 6775428.737], [448631.368, 6774964.719], [448239.54, 6774790.021], [448838.598, 6774406.185], [447598.506, 6773765.925], [445626.315, 6772778.394], [442627.871, 6771152.621], [441862.853, 6771933.286], [440997.904, 6772118.9], [438438.634, 6774760.005], [439242.476, 6776610.948], [441856.214, 6780190.765], [440987.936, 6781552.543], [440521.701, 6783307.034], [439890.598, 6783966.518], [440493.85, 6784765.802], [442401.762, 6788656.952], [439936.661, 6789861.635], [440622.224, 6791358.827], [439614.677, 6792895.536], [438298.685, 6793402.429], [435912.756, 6793343.376], [435714.468, 6793683.539], [436139.68, 6798279.085], [436529.922, 6797962.118], [438179.885, 6800517.488], [439014.628, 6800613.223], [439043.241, 6801358.12], [439511.327, 6801265.95], [439941.517, 6801440.442], [440202.833, 6801885.257], [440096.457, 6802393.268], [440625.742, 6802506.729], [440531.42, 6802941.433], [440004.369, 6802828.168], [439761.556, 6803971.742], [440282.076, 6804082.887], [441390.323, 6804938.654], [441927.604, 6804927.765], [442750.974, 6803418.385], [443149.021, 6803704.083], [443543.431, 6803688.501], [444145.947, 6804342.042], [445620.202, 6804628.63], [446306.622, 6805064.562], [447291.223, 6805063.374], [447837.402, 6805407.24], [448705.652, 6805198.934], [448946.954, 6805652.153], [449309.307, 6805871.368], [449120.208, 6806189.002], [449593.152, 6806556.877], [450701.546, 6805783.018], [451370.175, 6805999.038], [451958.739, 6805403.185], [453444.335, 6807236.559], [454641.357, 6805644.715], [455822.769, 6806830.846], [460772.728, 6810440.832], [463668.865, 6807388.997]]]}}, {\\\"id\\\": \\\"266\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tammela\\\", \\\"elakelaisten_osuus\\\": 30.4, \\\"freshwarea\\\": 74.62, \\\"gml_id\\\": 1601100587, \\\"landarea\\\": 640.53, \\\"namefin\\\": \\\"Tammela\\\", \\\"nameswe\\\": \\\"Tammela\\\", \\\"natcode\\\": \\\"834\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 715.15}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[334481.015, 6762146.618], [335966.391, 6761762.66], [334998.396, 6760666.527], [335533.583, 6760426.929], [336675.024, 6759528.164], [337225.84, 6759347.877], [338597.429, 6758480.188], [336558.559, 6753133.98], [340193.714, 6747966.028], [339456.492, 6747028.044], [338496.084, 6746758.275], [338914.956, 6746324.414], [340080.868, 6743832.051], [340169.431, 6743358.368], [339813.702, 6743135.782], [339143.523, 6739541.851], [338515.195, 6726577.401], [338216.004, 6726835.9], [336263.847, 6726814.352], [334371.929, 6726306.184], [333831.31, 6726317.468], [333014.817, 6726919.3], [332283.617, 6727231.085], [332162.632, 6727612.894], [331531.475, 6728183.032], [330561.662, 6727772.87], [329807.293, 6727796.991], [329047.891, 6728298.825], [328653.723, 6728053.214], [325879.434, 6728702.16], [322243.763, 6728565.552], [320440.782, 6729830.608], [318782.759, 6729183.198], [318244.134, 6730715.347], [318787.478, 6732082.177], [315811.531, 6733413.106], [313841.68, 6733718.05], [313084.851, 6733612.289], [311144.907, 6734830.544], [310693.38, 6736424.062], [309159.559, 6737515.969], [309356.366, 6739351.631], [309741.209, 6741245.089], [310953.758, 6742110.248], [311394.711, 6743699.223], [312251.77, 6744213.355], [316771.415, 6742928.94], [317633.395, 6743422.372], [318978.582, 6745180.187], [319166.12, 6745693.749], [319757.257, 6745427.455], [320040.311, 6745877.646], [320586.47, 6745606.739], [320793.508, 6747122.596], [319090.155, 6747573.124], [319279.727, 6748354.244], [319188.329, 6749521.841], [318950.253, 6752766.631], [318038.833, 6753668.194], [319650.688, 6754252.184], [320961.202, 6753927.426], [322045.173, 6755113.438], [321563.738, 6756010.612], [321616.061, 6756342.76], [324225.629, 6760248.96], [324795.257, 6759863.202], [327839.403, 6759242.022], [328776.641, 6760201.18], [330233.488, 6761682.662], [329878.266, 6763698.908], [331188.676, 6763909.853], [334481.015, 6762146.618]]]}}, {\\\"id\\\": \\\"267\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hyrynsalmi\\\", \\\"elakelaisten_osuus\\\": 48.1, \\\"freshwarea\\\": 100.18, \\\"gml_id\\\": 1601100145, \\\"landarea\\\": 1421.19, \\\"namefin\\\": \\\"Hyrynsalmi\\\", \\\"nameswe\\\": \\\"Hyrynsalmi\\\", \\\"natcode\\\": \\\"105\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1521.37}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[573861.767, 7189126.427], [576428.494, 7185838.98], [576342.544, 7185245.312], [576852.539, 7185294.712], [579589.937, 7181790.21], [586187.938, 7176802.353], [589552.721, 7177351.17], [599595.199, 7173868.48], [601036.981, 7173615.517], [602916.997, 7172428.8], [609096.649, 7168402.873], [612257.089, 7167365.002], [617833.942, 7162404.442], [615987.541, 7157158.424], [604073.238, 7149445.731], [599099.059, 7149136.915], [599106.823, 7148753.012], [597415.536, 7149590.96], [593557.471, 7150637.057], [590375.152, 7153701.988], [589351.221, 7153309.61], [584008.52, 7156129.628], [583723.976, 7155935.411], [583466.705, 7156416.103], [579170.472, 7158680.066], [578764.704, 7157896.2], [577563.957, 7158537.095], [577988.93, 7159300.402], [576415.271, 7160125.951], [575896.398, 7159735.104], [575534.163, 7160589.245], [568497.679, 7164284.406], [568477.134, 7164321.929], [567428.172, 7163559.172], [563722.908, 7164007.08], [563256.154, 7163384.285], [562728.279, 7163782.681], [562697.46, 7164847.566], [559551.799, 7168560.612], [554667.678, 7168474.81], [554081.921, 7169838.25], [553159.615, 7170589.47], [552219.359, 7169439.837], [552324.291, 7168896.18], [552830.261, 7168806.817], [552882.358, 7168439.627], [551354.01, 7167975.529], [550550.891, 7181143.788], [550305.433, 7180938.683], [549859.964, 7181071.38], [549870.942, 7181227.127], [550531.818, 7181480.342], [550152.366, 7187538.985], [554520.03, 7187574.191], [561263.377, 7197755.394], [573861.767, 7189126.427]]]}}, {\\\"id\\\": \\\"268\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Riihim\\\\u00e4ki\\\", \\\"elakelaisten_osuus\\\": 25.8, \\\"freshwarea\\\": 4.55, \\\"gml_id\\\": 1601100435, \\\"landarea\\\": 121.0, \\\"namefin\\\": \\\"Riihim\\\\u00e4ki\\\", \\\"nameswe\\\": \\\"Riihim\\\\u00e4ki\\\", \\\"natcode\\\": \\\"694\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 125.55}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[376340.832, 6742165.228], [376693.216, 6742123.692], [377883.485, 6741513.21], [378229.843, 6741504.382], [379117.283, 6740767.647], [381035.184, 6740207.176], [380906.846, 6739890.416], [381721.563, 6739526.994], [382173.614, 6739788.296], [382104.263, 6739113.776], [381322.075, 6737641.349], [381924.081, 6737705.12], [382300.014, 6737194.031], [381758.677, 6736807.905], [382340.484, 6735875.234], [382475.85, 6735219.284], [381590.828, 6734411.79], [381207.372, 6733483.126], [381524.265, 6733021.276], [381462.243, 6732725.878], [380687.954, 6732372.137], [380125.805, 6731601.53], [380749.542, 6731055.025], [381688.188, 6729294.2], [381696.299, 6727565.336], [380789.706, 6727840.539], [380321.143, 6728341.144], [378703.998, 6726425.871], [378600.996, 6726288.341], [377798.348, 6726987.713], [377400.636, 6726383.081], [377100.874, 6726446.11], [376946.739, 6725862.978], [376504.267, 6725969.324], [376423.919, 6725649.768], [374972.344, 6725997.961], [373774.103, 6725944.312], [371658.943, 6727238.489], [370959.922, 6727103.778], [369728.766, 6728123.905], [369615.465, 6728831.842], [370002.559, 6729985.348], [369268.605, 6730948.148], [373874.033, 6734444.033], [374156.418, 6737320.495], [377362.838, 6737968.095], [376474.062, 6739845.97], [375619.809, 6742282.469], [375985.623, 6742322.285], [376025.755, 6742671.284], [376310.277, 6742687.545], [376340.832, 6742165.228]]]}}, {\\\"id\\\": \\\"269\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kumlinge\\\", \\\"elakelaisten_osuus\\\": 35.9, \\\"freshwarea\\\": 0.38, \\\"gml_id\\\": 1601100485, \\\"landarea\\\": 99.05, \\\"namefin\\\": \\\"Kumlinge\\\", \\\"nameswe\\\": \\\"Kumlinge\\\", \\\"natcode\\\": \\\"295\\\", \\\"seawarea\\\": 766.45, \\\"totalarea\\\": 865.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[143329.159, 6741792.854], [141904.572, 6725552.657], [141855.79, 6724833.279], [141619.126, 6722542.66], [143398.803, 6720017.357], [145221.864, 6720274.746], [150150.036, 6721068.668], [156256.469, 6718700.771], [158635.245, 6715627.489], [159345.37, 6711369.005], [161737.54, 6710755.912], [163020.403, 6710881.917], [163932.781, 6711227.336], [164414.003, 6711265.378], [165147.236, 6711211.154], [166936.468, 6709814.579], [167349.537, 6708255.199], [168428.782, 6705486.325], [165782.108, 6701735.084], [165821.178, 6700301.695], [165740.504, 6700166.92], [163976.997, 6700158.105], [163766.399, 6697700.057], [162720.353, 6696983.512], [162698.187, 6696875.176], [161898.989, 6685455.012], [160363.511, 6682700.76], [160352.753, 6682702.22], [158717.552, 6681545.473], [159927.243, 6679907.453], [156306.44, 6679495.896], [155620.581, 6680556.934], [154016.708, 6681906.006], [153066.557, 6683484.428], [150914.268, 6683806.331], [150098.228, 6686450.522], [147407.192, 6688488.081], [144951.168, 6691887.873], [148689.254, 6702665.077], [147210.369, 6709978.728], [143835.101, 6708555.449], [143711.533, 6709433.72], [145388.252, 6709681.236], [144830.895, 6712138.921], [144536.224, 6712841.245], [144820.222, 6715222.738], [140496.266, 6721258.001], [136118.41, 6721648.385], [137667.564, 6737834.671], [124826.518, 6756009.051], [130489.45, 6759966.542], [143329.159, 6741792.854]]]}}, {\\\"id\\\": \\\"270\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Laihia\\\", \\\"elakelaisten_osuus\\\": 26.4, \\\"freshwarea\\\": 3.28, \\\"gml_id\\\": 1601100614, \\\"landarea\\\": 505.16, \\\"namefin\\\": \\\"Laihia\\\", \\\"nameswe\\\": \\\"Laihela\\\", \\\"natcode\\\": \\\"399\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 508.44}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[244182.152, 6999509.663], [244975.085, 6999098.906], [245994.218, 6998880.013], [246644.15, 6998476.214], [247318.364, 6997886.537], [248010.109, 6997645.04], [248331.12, 6997202.951], [249116.317, 6995812.264], [249167.815, 6995427.564], [248861.539, 6995458.438], [249308.246, 6994963.606], [249259.121, 6994610.529], [249510.435, 6994061.168], [250062.279, 6994169.974], [250126.583, 6993987.657], [251972.957, 6991981.721], [252618.378, 6991488.937], [253532.592, 6990389.842], [253892.615, 6990776.106], [253998.065, 6990234.265], [254297.836, 6990305.979], [254196.833, 6989800.517], [255108.0, 6989544.789], [254952.857, 6989267.462], [254439.861, 6989336.047], [255095.696, 6988593.252], [255957.317, 6987155.326], [256447.387, 6986337.007], [256810.887, 6985172.895], [257029.531, 6983946.664], [257083.616, 6983087.663], [257628.946, 6981390.373], [257862.299, 6981199.703], [257175.859, 6981244.313], [257150.017, 6981158.078], [257513.038, 6980872.974], [257735.274, 6980776.68], [257936.041, 6981012.597], [258524.271, 6981138.982], [258695.245, 6977176.84], [258245.63, 6976811.036], [259021.178, 6976191.626], [258872.742, 6974568.973], [259091.105, 6974433.455], [259007.971, 6974155.456], [259373.836, 6973526.992], [259413.134, 6973102.491], [259643.697, 6972674.534], [259547.16, 6972208.676], [259951.198, 6971938.555], [260010.179, 6971737.245], [259059.772, 6971163.906], [255005.203, 6967040.636], [251241.627, 6969084.82], [251019.616, 6968303.129], [248342.023, 6969452.64], [248100.358, 6968891.892], [245268.886, 6970189.838], [245563.691, 6970448.682], [243468.191, 6971372.436], [243714.463, 6971931.767], [242986.222, 6972250.994], [242805.983, 6971905.93], [240654.014, 6973001.529], [240852.706, 6973511.763], [239099.463, 6974154.268], [238889.835, 6974793.577], [238086.329, 6975083.104], [238031.781, 6975947.387], [237332.478, 6975789.586], [236999.588, 6978926.289], [234996.196, 6980334.703], [235066.009, 6980418.307], [234172.221, 6981191.422], [235110.453, 6984519.06], [236026.14, 6987753.665], [238093.674, 6990516.512], [239652.093, 6992249.7], [239588.662, 6992380.711], [239785.962, 6992526.804], [240529.242, 6993490.376], [241068.004, 6994084.207], [241621.239, 6996569.823], [241960.337, 6997873.282], [242175.076, 6997874.222], [242116.029, 6998782.654], [242430.106, 6999521.908], [242914.54, 7001206.841], [244182.152, 6999509.663]]]}}, {\\\"id\\\": \\\"271\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kiuruvesi\\\", \\\"elakelaisten_osuus\\\": 36.4, \\\"freshwarea\\\": 94.76, \\\"gml_id\\\": 1601100147, \\\"landarea\\\": 1328.14, \\\"namefin\\\": \\\"Kiuruvesi\\\", \\\"nameswe\\\": \\\"Kiuruvesi\\\", \\\"natcode\\\": \\\"263\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1422.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[477770.861, 7092445.144], [478421.209, 7093042.385], [479062.124, 7092341.715], [479397.407, 7091589.067], [480237.517, 7090438.546], [481168.138, 7089120.986], [481355.325, 7088779.337], [481355.296, 7088138.808], [483223.834, 7088812.472], [484457.419, 7088611.087], [485336.048, 7087194.88], [486667.666, 7086657.472], [486555.446, 7084950.815], [488147.587, 7084239.598], [488517.607, 7082713.247], [489176.401, 7079546.056], [486348.936, 7080467.236], [485618.731, 7079908.041], [486518.801, 7076860.397], [488200.783, 7078669.984], [488773.553, 7078201.969], [489703.717, 7078101.892], [490721.85, 7077615.387], [490906.789, 7076891.962], [491467.136, 7076201.697], [491689.687, 7076186.502], [491941.489, 7075865.096], [491824.339, 7075714.973], [492034.492, 7075505.163], [492150.651, 7074966.384], [493159.858, 7073684.032], [493422.957, 7073681.878], [493517.692, 7073351.782], [492565.838, 7072910.37], [492517.099, 7072673.739], [492004.748, 7072557.36], [491874.641, 7072357.374], [491960.046, 7071988.874], [491428.39, 7071142.343], [492486.237, 7069468.873], [492465.595, 7068987.978], [492681.834, 7068083.544], [493295.965, 7066545.99], [493822.965, 7066601.649], [493851.065, 7064618.247], [494532.215, 7064645.57], [494592.567, 7063697.659], [494795.604, 7063069.352], [495361.446, 7063087.042], [495501.219, 7062478.842], [496140.741, 7062575.202], [496285.193, 7061725.062], [495690.256, 7061503.809], [493346.378, 7061318.671], [493483.926, 7060764.12], [493497.941, 7060135.362], [492622.433, 7059657.796], [491358.778, 7061025.519], [491262.623, 7060617.525], [491581.946, 7060202.213], [491527.006, 7059898.865], [491481.232, 7059345.416], [491046.142, 7059213.867], [490903.187, 7058654.1], [490996.152, 7058375.423], [490869.276, 7058041.893], [491205.655, 7057266.457], [490543.274, 7057144.481], [490149.486, 7056709.302], [490273.752, 7056172.399], [490495.792, 7056017.199], [490526.724, 7055406.658], [490685.905, 7054833.255], [490406.508, 7054053.044], [490829.78, 7053515.673], [491017.262, 7052957.051], [491252.084, 7052680.033], [491446.521, 7052157.073], [491268.474, 7051914.45], [490742.126, 7052284.625], [490585.671, 7051642.858], [490695.863, 7051262.696], [490695.636, 7050973.814], [490220.858, 7050440.375], [489988.55, 7050584.315], [489775.334, 7050469.515], [490474.985, 7047819.663], [490240.747, 7047594.201], [490277.872, 7047411.17], [490674.988, 7047116.009], [491413.487, 7046320.179], [491413.957, 7045997.191], [491075.011, 7045498.186], [491360.42, 7045002.209], [491136.885, 7044745.924], [491022.298, 7044400.72], [491235.695, 7043899.1], [491270.491, 7043139.937], [491054.15, 7043133.962], [490694.35, 7042644.883], [490464.546, 7042755.735], [490202.966, 7042382.012], [489949.234, 7042478.983], [489492.501, 7042807.737], [489072.547, 7042543.914], [488959.99, 7042129.675], [488451.984, 7040800.54], [488548.412, 7040316.034], [488859.716, 7039769.314], [488906.791, 7039418.199], [489633.965, 7038730.256], [489704.784, 7038222.829], [489336.694, 7037878.398], [488851.507, 7037722.938], [488574.886, 7037053.006], [488151.001, 7036931.412], [487606.184, 7037166.039], [486836.93, 7036740.613], [486795.318, 7036350.666], [486549.459, 7036067.99], [486069.419, 7036435.766], [485440.191, 7036732.884], [484933.67, 7036885.322], [484711.28, 7035042.017], [482289.958, 7036184.519], [481992.532, 7036045.205], [481410.198, 7035936.095], [481328.598, 7036493.46], [481054.361, 7036945.264], [480826.225, 7037427.486], [480334.532, 7036745.83], [479846.732, 7036434.562], [479954.653, 7035740.405], [479279.431, 7035701.15], [479193.056, 7036481.063], [476383.907, 7036194.489], [476281.204, 7037086.955], [475450.097, 7036736.094], [475271.61, 7033777.775], [469359.754, 7038572.513], [468379.52, 7038354.73], [468195.982, 7038983.207], [466856.129, 7039395.962], [466123.532, 7039380.884], [466589.735, 7037951.61], [465483.017, 7037625.897], [465144.346, 7038472.025], [464769.274, 7038444.75], [464790.975, 7038031.816], [464503.907, 7037306.546], [461765.15, 7038429.784], [461551.748, 7037849.262], [460671.487, 7038063.797], [458422.283, 7039438.245], [459485.685, 7041441.803], [459768.116, 7043118.699], [460032.116, 7049273.187], [460468.877, 7049594.464], [464854.405, 7051516.751], [464875.673, 7052712.042], [463830.206, 7063901.906], [463072.06, 7063916.966], [463036.769, 7064302.96], [463790.053, 7064358.732], [462709.449, 7075683.706], [461527.866, 7078487.964], [462785.501, 7079521.042], [468071.093, 7083870.106], [467546.345, 7084470.636], [468396.956, 7084567.428], [468923.803, 7085064.318], [469237.026, 7084830.775], [471887.497, 7087020.621], [476771.702, 7091522.345], [476313.119, 7092992.43], [477428.32, 7093249.202], [477770.861, 7092445.144]]]}}, {\\\"id\\\": \\\"272\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lapinlahti\\\", \\\"elakelaisten_osuus\\\": 33.1, \\\"freshwarea\\\": 148.56, \\\"gml_id\\\": 1601100585, \\\"landarea\\\": 1096.6, \\\"namefin\\\": \\\"Lapinlahti\\\", \\\"nameswe\\\": \\\"Lapinlahti\\\", \\\"natcode\\\": \\\"402\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1245.16}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[551986.42, 7047162.035], [552175.436, 7046652.551], [552769.258, 7046615.754], [552953.146, 7046138.711], [553370.232, 7045827.301], [553705.655, 7044891.468], [554384.513, 7043916.348], [554296.356, 7043119.869], [555005.569, 7042945.244], [555343.134, 7042499.327], [555426.008, 7041356.189], [555561.031, 7041028.92], [556114.933, 7040487.644], [556328.154, 7039065.12], [555804.047, 7037567.545], [555692.15, 7037093.308], [555325.646, 7037092.424], [555100.036, 7036623.913], [554995.95, 7036059.617], [554966.034, 7035348.277], [555193.336, 7034806.429], [555673.687, 7034337.391], [555389.962, 7033556.762], [555171.926, 7033259.372], [554582.949, 7033473.699], [554151.873, 7033443.485], [553685.556, 7033614.937], [553523.964, 7034038.062], [553302.402, 7034279.322], [553193.335, 7034939.455], [552733.641, 7035107.593], [553989.85, 7031372.909], [554366.998, 7030987.967], [554266.941, 7030627.512], [553812.93, 7029996.164], [552598.632, 7028608.116], [552225.188, 7027913.594], [551983.7, 7027825.726], [551522.118, 7027446.157], [551321.246, 7027000.142], [551556.365, 7026441.86], [551443.624, 7026055.23], [551186.776, 7025684.587], [550977.012, 7025271.052], [550834.637, 7024921.444], [550374.893, 7025141.003], [550245.343, 7024843.352], [550387.96, 7023816.036], [549613.777, 7023600.317], [548637.779, 7023663.68], [548237.936, 7023802.826], [547686.761, 7023745.645], [547537.486, 7023282.44], [547026.717, 7022714.191], [547059.926, 7022020.738], [547201.671, 7021512.044], [547200.169, 7020436.07], [546923.198, 7020256.353], [547117.16, 7019729.184], [547045.646, 7019492.658], [546703.586, 7019403.992], [546382.178, 7019680.517], [545984.794, 7019890.47], [545429.082, 7020408.459], [545647.114, 7019806.722], [545939.797, 7019487.952], [545480.478, 7018721.612], [545388.975, 7019042.897], [544803.385, 7019400.268], [544333.547, 7019824.795], [543675.164, 7019895.594], [543081.527, 7018894.176], [543244.205, 7017779.124], [542714.723, 7017442.056], [542212.44, 7015240.842], [541381.582, 7014688.859], [540595.697, 7015515.62], [539955.556, 7015610.477], [539263.129, 7014190.262], [539076.226, 7013512.118], [538527.449, 7013485.225], [537241.371, 7013528.3], [536514.365, 7013781.193], [535572.193, 7013627.871], [535150.42, 7013637.242], [534884.726, 7013837.559], [534401.18, 7013354.207], [534097.602, 7013232.476], [534174.325, 7012740.561], [534552.871, 7012283.784], [534204.846, 7011866.564], [534084.91, 7011311.26], [533714.128, 7011619.946], [533523.387, 7011971.303], [533033.66, 7012414.817], [532698.799, 7012452.974], [532650.937, 7012189.084], [532955.897, 7012001.357], [532825.962, 7011211.216], [532581.937, 7010842.168], [531761.604, 7010950.573], [531650.385, 7010544.028], [531142.259, 7010856.55], [530901.753, 7010756.2], [531620.666, 7009892.228], [532295.697, 7009359.748], [531977.827, 7009044.673], [531898.261, 7008708.808], [532093.402, 7007122.767], [532034.33, 7006435.477], [531819.31, 7006011.197], [531422.968, 7006229.106], [531284.322, 7006491.799], [530646.475, 7007049.369], [530214.548, 7007194.008], [529595.103, 7006499.384], [529355.597, 7006759.178], [529034.885, 7006882.582], [528820.514, 7006548.959], [528637.186, 7006930.603], [527932.169, 7006403.986], [527729.465, 7005512.806], [527389.36, 7004865.566], [527069.246, 7004294.707], [527038.558, 7003924.132], [527647.658, 7003527.02], [527482.678, 7002837.85], [526928.499, 7003222.591], [526526.957, 7003766.368], [526137.309, 7004447.49], [525688.901, 7004563.872], [525370.843, 7005560.824], [525016.919, 7005790.341], [524803.534, 7006266.006], [524060.834, 7006118.6], [523371.816, 7005531.333], [519632.823, 7005379.869], [518915.511, 7005572.486], [518007.281, 7004928.94], [517773.765, 7006501.503], [516629.92, 7007348.253], [516828.432, 7008438.614], [517559.436, 7008763.087], [516959.866, 7010436.807], [515413.774, 7012715.975], [514974.015, 7018311.911], [514490.31, 7018206.35], [513589.667, 7019121.674], [513568.468, 7020363.973], [513086.861, 7020569.087], [511611.753, 7020822.474], [511128.942, 7021728.105], [509827.964, 7022043.668], [509229.081, 7021929.599], [509161.972, 7022394.746], [509139.435, 7023009.574], [508706.736, 7023482.243], [508530.349, 7023908.726], [507925.787, 7023803.141], [507266.255, 7024337.727], [507017.977, 7025038.14], [506713.33, 7025067.085], [505955.992, 7026731.548], [506711.706, 7026639.472], [506938.916, 7026293.151], [507418.61, 7025953.473], [507513.734, 7026349.03], [507791.955, 7026849.915], [508081.973, 7027448.8], [508281.409, 7028206.243], [507893.062, 7028355.332], [507611.911, 7028907.181], [506940.875, 7029786.521], [507119.286, 7030151.149], [507621.946, 7030315.393], [507924.03, 7030288.718], [508269.443, 7030481.068], [508538.754, 7030243.307], [508702.224, 7030556.858], [508781.583, 7031226.298], [509570.406, 7031662.904], [509630.703, 7032122.007], [509791.458, 7032346.351], [509736.534, 7032880.738], [509582.888, 7033430.068], [509368.265, 7033694.166], [509533.594, 7034253.447], [510472.833, 7034573.827], [510252.106, 7035313.812], [510899.708, 7035912.224], [511774.926, 7035162.747], [512897.546, 7034740.064], [513177.534, 7034719.874], [513742.706, 7035398.989], [513983.413, 7036099.57], [514232.908, 7035654.8], [514036.785, 7035192.589], [514151.969, 7034583.314], [514567.003, 7034539.754], [514850.066, 7034036.862], [515491.409, 7033982.789], [515633.548, 7034476.29], [515563.972, 7034956.796], [515697.114, 7035680.704], [515038.765, 7035981.79], [514993.163, 7036318.829], [515436.781, 7036197.35], [516051.563, 7036935.4], [516420.551, 7036859.067], [518274.359, 7038541.773], [518590.124, 7039687.716], [518584.522, 7040402.83], [520722.951, 7042184.032], [520848.294, 7043132.853], [521382.746, 7042662.731], [522380.001, 7039599.28], [522795.839, 7038906.361], [522898.297, 7038969.836], [523816.894, 7043859.083], [524262.084, 7044094.388], [524722.341, 7043918.66], [524990.32, 7042825.559], [524835.2, 7042462.276], [525259.668, 7041524.453], [525884.723, 7041393.983], [526094.597, 7041117.454], [526608.62, 7041471.887], [526526.378, 7041684.889], [527234.327, 7042132.896], [527034.323, 7040645.895], [527327.225, 7040406.868], [528395.973, 7040500.161], [528365.096, 7039498.565], [532998.819, 7039339.652], [532858.886, 7039894.993], [533256.506, 7040123.337], [533120.011, 7040502.824], [532388.476, 7040919.904], [532183.135, 7040739.383], [531560.592, 7041127.216], [531121.155, 7041726.879], [535229.288, 7041983.499], [535640.013, 7042788.776], [538160.284, 7043607.562], [539031.782, 7043354.451], [541472.393, 7044323.961], [542363.771, 7044656.967], [542251.314, 7044905.266], [542280.298, 7045286.412], [542588.874, 7045217.742], [543778.014, 7045507.403], [544167.438, 7044953.759], [545106.06, 7044690.372], [546904.842, 7043752.963], [551773.224, 7047305.505], [551986.42, 7047162.035]]]}}, {\\\"id\\\": \\\"273\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Salo\\\", \\\"elakelaisten_osuus\\\": 31.2, \\\"freshwarea\\\": 75.11, \\\"gml_id\\\": 1601100497, \\\"landarea\\\": 1986.59, \\\"namefin\\\": \\\"Salo\\\", \\\"nameswe\\\": \\\"Salo\\\", \\\"natcode\\\": \\\"734\\\", \\\"seawarea\\\": 106.58, \\\"totalarea\\\": 2168.28}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[307804.393, 6716379.817], [307866.038, 6716061.265], [308624.811, 6714548.661], [308930.079, 6714040.505], [310002.925, 6713131.776], [313645.233, 6711947.927], [313642.011, 6711941.115], [313244.424, 6711780.289], [311964.209, 6712118.575], [312425.037, 6710150.229], [314141.375, 6710583.191], [314237.272, 6710227.55], [315435.5, 6708165.017], [319453.481, 6711387.269], [320774.171, 6710467.086], [319136.184, 6708592.486], [319406.81, 6707686.962], [318062.995, 6706087.889], [323117.104, 6705869.091], [323521.746, 6703467.077], [323346.815, 6702887.257], [322884.789, 6700820.565], [323121.55, 6698918.567], [323127.585, 6698912.221], [322622.818, 6698673.89], [322338.971, 6698959.51], [320907.257, 6697465.156], [320340.276, 6697060.956], [319314.378, 6696972.814], [319234.718, 6695995.216], [319703.935, 6695854.48], [319836.611, 6695490.734], [319757.935, 6694107.783], [319813.052, 6693508.174], [319409.151, 6692532.305], [319425.238, 6690794.283], [319231.631, 6690169.649], [318599.844, 6689674.073], [317054.174, 6688711.47], [316234.726, 6689800.029], [314406.387, 6687630.939], [313660.858, 6687654.06], [313407.291, 6685196.412], [313042.056, 6685303.479], [313064.193, 6686375.57], [312771.764, 6686403.47], [312636.046, 6685266.045], [311879.08, 6685929.454], [311633.409, 6685884.911], [311672.632, 6685673.071], [311402.739, 6685482.729], [311139.037, 6685125.451], [311807.545, 6684683.595], [311893.034, 6684183.946], [312236.212, 6684157.07], [313632.967, 6683270.744], [314298.047, 6682451.864], [313608.45, 6682308.012], [313549.956, 6681769.58], [313729.863, 6680577.226], [314253.062, 6679640.469], [313993.449, 6679357.709], [314278.739, 6678574.4], [312658.828, 6677827.908], [311951.44, 6677560.051], [310860.868, 6678524.315], [309001.264, 6678917.712], [308146.69, 6678526.293], [304204.322, 6675868.936], [301694.067, 6675507.35], [301120.979, 6675208.747], [299125.388, 6675523.72], [298119.962, 6673665.522], [295648.696, 6676222.75], [295676.341, 6676609.07], [295812.62, 6677110.975], [296371.792, 6677813.677], [296303.672, 6678078.163], [295198.34, 6678153.616], [294823.024, 6678011.324], [294550.294, 6677619.696], [294051.436, 6677161.263], [293526.064, 6676461.0], [293315.942, 6675529.126], [293413.231, 6674347.893], [293075.881, 6674436.914], [290848.677, 6672960.012], [289831.396, 6672611.148], [289849.68, 6672262.427], [289292.342, 6672123.455], [288747.559, 6672438.2], [288770.471, 6671180.961], [285913.262, 6668838.274], [281645.756, 6668057.072], [281519.049, 6668690.273], [280713.644, 6667824.977], [278790.121, 6669802.943], [276921.236, 6668826.839], [275227.495, 6666202.15], [275933.903, 6665396.831], [276350.256, 6662951.309], [276085.467, 6662010.058], [274387.242, 6658255.018], [268643.954, 6658136.552], [268712.43, 6662037.915], [266091.484, 6661666.31], [265857.994, 6663056.007], [265752.131, 6665401.189], [266870.436, 6664892.356], [268068.775, 6664760.524], [269130.951, 6666229.659], [267977.402, 6667137.169], [267929.987, 6667576.663], [267994.457, 6668360.905], [269142.593, 6668899.06], [269319.176, 6669733.371], [270085.205, 6670475.611], [270474.039, 6671399.825], [272356.235, 6673278.834], [271299.176, 6675376.241], [270751.669, 6676303.282], [270342.413, 6678139.253], [271332.959, 6678710.462], [271198.777, 6679234.257], [271409.506, 6679729.618], [271043.118, 6680178.78], [270678.956, 6680418.317], [270789.11, 6680874.368], [271523.15, 6681935.883], [272860.048, 6683178.436], [273113.614, 6684024.872], [273379.044, 6684492.497], [273321.97, 6685369.798], [274272.536, 6686334.936], [274069.563, 6687208.504], [273726.319, 6687815.33], [273279.148, 6687394.227], [272376.068, 6686296.848], [271679.027, 6686174.549], [271358.412, 6686160.68], [270969.28, 6686189.452], [270752.862, 6686514.01], [270956.42, 6687336.53], [270710.961, 6687732.813], [271283.935, 6688122.92], [271644.101, 6690445.668], [272383.994, 6691454.85], [272432.554, 6692499.31], [270536.716, 6696216.522], [270774.268, 6697008.736], [270213.779, 6698348.883], [270633.654, 6698647.29], [269524.021, 6700258.507], [270363.229, 6701795.995], [270651.642, 6703892.931], [271712.212, 6705131.156], [272614.391, 6705049.736], [272759.344, 6706045.99], [271942.536, 6706276.264], [273166.818, 6708107.437], [271868.275, 6710463.948], [271791.405, 6711118.647], [272420.579, 6713067.957], [272433.72, 6713632.545], [271984.469, 6715508.801], [275088.049, 6716860.691], [276912.768, 6718138.055], [278553.805, 6718485.836], [279242.214, 6718641.666], [280409.221, 6719052.252], [280775.528, 6719172.294], [284162.61, 6720130.499], [286367.884, 6721621.783], [286994.9, 6721989.918], [288577.551, 6721994.652], [289712.028, 6722281.247], [291279.476, 6721069.583], [292306.716, 6722632.42], [294254.901, 6722618.658], [297343.36, 6721877.18], [300638.097, 6718692.216], [302390.447, 6717646.38], [305654.454, 6720562.244], [305687.709, 6721154.769], [306480.202, 6721293.681], [307602.437, 6722296.504], [307921.9, 6722794.718], [309224.065, 6722809.054], [307804.393, 6716379.817]]]}}, {\\\"id\\\": \\\"274\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Tampere\\\", \\\"elakelaisten_osuus\\\": 22.4, \\\"freshwarea\\\": 164.64, \\\"gml_id\\\": 1601100628, \\\"landarea\\\": 524.95, \\\"namefin\\\": \\\"Tampere\\\", \\\"nameswe\\\": \\\"Tammerfors\\\", \\\"natcode\\\": \\\"837\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 689.59}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[336661.298, 6857626.5], [341807.049, 6854120.846], [345820.889, 6854665.704], [346626.256, 6854536.218], [346495.272, 6852674.89], [347619.359, 6847783.319], [345583.68, 6845897.273], [345988.47, 6844856.125], [346639.203, 6842378.683], [346613.166, 6840354.593], [345801.078, 6837771.885], [346042.25, 6836963.748], [347257.028, 6836031.877], [347270.109, 6836030.211], [346408.013, 6835320.645], [345474.086, 6834846.405], [343617.475, 6833670.783], [338856.579, 6824709.014], [339131.423, 6822540.723], [338403.228, 6822449.923], [337267.898, 6822913.083], [336872.95, 6821804.979], [336840.429, 6820778.152], [336628.258, 6819473.711], [336188.632, 6818774.247], [335642.151, 6817053.183], [334665.689, 6815700.402], [334112.121, 6814346.136], [330545.508, 6814802.112], [329943.277, 6814696.758], [329786.424, 6814912.769], [327513.337, 6815227.089], [326191.538, 6815267.876], [325851.472, 6816029.221], [325730.716, 6817527.192], [325275.823, 6818624.49], [325667.992, 6818792.243], [325556.402, 6818968.554], [325580.263, 6819396.715], [325212.897, 6819910.982], [325656.919, 6821088.745], [324724.414, 6821487.323], [324587.738, 6821197.998], [324084.849, 6820860.831], [322578.09, 6821620.492], [319633.759, 6820693.772], [319401.318, 6821431.059], [318831.891, 6821797.77], [318515.954, 6822464.609], [317263.558, 6822525.447], [317619.588, 6823732.921], [316754.117, 6825030.582], [316192.01, 6827073.221], [316486.715, 6826869.93], [316673.988, 6826457.669], [317270.642, 6826230.485], [317934.515, 6825882.378], [318400.367, 6825031.513], [319504.269, 6825748.776], [321475.941, 6826114.403], [322082.372, 6826409.062], [323154.009, 6827710.865], [323661.447, 6827056.425], [324570.873, 6826990.257], [324970.212, 6827347.747], [325805.61, 6827013.04], [327966.045, 6827198.092], [327538.501, 6834564.224], [326508.716, 6839352.753], [326475.325, 6841903.801], [326823.44, 6843578.07], [328468.675, 6843983.318], [329843.464, 6847842.865], [329109.082, 6848874.892], [328719.611, 6850546.464], [329318.968, 6852300.347], [328876.407, 6852673.62], [329180.858, 6853072.287], [329479.549, 6853086.7], [330370.153, 6854871.349], [331469.929, 6855405.787], [331875.759, 6858435.143], [334465.339, 6859985.051], [336661.298, 6857626.5]]]}}, {\\\"id\\\": \\\"275\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Teuva\\\", \\\"elakelaisten_osuus\\\": 38.0, \\\"freshwarea\\\": 1.38, \\\"gml_id\\\": 1601100644, \\\"landarea\\\": 554.57, \\\"namefin\\\": \\\"Teuva\\\", \\\"nameswe\\\": \\\"\\\\u00d6stermark\\\", \\\"natcode\\\": \\\"846\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 555.95}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[228945.381, 6956916.507], [228558.476, 6956100.892], [228612.335, 6955725.437], [228575.72, 6954913.394], [228287.396, 6954877.683], [228255.086, 6954394.304], [227862.409, 6953945.212], [226610.176, 6954715.785], [226006.023, 6953820.843], [226735.736, 6953300.506], [226968.644, 6954009.285], [227995.504, 6953529.86], [228499.873, 6953431.258], [229387.937, 6954137.794], [229331.645, 6954861.219], [229577.382, 6955419.754], [231170.625, 6954667.101], [231031.929, 6954268.272], [231422.618, 6954157.564], [231185.25, 6953598.229], [231783.827, 6953227.88], [232409.978, 6953600.122], [232711.219, 6953514.757], [232955.745, 6953939.429], [232919.784, 6954416.18], [233861.674, 6954310.717], [233933.285, 6955041.701], [234380.359, 6954388.323], [233995.008, 6953356.39], [232265.202, 6951514.998], [233138.565, 6951147.576], [233550.656, 6951945.192], [234423.639, 6951725.53], [234824.315, 6952286.4], [235804.633, 6952081.31], [236194.047, 6951579.557], [236698.665, 6951407.707], [237254.805, 6952236.457], [237720.265, 6952385.599], [237887.14, 6952024.596], [238530.116, 6951777.972], [238556.791, 6951145.468], [238113.792, 6951057.076], [238457.633, 6950504.196], [238458.097, 6950107.126], [240070.364, 6949760.421], [240259.609, 6951398.376], [241107.709, 6951821.732], [240646.899, 6952901.604], [241559.474, 6953019.826], [242107.261, 6953682.278], [242365.045, 6953453.665], [242238.59, 6953013.203], [242556.072, 6952511.6], [242818.122, 6951524.132], [243155.369, 6951393.406], [243340.896, 6951634.212], [243260.003, 6952836.063], [244463.197, 6951755.28], [245048.674, 6951670.997], [245167.849, 6950872.626], [245496.433, 6950914.496], [245476.076, 6951615.684], [248616.072, 6951180.018], [249140.589, 6950278.228], [248866.223, 6946499.036], [246230.092, 6944585.668], [245092.32, 6944296.194], [243600.856, 6943919.121], [243667.482, 6944783.995], [243511.328, 6944844.137], [243271.361, 6944767.957], [243465.62, 6944318.495], [243160.9, 6943994.731], [243416.103, 6943899.506], [243511.582, 6943420.761], [243305.093, 6942518.149], [242684.019, 6941983.918], [242963.583, 6941228.611], [242514.416, 6939057.935], [241583.005, 6936113.178], [239776.246, 6932924.438], [239892.18, 6932893.044], [239831.676, 6932789.264], [239715.333, 6932820.597], [234990.134, 6925005.508], [228009.925, 6928310.946], [227984.149, 6927516.944], [227380.163, 6927597.212], [227575.989, 6928511.906], [223527.016, 6930406.901], [223738.186, 6930971.862], [223601.767, 6931107.157], [223041.786, 6930607.193], [220183.393, 6931963.498], [219427.77, 6932188.97], [219607.313, 6932789.093], [219000.159, 6933062.97], [218977.094, 6933299.884], [218719.864, 6935511.963], [217811.732, 6935874.027], [217977.842, 6936162.885], [217058.599, 6936696.917], [217419.419, 6937062.217], [218740.744, 6935882.546], [222504.412, 6944931.612], [223310.661, 6947484.256], [223234.279, 6947987.379], [222360.69, 6948029.851], [222613.453, 6949969.791], [222606.645, 6953265.494], [224375.245, 6953707.543], [225565.632, 6954822.793], [226075.453, 6956548.487], [226534.377, 6956810.068], [228167.102, 6956093.188], [228596.205, 6956997.853], [228945.381, 6956916.507]]]}}, {\\\"id\\\": \\\"276\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vesanto\\\", \\\"elakelaisten_osuus\\\": 46.5, \\\"freshwarea\\\": 147.18, \\\"gml_id\\\": 1601100087, \\\"landarea\\\": 422.62, \\\"namefin\\\": \\\"Vesanto\\\", \\\"nameswe\\\": \\\"Vesanto\\\", \\\"natcode\\\": \\\"921\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 569.8}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[466320.21, 6989673.188], [467254.785, 6989706.3], [473815.855, 6986724.259], [475433.865, 6984772.006], [476882.933, 6985539.054], [477663.622, 6984833.347], [476399.455, 6984130.605], [476699.022, 6983736.784], [480405.544, 6980677.054], [481779.072, 6978593.43], [482610.441, 6977302.478], [482821.362, 6976670.305], [482089.892, 6976896.598], [483803.219, 6974284.665], [482820.629, 6972769.269], [481589.131, 6972347.429], [483056.071, 6968826.888], [480283.257, 6967207.928], [480574.895, 6966000.586], [481017.004, 6965699.529], [481127.077, 6965282.981], [481570.125, 6965007.023], [481370.758, 6964484.125], [480126.197, 6963891.438], [479151.981, 6965063.756], [478492.954, 6964514.774], [478056.224, 6965326.842], [476471.164, 6965629.408], [476259.876, 6965228.509], [473945.267, 6964114.392], [474475.106, 6962377.414], [473487.499, 6963204.072], [471765.145, 6962221.13], [469335.815, 6961030.086], [469041.648, 6960703.851], [469658.072, 6959845.472], [467106.855, 6957611.173], [461282.179, 6965443.648], [460882.112, 6965695.76], [460407.526, 6966405.5], [459791.964, 6966970.282], [458701.957, 6966221.441], [456811.171, 6968809.34], [457013.971, 6968961.99], [458392.429, 6969880.409], [458719.053, 6970465.058], [457542.012, 6971661.854], [452626.858, 6973610.366], [451260.41, 6978834.552], [453799.153, 6979248.592], [455573.873, 6980648.896], [460537.808, 6980747.209], [462759.45, 6978506.395], [463064.891, 6977448.452], [465210.011, 6981169.848], [466173.475, 6983934.095], [464005.057, 6983814.039], [460656.913, 6988709.902], [461507.934, 6990710.121], [466320.21, 6989673.188]]]}}, {\\\"id\\\": \\\"277\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"V\\\\u00f6yri\\\", \\\"elakelaisten_osuus\\\": 28.4, \\\"freshwarea\\\": 9.19, \\\"gml_id\\\": 1601100133, \\\"landarea\\\": 782.2, \\\"namefin\\\": \\\"V\\\\u00f6yri\\\", \\\"nameswe\\\": \\\"V\\\\u00f6r\\\\u00e5\\\", \\\"natcode\\\": \\\"946\\\", \\\"seawarea\\\": 708.59, \\\"totalarea\\\": 1499.98}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[232980.295, 7071558.938], [254049.167, 7041655.689], [256142.351, 7039958.191], [263745.792, 7033349.892], [270621.664, 7031992.72], [270982.103, 7031874.996], [271019.828, 7031504.277], [271358.131, 7031538.115], [271395.236, 7031825.257], [273300.643, 7031395.622], [273378.649, 7031149.011], [273851.337, 7031117.391], [274163.717, 7030702.914], [274611.241, 7031015.309], [275560.666, 7030188.422], [275864.342, 7030007.56], [276384.937, 7030038.542], [276326.372, 7030923.489], [276845.089, 7030809.677], [277849.261, 7028946.489], [277654.205, 7028826.466], [280240.272, 7024528.828], [279732.947, 7024235.19], [279218.741, 7024817.955], [277252.012, 7022908.176], [277047.991, 7021758.195], [277254.575, 7021067.984], [278644.377, 7020453.851], [278494.928, 7020099.503], [279605.213, 7019630.154], [279125.485, 7019374.398], [279319.718, 7018894.667], [278802.647, 7018753.471], [278962.869, 7018545.719], [279461.972, 7018545.49], [280292.406, 7016464.128], [278459.142, 7015629.28], [277228.533, 7013258.264], [278858.545, 7014120.863], [279180.35, 7013799.667], [279538.342, 7013867.625], [279703.668, 7012994.708], [279478.794, 7012877.157], [279846.023, 7012374.095], [280245.068, 7012550.456], [280436.672, 7012183.032], [280852.199, 7012317.487], [280757.763, 7011973.929], [280402.047, 7011811.624], [280185.419, 7011997.896], [279988.438, 7011803.789], [280252.036, 7011466.506], [279493.163, 7010865.855], [279578.232, 7010508.537], [280296.003, 7010760.389], [280430.58, 7010142.291], [280845.576, 7010265.913], [280966.276, 7010093.664], [280254.973, 7009447.669], [280308.955, 7009215.732], [280773.501, 7009334.944], [281020.303, 7008557.153], [280651.174, 7008476.91], [280654.179, 7008023.016], [280658.335, 7008009.105], [281171.761, 7008103.341], [281203.037, 7007823.64], [281013.785, 7007542.321], [279706.992, 7007407.249], [279724.695, 7006835.774], [280400.653, 7006862.139], [280511.162, 7004769.324], [279630.013, 7004441.65], [278511.153, 7004496.072], [278336.389, 7004568.998], [278317.434, 7004494.355], [277048.262, 7004549.843], [277012.025, 7004740.179], [276751.362, 7004689.281], [276554.174, 7004568.402], [276312.932, 7004580.854], [276048.372, 7004677.185], [275940.597, 7004619.438], [275774.91, 7004662.465], [275639.077, 7004604.935], [273378.669, 7004696.762], [273357.699, 7004768.631], [272972.594, 7004862.088], [272815.78, 7004728.879], [272253.875, 7004745.731], [264423.185, 7000886.345], [263764.825, 7000826.848], [263112.307, 7000488.762], [261911.292, 7000845.832], [260744.397, 7001168.399], [259700.002, 7001591.214], [258642.833, 7002609.152], [257377.924, 7004357.906], [256328.043, 7005521.302], [256385.548, 7005560.32], [256302.38, 7005647.38], [256208.114, 7005653.499], [255846.783, 7006054.112], [255752.81, 7006226.219], [255599.843, 7006328.56], [254934.33, 7007063.839], [255006.49, 7007079.186], [255025.574, 7007123.347], [254918.46, 7007172.936], [254877.902, 7007122.179], [254545.052, 7007483.503], [254235.893, 7008060.123], [254144.609, 7008037.808], [254114.224, 7008080.466], [254196.121, 7008133.173], [253725.425, 7009015.488], [253586.534, 7009129.209], [253623.43, 7009178.436], [253375.844, 7009357.636], [253335.482, 7009334.672], [252989.513, 7009620.356], [252420.91, 7009920.11], [251829.387, 7009977.724], [251711.586, 7010458.079], [250819.524, 7010502.201], [250663.291, 7010466.81], [250455.7, 7011048.701], [251126.589, 7011109.029], [250892.971, 7014514.038], [250553.197, 7017304.527], [250249.208, 7017759.807], [249337.848, 7018700.736], [247321.842, 7018898.101], [247367.348, 7020339.897], [247450.644, 7020512.096], [247484.353, 7021509.086], [247611.575, 7021710.552], [247648.468, 7022415.465], [247449.951, 7022858.161], [247128.467, 7024805.811], [237693.419, 7039801.029], [236534.737, 7040274.738], [234990.679, 7040057.034], [233938.89, 7040842.064], [233504.718, 7041741.024], [234101.374, 7044347.866], [235005.778, 7045684.757], [220786.098, 7067997.0], [228494.409, 7071591.094], [232980.295, 7071558.938]]]}}, {\\\"id\\\": \\\"278\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kirkkonummi\\\", \\\"elakelaisten_osuus\\\": 19.0, \\\"freshwarea\\\": 27.35, \\\"gml_id\\\": 1601100425, \\\"landarea\\\": 366.23, \\\"namefin\\\": \\\"Kirkkonummi\\\", \\\"nameswe\\\": \\\"Kyrksl\\\\u00e4tt\\\", \\\"natcode\\\": \\\"257\\\", \\\"seawarea\\\": 623.43, \\\"totalarea\\\": 1017.01}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[360456.483, 6686609.239], [360545.372, 6685786.993], [362624.151, 6685325.923], [361979.124, 6684547.048], [361894.255, 6682470.534], [363001.768, 6681442.419], [362957.958, 6679709.508], [362477.208, 6679221.87], [361652.114, 6677734.396], [362814.249, 6676852.943], [363457.769, 6676740.111], [363412.641, 6675840.156], [363017.28, 6675707.949], [364338.397, 6674422.046], [365162.244, 6673862.205], [365108.457, 6673407.561], [365314.502, 6673111.62], [365022.882, 6672599.145], [365540.027, 6672116.941], [366143.883, 6672265.576], [366385.661, 6671650.774], [366767.419, 6671638.43], [367525.556, 6671157.064], [368242.629, 6670403.578], [368662.779, 6669079.204], [369024.123, 6668858.872], [368827.362, 6668560.415], [369014.905, 6667969.252], [369624.923, 6665548.81], [369511.307, 6664951.673], [369008.343, 6664006.643], [370918.596, 6659436.164], [374291.085, 6654447.058], [378708.759, 6642381.577], [376085.855, 6641460.907], [359153.176, 6633708.145], [350306.834, 6631794.646], [347448.843, 6631327.115], [347664.16, 6649540.705], [348907.918, 6655503.817], [350437.45, 6656951.381], [352530.63, 6660002.812], [352516.64, 6660117.275], [352494.25, 6660300.469], [352701.357, 6660428.678], [353152.439, 6661558.513], [353211.131, 6663179.187], [353012.993, 6663526.057], [352072.516, 6664499.594], [352803.333, 6666141.826], [353026.423, 6667261.008], [352168.137, 6670266.637], [351921.248, 6670857.475], [351485.238, 6672530.473], [349893.018, 6675625.877], [352899.518, 6681792.724], [354500.398, 6682887.474], [355498.108, 6684885.579], [356697.668, 6685800.744], [357274.66, 6686963.923], [358629.146, 6687291.817], [358665.968, 6687306.956], [360456.483, 6686609.239]]]}}, {\\\"id\\\": \\\"279\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Ylitornio\\\", \\\"elakelaisten_osuus\\\": 43.1, \\\"freshwarea\\\": 184.43, \\\"gml_id\\\": 1601100383, \\\"landarea\\\": 2028.04, \\\"namefin\\\": \\\"Ylitornio\\\", \\\"nameswe\\\": \\\"\\\\u00d6vertorne\\\\u00e5\\\", \\\"natcode\\\": \\\"976\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2212.47}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[407141.236, 7406338.065], [407131.878, 7405982.74], [409019.912, 7405514.707], [409669.99, 7405466.501], [410312.023, 7404169.581], [409180.963, 7404460.313], [408933.338, 7403421.081], [409370.786, 7402666.986], [409704.07, 7402589.309], [409805.286, 7403492.33], [410673.947, 7403504.99], [410897.513, 7403092.245], [411208.144, 7403204.607], [410784.179, 7404046.064], [410432.901, 7405428.723], [411402.469, 7405428.684], [411736.599, 7402270.586], [411431.451, 7402183.838], [411780.011, 7401738.84], [412035.943, 7398569.006], [412284.105, 7394267.949], [412499.786, 7390323.379], [413178.062, 7374305.669], [405450.151, 7363995.214], [401561.363, 7359275.278], [401100.619, 7358688.557], [375894.276, 7350794.766], [375745.27, 7350957.673], [376100.696, 7351331.45], [375890.482, 7352012.283], [375275.739, 7351606.288], [374433.289, 7352772.762], [373767.434, 7352354.222], [374347.575, 7351722.395], [373850.393, 7351352.078], [373883.216, 7351048.915], [374427.873, 7350335.182], [359823.069, 7345556.58], [359727.323, 7345113.984], [359823.741, 7344857.06], [359685.721, 7344074.979], [359795.423, 7343504.579], [359988.373, 7343287.761], [360124.146, 7342809.254], [360115.78, 7342359.619], [359905.369, 7342076.242], [359850.432, 7342096.391], [359742.242, 7342090.532], [359364.252, 7341916.313], [359285.092, 7341898.052], [359172.761, 7341902.644], [359061.23, 7341876.782], [358921.13, 7341892.122], [358790.004, 7341869.916], [358732.539, 7341893.208], [358698.727, 7341938.657], [358610.356, 7342142.698], [358578.761, 7342263.155], [358510.774, 7342355.172], [358448.256, 7342531.761], [358404.487, 7342584.275], [358329.986, 7342574.608], [358262.542, 7342522.827], [358161.973, 7342505.505], [357939.95, 7342564.133], [357779.151, 7342557.164], [357681.396, 7342569.844], [357492.808, 7342496.558], [357230.244, 7342478.855], [357176.688, 7342511.235], [357100.804, 7342604.772], [357019.782, 7342669.561], [356794.867, 7342821.614], [356646.965, 7343116.312], [356523.347, 7343284.537], [356386.384, 7343370.766], [356210.199, 7343451.82], [356135.404, 7343519.328], [355980.069, 7343635.373], [355829.463, 7343784.22], [355674.161, 7343947.771], [355462.656, 7344146.953], [355070.984, 7344479.585], [354762.155, 7344618.385], [354550.403, 7344712.75], [354455.778, 7344796.302], [354228.676, 7344933.276], [353815.595, 7345096.629], [353522.675, 7345186.557], [353286.544, 7345195.869], [353119.87, 7345237.879], [352877.727, 7345354.031], [352752.503, 7345446.43], [352668.448, 7345538.722], [352628.026, 7345624.213], [352615.969, 7345947.944], [352636.401, 7346024.729], [352689.044, 7346123.657], [352760.521, 7346219.87], [352950.647, 7346406.284], [352986.003, 7346463.374], [353005.295, 7346586.11], [352973.059, 7346792.446], [352874.465, 7347092.036], [352703.665, 7347527.929], [352626.665, 7347665.859], [352516.062, 7347767.398], [352369.741, 7347845.412], [352048.117, 7347950.455], [351890.526, 7348079.25], [351765.501, 7348251.925], [351656.266, 7348449.993], [351509.203, 7348960.954], [351364.951, 7349294.418], [351333.593, 7349559.824], [351377.98, 7349807.263], [351416.679, 7349946.058], [351626.176, 7350382.748], [351764.034, 7350750.19], [351763.591, 7350856.292], [351676.98, 7351095.879], [351310.177, 7351777.481], [351204.76, 7351911.241], [351122.539, 7351987.42], [350816.085, 7352139.812], [350698.524, 7352230.444], [350635.757, 7352323.353], [350489.065, 7352648.058], [350361.404, 7352795.084], [350342.949, 7352835.897], [350321.568, 7352913.002], [350325.455, 7352991.867], [350435.381, 7353194.878], [350489.167, 7353333.623], [350569.523, 7353790.156], [350676.576, 7354253.332], [350669.044, 7354364.042], [350616.184, 7354576.796], [350451.175, 7354953.152], [350353.341, 7355725.537], [350282.492, 7355882.389], [350223.64, 7356000.859], [350120.793, 7356159.316], [350018.682, 7356612.645], [349762.142, 7357130.778], [349677.43, 7357322.485], [349621.871, 7357555.363], [349654.175, 7357817.118], [349708.079, 7358015.057], [349812.666, 7358210.034], [350034.538, 7358632.656], [350171.316, 7359031.477], [350271.581, 7359573.065], [350263.972, 7359705.648], [350300.83, 7360245.095], [350373.496, 7360458.592], [350391.645, 7360891.932], [350482.025, 7361386.094], [350466.32, 7361591.277], [350382.294, 7361797.587], [350372.384, 7361896.896], [350406.049, 7362061.941], [350421.916, 7362598.266], [350408.838, 7362796.698], [350377.868, 7363021.885], [350464.218, 7363265.28], [351019.258, 7364138.554], [351293.23, 7364836.82], [351352.181, 7364944.075], [351395.201, 7365116.885], [351676.662, 7365630.879], [351869.198, 7365888.455], [351867.067, 7366101.304], [351962.308, 7366392.061], [352078.571, 7366972.037], [352053.874, 7367177.006], [351992.662, 7367418.996], [351859.27, 7367683.397], [351751.465, 7367771.331], [351609.936, 7367835.921], [351430.947, 7367952.659], [351244.736, 7368125.816], [351179.224, 7368233.228], [350911.046, 7369289.923], [350886.258, 7369678.967], [350784.629, 7370051.828], [350590.834, 7370586.166], [350393.621, 7370981.784], [350282.904, 7371163.666], [350226.719, 7371304.105], [350230.472, 7371397.323], [350273.036, 7371758.443], [350258.567, 7371867.004], [350327.706, 7372517.415], [350386.68, 7372711.176], [350423.639, 7372775.363], [350509.947, 7372860.566], [350545.725, 7372948.338], [350618.366, 7373359.068], [350638.623, 7373770.054], [350686.396, 7374019.407], [350731.001, 7374610.123], [350804.245, 7374778.63], [350895.865, 7374873.336], [350957.399, 7375068.161], [351014.628, 7375151.58], [351246.662, 7375355.485], [351782.772, 7375654.531], [351885.364, 7375737.716], [352231.651, 7376234.351], [352283.347, 7376329.118], [352390.801, 7376463.409], [352532.492, 7376584.125], [352687.687, 7376680.468], [352852.839, 7376750.617], [353056.617, 7376788.969], [353208.151, 7376737.974], [353386.034, 7376579.882], [353499.358, 7376561.089], [353595.6, 7376603.453], [353719.053, 7376696.424], [353922.378, 7376875.191], [353964.33, 7376932.229], [353992.874, 7377079.378], [353981.795, 7377179.014], [353822.766, 7377803.686], [353791.224, 7378094.716], [353796.674, 7378530.243], [353815.486, 7378705.323], [353842.525, 7378766.864], [353901.137, 7378830.885], [354221.787, 7379063.444], [354340.522, 7379199.901], [354373.798, 7379327.729], [354355.841, 7379703.833], [354423.003, 7379853.762], [354467.68, 7380127.743], [354570.182, 7380356.675], [354652.179, 7380404.693], [354733.431, 7380401.271], [354779.013, 7380374.867], [354832.459, 7380284.725], [354930.904, 7379968.002], [354969.679, 7379895.938], [355009.01, 7379865.254], [355161.132, 7379831.504], [355546.104, 7379950.491], [355633.424, 7380006.765], [355806.751, 7380183.897], [355997.215, 7380511.057], [356044.981, 7380562.753], [356187.567, 7380621.35], [356380.379, 7380665.743], [356648.874, 7380917.922], [356779.395, 7380989.799], [357355.828, 7381083.833], [357490.455, 7381154.928], [357567.033, 7381262.142], [357653.477, 7381647.716], [358370.344, 7381426.173], [358764.992, 7379662.425], [359656.999, 7378966.417], [361471.629, 7378187.813], [363936.462, 7375115.105], [370856.99, 7378554.661], [370354.787, 7380930.152], [372024.946, 7381366.52], [372619.566, 7379730.511], [372871.049, 7379467.226], [374880.006, 7379860.34], [374999.359, 7380042.714], [374507.15, 7380477.581], [376816.007, 7382186.719], [376808.319, 7383341.428], [376190.216, 7383319.552], [375540.193, 7385256.254], [374311.468, 7385569.834], [373979.822, 7386366.384], [374375.017, 7386491.0], [374630.127, 7385773.148], [375610.252, 7385913.433], [376373.798, 7384164.594], [377639.935, 7383307.282], [378964.329, 7383455.164], [379548.425, 7383864.17], [380123.289, 7383810.828], [380182.229, 7384404.137], [379595.512, 7386018.158], [381303.081, 7387578.83], [381388.299, 7389101.684], [381942.642, 7389349.549], [383252.605, 7388847.673], [384452.725, 7389319.337], [385770.577, 7390951.547], [386882.255, 7390815.436], [386995.896, 7391658.872], [387811.585, 7391577.251], [387918.462, 7393185.221], [390534.912, 7392093.582], [390340.125, 7393946.418], [390770.706, 7394365.657], [391123.418, 7394240.863], [391311.903, 7394819.072], [392366.034, 7394468.287], [391714.807, 7395992.905], [391885.833, 7396659.402], [392291.068, 7396323.983], [392396.412, 7396859.745], [394577.366, 7396498.411], [394927.067, 7396548.116], [395191.322, 7397666.614], [394626.454, 7397675.495], [394421.55, 7398085.78], [393982.613, 7398307.446], [394865.4, 7398595.81], [394573.685, 7399441.837], [395451.998, 7399891.508], [395959.526, 7400320.459], [396415.857, 7400204.099], [396363.795, 7400669.71], [396697.937, 7401010.873], [396887.983, 7400847.966], [398139.564, 7398444.578], [399016.23, 7400527.224], [398231.193, 7402574.683], [398215.928, 7403790.346], [399323.12, 7404872.413], [399962.238, 7406563.692], [400384.722, 7406761.881], [400571.998, 7406233.458], [400429.647, 7405554.3], [400509.669, 7405082.137], [400910.044, 7405130.897], [400930.796, 7405995.146], [405195.844, 7406900.603], [407141.236, 7406338.065]]]}}, {\\\"id\\\": \\\"280\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Vesilahti\\\", \\\"elakelaisten_osuus\\\": 21.9, \\\"freshwarea\\\": 52.9, \\\"gml_id\\\": 1601100305, \\\"landarea\\\": 301.04, \\\"namefin\\\": \\\"Vesilahti\\\", \\\"nameswe\\\": \\\"Vesilahti\\\", \\\"natcode\\\": \\\"922\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 353.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[312867.391, 6810931.619], [313180.534, 6810751.561], [313426.757, 6810316.38], [313684.052, 6809469.592], [314656.69, 6808838.397], [314942.732, 6807444.064], [315480.728, 6807577.389], [318262.334, 6804714.172], [320875.409, 6803837.524], [321842.309, 6802618.305], [321868.994, 6802181.529], [321315.657, 6801675.613], [320944.472, 6800498.142], [321171.248, 6800295.921], [321444.853, 6799619.42], [322088.838, 6799627.526], [322480.919, 6800304.33], [323249.59, 6800139.654], [324019.518, 6799588.238], [324646.934, 6798826.654], [324707.898, 6798537.66], [324458.217, 6798035.259], [324745.435, 6797972.217], [324977.484, 6797413.835], [324589.445, 6796757.176], [325014.538, 6796004.595], [324273.095, 6795263.289], [323755.88, 6794623.86], [322865.425, 6794163.727], [322290.513, 6793565.428], [322204.585, 6793131.204], [321520.356, 6793270.387], [321094.744, 6793033.027], [321290.934, 6792613.27], [322241.09, 6792016.457], [322242.168, 6791194.287], [317209.632, 6790296.18], [315667.074, 6789857.932], [314246.201, 6790569.479], [307593.313, 6790341.531], [308259.776, 6790959.328], [307850.331, 6791401.793], [307465.372, 6791093.519], [306780.198, 6791559.587], [306598.061, 6791310.142], [305625.918, 6791665.178], [305658.269, 6792122.614], [306222.922, 6792590.959], [306133.007, 6794099.794], [304893.116, 6793683.878], [304877.821, 6794460.134], [302933.135, 6793833.684], [302809.444, 6794492.79], [302124.849, 6794291.482], [302019.477, 6794852.05], [301430.128, 6794669.462], [300346.112, 6795011.413], [300703.912, 6797451.822], [301102.603, 6800694.352], [300085.282, 6803247.133], [297788.894, 6805221.834], [300931.473, 6808129.885], [303526.983, 6807346.522], [305522.186, 6805777.932], [308021.115, 6804616.695], [308554.456, 6804528.688], [308726.575, 6805452.098], [309603.799, 6805166.429], [309952.892, 6805241.214], [310168.225, 6805496.124], [309664.612, 6806134.316], [308934.379, 6806816.059], [307610.528, 6807798.308], [307206.594, 6808297.845], [308836.595, 6809496.936], [308239.204, 6810240.996], [308330.028, 6810403.253], [309024.691, 6810453.081], [309802.59, 6811055.805], [310314.51, 6811205.887], [310633.693, 6810982.696], [311320.535, 6811163.701], [311934.626, 6812066.557], [312867.391, 6810931.619]]]}}, {\\\"id\\\": \\\"281\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Enonkoski\\\", \\\"elakelaisten_osuus\\\": 42.2, \\\"freshwarea\\\": 113.62, \\\"gml_id\\\": 1601100064, \\\"landarea\\\": 305.58, \\\"namefin\\\": \\\"Enonkoski\\\", \\\"nameswe\\\": \\\"Enonkoski\\\", \\\"natcode\\\": \\\"046\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 419.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[592983.742, 6905823.212], [593712.023, 6905316.66], [593948.679, 6904646.346], [594811.999, 6904742.188], [595524.696, 6904086.598], [596082.087, 6903375.284], [596486.176, 6903489.355], [597138.102, 6902984.723], [597490.036, 6903290.879], [597811.516, 6903400.549], [598592.449, 6903354.599], [599634.351, 6903532.391], [599721.984, 6903138.256], [599559.91, 6901518.826], [599438.513, 6900733.411], [598684.571, 6901045.631], [598796.643, 6900415.651], [598603.792, 6900082.442], [599369.426, 6899288.56], [599448.996, 6898234.868], [601222.508, 6898110.954], [601772.416, 6898733.377], [602480.251, 6898110.022], [603609.099, 6897827.623], [603629.128, 6896778.147], [604452.747, 6896314.238], [605140.645, 6896197.97], [605418.454, 6895714.803], [605374.086, 6895501.784], [605104.948, 6895300.33], [604925.06, 6895101.906], [604851.931, 6894984.9], [604991.439, 6894659.758], [605112.866, 6894312.634], [604925.547, 6893348.852], [605733.047, 6893079.437], [606429.468, 6892438.488], [608402.441, 6891131.121], [609289.989, 6890028.444], [609175.667, 6889392.826], [608872.0, 6888994.225], [608899.536, 6888719.103], [608642.008, 6888007.9], [608240.311, 6887321.891], [608344.426, 6886975.8], [609169.448, 6886814.43], [609112.66, 6887074.946], [609697.733, 6887334.453], [610110.478, 6887339.639], [610594.1, 6887204.064], [610975.544, 6886871.678], [610492.702, 6884517.676], [610902.915, 6884224.026], [610523.108, 6883655.804], [611441.179, 6883154.272], [610534.767, 6882187.186], [609112.36, 6882797.472], [608682.265, 6882692.671], [608727.391, 6882335.616], [609190.44, 6881782.499], [609398.372, 6880974.336], [609755.342, 6880702.087], [609799.11, 6880289.032], [609386.165, 6880279.973], [609178.17, 6879983.116], [609218.132, 6879678.789], [609379.934, 6879359.911], [609679.575, 6878983.809], [610019.033, 6878795.86], [609032.451, 6876694.183], [608651.203, 6877476.85], [608066.491, 6877778.497], [606619.031, 6878531.136], [606436.184, 6878292.303], [605890.125, 6878129.436], [604806.56, 6878738.942], [604566.275, 6878431.194], [604295.973, 6877799.53], [604172.715, 6877246.429], [604559.606, 6877012.779], [603624.528, 6875870.959], [602652.062, 6876626.895], [602986.917, 6877016.075], [602396.023, 6877492.275], [601982.622, 6877450.234], [601783.791, 6877238.668], [601320.697, 6877441.097], [600821.376, 6877212.763], [601075.408, 6876617.48], [600534.017, 6876467.434], [601138.034, 6876005.074], [600610.556, 6875620.637], [600832.592, 6875482.9], [600341.481, 6875229.57], [599771.221, 6875320.202], [599080.439, 6875633.316], [598384.483, 6875848.885], [597609.013, 6876609.074], [597954.869, 6877070.264], [598221.983, 6876844.394], [598629.028, 6876984.022], [598022.274, 6877470.621], [597917.537, 6878085.933], [596416.381, 6878698.854], [595799.085, 6879075.1], [595399.847, 6878696.434], [594674.936, 6878808.487], [593890.272, 6878197.808], [593633.579, 6877671.298], [593336.732, 6877971.715], [593418.571, 6879058.255], [591756.27, 6879357.367], [592298.969, 6880176.076], [590926.347, 6880900.69], [590251.782, 6881394.932], [590516.156, 6881513.924], [591712.598, 6881186.268], [592574.669, 6881894.059], [593137.518, 6882482.905], [593927.534, 6882024.044], [594741.004, 6881787.641], [595036.913, 6881551.326], [595335.982, 6881570.902], [595445.81, 6881933.923], [595737.068, 6881805.885], [595996.082, 6882883.375], [592949.0, 6884760.443], [592265.387, 6885745.175], [592380.466, 6886299.34], [592876.699, 6886729.817], [592356.575, 6887722.457], [592005.936, 6888707.235], [591261.233, 6889514.441], [590806.526, 6889466.092], [589708.543, 6890241.979], [588196.756, 6888684.988], [587891.477, 6889228.539], [586981.163, 6889651.393], [586737.1, 6890031.36], [585745.667, 6890753.662], [585588.294, 6891104.921], [585830.764, 6891374.835], [585297.362, 6891885.192], [585996.806, 6892221.782], [585893.742, 6892758.743], [586333.921, 6893078.356], [586730.774, 6893487.813], [586067.196, 6894522.54], [585838.1, 6894800.43], [586196.374, 6895707.738], [586983.668, 6895529.335], [587144.353, 6896201.351], [587150.585, 6896585.01], [586883.423, 6896878.04], [586081.723, 6897004.091], [586445.064, 6897237.199], [586973.718, 6898050.143], [587358.859, 6898039.452], [587106.374, 6898301.195], [587671.537, 6898669.979], [586635.569, 6899087.288], [586299.9, 6899473.76], [586801.14, 6900237.28], [587420.551, 6899727.694], [587919.109, 6899971.856], [588266.04, 6899528.609], [589549.593, 6900345.589], [589848.288, 6900086.787], [590010.275, 6899462.437], [592145.221, 6898063.286], [591895.015, 6897766.277], [592477.905, 6897395.98], [593595.261, 6898464.754], [593795.079, 6899348.636], [593406.229, 6899431.84], [593353.204, 6899669.991], [593020.241, 6900279.965], [592306.756, 6901101.491], [592297.047, 6901362.471], [593042.621, 6901836.116], [592876.184, 6902145.226], [592346.006, 6902448.375], [592448.14, 6902756.307], [593181.751, 6902902.737], [593038.971, 6903255.112], [592711.909, 6903301.203], [592303.146, 6903966.214], [591876.358, 6903946.46], [591612.083, 6904218.034], [591412.145, 6904650.681], [591649.668, 6905031.913], [591546.62, 6905527.494], [591795.078, 6905738.013], [591649.293, 6906014.778], [592206.77, 6906014.811], [592983.742, 6905823.212]]]}}, {\\\"id\\\": \\\"282\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Siuntio\\\", \\\"elakelaisten_osuus\\\": 21.6, \\\"freshwarea\\\": 8.84, \\\"gml_id\\\": 1601100366, \\\"landarea\\\": 241.11, \\\"namefin\\\": \\\"Siuntio\\\", \\\"nameswe\\\": \\\"Sjunde\\\\u00e5\\\", \\\"natcode\\\": \\\"755\\\", \\\"seawarea\\\": 16.17, \\\"totalarea\\\": 266.12}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[352485.409, 6683868.535], [352899.518, 6681792.724], [349893.018, 6675625.877], [351485.238, 6672530.473], [351921.248, 6670857.475], [352168.137, 6670266.637], [353026.423, 6667261.008], [352803.333, 6666141.826], [352072.516, 6664499.594], [353012.993, 6663526.057], [353211.131, 6663179.187], [353152.439, 6661558.513], [352701.357, 6660428.678], [352494.25, 6660300.469], [352516.64, 6660117.275], [352530.63, 6660002.812], [350437.45, 6656951.381], [349371.915, 6658952.571], [348541.821, 6660998.491], [347781.151, 6661591.74], [347506.13, 6662354.912], [347393.918, 6663520.466], [346860.197, 6664434.118], [345827.574, 6665798.332], [346190.188, 6666410.305], [345984.802, 6666953.49], [345520.67, 6667738.645], [344553.647, 6668990.316], [343317.057, 6669366.688], [343031.474, 6669309.0], [341668.934, 6667854.539], [340836.33, 6667267.659], [340671.985, 6669430.235], [339890.622, 6669856.813], [338920.767, 6670846.283], [338020.923, 6671051.837], [336005.637, 6671797.73], [334526.292, 6672025.248], [334388.106, 6672664.936], [334644.843, 6673704.074], [334488.258, 6674031.399], [334593.506, 6674736.995], [334582.909, 6675293.781], [334085.902, 6675495.796], [334931.274, 6676379.156], [335415.626, 6676257.048], [336139.187, 6676444.443], [336079.221, 6677116.583], [335803.444, 6677775.55], [336202.331, 6677948.558], [336504.425, 6678461.636], [337345.651, 6678886.728], [338370.847, 6679743.356], [338116.178, 6680332.146], [338602.741, 6680623.867], [338766.559, 6680052.266], [339355.676, 6680363.89], [341112.128, 6680696.181], [341984.342, 6679755.135], [342829.409, 6680197.418], [342100.125, 6680560.278], [343117.684, 6681906.059], [343177.709, 6680551.318], [346110.335, 6683692.275], [346658.898, 6683627.58], [347755.179, 6683675.588], [348432.639, 6684532.268], [350150.857, 6686590.204], [351084.214, 6687267.974], [352485.409, 6683868.535]]]}}, {\\\"id\\\": \\\"283\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kempele\\\", \\\"elakelaisten_osuus\\\": 18.8, \\\"freshwarea\\\": 0.2, \\\"gml_id\\\": 1601100407, \\\"landarea\\\": 110.11, \\\"namefin\\\": \\\"Kempele\\\", \\\"nameswe\\\": \\\"Kempele\\\", \\\"natcode\\\": \\\"244\\\", \\\"seawarea\\\": 0.03, \\\"totalarea\\\": 110.34}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[428847.322, 7202947.939], [430531.487, 7202640.455], [434499.733, 7202605.988], [437175.562, 7200882.337], [437864.88, 7201451.532], [437868.012, 7200987.136], [437397.397, 7200739.678], [439410.179, 7199117.032], [439819.994, 7198411.25], [439204.069, 7197562.745], [436196.13, 7192290.351], [436231.204, 7192063.566], [435656.934, 7191684.974], [435235.839, 7191654.739], [435115.25, 7191830.112], [434669.573, 7191858.349], [433960.389, 7192115.759], [433847.015, 7191627.856], [432727.568, 7192047.491], [432658.919, 7191727.399], [431494.369, 7192393.78], [431317.272, 7192754.537], [431010.451, 7192923.102], [431116.938, 7193247.659], [430559.788, 7193536.526], [430017.755, 7194316.509], [429085.411, 7194342.518], [428478.902, 7194468.784], [428061.891, 7194854.602], [428168.936, 7195555.679], [427639.798, 7196168.853], [427685.054, 7196393.942], [427551.769, 7196734.489], [427244.4, 7196946.35], [426861.943, 7196873.546], [426386.798, 7197366.2], [426401.642, 7197497.376], [425994.868, 7198552.285], [426059.702, 7198661.89], [425865.918, 7199487.647], [425963.431, 7199665.062], [425853.555, 7199853.078], [425711.926, 7200044.475], [425549.598, 7200640.147], [425934.667, 7201222.769], [426231.047, 7201713.286], [426320.166, 7202154.113], [426094.275, 7202566.478], [426063.946, 7203160.564], [426188.062, 7203600.46], [428847.322, 7202947.939]]]}}, {\\\"id\\\": \\\"284\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Sulkava\\\", \\\"elakelaisten_osuus\\\": 45.4, \\\"freshwarea\\\": 184.67, \\\"gml_id\\\": 1601100550, \\\"landarea\\\": 584.53, \\\"namefin\\\": \\\"Sulkava\\\", \\\"nameswe\\\": \\\"Sulkava\\\", \\\"natcode\\\": \\\"768\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 769.2}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[563273.618, 6868427.093], [564115.078, 6867829.082], [565167.757, 6867524.515], [565842.794, 6866638.781], [566988.322, 6867683.567], [568228.928, 6867164.19], [568722.229, 6867180.188], [569500.011, 6867698.485], [569888.15, 6868172.296], [570720.223, 6867348.738], [571027.606, 6866735.99], [572253.123, 6865646.544], [572562.287, 6866049.4], [573303.502, 6865558.489], [573455.45, 6864577.089], [574259.232, 6864085.096], [574906.976, 6863589.304], [574342.413, 6862559.617], [574682.579, 6862212.461], [574348.622, 6861391.991], [574849.124, 6860992.758], [577402.966, 6860082.385], [576588.838, 6859605.037], [576786.161, 6859344.045], [577690.969, 6859027.608], [577070.452, 6858768.382], [577579.692, 6858291.87], [578087.577, 6858608.223], [578238.59, 6857970.916], [578607.844, 6857763.004], [578542.674, 6857368.964], [578792.378, 6856946.138], [579123.274, 6857126.366], [579392.448, 6856223.265], [580353.34, 6855718.407], [580462.632, 6855405.232], [581500.695, 6855171.999], [581561.015, 6855432.359], [581915.595, 6855542.005], [582053.076, 6855096.052], [582587.374, 6854590.476], [582749.534, 6854104.132], [584009.397, 6853432.433], [583556.609, 6852186.287], [584348.251, 6850064.972], [584268.17, 6849070.799], [584629.018, 6847549.209], [583612.384, 6847307.347], [582066.02, 6846002.735], [582394.833, 6845036.051], [584161.911, 6843449.375], [584460.462, 6842858.541], [584199.803, 6841838.929], [584710.723, 6841188.944], [585601.548, 6841869.583], [586864.438, 6841335.645], [586606.364, 6840652.376], [586014.405, 6840074.388], [585672.466, 6840005.076], [585683.497, 6838833.284], [585848.52, 6838514.172], [585243.391, 6837605.558], [585505.73, 6837137.831], [586226.732, 6836547.557], [585808.047, 6835501.285], [587907.779, 6835183.09], [588371.796, 6834849.04], [590690.235, 6834915.923], [590992.797, 6835136.22], [591330.327, 6834387.747], [591888.926, 6833882.028], [592269.497, 6833254.819], [593234.68, 6834183.751], [593760.326, 6833995.264], [594302.583, 6834050.464], [594443.507, 6833696.3], [594777.368, 6833733.909], [595048.802, 6833545.281], [595452.44, 6832789.965], [595744.224, 6832068.957], [595617.233, 6831851.773], [597505.819, 6831469.189], [598618.328, 6831627.659], [599227.439, 6831146.244], [598745.625, 6830730.874], [599241.086, 6829990.462], [599307.567, 6829455.968], [598533.421, 6829144.652], [597940.423, 6829208.426], [597619.8, 6828645.344], [597192.748, 6828461.972], [597404.378, 6827658.561], [598384.79, 6827171.081], [598821.074, 6827254.708], [600207.502, 6826183.205], [600677.44, 6825974.952], [601124.9, 6825607.088], [601794.581, 6825409.88], [602617.762, 6825021.538], [603189.434, 6824870.647], [603980.674, 6824572.057], [600339.558, 6822975.738], [599879.391, 6823224.035], [599250.305, 6823211.564], [598091.278, 6823686.95], [597543.986, 6823690.271], [596879.88, 6823986.246], [596327.952, 6823806.064], [595272.67, 6824236.681], [594923.774, 6824175.856], [593477.986, 6825294.147], [592199.513, 6825932.155], [591716.596, 6826394.234], [590646.499, 6826788.529], [587864.266, 6826749.666], [587121.145, 6827138.609], [586569.765, 6827001.824], [586177.399, 6827047.386], [586395.002, 6828001.56], [586058.526, 6828573.553], [585738.566, 6829110.683], [585277.898, 6828946.853], [584587.357, 6829703.861], [584118.665, 6829798.836], [584166.167, 6828981.071], [584447.519, 6827937.625], [584796.447, 6826852.159], [584648.701, 6826447.081], [584182.876, 6826330.052], [584021.206, 6826928.51], [584100.892, 6827503.861], [583680.226, 6828236.349], [583557.144, 6829480.376], [583794.72, 6830055.486], [583404.19, 6830603.966], [582684.913, 6831009.704], [582127.652, 6831044.155], [581120.312, 6832104.754], [579668.981, 6831984.707], [579248.282, 6831650.784], [578505.68, 6831725.946], [578291.766, 6831909.67], [577349.447, 6831714.44], [577100.937, 6833161.852], [577091.934, 6834155.65], [576852.923, 6835255.503], [575305.146, 6835384.537], [574670.496, 6836021.601], [574556.94, 6836527.567], [574309.338, 6836821.746], [574499.658, 6837274.364], [574197.777, 6837670.301], [573711.671, 6838091.161], [573372.8, 6838219.175], [572988.862, 6838124.107], [572635.001, 6838538.036], [571797.839, 6838575.713], [571427.79, 6838245.043], [570952.08, 6838488.74], [570406.604, 6837973.144], [570204.384, 6838135.776], [568790.957, 6837713.434], [567324.266, 6838221.142], [567287.598, 6838709.174], [566990.776, 6838752.197], [567020.161, 6839150.936], [566796.446, 6839957.508], [566286.451, 6840111.941], [566223.373, 6840526.372], [564900.715, 6839271.268], [564231.085, 6839240.374], [563885.923, 6839498.867], [563914.703, 6840647.002], [563173.338, 6842380.4], [562954.277, 6842653.882], [562166.891, 6843209.649], [561799.234, 6843996.228], [560862.412, 6843935.044], [560325.53, 6843743.916], [559764.653, 6844169.439], [559411.896, 6843999.105], [559074.33, 6844394.542], [558558.23, 6845554.467], [558079.618, 6846251.081], [560399.755, 6847282.784], [560767.073, 6846806.574], [560817.9, 6846282.046], [561231.398, 6845944.544], [561829.523, 6845545.834], [562054.852, 6845748.76], [561892.281, 6846172.548], [561848.706, 6847417.505], [562232.834, 6847583.28], [562702.54, 6848352.274], [559250.541, 6852904.492], [558764.882, 6853231.858], [558320.907, 6853327.722], [557926.606, 6853751.392], [558035.749, 6855869.58], [559857.4, 6857389.78], [559890.398, 6858897.881], [560000.323, 6859268.519], [560656.158, 6859291.216], [561269.208, 6859660.771], [560309.702, 6860663.442], [559845.594, 6860703.252], [559306.371, 6860979.257], [558983.33, 6861381.357], [557239.91, 6861880.163], [558146.745, 6863303.456], [557890.322, 6863521.861], [558883.363, 6863811.232], [559217.998, 6863384.284], [559376.824, 6864280.18], [560752.952, 6865824.964], [561714.848, 6864720.916], [562103.712, 6865425.239], [562144.988, 6866146.946], [562387.986, 6866543.087], [562040.019, 6867280.985], [562494.728, 6868053.075], [562342.786, 6868356.651], [562706.237, 6868664.829], [563273.618, 6868427.093]]]}}, {\\\"id\\\": \\\"285\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"J\\\\u00e4rvenp\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 21.3, \\\"freshwarea\\\": 2.39, \\\"gml_id\\\": 1601100317, \\\"landarea\\\": 37.54, \\\"namefin\\\": \\\"J\\\\u00e4rvenp\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Tr\\\\u00e4sk\\\\u00e4nda\\\", \\\"natcode\\\": \\\"186\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 39.93}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[399460.778, 6709189.412], [398207.07, 6704408.364], [398206.29, 6704310.03], [396537.318, 6703928.307], [396597.639, 6703594.254], [397260.462, 6703680.032], [397346.868, 6703347.497], [396619.558, 6703175.581], [396736.427, 6702713.613], [395335.217, 6702375.806], [394387.911, 6702448.794], [392747.796, 6702964.899], [392604.146, 6703628.252], [392394.005, 6703964.248], [393296.122, 6704419.685], [392296.152, 6706000.394], [392338.19, 6706726.984], [392829.824, 6706758.376], [392713.103, 6707077.764], [393217.887, 6707520.591], [392299.561, 6710040.347], [394059.184, 6709762.275], [394119.612, 6710156.906], [395737.502, 6709879.18], [395536.093, 6709458.64], [395662.383, 6708853.887], [396040.624, 6708549.29], [396215.745, 6709084.51], [396648.029, 6709421.917], [397947.388, 6709203.435], [398475.842, 6710386.973], [399460.778, 6709189.412]]]}}, {\\\"id\\\": \\\"286\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyh\\\\u00e4ranta\\\", \\\"elakelaisten_osuus\\\": 31.7, \\\"freshwarea\\\": 4.87, \\\"gml_id\\\": 1601100338, \\\"landarea\\\": 143.53, \\\"namefin\\\": \\\"Pyh\\\\u00e4ranta\\\", \\\"nameswe\\\": \\\"Pyh\\\\u00e4ranta\\\", \\\"natcode\\\": \\\"631\\\", \\\"seawarea\\\": 143.35, \\\"totalarea\\\": 291.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[191458.446, 6787741.215], [193847.464, 6787633.763], [194966.83, 6785723.48], [195249.45, 6785543.526], [195400.958, 6785026.314], [196129.714, 6784587.862], [196682.383, 6784056.673], [196920.866, 6784170.78], [197472.825, 6783588.138], [197407.806, 6783128.043], [198821.076, 6781791.058], [199100.466, 6778656.456], [200197.074, 6777451.775], [201491.84, 6776415.871], [201720.532, 6775742.749], [201697.544, 6775310.987], [204310.187, 6775721.641], [205548.246, 6775583.225], [206435.889, 6776003.887], [208214.695, 6775891.548], [208642.13, 6775986.41], [207953.181, 6778071.221], [208863.61, 6778549.089], [209000.557, 6779364.385], [209781.948, 6780489.404], [211097.822, 6776529.702], [211113.686, 6774576.749], [211671.977, 6774130.133], [211038.651, 6773769.144], [208035.459, 6770839.404], [207393.043, 6770872.102], [207679.226, 6770119.047], [207979.512, 6769735.557], [207266.757, 6769371.405], [206814.661, 6769388.597], [206008.913, 6769665.909], [205320.239, 6770871.425], [205063.931, 6771588.796], [204664.724, 6771521.696], [204206.978, 6771898.137], [204411.807, 6772580.121], [204616.913, 6772774.492], [205142.545, 6772866.876], [205231.006, 6773498.06], [204816.094, 6773668.626], [202331.728, 6774071.747], [201571.367, 6773362.64], [201949.404, 6772680.152], [203122.906, 6771259.358], [202699.819, 6770651.285], [202875.589, 6770441.269], [203164.127, 6769479.752], [203122.57, 6767786.499], [203189.415, 6765815.775], [202330.463, 6765536.114], [203158.009, 6764900.614], [201312.686, 6763733.792], [202002.115, 6763592.887], [201798.599, 6762861.552], [201981.428, 6762310.155], [201405.973, 6762262.32], [201064.467, 6761552.539], [200700.634, 6761095.36], [200351.829, 6761033.911], [200256.701, 6761531.32], [200017.36, 6761831.076], [199408.144, 6763407.836], [199427.626, 6763697.38], [198787.365, 6764910.614], [197907.506, 6765832.768], [197414.597, 6766058.837], [197383.345, 6766777.27], [196800.934, 6767108.387], [196780.809, 6767638.41], [197022.913, 6768198.717], [197811.348, 6768569.372], [197909.875, 6771024.885], [197619.845, 6770845.895], [197611.528, 6770582.964], [197540.091, 6770527.402], [197455.754, 6770573.042], [197453.77, 6770781.402], [195811.213, 6772153.836], [195760.07, 6772717.424], [193683.35, 6775468.78], [193838.755, 6775659.137], [193854.823, 6775929.442], [193432.824, 6776390.466], [192878.408, 6776896.987], [192565.628, 6777104.596], [191908.648, 6777765.916], [191729.406, 6778388.409], [188815.565, 6782313.132], [164821.728, 6792899.912], [164981.865, 6793621.183], [191458.446, 6787741.215]]]}}, {\\\"id\\\": \\\"287\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Savukoski\\\", \\\"elakelaisten_osuus\\\": 39.1, \\\"freshwarea\\\": 56.93, \\\"gml_id\\\": 1601100513, \\\"landarea\\\": 6439.58, \\\"namefin\\\": \\\"Savukoski\\\", \\\"nameswe\\\": \\\"Savukoski\\\", \\\"natcode\\\": \\\"742\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 6496.51}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[576610.0, 7561931.7], [596951.2, 7553001.9], [599805.1, 7547503.9], [612091.882, 7523305.435], [610585.848, 7520347.523], [610585.457, 7520346.754], [605184.812, 7509739.683], [596819.988, 7500858.69], [594311.233, 7493036.835], [588174.998, 7484023.891], [583260.56, 7475568.692], [583137.732, 7471793.547], [578177.253, 7459365.977], [573223.38, 7449990.36], [573419.472, 7449242.715], [572715.158, 7447905.026], [564805.726, 7446058.54], [559024.553, 7444077.628], [548268.155, 7447959.284], [548466.512, 7447476.611], [548197.936, 7447347.103], [547920.534, 7448048.94], [547911.111, 7448223.763], [545054.425, 7450928.096], [541746.293, 7451259.921], [541615.945, 7451120.981], [538542.516, 7451098.721], [537908.944, 7451205.434], [538242.166, 7453184.812], [538598.124, 7453395.22], [538454.415, 7453657.92], [538222.882, 7453765.788], [537269.345, 7455972.184], [538056.718, 7456859.236], [536861.351, 7457902.307], [536573.179, 7457570.242], [535977.975, 7458949.387], [536314.636, 7458866.071], [536305.776, 7459228.818], [535885.704, 7459163.185], [533148.707, 7465518.432], [528617.033, 7468487.238], [528669.08, 7467994.474], [519210.187, 7473355.515], [518560.162, 7473419.541], [518621.653, 7473682.906], [509506.022, 7478809.643], [513185.822, 7486135.346], [512869.511, 7486071.275], [512853.326, 7486752.311], [513363.212, 7486784.008], [513413.674, 7486592.699], [516657.37, 7493013.882], [516523.311, 7493382.808], [516917.676, 7493530.353], [517346.509, 7494145.132], [516954.873, 7495290.476], [517648.901, 7495662.015], [518465.6, 7494094.658], [534119.547, 7503959.733], [536679.074, 7510311.335], [566730.011, 7563043.487], [566730.473, 7563044.296], [566730.506, 7563044.354], [568226.8, 7565660.7], [576610.0, 7561931.7]]]}}, {\\\"id\\\": \\\"288\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pori\\\", \\\"elakelaisten_osuus\\\": 30.1, \\\"freshwarea\\\": 61.86, \\\"gml_id\\\": 1601100573, \\\"landarea\\\": 1156.01, \\\"namefin\\\": \\\"Pori\\\", \\\"nameswe\\\": \\\"Bj\\\\u00f6rneborg\\\", \\\"natcode\\\": \\\"609\\\", \\\"seawarea\\\": 844.13, \\\"totalarea\\\": 2062.0}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[213153.252, 6858227.025], [213431.768, 6857756.337], [213867.808, 6858049.795], [215292.618, 6857686.303], [215741.599, 6857513.818], [216190.941, 6857731.503], [216528.796, 6857374.843], [220287.519, 6856434.139], [221808.002, 6857384.242], [225918.266, 6851590.76], [226698.672, 6850495.926], [227240.796, 6850509.842], [227728.139, 6849487.788], [234214.694, 6843144.308], [236817.074, 6841335.77], [237551.207, 6841525.632], [238037.43, 6841477.731], [238094.685, 6841737.083], [239311.797, 6841947.339], [240089.9, 6841913.021], [240882.562, 6841770.472], [241501.592, 6841725.197], [241943.967, 6843649.823], [242340.69, 6843046.876], [243340.289, 6843198.915], [243933.05, 6843084.753], [244192.479, 6843463.146], [244603.476, 6843636.468], [244808.115, 6843391.425], [247567.385, 6845977.933], [247977.686, 6849382.724], [248193.87, 6849542.349], [253389.279, 6850129.248], [253738.87, 6850546.523], [253401.245, 6851070.005], [253410.213, 6851483.381], [253738.166, 6851470.098], [254323.7, 6851344.839], [254730.855, 6851183.489], [256002.203, 6850467.681], [264982.579, 6847237.863], [269222.456, 6848033.136], [269868.088, 6848072.825], [270115.518, 6846446.2], [271356.439, 6845135.285], [269719.358, 6844869.151], [269965.465, 6843325.258], [271623.297, 6843948.921], [271945.638, 6845525.215], [272494.798, 6845579.075], [272641.862, 6845005.785], [273339.148, 6845099.773], [273118.52, 6844753.645], [273097.757, 6843059.366], [273597.562, 6842067.542], [272349.674, 6839794.226], [270186.02, 6841924.132], [271736.938, 6837141.473], [268959.881, 6835580.478], [268952.552, 6834951.671], [268526.519, 6833046.71], [266361.408, 6831103.776], [265331.352, 6831822.259], [256997.689, 6825762.4], [247459.686, 6835751.501], [239786.04, 6836441.196], [237735.079, 6835218.132], [237832.52, 6834865.638], [237604.673, 6834119.628], [236597.005, 6835196.476], [236199.58, 6835004.226], [236705.229, 6833132.339], [236191.412, 6833122.228], [235608.622, 6833990.444], [235503.669, 6833498.103], [234576.631, 6832853.686], [233523.503, 6834035.055], [232955.457, 6833850.217], [233678.217, 6833113.631], [233506.439, 6832910.476], [232307.876, 6833638.112], [230896.902, 6832882.707], [227893.757, 6829593.382], [227590.59, 6828603.917], [227833.796, 6828083.784], [227697.626, 6826727.964], [227101.171, 6826875.488], [227244.814, 6825840.046], [227196.595, 6825268.014], [226880.726, 6824857.103], [226746.977, 6824134.989], [226631.804, 6822877.583], [223545.99, 6822273.891], [222930.911, 6821748.896], [223085.804, 6821203.094], [222982.021, 6820161.191], [223215.874, 6819828.828], [223076.741, 6818017.723], [222750.075, 6817836.414], [222569.956, 6816742.727], [222549.467, 6816618.906], [217790.058, 6817656.44], [215160.166, 6821647.308], [214725.689, 6821843.447], [211065.023, 6821297.569], [209519.218, 6822225.263], [209562.143, 6822429.728], [209262.224, 6822609.127], [208979.267, 6822542.926], [207926.737, 6823170.663], [208161.603, 6824000.184], [208476.605, 6825314.244], [203577.811, 6828336.864], [202168.603, 6831250.639], [174575.7, 6837156.888], [177304.979, 6849902.846], [177110.724, 6855934.835], [202499.941, 6856750.518], [205498.186, 6855876.09], [206708.163, 6855811.34], [212339.081, 6857445.004], [212571.592, 6858259.586], [213153.252, 6858227.025]]]}}, {\\\"id\\\": \\\"289\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Karijoki\\\", \\\"elakelaisten_osuus\\\": 40.4, \\\"freshwarea\\\": 0.78, \\\"gml_id\\\": 1601100369, \\\"landarea\\\": 185.76, \\\"namefin\\\": \\\"Karijoki\\\", \\\"nameswe\\\": \\\"B\\\\u00f6tom\\\", \\\"natcode\\\": \\\"218\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 186.54}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[228225.214, 6909312.401], [225119.667, 6909119.52], [225163.871, 6909648.633], [227207.345, 6909689.491], [228071.129, 6909811.776], [228225.214, 6909312.401]]], [[[219607.313, 6932789.093], [219427.77, 6932188.97], [220183.393, 6931963.498], [223041.786, 6930607.193], [223601.767, 6931107.157], [223738.186, 6930971.862], [223527.016, 6930406.901], [227575.989, 6928511.906], [227380.163, 6927597.212], [227984.149, 6927516.944], [228009.925, 6928310.946], [234990.134, 6925005.508], [235016.563, 6924992.6], [235006.972, 6924928.098], [234319.031, 6920908.979], [237376.971, 6913468.796], [236941.459, 6913476.473], [236769.076, 6912952.904], [236439.099, 6913273.385], [234558.9, 6917838.143], [232038.375, 6916571.412], [231256.322, 6910737.189], [228413.249, 6909859.476], [228152.922, 6909981.352], [227743.462, 6910173.046], [227572.087, 6910641.65], [227581.819, 6911175.92], [227140.227, 6911587.763], [226954.213, 6912158.064], [227232.29, 6912460.38], [226903.183, 6912491.273], [227132.621, 6912942.509], [227281.822, 6913428.553], [226856.354, 6914006.684], [226231.269, 6914035.293], [225014.052, 6914546.209], [225315.526, 6914891.255], [224821.679, 6915201.47], [224296.246, 6914596.383], [223586.714, 6914542.365], [223760.954, 6915847.111], [223474.936, 6916382.241], [223915.927, 6916978.482], [224659.862, 6921051.008], [224215.351, 6921629.329], [224488.237, 6922000.135], [224207.702, 6922197.404], [223950.667, 6922049.032], [223712.47, 6922239.417], [224114.019, 6922909.18], [225011.905, 6923315.604], [224950.128, 6923642.274], [225201.122, 6924188.49], [225256.384, 6924650.712], [225167.371, 6925052.695], [224426.972, 6925681.659], [223826.055, 6925757.535], [223397.689, 6926552.538], [222158.918, 6926330.964], [222267.203, 6925770.216], [221718.688, 6925671.973], [221916.423, 6926284.112], [220473.577, 6926013.739], [220556.156, 6925612.214], [220176.156, 6925571.195], [220029.246, 6925930.535], [218955.365, 6925730.881], [218593.415, 6925888.223], [218436.99, 6926891.426], [218046.269, 6927149.566], [218093.547, 6927685.11], [216976.293, 6928462.479], [218572.718, 6930195.211], [218501.355, 6930941.002], [218770.84, 6931057.236], [218962.582, 6931422.913], [218707.443, 6931647.397], [219000.159, 6933062.97], [219607.313, 6932789.093]]]]}}, {\\\"id\\\": \\\"290\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pyht\\\\u00e4\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 30.5, \\\"freshwarea\\\": 11.77, \\\"gml_id\\\": 1601100598, \\\"landarea\\\": 324.63, \\\"namefin\\\": \\\"Pyht\\\\u00e4\\\\u00e4\\\", \\\"nameswe\\\": \\\"Pyttis\\\", \\\"natcode\\\": \\\"624\\\", \\\"seawarea\\\": 444.56, \\\"totalarea\\\": 780.96}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[482653.225, 6723766.967], [486508.294, 6715561.273], [486511.377, 6715554.71], [486254.226, 6715441.911], [490323.991, 6706636.797], [491186.214, 6704307.832], [491365.343, 6701428.397], [491241.972, 6701099.185], [491398.609, 6700870.421], [493088.51, 6673729.015], [486952.213, 6673729.285], [485664.923, 6672514.456], [480933.752, 6670541.394], [476843.435, 6682646.971], [476270.228, 6690201.573], [475673.652, 6692068.282], [472528.212, 6694514.693], [471050.994, 6696805.354], [472052.984, 6697416.916], [472040.077, 6699096.736], [471700.599, 6701373.312], [469890.898, 6706150.359], [469660.843, 6706380.052], [469860.805, 6706690.84], [470539.481, 6706830.354], [470389.587, 6707191.344], [470786.323, 6707787.507], [470656.458, 6708466.269], [470940.938, 6708822.921], [471969.839, 6708710.146], [472210.74, 6708947.853], [472074.592, 6709365.082], [472478.425, 6709944.152], [472901.455, 6709897.975], [473171.244, 6710238.94], [473158.546, 6710610.79], [472652.804, 6711499.786], [472072.278, 6711585.185], [471924.734, 6712054.793], [472605.358, 6712262.216], [472965.51, 6712626.871], [473067.665, 6713232.927], [473394.934, 6713113.479], [473503.892, 6712833.593], [475008.681, 6713299.022], [475070.653, 6713753.838], [474886.715, 6715538.614], [476262.645, 6719264.126], [476977.992, 6719981.479], [477150.218, 6720959.217], [477799.487, 6721389.445], [477789.978, 6721786.969], [477933.466, 6722243.963], [477973.473, 6722914.56], [478291.188, 6723244.933], [480813.865, 6724119.206], [482653.225, 6723766.967]]]}}, {\\\"id\\\": \\\"291\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Uusikaupunki\\\", \\\"elakelaisten_osuus\\\": 32.7, \\\"freshwarea\\\": 47.41, \\\"gml_id\\\": 1601100052, \\\"landarea\\\": 502.86, \\\"namefin\\\": \\\"Uusikaupunki\\\", \\\"nameswe\\\": \\\"Nystad\\\", \\\"natcode\\\": \\\"895\\\", \\\"seawarea\\\": 1382.16, \\\"totalarea\\\": 1932.43}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[181860.132, 6739594.505], [181199.112, 6736686.356], [178213.333, 6739095.432], [177185.851, 6739825.218], [177631.69, 6740502.167], [177675.64, 6740353.826], [177795.715, 6740450.908], [177752.194, 6740758.881], [177803.031, 6740867.18], [181860.132, 6739594.505]]], [[[188815.565, 6782313.132], [191729.406, 6778388.409], [191908.648, 6777765.916], [192565.628, 6777104.596], [192878.408, 6776896.987], [193432.824, 6776390.466], [193854.823, 6775929.442], [193838.755, 6775659.137], [193683.35, 6775468.78], [195760.07, 6772717.424], [195811.213, 6772153.836], [197453.77, 6770781.402], [197455.754, 6770573.042], [197540.091, 6770527.402], [197611.528, 6770582.964], [197619.845, 6770845.895], [197909.875, 6771024.885], [197811.348, 6768569.372], [197022.913, 6768198.717], [196780.809, 6767638.41], [196800.934, 6767108.387], [197383.345, 6766777.27], [197414.597, 6766058.837], [197907.506, 6765832.768], [198787.365, 6764910.614], [199427.626, 6763697.38], [199408.144, 6763407.836], [200017.36, 6761831.076], [200256.701, 6761531.32], [200351.829, 6761033.911], [200700.634, 6761095.36], [201064.467, 6761552.539], [201405.973, 6762262.32], [201981.428, 6762310.155], [202311.607, 6762338.842], [203098.809, 6761868.535], [202713.595, 6759160.505], [203613.984, 6758875.562], [203467.033, 6757932.852], [203997.226, 6757986.793], [204610.461, 6757284.498], [206354.632, 6758196.21], [207209.022, 6757648.451], [207570.197, 6757761.354], [208264.087, 6757305.656], [208134.451, 6757058.005], [209058.01, 6756478.994], [209298.123, 6756556.339], [209473.921, 6756463.109], [209510.838, 6756193.78], [210684.683, 6755462.5], [212099.839, 6754039.705], [212999.714, 6752576.085], [212523.474, 6752544.608], [212330.693, 6750941.067], [212441.0, 6750580.383], [214224.941, 6748708.114], [213317.294, 6748691.146], [213134.531, 6747495.92], [212946.885, 6746527.537], [211382.33, 6745241.653], [210008.572, 6745307.388], [209566.051, 6745798.403], [208709.985, 6745669.383], [207717.072, 6745986.686], [205377.236, 6745914.507], [204342.435, 6746212.549], [203530.938, 6746118.53], [203656.075, 6745279.164], [202834.336, 6744620.644], [202429.691, 6744059.442], [202584.1, 6743724.792], [203587.887, 6743872.998], [203822.414, 6743605.416], [204088.896, 6743176.643], [203838.573, 6741823.349], [202936.527, 6741696.549], [201887.743, 6741113.826], [201592.465, 6740609.898], [202141.21, 6740108.554], [202358.026, 6739734.175], [201868.138, 6739063.936], [201870.467, 6739058.052], [201233.865, 6739029.961], [200340.777, 6739255.801], [201051.88, 6738427.542], [200965.809, 6738211.945], [199938.138, 6737671.952], [200822.084, 6737415.19], [201741.225, 6737571.959], [202684.719, 6736050.606], [203018.037, 6735285.936], [203578.276, 6735292.907], [203653.232, 6734623.52], [204495.941, 6733471.807], [204556.514, 6733083.118], [204078.315, 6732798.927], [203464.428, 6732707.528], [203287.119, 6732996.678], [202944.206, 6733250.651], [202747.62, 6733106.47], [201911.684, 6732992.367], [201893.511, 6733298.73], [200836.804, 6732996.353], [200078.324, 6733046.312], [199276.768, 6732741.728], [199128.857, 6732834.778], [199431.638, 6733873.249], [198131.59, 6734299.788], [197700.902, 6734193.418], [197256.222, 6733779.525], [196985.835, 6733986.17], [196665.219, 6733749.633], [195768.046, 6734082.207], [195994.392, 6734576.494], [196341.432, 6734448.129], [196328.715, 6734486.28], [196328.404, 6734487.214], [196328.1, 6734488.125], [196207.868, 6734848.822], [196668.657, 6734991.766], [195701.788, 6735657.636], [195417.963, 6735358.742], [195348.206, 6735108.993], [195142.247, 6734893.467], [195011.908, 6734410.759], [194961.244, 6734167.141], [195019.65, 6733674.817], [194729.923, 6733617.239], [194804.705, 6733371.103], [194663.56, 6733077.918], [194263.898, 6733403.293], [194219.169, 6733586.707], [193508.331, 6734567.698], [193295.424, 6733693.414], [193149.394, 6733378.276], [192904.154, 6733453.59], [192613.512, 6734127.278], [191924.172, 6734143.657], [191989.062, 6735179.783], [191905.423, 6735915.885], [191405.895, 6736340.347], [190654.462, 6738021.407], [190156.056, 6738405.334], [190017.339, 6738867.478], [189997.339, 6739222.377], [190107.869, 6739672.881], [185267.85, 6743788.024], [174109.351, 6750276.195], [144380.958, 6769674.449], [164821.728, 6792899.912], [188815.565, 6782313.132]]]]}}, {\\\"id\\\": \\\"292\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kuopio\\\", \\\"elakelaisten_osuus\\\": 25.7, \\\"freshwarea\\\": 1085.34, \\\"gml_id\\\": 1601100489, \\\"landarea\\\": 3241.01, \\\"namefin\\\": \\\"Kuopio\\\", \\\"nameswe\\\": \\\"Kuopio\\\", \\\"natcode\\\": \\\"297\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 4326.35}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[557094.414, 7029244.035], [557441.784, 7028753.936], [557532.203, 7028425.583], [558011.004, 7028036.077], [558212.327, 7027554.337], [558670.203, 7027981.751], [558908.552, 7028425.443], [559271.98, 7028014.202], [559737.297, 7027970.456], [559892.367, 7027487.27], [560463.451, 7027478.207], [560588.414, 7028000.62], [560983.814, 7027885.288], [562945.666, 7029138.716], [563553.24, 7022845.424], [564001.617, 7022781.387], [567136.426, 7022506.299], [567946.912, 7028009.536], [568112.538, 7028133.289], [568844.893, 7027583.935], [569630.416, 7027691.876], [570397.483, 7028151.367], [570564.925, 7027610.211], [571243.153, 7027121.488], [571229.711, 7026652.466], [571583.799, 7026519.878], [571690.381, 7025777.516], [572001.571, 7025540.166], [572020.88, 7025258.279], [571907.272, 7024836.576], [572118.548, 7024186.356], [572729.086, 7023728.581], [572690.568, 7023195.086], [572366.502, 7023366.358], [572233.703, 7023025.54], [572434.869, 7022440.759], [572127.857, 7022240.514], [572188.501, 7021996.914], [572008.933, 7021735.308], [571971.279, 7020823.239], [572249.299, 7020448.631], [572398.472, 7020075.732], [572194.621, 7019450.959], [572583.656, 7019413.527], [572648.601, 7018981.317], [572876.663, 7018429.37], [572906.368, 7017753.735], [573142.962, 7017085.35], [572668.302, 7016790.715], [573310.064, 7014783.988], [573697.951, 7013932.525], [575299.962, 7012626.076], [577187.285, 7012453.358], [577484.392, 7012157.911], [577843.975, 7012082.208], [578175.492, 7011431.242], [580042.272, 7010005.696], [580291.392, 7009651.636], [581015.594, 7009316.911], [583199.352, 7008593.925], [585462.344, 7007121.275], [585976.078, 7005720.012], [588843.378, 7002040.871], [583562.361, 7000386.901], [582972.905, 7000391.019], [582304.669, 7000640.637], [577962.833, 7000380.05], [578030.113, 6999120.953], [577129.47, 6999071.876], [577163.756, 6998612.34], [575595.299, 6998272.453], [574258.551, 6998400.855], [574061.276, 6998169.958], [574257.162, 6997527.924], [574040.726, 6997165.868], [574564.49, 6996920.37], [574636.769, 6996431.194], [571598.39, 6995079.477], [572071.823, 6994820.198], [571884.101, 6994396.105], [571628.25, 6994530.892], [571860.211, 6993989.585], [571478.993, 6993796.211], [571805.805, 6993098.427], [571156.377, 6993264.364], [570748.676, 6993623.086], [570678.616, 6992184.047], [570809.415, 6991975.702], [571393.852, 6992250.435], [571640.112, 6992014.534], [571733.551, 6991275.974], [572335.585, 6991282.943], [574163.694, 6988158.428], [574577.481, 6987854.197], [573783.207, 6987117.207], [573702.404, 6986522.452], [573248.6, 6986164.362], [573057.551, 6986388.982], [572862.649, 6986142.955], [572387.838, 6986388.113], [572068.143, 6985692.157], [572241.373, 6985197.05], [571983.445, 6984329.84], [570284.522, 6982319.942], [570600.289, 6981089.902], [569542.577, 6980297.982], [566535.388, 6979928.196], [563359.47, 6980478.152], [562037.08, 6981198.842], [561846.791, 6980728.921], [563188.166, 6980011.06], [564631.672, 6979793.218], [565321.606, 6979442.186], [566115.64, 6979133.73], [566453.146, 6978652.992], [566361.821, 6978303.778], [565862.183, 6978290.35], [565479.294, 6978187.781], [565132.786, 6977872.8], [564984.039, 6977614.375], [564588.991, 6977264.844], [565066.422, 6976756.052], [566047.627, 6976518.655], [566013.352, 6975319.04], [565750.758, 6975348.326], [565713.776, 6975023.558], [564554.442, 6975385.203], [564418.603, 6974762.455], [566133.015, 6973965.589], [565739.976, 6973765.767], [565630.927, 6973071.647], [563345.045, 6973925.886], [563216.202, 6973460.573], [563518.336, 6973235.557], [563758.138, 6972821.483], [563921.596, 6972288.933], [563904.827, 6971986.284], [563574.132, 6971810.111], [563007.087, 6972026.803], [561742.102, 6973172.78], [560508.395, 6973864.092], [560055.784, 6973274.028], [559143.678, 6973267.712], [559343.081, 6972366.99], [560396.461, 6971570.12], [560929.351, 6970918.187], [561557.605, 6969988.568], [561447.753, 6969559.541], [561612.989, 6969220.679], [561112.914, 6968470.716], [561692.516, 6967941.18], [562099.173, 6967444.743], [562422.506, 6967068.017], [562706.893, 6966552.034], [563289.883, 6966313.925], [563640.182, 6966049.711], [564100.564, 6966025.021], [564508.293, 6965089.983], [567334.243, 6967785.605], [567418.776, 6967470.752], [567339.676, 6966607.574], [567260.324, 6966269.145], [567509.711, 6965528.522], [568048.271, 6965776.447], [568239.264, 6964701.207], [567908.612, 6964056.469], [567745.495, 6963129.954], [566521.504, 6963132.529], [563816.703, 6960456.932], [564334.853, 6960318.624], [564891.235, 6960473.694], [565222.803, 6961126.907], [566948.311, 6962657.428], [567859.272, 6961597.938], [568016.083, 6961152.694], [568394.355, 6960047.031], [567964.938, 6960009.314], [566999.018, 6960287.285], [565949.591, 6959995.959], [566531.461, 6958786.938], [567383.612, 6957241.162], [567996.016, 6956986.575], [567878.446, 6955877.671], [567941.005, 6955711.724], [568532.682, 6955860.714], [568819.566, 6955646.357], [569049.477, 6955140.742], [569404.581, 6954807.93], [569651.836, 6954411.842], [569703.954, 6953769.01], [570162.69, 6953150.803], [570479.919, 6952801.036], [570569.272, 6952584.973], [570379.925, 6952493.116], [569718.567, 6952673.969], [567637.326, 6947559.207], [567248.3, 6947448.528], [567926.799, 6946736.052], [568561.461, 6946557.71], [569294.955, 6946037.91], [570186.575, 6945325.348], [569438.188, 6945314.793], [569817.745, 6944339.056], [569336.414, 6944118.444], [569882.075, 6943616.534], [569835.846, 6943143.769], [569312.856, 6943248.523], [568655.317, 6943945.236], [568195.605, 6943594.374], [568505.783, 6943046.298], [568466.701, 6942787.703], [568817.062, 6942434.948], [569544.574, 6941512.128], [568973.509, 6940948.752], [568342.559, 6941609.079], [567848.657, 6941771.11], [566645.738, 6942582.472], [564615.658, 6942497.19], [563118.27, 6941441.406], [562588.58, 6942035.661], [562640.145, 6944053.744], [561828.165, 6945133.301], [561782.772, 6946876.794], [559728.694, 6948049.003], [559217.304, 6947530.609], [556389.934, 6949213.005], [555685.117, 6949654.02], [554996.87, 6949791.745], [554550.377, 6949552.751], [554547.38, 6949263.368], [553947.521, 6949459.983], [553010.086, 6949473.017], [551884.943, 6950042.347], [551430.062, 6949448.501], [550972.326, 6949414.074], [550561.651, 6948803.844], [549338.19, 6948945.149], [549042.107, 6949370.574], [548411.27, 6949641.746], [548027.018, 6949316.687], [547890.798, 6949450.723], [547969.928, 6950055.071], [548618.07, 6950665.846], [548670.243, 6951503.907], [548057.379, 6951814.67], [545046.494, 6949721.152], [544157.069, 6950405.606], [543667.842, 6950577.699], [543431.869, 6949912.11], [543431.353, 6949337.644], [543247.745, 6948906.933], [542661.584, 6949490.974], [542562.618, 6950078.638], [542245.428, 6950214.043], [542082.28, 6949943.487], [542135.585, 6949593.049], [540542.74, 6949125.708], [540025.445, 6949445.277], [539634.005, 6949222.664], [537886.938, 6950908.428], [536519.736, 6951176.19], [536160.9, 6949563.607], [534177.795, 6949838.285], [530558.604, 6951145.425], [530341.128, 6951204.118], [529784.299, 6951077.945], [529258.971, 6951490.784], [527976.615, 6952093.997], [527522.074, 6951584.262], [526541.828, 6951640.78], [524686.223, 6952902.41], [524395.833, 6954055.542], [523396.204, 6954278.834], [523295.83, 6953505.962], [522959.804, 6953330.837], [522406.266, 6952234.557], [521845.822, 6952905.912], [521802.189, 6952112.923], [521346.581, 6952257.896], [520978.755, 6952315.137], [520488.591, 6951967.626], [519473.588, 6952198.684], [518772.532, 6952814.493], [518488.637, 6953277.532], [517848.327, 6953592.008], [517430.696, 6953497.248], [516823.147, 6953596.338], [516429.57, 6953754.81], [514109.286, 6952466.858], [511430.017, 6955067.808], [511097.958, 6954912.37], [510514.026, 6955395.801], [510350.426, 6955832.742], [509768.685, 6956417.911], [509358.502, 6956696.132], [509236.082, 6956930.435], [508946.211, 6957137.913], [508366.346, 6957233.224], [507904.057, 6957588.078], [507831.691, 6957898.008], [507108.066, 6958063.131], [506605.71, 6958363.248], [506211.11, 6958768.485], [505977.348, 6959220.208], [503796.409, 6959137.826], [504189.07, 6958807.264], [502625.302, 6957532.751], [502127.962, 6957720.401], [501545.781, 6958464.222], [501019.223, 6958589.69], [500611.689, 6958409.838], [498822.701, 6960909.122], [499042.144, 6962060.719], [498498.863, 6965137.158], [495364.254, 6968874.07], [495579.864, 6970125.147], [494940.411, 6971090.161], [495101.701, 6971452.541], [495761.173, 6971385.831], [495458.162, 6972297.949], [495458.252, 6972988.901], [495327.37, 6973732.135], [496269.169, 6974196.868], [495324.718, 6975274.502], [495792.182, 6975672.022], [496153.969, 6975319.891], [496957.478, 6976209.76], [496788.469, 6977036.498], [496122.575, 6979147.55], [495527.622, 6980448.69], [494735.94, 6980756.519], [494427.81, 6981565.354], [495175.069, 6982998.468], [494704.849, 6984371.583], [495841.37, 6984661.679], [496198.322, 6985004.988], [497054.2, 6985153.007], [498058.414, 6984091.357], [498958.396, 6983725.379], [499698.164, 6984480.136], [500685.008, 6984759.91], [500723.841, 6984459.311], [501436.018, 6984658.915], [501282.717, 6985898.249], [501760.592, 6986065.394], [502424.851, 6986615.082], [502398.483, 6986189.493], [502807.635, 6986014.222], [503221.028, 6986040.062], [503800.839, 6985581.996], [503865.355, 6985929.274], [503656.373, 6986725.824], [504229.005, 6986921.067], [504619.832, 6987298.73], [505001.036, 6987198.132], [505311.872, 6986871.513], [505898.623, 6986408.651], [506358.75, 6986208.614], [507212.07, 6986955.85], [507194.793, 6987224.764], [505120.986, 6989141.293], [504552.984, 6988963.902], [503917.398, 6990466.969], [504321.631, 6990650.452], [504144.258, 6991028.409], [504071.068, 6991435.717], [502541.913, 6992643.816], [501587.627, 6993515.362], [501137.999, 6993821.181], [500399.728, 6994172.49], [500157.106, 6994409.566], [499807.347, 6995130.311], [498903.487, 6996122.111], [498408.271, 6997183.605], [497943.58, 6997275.99], [497844.062, 6997818.385], [498009.279, 6998227.844], [497811.369, 6998703.022], [497784.818, 6999144.74], [497575.655, 6999398.398], [497857.372, 6999731.098], [497492.725, 7000100.187], [497387.255, 7000530.231], [501070.521, 7001496.586], [500279.211, 7002309.036], [499742.691, 7003310.533], [499399.997, 7003435.796], [499155.912, 7003864.629], [498811.965, 7003707.048], [498268.889, 7004010.365], [497784.633, 7003944.123], [497626.988, 7005035.554], [498806.934, 7004441.985], [499282.491, 7004878.75], [499732.24, 7005085.662], [500540.879, 7005108.534], [501942.84, 7004369.198], [502357.023, 7004457.552], [503226.432, 7003903.432], [503661.024, 7003958.667], [504046.773, 7003721.481], [504504.419, 7003803.497], [504762.741, 7003447.725], [505586.54, 7003707.487], [501839.612, 7007339.948], [501824.911, 7007853.003], [502351.137, 7008735.733], [502584.798, 7010155.189], [502136.108, 7011078.042], [502396.204, 7012428.29], [502775.75, 7012456.188], [502722.302, 7013669.675], [501662.603, 7014122.743], [502310.662, 7015205.084], [502990.346, 7014581.464], [503573.985, 7015107.806], [504555.041, 7014543.769], [504909.129, 7014533.182], [505424.89, 7014151.155], [506214.962, 7014024.35], [505325.058, 7015338.305], [505238.408, 7016033.848], [505707.069, 7016081.069], [505910.411, 7016520.853], [507238.381, 7016001.593], [507432.255, 7016515.671], [507422.527, 7017034.097], [506707.018, 7018096.022], [506846.428, 7019816.87], [506443.759, 7020527.88], [506040.449, 7020552.632], [506597.452, 7020942.922], [506862.461, 7021387.212], [506669.038, 7021648.505], [508270.567, 7022901.362], [508756.458, 7023137.825], [509161.972, 7022394.746], [509229.081, 7021929.599], [509827.964, 7022043.668], [511128.942, 7021728.105], [511611.753, 7020822.474], [513086.861, 7020569.087], [513568.468, 7020363.973], [513589.667, 7019121.674], [514490.31, 7018206.35], [514974.015, 7018311.911], [515413.774, 7012715.975], [516959.866, 7010436.807], [517559.436, 7008763.087], [516828.432, 7008438.614], [516629.92, 7007348.253], [517773.765, 7006501.503], [518007.281, 7004928.94], [518915.511, 7005572.486], [519632.823, 7005379.869], [523371.816, 7005531.333], [524060.834, 7006118.6], [524803.534, 7006266.006], [525016.919, 7005790.341], [525370.843, 7005560.824], [525688.901, 7004563.872], [526137.309, 7004447.49], [526526.957, 7003766.368], [524649.618, 7003027.454], [524285.961, 7003526.25], [523785.462, 7003599.317], [524155.726, 7001649.208], [524031.685, 7000273.963], [523801.981, 6999819.245], [523824.474, 6999450.994], [523543.843, 6999320.744], [523454.324, 6999311.439], [523427.382, 6999238.159], [523315.993, 6999117.683], [523293.915, 6999040.822], [523318.747, 6998930.079], [523426.099, 6998872.034], [523525.425, 6998716.585], [523652.811, 6998644.418], [523805.61, 6998544.927], [523968.793, 6998420.566], [524089.914, 6998329.862], [524167.462, 6998205.325], [524312.433, 6998154.91], [524507.501, 6998199.359], [524733.685, 6998156.426], [524839.61, 6998194.312], [524921.034, 6998331.979], [525139.385, 6998351.62], [525321.082, 6997907.328], [525324.881, 6997834.258], [525582.508, 6997684.231], [525674.64, 6997578.868], [525825.557, 6997532.808], [525908.097, 6997408.5], [526027.669, 6997368.856], [526102.904, 6997298.52], [526153.65, 6997018.395], [525947.632, 6995361.353], [524836.297, 6994019.001], [524105.426, 6994026.519], [523785.629, 6992788.916], [523755.623, 6992728.181], [523548.424, 6992693.929], [523425.774, 6992726.514], [522602.306, 6992941.521], [520927.588, 6991969.302], [520312.949, 6991604.109], [519820.539, 6991252.294], [519665.86, 6991131.212], [519054.048, 6991485.183], [519065.499, 6991574.415], [518988.876, 6991655.394], [518928.598, 6991801.854], [518542.454, 6991674.502], [517919.403, 6992008.663], [517869.497, 6992146.583], [517080.964, 6992028.14], [517155.213, 6991689.787], [517559.596, 6991252.663], [517823.148, 6991099.33], [519385.82, 6990203.806], [519362.534, 6989100.053], [519649.221, 6988454.518], [519951.706, 6986864.266], [520609.541, 6986515.113], [520618.239, 6986174.251], [520839.151, 6985919.356], [520970.6, 6985371.48], [521289.973, 6984943.456], [523891.528, 6983111.42], [524557.362, 6983927.637], [526824.75, 6981938.713], [527381.025, 6981892.336], [526393.733, 6983266.158], [526655.207, 6983700.504], [527502.22, 6983376.782], [527875.613, 6983352.499], [528291.748, 6983187.522], [528319.418, 6982350.167], [529257.782, 6982285.537], [529411.405, 6981749.608], [530457.184, 6981417.949], [530651.999, 6982403.255], [531627.405, 6982310.6], [532196.473, 6982672.459], [533274.998, 6982299.664], [533960.687, 6982857.662], [534272.784, 6983488.492], [535002.928, 6983119.579], [535008.351, 6982854.115], [536091.66, 6981683.032], [536095.082, 6981665.648], [538844.096, 6983009.989], [539897.456, 6983247.374], [540290.362, 6982634.23], [540378.977, 6981536.769], [540168.566, 6981130.432], [541206.253, 6980549.347], [542207.846, 6980499.897], [542009.711, 6982189.313], [542155.844, 6983075.755], [541746.391, 6985127.123], [543074.047, 6985912.711], [546110.237, 6983863.155], [548071.021, 6986305.977], [547766.041, 6986670.028], [547361.444, 6987150.149], [545059.634, 6986886.627], [544175.791, 6986996.578], [540850.024, 6989753.244], [540239.067, 6990912.271], [541679.379, 6991428.869], [541909.779, 6992972.244], [542268.828, 6994053.007], [542586.596, 6994673.058], [543192.949, 6995002.627], [543695.444, 6994995.233], [544399.16, 6994605.195], [544756.313, 6995055.214], [543467.933, 6995815.699], [543243.623, 6996131.569], [543282.303, 6997016.411], [543486.917, 6997834.98], [543531.395, 6998702.528], [542751.777, 6999474.039], [542378.759, 6999622.249], [542102.767, 7000444.215], [541675.76, 7000906.595], [541412.243, 7001410.42], [540533.56, 7002518.129], [540561.657, 7002960.455], [540784.461, 7003132.024], [540788.975, 7003825.562], [541223.168, 7005190.733], [541080.66, 7005524.636], [541258.547, 7005678.432], [541675.988, 7005527.791], [541698.186, 7005931.794], [541610.628, 7006237.426], [541779.586, 7006637.739], [541625.799, 7006941.27], [541606.329, 7007652.401], [541090.832, 7008879.002], [539843.987, 7009520.701], [539223.105, 7010187.66], [539024.865, 7010497.635], [538682.708, 7010744.508], [537645.362, 7011020.467], [536809.464, 7010870.27], [536653.742, 7011283.387], [536294.851, 7011597.347], [535612.375, 7011977.51], [535237.395, 7012045.385], [535048.603, 7012816.942], [535190.0, 7013199.33], [535150.42, 7013637.242], [535572.193, 7013627.871], [536514.365, 7013781.193], [537241.371, 7013528.3], [538527.449, 7013485.225], [539076.226, 7013512.118], [539263.129, 7014190.262], [539955.556, 7015610.477], [540595.697, 7015515.62], [541381.582, 7014688.859], [542212.44, 7015240.842], [542714.723, 7017442.056], [543244.205, 7017779.124], [543081.527, 7018894.176], [543675.164, 7019895.594], [544333.547, 7019824.795], [544803.385, 7019400.268], [545388.975, 7019042.897], [545480.478, 7018721.612], [545939.797, 7019487.952], [545647.114, 7019806.722], [545429.082, 7020408.459], [545984.794, 7019890.47], [546382.178, 7019680.517], [546703.586, 7019403.992], [547045.646, 7019492.658], [547117.16, 7019729.184], [546923.198, 7020256.353], [547200.169, 7020436.07], [547201.671, 7021512.044], [547059.926, 7022020.738], [547026.717, 7022714.191], [547537.486, 7023282.44], [547686.761, 7023745.645], [548237.936, 7023802.826], [548637.779, 7023663.68], [549613.777, 7023600.317], [550387.96, 7023816.036], [550245.343, 7024843.352], [550374.893, 7025141.003], [550834.637, 7024921.444], [550977.012, 7025271.052], [551186.776, 7025684.587], [551443.624, 7026055.23], [551556.365, 7026441.86], [551321.246, 7027000.142], [551522.118, 7027446.157], [551983.7, 7027825.726], [552225.188, 7027913.594], [552598.632, 7028608.116], [553812.93, 7029996.164], [554266.941, 7030627.512], [554366.998, 7030987.967], [557094.414, 7029244.035]]]}}, {\\\"id\\\": \\\"293\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kaskinen\\\", \\\"elakelaisten_osuus\\\": 44.1, \\\"freshwarea\\\": 0.15, \\\"gml_id\\\": 1601100387, \\\"landarea\\\": 10.63, \\\"namefin\\\": \\\"Kaskinen\\\", \\\"nameswe\\\": \\\"Kask\\\\u00f6\\\", \\\"natcode\\\": \\\"231\\\", \\\"seawarea\\\": 164.58, \\\"totalarea\\\": 175.36}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[202301.553, 6931484.329], [203138.056, 6930061.462], [203767.375, 6928456.071], [203692.397, 6926277.615], [200873.402, 6922174.185], [195818.395, 6919478.746], [173652.367, 6917659.555], [173191.31, 6923274.095], [195357.709, 6925093.925], [200723.47, 6927928.049], [201562.449, 6931503.617], [201845.874, 6931728.17], [202301.553, 6931484.329]]]}}, {\\\"id\\\": \\\"294\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kangasniemi\\\", \\\"elakelaisten_osuus\\\": 42.1, \\\"freshwarea\\\": 257.91, \\\"gml_id\\\": 1601100360, \\\"landarea\\\": 1068.84, \\\"namefin\\\": \\\"Kangasniemi\\\", \\\"nameswe\\\": \\\"Kangasniemi\\\", \\\"natcode\\\": \\\"213\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1326.75}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[484680.05, 6906140.018], [484563.399, 6905857.331], [484950.772, 6904244.27], [485864.905, 6901606.856], [485767.352, 6900839.665], [485933.596, 6900248.149], [485924.297, 6899306.887], [484974.575, 6900711.011], [484536.556, 6900254.193], [484045.954, 6900450.31], [483963.784, 6900800.168], [484087.832, 6901122.339], [483720.404, 6902171.63], [483260.959, 6902118.931], [483173.805, 6900779.372], [483626.938, 6899705.536], [483943.808, 6899299.569], [483859.542, 6898909.931], [484285.139, 6897883.585], [485281.911, 6896539.271], [485516.334, 6895906.801], [485808.915, 6896063.474], [485783.669, 6896428.454], [485779.066, 6897713.731], [486995.504, 6895217.427], [487705.691, 6894382.8], [487947.591, 6894517.747], [488458.883, 6893909.698], [488520.055, 6894480.243], [488995.064, 6894331.833], [489375.506, 6894511.064], [489852.513, 6894127.948], [490068.904, 6893613.604], [490514.648, 6893075.655], [490669.886, 6892693.11], [490659.248, 6891855.623], [490845.627, 6891160.886], [491098.38, 6890743.148], [491553.672, 6889526.441], [491854.909, 6889109.743], [492192.946, 6888939.602], [492319.43, 6888548.702], [491756.265, 6887480.128], [491753.569, 6886819.495], [491158.712, 6886712.432], [491534.066, 6885480.833], [491250.688, 6884186.653], [491195.965, 6882594.132], [492394.851, 6881106.815], [493046.865, 6880027.676], [493436.446, 6879166.913], [494894.234, 6880334.132], [495573.15, 6879347.931], [496853.062, 6879133.296], [497355.325, 6879378.192], [497445.42, 6878604.48], [498575.037, 6878547.675], [498988.8, 6877223.425], [499603.252, 6877668.918], [499772.907, 6877415.511], [499748.302, 6876641.899], [499902.015, 6876139.091], [500508.7, 6875801.847], [500786.932, 6875335.472], [501583.198, 6875007.839], [502994.341, 6875157.91], [503503.444, 6874606.171], [503242.857, 6874343.234], [503772.954, 6873688.005], [503817.458, 6874269.887], [504200.816, 6873887.26], [504019.896, 6873189.941], [504669.65, 6871254.134], [506373.457, 6870457.367], [506637.48, 6870143.566], [506052.402, 6869600.613], [505332.101, 6868996.253], [504861.792, 6869066.622], [504318.709, 6869557.219], [503442.168, 6869358.892], [503041.634, 6869021.226], [503145.901, 6867944.864], [502447.891, 6867318.312], [502161.709, 6867194.759], [501725.985, 6867315.706], [501103.341, 6867044.91], [500676.312, 6867357.779], [499918.927, 6866575.989], [499903.44, 6865884.47], [499404.395, 6865607.501], [499623.362, 6865053.505], [499547.978, 6864716.229], [499088.696, 6863305.51], [498084.098, 6864028.807], [497857.684, 6864631.26], [497430.352, 6865236.51], [496963.839, 6865520.29], [496529.108, 6865274.422], [496503.609, 6864707.627], [496308.149, 6864499.415], [495743.118, 6864715.404], [495825.116, 6864157.835], [495438.012, 6863998.215], [494348.32, 6863906.129], [494318.04, 6863170.929], [493706.192, 6862845.258], [493475.481, 6863385.936], [492978.885, 6863187.214], [492435.718, 6861785.281], [491672.927, 6861940.113], [491469.512, 6861567.262], [492168.139, 6859933.429], [492292.094, 6859185.933], [491942.328, 6858283.438], [491632.971, 6857690.135], [491168.661, 6857515.602], [491083.087, 6858841.764], [490603.679, 6859256.992], [489857.596, 6857058.478], [489055.325, 6856661.033], [488259.949, 6856473.204], [488004.156, 6856010.289], [487282.051, 6855789.274], [486422.797, 6856256.978], [486110.53, 6855277.673], [484817.659, 6854791.46], [483435.316, 6855450.983], [481308.611, 6850687.898], [480940.553, 6851775.955], [480461.646, 6852057.937], [480284.814, 6852639.9], [481768.692, 6855586.916], [480313.573, 6857053.911], [479269.288, 6858484.524], [477930.03, 6858722.618], [477393.852, 6858126.856], [477701.042, 6855950.64], [477522.816, 6855652.959], [476891.571, 6855907.252], [476368.686, 6855408.95], [475420.64, 6855510.609], [474721.135, 6856126.832], [475263.126, 6856876.047], [475532.309, 6858056.471], [474367.782, 6857971.697], [473953.253, 6857549.765], [473096.503, 6857264.474], [472447.37, 6856745.38], [471388.2, 6856808.347], [470893.204, 6856342.632], [470223.676, 6856464.578], [469375.514, 6857336.718], [467850.329, 6858083.904], [466918.695, 6859910.458], [467091.819, 6860866.471], [467301.63, 6861310.393], [465952.063, 6861586.854], [464469.635, 6861000.713], [464557.351, 6861404.553], [464990.902, 6861696.735], [465109.624, 6862373.213], [464957.025, 6862589.112], [465476.832, 6863296.159], [465314.318, 6864197.252], [465448.603, 6865472.447], [465396.372, 6866123.39], [464919.735, 6866624.35], [464842.603, 6867729.014], [465154.886, 6868261.887], [465072.045, 6868875.069], [469310.883, 6871297.97], [465037.534, 6878458.625], [459342.968, 6887632.55], [464407.337, 6896701.058], [464790.628, 6896725.794], [465137.752, 6895843.056], [467101.577, 6897062.853], [466973.395, 6897413.031], [468534.462, 6897671.736], [469558.748, 6897473.622], [469693.792, 6897891.654], [469557.945, 6898702.825], [469917.028, 6899322.174], [470628.009, 6899529.397], [470773.756, 6898960.248], [470756.457, 6898299.12], [470989.812, 6897645.397], [471371.673, 6897991.595], [471379.837, 6898497.83], [472044.15, 6898931.641], [472359.218, 6898543.209], [473170.106, 6899126.762], [473089.712, 6899369.077], [473816.014, 6899782.214], [473222.543, 6901176.747], [472899.369, 6901802.592], [474934.941, 6902012.12], [474657.446, 6902943.142], [475190.031, 6902691.547], [476326.06, 6903855.184], [476904.007, 6902790.86], [477377.429, 6902563.604], [478706.826, 6899967.87], [479045.505, 6899636.195], [479577.27, 6900192.984], [479952.824, 6899406.005], [479817.039, 6898736.646], [479931.242, 6898421.003], [480412.648, 6898158.212], [480593.077, 6897782.865], [481935.342, 6898394.919], [481947.444, 6899302.997], [482292.713, 6900101.976], [481739.784, 6900327.915], [481220.243, 6900851.178], [481322.848, 6901828.635], [480723.175, 6903824.026], [480504.003, 6904149.524], [480534.086, 6904681.291], [480867.106, 6905102.211], [480932.374, 6905804.228], [480478.005, 6906153.301], [479811.124, 6907102.546], [481661.162, 6907707.464], [481998.203, 6907565.087], [482872.469, 6907954.373], [482738.021, 6908227.762], [483572.48, 6908502.157], [484680.05, 6906140.018]]]}}, {\\\"id\\\": \\\"295\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kannonkoski\\\", \\\"elakelaisten_osuus\\\": 41.5, \\\"freshwarea\\\": 104.87, \\\"gml_id\\\": 1601100364, \\\"landarea\\\": 445.01, \\\"namefin\\\": \\\"Kannonkoski\\\", \\\"nameswe\\\": \\\"Kannonkoski\\\", \\\"natcode\\\": \\\"216\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 549.88}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[417896.595, 6997336.918], [425653.566, 6990167.015], [425075.588, 6989135.051], [424295.151, 6985286.854], [424278.331, 6985005.111], [424874.766, 6984900.748], [425285.408, 6984783.095], [427263.294, 6982989.998], [428799.54, 6981017.866], [429551.944, 6979689.338], [430003.652, 6979610.802], [433193.53, 6981213.581], [434367.042, 6977417.745], [432182.868, 6975105.771], [427279.716, 6970716.39], [426671.993, 6976335.019], [422124.876, 6976321.002], [413384.497, 6966506.166], [413003.782, 6967037.373], [413254.134, 6967846.516], [413088.494, 6968106.42], [412572.862, 6968626.633], [411863.286, 6968895.861], [411641.837, 6969234.66], [411045.109, 6969293.649], [410457.636, 6969536.532], [410187.993, 6970026.829], [409691.55, 6970426.245], [409347.51, 6970422.294], [409118.224, 6970641.344], [409108.895, 6970791.966], [408991.617, 6970849.583], [407835.449, 6972680.015], [407443.602, 6973074.489], [407599.548, 6973674.134], [407419.485, 6974255.929], [408039.325, 6978522.909], [405294.952, 6979660.529], [404969.451, 6979415.331], [403937.371, 6979363.514], [403193.776, 6980022.935], [401860.868, 6980949.763], [402034.602, 6981239.752], [401825.15, 6982116.74], [401655.33, 6983806.582], [401355.968, 6983788.623], [401207.748, 6984618.205], [401867.378, 6984652.809], [401742.123, 6985067.321], [401101.201, 6985208.603], [400888.617, 6986385.028], [401708.207, 6986713.68], [401391.256, 6987961.64], [403336.98, 6988480.955], [402883.47, 6990123.484], [403730.955, 6990201.829], [403924.781, 6989505.585], [404239.471, 6989775.572], [404012.229, 6990282.464], [405308.726, 6990611.153], [406198.822, 6989870.001], [406862.156, 6990601.843], [406632.844, 6993800.996], [407056.988, 6995879.364], [409559.159, 6996768.814], [415279.52, 6997465.632], [417980.501, 6997686.862], [417896.595, 6997336.918]]]}}, {\\\"id\\\": \\\"296\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Orivesi\\\", \\\"elakelaisten_osuus\\\": 33.9, \\\"freshwarea\\\": 160.43, \\\"gml_id\\\": 1601100210, \\\"landarea\\\": 799.65, \\\"namefin\\\": \\\"Orivesi\\\", \\\"nameswe\\\": \\\"Orivesi\\\", \\\"natcode\\\": \\\"562\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 960.08}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[379826.847, 6856516.502], [380386.067, 6855472.741], [382603.601, 6854078.72], [382712.999, 6853535.899], [382491.742, 6853187.425], [383055.066, 6852946.141], [383528.516, 6852284.265], [383859.806, 6852653.279], [383990.209, 6852035.97], [385011.119, 6850500.343], [384917.781, 6850087.053], [384426.55, 6849862.895], [384662.458, 6848746.62], [383004.145, 6849310.302], [382559.985, 6849943.952], [382358.688, 6850465.759], [381289.288, 6851299.764], [381825.574, 6851968.569], [381511.688, 6852455.645], [381321.296, 6851964.929], [380818.367, 6851848.573], [380522.212, 6851511.834], [379980.076, 6851710.509], [379755.73, 6849931.582], [380939.607, 6846032.347], [381011.804, 6844948.99], [380243.861, 6842149.361], [381642.055, 6840863.234], [381842.331, 6840101.339], [383161.904, 6841673.594], [386462.799, 6839646.979], [384140.798, 6838254.77], [382507.388, 6834089.668], [382924.964, 6832142.474], [384108.444, 6830440.609], [385063.838, 6826579.342], [385505.84, 6827909.953], [385709.498, 6830188.286], [386497.317, 6830213.239], [387990.36, 6831152.808], [389443.041, 6830216.791], [389328.425, 6827551.193], [387200.555, 6825346.016], [385063.838, 6826579.342], [380221.158, 6827896.028], [379540.809, 6825597.669], [379648.671, 6823439.442], [376232.705, 6824560.678], [374603.317, 6822372.53], [373679.488, 6822313.436], [373498.092, 6822852.047], [371828.094, 6824498.852], [370882.757, 6823639.241], [367395.403, 6826414.17], [363116.884, 6826394.68], [361857.12, 6826389.159], [361508.492, 6826262.693], [359126.456, 6827513.75], [359266.802, 6829877.708], [358324.831, 6830598.227], [357714.081, 6830878.4], [357072.981, 6830669.429], [356206.786, 6830276.053], [353699.596, 6829178.152], [352847.059, 6829842.435], [352654.568, 6830346.062], [352184.584, 6830848.864], [350626.516, 6831834.315], [350079.901, 6832681.174], [347270.109, 6836030.211], [347257.028, 6836031.877], [346042.25, 6836963.748], [345801.078, 6837771.885], [346613.166, 6840354.593], [346639.203, 6842378.683], [345988.47, 6844856.125], [345583.68, 6845897.273], [347619.359, 6847783.319], [346495.272, 6852674.89], [346626.256, 6854536.218], [347999.011, 6856975.794], [353977.939, 6857778.959], [356604.825, 6855143.234], [358294.6, 6855917.973], [360123.818, 6851848.623], [360586.748, 6852061.46], [362564.896, 6848511.669], [363548.488, 6847647.663], [364574.357, 6847483.503], [365981.078, 6847628.843], [366223.012, 6847337.782], [367053.209, 6847244.338], [367475.054, 6847526.29], [368941.866, 6847160.741], [369293.616, 6846921.014], [369488.116, 6846599.525], [370271.418, 6845102.575], [370787.517, 6844919.426], [371824.5, 6848977.368], [372918.682, 6852068.225], [374932.57, 6856056.273], [374671.618, 6857878.047], [375412.064, 6859390.747], [377255.891, 6861121.622], [379826.847, 6856516.502]]]}}, {\\\"id\\\": \\\"297\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"P\\\\u00f6yty\\\\u00e4\\\", \\\"elakelaisten_osuus\\\": 29.0, \\\"freshwarea\\\": 23.61, \\\"gml_id\\\": 1601100348, \\\"landarea\\\": 750.08, \\\"namefin\\\": \\\"P\\\\u00f6yty\\\\u00e4\\\", \\\"nameswe\\\": \\\"P\\\\u00f6yty\\\\u00e4\\\", \\\"natcode\\\": \\\"636\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 773.69}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[260943.87, 6764023.99], [261728.108, 6762641.748], [261310.08, 6762245.338], [260791.972, 6760960.05], [260892.532, 6760578.264], [259833.832, 6759912.942], [259190.35, 6759178.957], [258697.329, 6757976.773], [259474.956, 6757798.275], [259236.822, 6757191.994], [258623.453, 6756894.97], [260436.312, 6753935.293], [262113.411, 6752950.561], [263769.786, 6751382.9], [265548.574, 6751474.511], [267904.906, 6750877.99], [268214.675, 6750621.712], [268497.564, 6750847.861], [268663.875, 6750141.368], [269332.746, 6749678.537], [269852.709, 6749169.242], [269681.115, 6748884.588], [271519.485, 6746038.621], [272907.361, 6744453.565], [273258.18, 6743623.892], [273540.925, 6743749.107], [278463.501, 6737971.342], [277804.586, 6737161.342], [277691.834, 6737030.396], [278138.999, 6736887.159], [278119.067, 6736720.374], [278545.328, 6735900.194], [278362.539, 6735526.23], [277853.579, 6735181.253], [276873.37, 6734578.648], [276698.181, 6734867.824], [276374.982, 6734617.458], [276052.037, 6735063.558], [275869.555, 6734847.528], [274215.896, 6731485.548], [273748.627, 6729710.521], [273291.59, 6728645.782], [272477.364, 6728416.42], [269551.435, 6728705.554], [267410.716, 6729080.842], [265908.922, 6729415.581], [264556.397, 6730295.796], [263938.323, 6730398.827], [264328.788, 6731767.923], [260870.156, 6733179.454], [259311.934, 6733627.545], [258273.467, 6733541.136], [256459.071, 6732989.546], [254029.689, 6736068.225], [253411.517, 6737014.039], [252919.298, 6738108.011], [252148.291, 6739017.061], [252634.236, 6739332.002], [251939.598, 6739849.088], [252272.446, 6740068.501], [251977.238, 6740429.484], [251601.995, 6739883.737], [250110.717, 6742255.941], [241979.368, 6749312.976], [241605.691, 6748979.851], [241430.103, 6748976.892], [241378.984, 6749380.186], [241448.51, 6749770.306], [240181.567, 6750860.31], [237353.515, 6758229.25], [237974.134, 6758761.085], [239108.513, 6760946.922], [240420.954, 6760189.153], [240679.382, 6760583.736], [239132.529, 6761341.812], [241410.974, 6763182.519], [242161.355, 6763667.92], [243395.267, 6763918.679], [243759.88, 6763353.697], [245986.399, 6762519.54], [246365.314, 6762574.004], [248896.201, 6764077.797], [251633.004, 6764330.886], [252569.836, 6764715.924], [255917.283, 6765381.586], [257436.007, 6765638.903], [260943.87, 6764023.99]]]}}, {\\\"id\\\": \\\"298\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Nurmij\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 19.0, \\\"freshwarea\\\": 5.39, \\\"gml_id\\\": 1601100183, \\\"landarea\\\": 361.87, \\\"namefin\\\": \\\"Nurmij\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Nurmij\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"543\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 367.26}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[378352.475, 6717936.043], [378032.838, 6716363.993], [379244.203, 6715603.408], [379291.068, 6715228.981], [378810.368, 6715129.206], [378683.813, 6714744.554], [379931.524, 6713965.208], [379166.296, 6712317.587], [380830.734, 6712274.837], [381477.763, 6715781.069], [384018.352, 6717062.774], [384218.119, 6716765.309], [384380.796, 6716029.019], [384896.62, 6716137.049], [385524.207, 6715301.21], [385516.648, 6715109.21], [385457.443, 6713782.74], [386278.152, 6712928.695], [386402.016, 6711870.378], [386913.195, 6711268.468], [386563.676, 6710972.248], [387039.324, 6710585.779], [387558.264, 6710891.859], [387382.642, 6711222.187], [387819.025, 6711519.725], [387967.182, 6711132.45], [388804.391, 6711625.308], [388809.063, 6711136.016], [388141.223, 6708924.305], [388284.885, 6708534.575], [388164.25, 6707998.643], [386495.569, 6704552.238], [386235.411, 6703324.431], [386239.927, 6703320.322], [384504.574, 6701791.092], [384059.646, 6700055.278], [382611.313, 6698010.177], [382590.573, 6697998.256], [380445.966, 6697310.819], [375773.698, 6691596.517], [373315.774, 6692906.008], [372701.704, 6693445.11], [371992.429, 6693568.406], [371189.604, 6694095.302], [369586.719, 6693654.252], [369134.568, 6693775.377], [367997.104, 6697059.824], [367125.803, 6699065.852], [366694.026, 6702765.801], [366672.676, 6703867.295], [365888.007, 6706299.373], [363954.349, 6707069.304], [365127.95, 6708432.689], [366633.292, 6710124.519], [369643.826, 6711554.014], [370926.378, 6711258.416], [371690.956, 6710280.182], [374069.231, 6711386.241], [376093.43, 6717158.633], [376652.726, 6719107.204], [378352.475, 6717936.043]]]}}, {\\\"id\\\": \\\"299\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kangasala\\\", \\\"elakelaisten_osuus\\\": 23.4, \\\"freshwarea\\\": 212.79, \\\"gml_id\\\": 1601100358, \\\"landarea\\\": 658.07, \\\"namefin\\\": \\\"Kangasala\\\", \\\"nameswe\\\": \\\"Kangasala\\\", \\\"natcode\\\": \\\"211\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 870.86}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[350079.901, 6832681.174], [350626.516, 6831834.315], [352184.584, 6830848.864], [352654.568, 6830346.062], [352847.059, 6829842.435], [353699.596, 6829178.152], [356206.786, 6830276.053], [357072.981, 6830669.429], [357714.081, 6830878.4], [358324.831, 6830598.227], [359266.802, 6829877.708], [359126.456, 6827513.75], [361508.492, 6826262.693], [361857.12, 6826389.159], [363116.884, 6826394.68], [367395.403, 6826414.17], [370882.757, 6823639.241], [371828.094, 6824498.852], [373498.092, 6822852.047], [373679.488, 6822313.436], [374603.317, 6822372.53], [376232.705, 6824560.678], [379648.671, 6823439.442], [379540.809, 6825597.669], [380221.158, 6827896.028], [385063.838, 6826579.342], [387200.555, 6825346.016], [390777.874, 6824551.546], [389646.462, 6820789.095], [389735.851, 6818049.666], [391393.307, 6815343.435], [391425.504, 6815300.875], [391802.732, 6814673.992], [386004.133, 6817676.616], [385359.184, 6818010.547], [384208.593, 6818312.233], [381899.242, 6819489.188], [382158.68, 6816207.393], [380113.172, 6816525.56], [380104.324, 6817315.682], [379318.645, 6817426.572], [378575.707, 6817836.404], [378764.536, 6816892.835], [378824.872, 6815874.059], [378918.742, 6814558.267], [376840.814, 6814903.722], [373735.627, 6814263.852], [373165.868, 6812859.172], [372946.076, 6813155.849], [363858.73, 6811612.349], [363378.352, 6811924.454], [360463.435, 6812902.672], [358928.208, 6813249.359], [357815.618, 6813310.362], [357305.008, 6814050.903], [355945.051, 6814767.981], [355052.202, 6814610.488], [355175.389, 6812245.673], [355135.749, 6810364.444], [355899.84, 6810180.345], [355552.201, 6809907.119], [354993.075, 6809882.105], [354350.296, 6810628.191], [353630.096, 6809544.48], [353179.594, 6809712.334], [352485.252, 6809478.995], [352335.789, 6808991.735], [351857.86, 6808904.399], [351819.686, 6808517.02], [350298.853, 6807693.022], [347503.524, 6807242.147], [345779.778, 6806415.291], [344654.413, 6806062.14], [345105.468, 6805006.119], [343822.592, 6803860.785], [343703.273, 6803095.608], [342672.261, 6804215.259], [340645.4, 6801601.514], [340558.652, 6803209.251], [339510.521, 6804397.634], [337878.13, 6802335.515], [337667.404, 6802673.768], [338049.756, 6803159.054], [337216.54, 6803488.529], [336853.096, 6804453.268], [337790.156, 6804830.894], [334112.121, 6814346.136], [334665.689, 6815700.402], [335642.151, 6817053.183], [336188.632, 6818774.247], [336628.258, 6819473.711], [336840.429, 6820778.152], [336872.95, 6821804.979], [337267.898, 6822913.083], [338403.228, 6822449.923], [339131.423, 6822540.723], [338856.579, 6824709.014], [343617.475, 6833670.783], [345474.086, 6834846.405], [346408.013, 6835320.645], [347270.109, 6836030.211], [350079.901, 6832681.174]]]}}, {\\\"id\\\": \\\"300\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Hollola\\\", \\\"elakelaisten_osuus\\\": 27.9, \\\"freshwarea\\\": 76.31, \\\"gml_id\\\": 1601100483, \\\"landarea\\\": 651.15, \\\"namefin\\\": \\\"Hollola\\\", \\\"nameswe\\\": \\\"Hollola\\\", \\\"natcode\\\": \\\"098\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 727.46}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[422536.607, 6776416.537], [422974.529, 6776314.184], [424998.946, 6776487.676], [426019.4, 6776263.984], [427213.664, 6775783.431], [428726.492, 6774920.418], [430081.94, 6774838.368], [431461.978, 6774767.914], [432528.703, 6775012.582], [433139.295, 6774523.833], [433359.604, 6774888.989], [433282.034, 6775181.47], [434003.039, 6775347.813], [434407.88, 6774122.311], [432707.078, 6773276.029], [432361.32, 6772943.559], [430993.792, 6770806.644], [431479.291, 6770761.925], [436402.693, 6769081.163], [435614.594, 6767948.94], [433369.04, 6767026.151], [432532.963, 6766959.261], [430516.623, 6766807.887], [429658.53, 6767530.428], [428955.376, 6766488.344], [428550.014, 6766895.166], [427874.5, 6766427.948], [427228.407, 6766893.336], [426614.543, 6766572.986], [426474.579, 6767440.579], [426061.69, 6767078.327], [425563.006, 6767245.938], [425337.251, 6767700.947], [424345.896, 6767384.381], [424213.487, 6768012.657], [423571.505, 6767953.906], [423924.086, 6767421.372], [423869.148, 6767090.014], [424280.986, 6766915.822], [424080.586, 6766492.918], [423122.179, 6765975.909], [423065.411, 6765648.562], [423450.379, 6765148.488], [422830.833, 6763827.972], [421051.555, 6763473.657], [421613.033, 6760999.187], [422254.57, 6759670.294], [422096.438, 6759326.524], [422622.087, 6759122.276], [422122.357, 6758258.946], [421892.348, 6757431.476], [422065.988, 6757075.317], [421760.237, 6756264.151], [422224.907, 6756052.941], [422574.274, 6756511.431], [422919.781, 6756302.144], [422808.404, 6755884.524], [424042.136, 6755390.856], [424246.021, 6756064.071], [424478.691, 6756125.745], [424615.26, 6755663.279], [425370.392, 6755812.455], [426036.481, 6754514.319], [426791.589, 6754013.117], [426430.649, 6753580.911], [427180.355, 6753111.791], [427499.065, 6752725.001], [426999.524, 6751882.642], [426415.521, 6751781.682], [426154.481, 6751259.065], [426378.602, 6750313.524], [426064.87, 6749634.112], [425461.672, 6749979.297], [424932.219, 6749794.604], [424779.691, 6749366.665], [424231.286, 6749173.826], [422424.301, 6750762.698], [420727.693, 6748966.993], [419577.187, 6752005.268], [419007.348, 6751029.63], [418260.379, 6750287.494], [418013.796, 6749950.098], [417457.038, 6749866.234], [417341.203, 6749458.4], [416784.873, 6749608.744], [416289.233, 6749332.833], [415638.512, 6748469.231], [414224.568, 6748969.963], [413193.162, 6747622.577], [412331.475, 6748658.903], [411517.833, 6750514.234], [409442.778, 6751426.658], [409042.77, 6752005.803], [408790.841, 6752914.767], [409312.154, 6754073.095], [408668.008, 6754598.233], [408363.888, 6755384.121], [408830.458, 6756435.15], [408437.982, 6757432.009], [408592.381, 6757777.079], [408107.605, 6758837.889], [407315.494, 6761033.957], [405921.92, 6761994.718], [405116.726, 6760911.913], [403858.465, 6760772.82], [403192.993, 6760161.556], [401836.526, 6758676.956], [400802.833, 6755954.164], [398758.104, 6753653.565], [398212.152, 6751531.909], [398175.228, 6750003.38], [397829.515, 6749094.95], [397251.575, 6749240.891], [397113.617, 6750986.658], [396795.45, 6753278.804], [396647.61, 6755267.619], [394102.316, 6756313.412], [393094.362, 6756355.691], [392003.342, 6756401.455], [392675.227, 6758222.546], [393110.616, 6760136.654], [393908.791, 6760764.362], [395004.212, 6762771.98], [394481.919, 6763232.042], [394430.135, 6763576.96], [394975.511, 6764131.419], [394702.833, 6764301.44], [393299.352, 6763686.468], [393266.806, 6764872.406], [393768.382, 6765456.134], [394248.842, 6765521.12], [394351.313, 6766216.83], [394143.31, 6766455.961], [393495.338, 6767837.503], [394097.294, 6768194.948], [395087.371, 6769919.838], [400270.848, 6771210.613], [401269.783, 6772409.141], [402784.055, 6772618.129], [403654.905, 6775615.02], [404375.957, 6776455.044], [405156.381, 6776822.41], [406024.744, 6777231.029], [406032.03, 6776779.079], [406383.247, 6775964.177], [406663.163, 6775852.337], [407223.608, 6774944.921], [408513.141, 6775493.552], [409865.59, 6776502.56], [410286.05, 6776298.634], [411314.767, 6776690.058], [413344.828, 6776188.131], [414239.989, 6775727.322], [415806.434, 6776787.72], [417483.815, 6777714.331], [417940.39, 6777421.02], [418825.563, 6778235.154], [421278.199, 6780454.098], [422536.607, 6776416.537]]]}}, {\\\"id\\\": \\\"301\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Veteli\\\", \\\"elakelaisten_osuus\\\": 33.8, \\\"freshwarea\\\": 18.78, \\\"gml_id\\\": 1601100197, \\\"landarea\\\": 502.13, \\\"namefin\\\": \\\"Veteli\\\", \\\"nameswe\\\": \\\"Vetil\\\", \\\"natcode\\\": \\\"924\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 520.91}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[343850.803, 7048650.267], [344977.616, 7048586.201], [345597.382, 7047744.429], [344601.802, 7047031.675], [344901.417, 7046127.144], [345408.414, 7046129.192], [346318.951, 7046763.956], [347840.168, 7044696.36], [351926.993, 7046892.101], [352812.718, 7047129.635], [352829.619, 7047102.871], [353492.654, 7046340.735], [354243.771, 7044590.444], [354787.428, 7044819.691], [355217.569, 7044069.025], [354895.471, 7042973.357], [353890.844, 7042287.18], [354597.61, 7041268.702], [353358.672, 7040505.2], [354021.97, 7038537.854], [353465.95, 7033420.294], [353844.073, 7033156.743], [354126.067, 7033308.988], [354582.626, 7033745.303], [355021.022, 7033407.456], [355234.521, 7033682.646], [354522.297, 7034181.772], [354574.5, 7034828.044], [355374.182, 7034831.3], [356380.37, 7032997.856], [355614.066, 7032246.011], [356711.348, 7031461.727], [356038.167, 7030589.603], [356191.962, 7030297.235], [357790.64, 7029278.235], [358679.863, 7028508.291], [358736.7, 7028665.051], [359558.905, 7028437.638], [359813.382, 7027952.088], [359344.89, 7027281.454], [357848.768, 7026462.836], [358048.851, 7025710.982], [357514.988, 7025444.962], [357025.412, 7025100.243], [357967.541, 7024701.976], [357411.254, 7023841.893], [357523.068, 7023438.047], [357251.601, 7023517.548], [357121.392, 7023653.04], [356592.89, 7024791.342], [354586.628, 7023380.065], [353819.599, 7021791.794], [354055.394, 7020332.564], [352449.988, 7020431.646], [352036.619, 7017751.916], [350315.927, 7018971.81], [347313.906, 7019966.588], [342611.354, 7020368.441], [342171.013, 7020529.644], [338234.806, 7024550.772], [336381.525, 7028425.981], [334990.189, 7032062.987], [334929.075, 7032219.92], [335589.777, 7032471.214], [333399.799, 7038382.826], [333662.261, 7038502.26], [333492.636, 7040043.086], [333875.792, 7040206.713], [333595.445, 7041332.897], [333423.077, 7041330.967], [333567.123, 7043747.806], [337220.336, 7046144.572], [337453.455, 7046227.383], [337549.152, 7046466.442], [337726.499, 7046583.47], [337718.876, 7046707.224], [337865.866, 7046749.578], [337826.804, 7046897.99], [337970.702, 7046904.436], [338225.537, 7046462.149], [338509.436, 7046591.828], [338506.426, 7046716.246], [338746.497, 7046812.896], [338878.267, 7046765.863], [342644.203, 7048360.656], [342693.784, 7048721.573], [343276.982, 7049332.033], [343850.803, 7048650.267]]]}}, {\\\"id\\\": \\\"302\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Orimattila\\\", \\\"elakelaisten_osuus\\\": 28.8, \\\"freshwarea\\\": 28.84, \\\"gml_id\\\": 1601100600, \\\"landarea\\\": 785.17, \\\"namefin\\\": \\\"Orimattila\\\", \\\"nameswe\\\": \\\"Orimattila\\\", \\\"natcode\\\": \\\"560\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 814.01}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[431728.972, 6754385.914], [432032.652, 6753845.736], [433739.951, 6754884.043], [433900.044, 6754371.239], [433665.497, 6751270.299], [435739.649, 6751785.921], [436316.515, 6751884.39], [439026.879, 6751331.536], [441307.732, 6750645.811], [442765.48, 6753629.484], [443090.809, 6755286.53], [443608.411, 6755274.271], [443880.837, 6754964.956], [444554.774, 6754732.653], [446556.038, 6752524.285], [448535.187, 6751852.781], [450282.973, 6751562.577], [450385.083, 6751074.825], [451298.191, 6750671.083], [452400.055, 6752871.232], [453348.47, 6752760.689], [451894.146, 6750514.422], [451900.68, 6749837.966], [452214.362, 6749423.102], [452341.529, 6748597.606], [451737.586, 6748347.511], [451326.445, 6748288.808], [450848.981, 6747842.014], [450656.106, 6747555.583], [450284.344, 6746431.287], [449932.587, 6745690.084], [450017.754, 6745276.652], [449867.017, 6744814.535], [450801.141, 6744113.329], [451709.739, 6744168.683], [452025.634, 6744479.962], [454713.071, 6742905.856], [456571.912, 6740982.234], [456859.041, 6736092.211], [457664.832, 6732883.306], [457124.658, 6731439.279], [454321.599, 6729747.732], [453151.057, 6728618.779], [451349.21, 6728185.135], [446949.958, 6731617.598], [441787.77, 6730507.194], [440828.446, 6733856.824], [437790.956, 6733479.58], [436420.763, 6731601.905], [434481.46, 6731265.425], [432832.439, 6730966.031], [431598.603, 6730923.09], [430325.259, 6732101.752], [428903.15, 6730953.302], [427894.202, 6729156.008], [426673.977, 6729089.633], [426235.054, 6729494.566], [425842.185, 6729123.492], [425977.487, 6728734.803], [425983.299, 6728376.618], [425804.26, 6728176.225], [426073.717, 6727890.47], [425740.307, 6727698.83], [425397.319, 6728029.592], [424495.964, 6727973.835], [424194.666, 6727793.177], [424096.839, 6726998.038], [419174.539, 6730717.412], [419548.43, 6732439.567], [418978.389, 6735649.514], [418049.26, 6737786.17], [416961.327, 6740661.414], [416036.884, 6740969.057], [414724.928, 6741021.646], [415311.005, 6741424.122], [415651.984, 6742677.817], [414556.407, 6745100.191], [412780.92, 6746821.153], [413193.162, 6747622.577], [414224.568, 6748969.963], [415638.512, 6748469.231], [416289.233, 6749332.833], [416784.873, 6749608.744], [417341.203, 6749458.4], [417457.038, 6749866.234], [418013.796, 6749950.098], [418260.379, 6750287.494], [419007.348, 6751029.63], [419577.187, 6752005.268], [420727.693, 6748966.993], [422424.301, 6750762.698], [424231.286, 6749173.826], [424779.691, 6749366.665], [424932.219, 6749794.604], [425461.672, 6749979.297], [426064.87, 6749634.112], [426378.602, 6750313.524], [426154.481, 6751259.065], [426415.521, 6751781.682], [426999.524, 6751882.642], [427499.065, 6752725.001], [427180.355, 6753111.791], [427239.046, 6753149.144], [427513.404, 6752972.506], [429323.472, 6754291.859], [429679.533, 6754117.629], [430197.954, 6754643.909], [431080.766, 6756166.942], [431728.972, 6754385.914]]]}}, {\\\"id\\\": \\\"303\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Alavus\\\", \\\"elakelaisten_osuus\\\": 32.7, \\\"freshwarea\\\": 64.28, \\\"gml_id\\\": 1601100020, \\\"landarea\\\": 1087.18, \\\"namefin\\\": \\\"Alavus\\\", \\\"nameswe\\\": \\\"Alavus\\\", \\\"natcode\\\": \\\"010\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1151.46}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[336830.159, 6965327.371], [335880.418, 6964356.705], [334399.356, 6964903.1], [333567.256, 6964156.475], [333282.127, 6963623.411], [331760.705, 6965064.996], [331365.767, 6967087.545], [332837.085, 6967908.395], [333911.129, 6968504.392], [336830.159, 6965327.371]]], [[[339859.916, 6962790.345], [339734.353, 6962487.597], [340157.19, 6962295.322], [340572.015, 6962466.395], [343298.204, 6961570.195], [343831.847, 6959331.648], [346251.263, 6953327.752], [346286.633, 6951157.61], [345266.738, 6950227.027], [344196.266, 6948614.392], [344495.569, 6946917.678], [345086.851, 6944801.999], [345569.224, 6942289.741], [345211.276, 6941675.331], [343976.995, 6942299.011], [343730.747, 6942192.426], [344124.189, 6941520.233], [344065.203, 6941133.928], [344484.192, 6941306.669], [344913.627, 6941164.424], [344072.096, 6939719.957], [343526.012, 6938093.839], [343431.897, 6937443.807], [341656.202, 6936683.408], [339774.014, 6936999.023], [336977.473, 6933246.544], [335270.372, 6931504.254], [335908.271, 6930228.305], [335375.785, 6929821.898], [335555.61, 6929039.629], [335415.965, 6928765.619], [334923.994, 6929233.05], [334454.584, 6930197.409], [333753.681, 6929498.285], [333907.931, 6929240.817], [332876.856, 6929137.749], [327654.949, 6924153.087], [322979.767, 6924761.088], [319415.82, 6925258.906], [319892.311, 6920033.249], [317757.498, 6921783.127], [316169.578, 6921054.096], [315029.68, 6921444.987], [313410.146, 6922749.722], [313350.101, 6923606.307], [312777.727, 6924272.215], [312224.973, 6923674.716], [311899.599, 6923976.23], [312556.608, 6924539.479], [311807.83, 6925403.748], [311223.136, 6924891.075], [310740.236, 6925423.721], [310739.623, 6926324.497], [310933.466, 6926894.948], [312534.219, 6927715.967], [311809.243, 6929713.694], [310858.264, 6931240.306], [309971.004, 6932918.64], [309338.433, 6934611.508], [310091.824, 6934992.412], [308438.805, 6936885.361], [307781.686, 6937641.316], [307481.623, 6938239.216], [307683.341, 6938559.904], [306963.875, 6939661.121], [307158.112, 6939967.57], [307274.03, 6940542.78], [307820.816, 6940814.321], [307771.855, 6941459.912], [308398.22, 6942546.218], [309283.497, 6943243.457], [310341.131, 6943643.056], [309706.159, 6944663.686], [309113.928, 6944526.454], [309087.807, 6944038.128], [308600.077, 6944322.406], [308852.498, 6945637.446], [308501.246, 6945565.677], [308838.593, 6946354.772], [308275.332, 6948212.811], [306748.228, 6947769.5], [306746.125, 6947348.439], [306423.074, 6947357.431], [306223.29, 6947615.627], [305662.96, 6947449.885], [304455.041, 6949171.152], [304388.415, 6949688.94], [303919.651, 6949630.066], [304057.745, 6950611.752], [303550.398, 6950988.663], [303593.23, 6951285.105], [304015.335, 6951251.343], [305067.438, 6951724.96], [304801.391, 6952433.625], [304108.694, 6952390.184], [303353.32, 6953056.359], [305928.066, 6960568.844], [309502.375, 6961659.038], [313440.917, 6958332.437], [313593.169, 6957329.577], [314376.799, 6956330.322], [315182.096, 6957508.842], [315520.201, 6957178.656], [315519.734, 6956046.452], [315250.706, 6955693.082], [315249.01, 6955225.01], [318058.915, 6951716.892], [318513.322, 6952112.996], [318876.088, 6951484.556], [319163.802, 6951555.654], [318889.984, 6952408.898], [319615.918, 6953072.451], [319871.993, 6953244.527], [321201.474, 6953037.382], [321599.127, 6952377.891], [321638.768, 6952029.479], [322536.634, 6952029.83], [323132.857, 6951459.805], [324145.051, 6951598.086], [324376.584, 6951998.031], [324162.099, 6952342.846], [324202.239, 6952871.764], [325033.504, 6953215.666], [327736.201, 6957370.973], [328693.011, 6957876.482], [329032.056, 6958529.781], [329520.577, 6958319.412], [330074.423, 6959529.009], [330796.351, 6960551.665], [329315.002, 6961337.605], [329822.445, 6962332.912], [331150.218, 6960738.689], [331466.168, 6960120.355], [333982.673, 6961494.346], [334489.89, 6960615.783], [334811.974, 6961409.526], [335000.176, 6961317.194], [334934.682, 6960968.688], [339046.709, 6963078.849], [339859.916, 6962790.345]]]]}}, {\\\"id\\\": \\\"304\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kalajoki\\\", \\\"elakelaisten_osuus\\\": 29.1, \\\"freshwarea\\\": 6.98, \\\"gml_id\\\": 1601100352, \\\"landarea\\\": 924.05, \\\"namefin\\\": \\\"Kalajoki\\\", \\\"nameswe\\\": \\\"Kalajoki\\\", \\\"natcode\\\": \\\"208\\\", \\\"seawarea\\\": 1460.26, \\\"totalarea\\\": 2391.29}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[354536.463, 7142479.686], [354886.46, 7141865.719], [355597.966, 7141391.544], [355817.021, 7141005.502], [355965.437, 7141198.142], [356503.563, 7140904.385], [357137.948, 7140778.343], [357082.084, 7140597.572], [362660.585, 7137627.966], [363026.756, 7138161.145], [363067.908, 7137796.745], [362914.526, 7137497.364], [363516.991, 7137191.679], [364072.348, 7137218.959], [364604.588, 7137103.877], [364543.838, 7136898.724], [366308.123, 7136413.435], [367731.058, 7134639.838], [368791.01, 7133254.305], [368269.766, 7132592.902], [367540.977, 7132232.659], [367172.046, 7131298.761], [366016.144, 7130932.301], [366469.269, 7130195.844], [366449.594, 7129749.098], [366912.449, 7129240.785], [366381.56, 7128880.929], [365869.267, 7129393.919], [364294.474, 7127811.214], [365794.5, 7125301.078], [366866.709, 7123702.442], [367243.758, 7123247.233], [363770.412, 7120720.287], [363370.559, 7121298.809], [363521.47, 7121536.658], [363260.967, 7121832.587], [363080.798, 7121657.804], [362512.765, 7121930.389], [362444.482, 7122120.974], [361476.246, 7122259.226], [361127.642, 7122071.108], [361579.68, 7121568.82], [360962.992, 7121469.11], [361427.113, 7119664.574], [361856.494, 7119594.791], [362382.931, 7118796.172], [362528.098, 7116699.669], [362722.282, 7116441.369], [363214.512, 7116568.205], [363503.578, 7115551.147], [363058.018, 7115212.537], [367637.785, 7108316.084], [367961.824, 7108109.644], [368037.086, 7107424.825], [368581.321, 7106926.206], [369186.203, 7106356.035], [369702.708, 7105733.485], [369723.801, 7105170.862], [370048.178, 7105121.392], [370146.694, 7104619.325], [370424.741, 7104339.038], [370391.021, 7104305.316], [368274.035, 7102437.233], [368395.877, 7102260.559], [367971.401, 7102180.091], [364607.651, 7099251.249], [364308.693, 7099620.42], [364189.6, 7099648.203], [364022.399, 7099511.812], [363957.886, 7099346.721], [364196.794, 7098958.172], [359428.975, 7098263.923], [358172.708, 7100943.512], [358757.66, 7100877.82], [358615.832, 7101379.648], [358152.182, 7101509.765], [357922.837, 7108191.109], [354053.497, 7110689.86], [353998.891, 7110725.101], [352365.044, 7111142.042], [351822.165, 7109127.617], [349513.421, 7108116.752], [350327.223, 7107487.772], [350244.854, 7107263.18], [349324.437, 7107651.592], [349377.055, 7106023.879], [349725.008, 7105962.276], [349857.615, 7105766.341], [349471.835, 7105492.231], [349988.907, 7104616.133], [349675.818, 7104142.705], [349469.496, 7104250.621], [349161.24, 7103786.273], [348950.487, 7104019.02], [347814.096, 7103358.751], [347639.783, 7103011.512], [347489.105, 7102131.132], [349679.834, 7098155.892], [350445.907, 7097384.951], [350088.246, 7096884.497], [349596.708, 7097540.229], [348747.167, 7096776.962], [348401.203, 7097497.545], [347926.02, 7097101.808], [347329.118, 7097493.981], [347246.022, 7097840.208], [346100.967, 7097542.895], [345837.652, 7097742.54], [345493.163, 7097481.226], [343303.491, 7099402.644], [342455.49, 7100658.219], [341514.442, 7100046.079], [341244.656, 7100455.986], [340968.614, 7100252.631], [341059.993, 7099772.083], [340667.565, 7099231.498], [341216.124, 7098565.692], [340750.179, 7098151.94], [339837.41, 7099518.146], [339081.286, 7098673.058], [335973.546, 7105699.832], [329762.186, 7112237.981], [329149.423, 7113662.138], [294973.677, 7123760.451], [304107.553, 7127761.309], [304347.388, 7129427.522], [306267.664, 7142713.756], [306375.518, 7143297.325], [306637.807, 7144454.767], [306961.471, 7145596.514], [307345.71, 7146719.469], [307789.225, 7147820.233], [308290.916, 7148895.706], [308563.203, 7149422.997], [308849.384, 7149942.891], [309462.83, 7150958.788], [310129.754, 7151940.498], [310848.057, 7152885.223], [311225.801, 7153342.841], [312017.474, 7154226.989], [312430.604, 7154652.92], [313290.45, 7155470.894], [313736.466, 7155862.438], [314558.837, 7156530.087], [354536.463, 7142479.686]]]}}, {\\\"id\\\": \\\"305\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Jokioinen\\\", \\\"elakelaisten_osuus\\\": 29.2, \\\"freshwarea\\\": 1.52, \\\"gml_id\\\": 1601100286, \\\"landarea\\\": 180.42, \\\"namefin\\\": \\\"Jokioinen\\\", \\\"nameswe\\\": \\\"Jockis\\\", \\\"natcode\\\": \\\"169\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 181.94}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[310864.292, 6761550.988], [311087.9, 6761201.951], [311571.388, 6760969.473], [311691.769, 6760438.98], [311971.848, 6760135.856], [312024.126, 6759720.603], [312226.016, 6759534.162], [312561.453, 6759593.617], [312868.972, 6759376.302], [313075.059, 6757449.897], [313174.818, 6755861.675], [312814.51, 6754369.968], [312385.039, 6753536.521], [312586.106, 6751459.035], [313269.812, 6748856.701], [312614.635, 6748578.157], [312589.48, 6747430.802], [312784.352, 6745682.043], [312732.664, 6745235.705], [312251.77, 6744213.355], [311394.711, 6743699.223], [310953.758, 6742110.248], [309741.209, 6741245.089], [309356.366, 6739351.631], [308709.805, 6739519.368], [308607.988, 6739889.216], [308140.037, 6739670.172], [306783.464, 6740018.12], [306249.318, 6739838.496], [304237.405, 6739157.851], [303484.017, 6743917.414], [302940.981, 6744322.009], [302366.744, 6744514.121], [302000.587, 6744994.053], [302708.357, 6747538.716], [302378.007, 6747424.962], [301971.182, 6747926.84], [301425.997, 6749406.197], [300509.591, 6752744.301], [299361.869, 6754184.491], [297931.884, 6755403.995], [302526.524, 6753826.549], [303817.988, 6754044.971], [303690.879, 6754431.888], [304543.322, 6754593.88], [305760.046, 6753727.789], [306241.39, 6754490.669], [306239.123, 6755900.248], [306064.751, 6756110.553], [306100.055, 6756725.455], [306902.278, 6757050.966], [307173.207, 6758026.345], [310490.703, 6762013.978], [310864.292, 6761550.988]]]}}, {\\\"id\\\": \\\"306\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Pielavesi\\\", \\\"elakelaisten_osuus\\\": 42.4, \\\"freshwarea\\\": 253.29, \\\"gml_id\\\": 1601100276, \\\"landarea\\\": 1153.22, \\\"namefin\\\": \\\"Pielavesi\\\", \\\"nameswe\\\": \\\"Pielavesi\\\", \\\"natcode\\\": \\\"595\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 1406.51}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[491612.121, 7042241.665], [491847.412, 7042014.912], [491881.15, 7041570.772], [492118.271, 7041200.701], [492114.762, 7040757.752], [491955.965, 7040498.691], [492126.025, 7040010.198], [492109.506, 7039677.674], [492337.776, 7039003.966], [492606.779, 7038324.968], [492593.288, 7037654.537], [495751.711, 7036693.546], [496168.86, 7036383.476], [496559.307, 7036188.153], [496716.122, 7035708.373], [496703.112, 7035235.345], [496901.057, 7034161.579], [496993.086, 7033480.909], [496750.734, 7033325.333], [496821.646, 7032224.671], [497240.86, 7031931.782], [497239.963, 7031452.976], [497762.055, 7031167.595], [497767.357, 7030643.607], [498027.554, 7030362.222], [497618.928, 7029134.115], [497818.749, 7027377.798], [498581.755, 7027261.496], [499414.63, 7027681.726], [499943.904, 7027502.992], [501161.826, 7026596.463], [500624.639, 7026257.1], [500550.126, 7025411.879], [500859.759, 7024219.824], [500792.183, 7023104.829], [501422.044, 7022565.296], [502012.263, 7022751.599], [501889.136, 7023162.798], [502202.324, 7023371.701], [502437.377, 7023255.317], [502932.232, 7020688.424], [502523.822, 7019390.889], [502631.876, 7018936.613], [503245.042, 7019529.87], [504267.711, 7020631.299], [505044.606, 7020500.48], [505198.635, 7020779.046], [504816.286, 7021268.746], [504977.618, 7021653.491], [505449.129, 7021560.032], [505541.102, 7021310.687], [506862.461, 7021387.212], [506597.452, 7020942.922], [506040.449, 7020552.632], [506443.759, 7020527.88], [506846.428, 7019816.87], [506707.018, 7018096.022], [507422.527, 7017034.097], [507432.255, 7016515.671], [507238.381, 7016001.593], [505910.411, 7016520.853], [505707.069, 7016081.069], [505238.408, 7016033.848], [505325.058, 7015338.305], [506214.962, 7014024.35], [505424.89, 7014151.155], [504909.129, 7014533.182], [504555.041, 7014543.769], [503573.985, 7015107.806], [502990.346, 7014581.464], [502310.662, 7015205.084], [501662.603, 7014122.743], [502722.302, 7013669.675], [502775.75, 7012456.188], [502396.204, 7012428.29], [502136.108, 7011078.042], [502584.798, 7010155.189], [502351.137, 7008735.733], [501824.911, 7007853.003], [501839.612, 7007339.948], [505586.54, 7003707.487], [504762.741, 7003447.725], [504504.419, 7003803.497], [504046.773, 7003721.481], [503661.024, 7003958.667], [503226.432, 7003903.432], [502357.023, 7004457.552], [501942.84, 7004369.198], [500540.879, 7005108.534], [499732.24, 7005085.662], [499282.491, 7004878.75], [498806.934, 7004441.985], [497626.988, 7005035.554], [497784.633, 7003944.123], [498268.889, 7004010.365], [498811.965, 7003707.048], [499155.912, 7003864.629], [499399.997, 7003435.796], [499742.691, 7003310.533], [500279.211, 7002309.036], [501070.521, 7001496.586], [497387.255, 7000530.231], [497492.725, 7000100.187], [497857.372, 6999731.098], [497575.655, 6999398.398], [497784.818, 6999144.74], [497811.369, 6998703.022], [495154.209, 6997963.303], [493884.055, 6999885.627], [493118.786, 7000241.232], [492753.292, 6999959.94], [492119.455, 6999801.492], [492427.837, 6998492.124], [492841.6, 6997758.874], [493593.212, 6997034.454], [495456.852, 6995901.886], [494691.166, 6995533.807], [494046.18, 6995707.25], [493383.337, 6996189.78], [493223.427, 6995825.277], [493395.013, 6995587.75], [493615.349, 6994968.81], [494049.877, 6994769.578], [493759.185, 6994512.752], [491415.041, 6994594.086], [490851.289, 6994518.5], [490565.024, 6994689.928], [490426.428, 6994435.668], [490534.408, 6993924.505], [490077.024, 6993640.534], [489990.3, 6993219.338], [489727.643, 6993394.06], [489185.645, 6993282.269], [487946.042, 6993696.835], [487394.114, 6993312.352], [487411.802, 6992491.174], [486915.089, 6992329.756], [486111.96, 6990838.645], [484817.356, 6991706.779], [483579.962, 6991043.497], [481093.383, 6991321.605], [480114.214, 6990337.464], [474439.419, 6998182.904], [473529.025, 7001661.141], [472616.43, 7003071.744], [472898.302, 7003263.217], [472982.817, 7005226.325], [471656.724, 7009249.643], [471020.996, 7013398.967], [471163.848, 7013845.147], [470765.557, 7014193.089], [470846.145, 7014733.361], [470408.713, 7015591.471], [469144.225, 7017346.139], [467160.883, 7019232.168], [466336.531, 7019284.364], [465665.504, 7020106.898], [465986.445, 7023688.687], [460022.611, 7035242.768], [458926.46, 7034751.371], [457055.198, 7036862.779], [458422.283, 7039438.245], [460671.487, 7038063.797], [461551.748, 7037849.262], [461765.15, 7038429.784], [464503.907, 7037306.546], [464790.975, 7038031.816], [464769.274, 7038444.75], [465144.346, 7038472.025], [465483.017, 7037625.897], [466589.735, 7037951.61], [466123.532, 7039380.884], [466856.129, 7039395.962], [468195.982, 7038983.207], [468379.52, 7038354.73], [469359.754, 7038572.513], [475271.61, 7033777.775], [475450.097, 7036736.094], [476281.204, 7037086.955], [476383.907, 7036194.489], [479193.056, 7036481.063], [479279.431, 7035701.15], [479954.653, 7035740.405], [479846.732, 7036434.562], [480334.532, 7036745.83], [480826.225, 7037427.486], [481054.361, 7036945.264], [481328.598, 7036493.46], [481410.198, 7035936.095], [481992.532, 7036045.205], [482289.958, 7036184.519], [484711.28, 7035042.017], [484933.67, 7036885.322], [485440.191, 7036732.884], [486069.419, 7036435.766], [486549.459, 7036067.99], [486795.318, 7036350.666], [486836.93, 7036740.613], [487606.184, 7037166.039], [488151.001, 7036931.412], [488574.886, 7037053.006], [488851.507, 7037722.938], [489336.694, 7037878.398], [489704.784, 7038222.829], [489633.965, 7038730.256], [488906.791, 7039418.199], [488859.716, 7039769.314], [488548.412, 7040316.034], [488451.984, 7040800.54], [488959.99, 7042129.675], [489072.547, 7042543.914], [489492.501, 7042807.737], [489949.234, 7042478.983], [490202.966, 7042382.012], [490464.546, 7042755.735], [490694.35, 7042644.883], [491054.15, 7043133.962], [491270.491, 7043139.937], [491612.121, 7042241.665]]]}}, {\\\"id\\\": \\\"307\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Lappaj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 38.6, \\\"freshwarea\\\": 102.92, \\\"gml_id\\\": 1601100622, \\\"landarea\\\": 420.81, \\\"namefin\\\": \\\"Lappaj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Lappaj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"403\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 523.73}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[336381.525, 7028425.981], [338234.806, 7024550.772], [342171.013, 7020529.644], [342611.354, 7020368.441], [342199.079, 7013709.329], [341603.627, 7013056.263], [339613.604, 7012309.761], [339062.49, 7011993.112], [339100.152, 7011632.287], [338491.438, 7011378.194], [337721.864, 7011324.213], [337531.736, 7011662.751], [338193.65, 7011832.907], [338491.506, 7011913.481], [338431.362, 7012082.03], [338027.402, 7013372.125], [337726.641, 7012989.472], [337871.89, 7012394.774], [337230.074, 7012139.906], [333800.972, 7009399.192], [334038.634, 7005280.721], [334329.441, 7002293.676], [333629.564, 7000713.2], [332660.314, 7000879.018], [332374.566, 6999661.105], [330678.353, 6999788.214], [330110.392, 6997517.773], [330698.57, 6995665.808], [330808.702, 6995023.233], [330255.87, 6994937.841], [330165.207, 6994246.771], [329916.903, 6994485.861], [326813.055, 6991939.304], [326686.023, 6990198.5], [322692.663, 6988079.052], [323606.333, 6993190.41], [324622.552, 6993340.4], [324950.188, 6993753.585], [324569.766, 6993648.013], [324515.16, 6993946.526], [324106.389, 6994055.351], [323741.577, 6994061.198], [323905.394, 6993711.72], [323939.182, 6993464.19], [323637.167, 6993373.461], [323678.067, 6993602.727], [320884.326, 6997585.179], [321776.334, 6998205.464], [320840.72, 7005904.414], [318668.162, 7010423.032], [314856.432, 7013700.739], [313382.524, 7014037.225], [312991.227, 7013892.555], [313550.84, 7015078.575], [317623.797, 7014729.836], [317878.381, 7013645.802], [318784.08, 7013433.938], [318522.861, 7015350.087], [317833.743, 7014973.548], [318132.296, 7017216.067], [318520.738, 7017198.035], [318310.529, 7018200.536], [318730.382, 7018692.378], [318909.529, 7019110.19], [319926.9, 7019120.913], [319666.692, 7020111.371], [320898.551, 7020287.146], [320731.937, 7021329.375], [321659.111, 7021930.732], [321870.067, 7021060.078], [322760.609, 7019928.068], [323240.731, 7019817.339], [323329.513, 7020012.104], [322609.933, 7020622.497], [321985.98, 7022021.905], [322891.191, 7022732.876], [323488.809, 7021697.989], [324060.86, 7022085.435], [323380.112, 7023047.126], [325087.914, 7024145.199], [326030.645, 7023526.73], [326017.331, 7023917.44], [325278.462, 7024262.246], [327057.447, 7025404.755], [328823.44, 7022503.901], [330010.884, 7023322.98], [330023.019, 7023559.594], [329602.955, 7023770.371], [329025.927, 7024365.838], [328852.333, 7024963.155], [330482.09, 7025761.893], [331025.502, 7024745.899], [330919.65, 7023823.775], [330990.19, 7023433.797], [331315.981, 7023595.571], [331327.963, 7024707.695], [332206.254, 7024598.559], [333167.948, 7024978.74], [333908.433, 7023491.887], [335328.091, 7024162.012], [334511.181, 7025431.274], [335202.889, 7026028.765], [335981.742, 7026496.518], [334534.4, 7028636.642], [334959.588, 7028919.661], [335476.666, 7027915.227], [335926.973, 7028087.83], [335277.05, 7029358.667], [334728.221, 7029605.109], [334271.412, 7030047.344], [333656.238, 7029937.78], [333288.859, 7030482.837], [334990.189, 7032062.987], [336381.525, 7028425.981]], [[321696.369, 7015476.648], [322079.757, 7014768.243], [322466.176, 7012850.812], [322157.021, 7012609.221], [321710.938, 7014683.061], [321380.113, 7014964.156], [321119.741, 7015440.983], [321244.573, 7015908.62], [321696.369, 7015476.648]], [[338931.935, 7023487.98], [339192.861, 7022471.395], [339932.107, 7021744.371], [340354.266, 7021134.252], [340075.609, 7020897.149], [339636.289, 7021625.98], [339300.81, 7021495.36], [338196.285, 7023565.7], [338420.421, 7024035.025], [338931.935, 7023487.98]]]}}, {\\\"id\\\": \\\"308\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Kajaani\\\", \\\"elakelaisten_osuus\\\": 28.1, \\\"freshwarea\\\": 429.2, \\\"gml_id\\\": 1601100274, \\\"landarea\\\": 1834.78, \\\"namefin\\\": \\\"Kajaani\\\", \\\"nameswe\\\": \\\"Kajana\\\", \\\"natcode\\\": \\\"205\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 2263.98}, \\\"geometry\\\": {\\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [[[[502087.385, 7132317.391], [502304.602, 7132465.506], [502420.294, 7132205.705], [502789.504, 7132092.999], [503053.111, 7132413.27], [503550.713, 7131888.692], [502464.094, 7131225.009], [502887.018, 7130544.818], [502529.348, 7130434.294], [502218.87, 7130695.926], [501863.187, 7130597.958], [501650.506, 7130849.799], [501686.386, 7131064.051], [501157.458, 7132050.544], [501941.642, 7132651.145], [502087.385, 7132317.391]]], [[[545113.067, 7135843.595], [547521.275, 7133672.34], [548064.303, 7134141.997], [548525.883, 7133696.606], [553775.564, 7131594.474], [554778.497, 7132843.339], [556015.922, 7131849.309], [553675.614, 7130689.24], [553757.794, 7129844.893], [552932.762, 7130542.862], [549871.938, 7126737.187], [547515.046, 7124905.185], [548409.694, 7123909.508], [548240.559, 7123587.603], [546543.723, 7124505.314], [545936.621, 7123063.868], [545289.781, 7123433.089], [543544.497, 7121956.662], [541020.419, 7115602.459], [540885.579, 7115020.886], [538745.374, 7115354.196], [539327.166, 7114548.571], [540772.896, 7114532.96], [541463.446, 7114383.989], [541399.527, 7113490.034], [541062.071, 7112769.966], [540224.542, 7112127.296], [540598.168, 7111253.311], [540474.289, 7110746.627], [540619.595, 7108924.811], [540893.592, 7108520.317], [540797.186, 7106430.151], [541519.641, 7104708.697], [541203.91, 7104370.085], [541485.243, 7104275.052], [541362.757, 7102693.164], [540603.218, 7102212.076], [541861.986, 7100836.36], [542355.255, 7101364.961], [543924.579, 7099278.777], [543899.289, 7098738.905], [544529.761, 7098514.44], [549070.841, 7094100.537], [549545.448, 7093159.871], [549996.022, 7092820.849], [550533.804, 7092866.261], [550754.07, 7092632.222], [550065.201, 7091804.043], [552290.472, 7086700.074], [550812.267, 7083205.238], [549433.7, 7081994.305], [548396.704, 7081549.733], [547877.971, 7081968.55], [547699.719, 7081761.896], [547972.198, 7081367.701], [546200.491, 7080614.814], [545558.664, 7080024.947], [544756.828, 7080852.564], [543902.663, 7080507.429], [538925.193, 7084741.48], [538582.032, 7085233.406], [537505.952, 7086030.966], [537365.218, 7086313.182], [536885.671, 7086582.535], [536559.717, 7087017.864], [532559.692, 7088605.513], [531899.222, 7088122.338], [526482.682, 7092271.614], [523400.532, 7092809.191], [524354.101, 7091504.383], [522029.293, 7090894.056], [520998.113, 7091275.183], [520762.838, 7092076.659], [520367.927, 7092148.981], [520734.952, 7092515.29], [520689.395, 7093149.515], [520502.611, 7093336.756], [518557.507, 7093812.219], [512776.493, 7095851.907], [506419.508, 7096756.403], [505965.857, 7096106.027], [505835.73, 7095992.143], [505472.895, 7096400.085], [505391.302, 7096326.377], [500613.63, 7096898.191], [493669.471, 7101140.706], [489315.436, 7103395.369], [489118.094, 7110371.574], [488722.627, 7110054.641], [488582.814, 7110316.427], [489129.12, 7110807.551], [488879.423, 7121106.639], [488735.814, 7126583.419], [488732.51, 7126901.274], [487817.249, 7128077.452], [489646.001, 7129573.573], [490992.63, 7131144.094], [492202.326, 7131169.621], [492135.982, 7130938.809], [492519.147, 7130671.238], [493335.327, 7131106.481], [493498.295, 7130984.377], [494039.438, 7130976.448], [494250.821, 7130618.841], [494599.233, 7130621.624], [494913.088, 7131768.393], [496423.331, 7131771.429], [496215.344, 7132865.006], [497180.609, 7133462.036], [498262.02, 7129968.158], [502052.41, 7128720.126], [509082.061, 7131608.553], [514821.627, 7130717.809], [520667.276, 7129721.824], [523382.565, 7132961.268], [527689.922, 7131461.795], [531477.329, 7136138.285], [536981.87, 7136151.212], [538276.348, 7137945.896], [545113.067, 7135843.595]], [[492975.088, 7126811.191], [492107.954, 7125990.601], [491515.96, 7125798.493], [491147.195, 7126834.366], [490803.486, 7127856.332], [491047.936, 7127953.066], [492975.088, 7126811.191]]]]}}, {\\\"id\\\": \\\"309\\\", \\\"type\\\": \\\"Feature\\\", \\\"properties\\\": {\\\"alue\\\": \\\"Rautj\\\\u00e4rvi\\\", \\\"elakelaisten_osuus\\\": 45.9, \\\"freshwarea\\\": 50.39, \\\"gml_id\\\": 1601100427, \\\"landarea\\\": 351.51, \\\"namefin\\\": \\\"Rautj\\\\u00e4rvi\\\", \\\"nameswe\\\": \\\"Rautj\\\\u00e4rvi\\\", \\\"natcode\\\": \\\"689\\\", \\\"seawarea\\\": 0.0, \\\"totalarea\\\": 401.9}, \\\"geometry\\\": {\\\"type\\\": \\\"Polygon\\\", \\\"coordinates\\\": [[[620956.825, 6821823.99], [621125.106, 6822530.853], [622639.586, 6822660.992], [622539.434, 6821971.355], [622285.382, 6820785.794], [623268.2, 6820457.357], [623612.32, 6819945.87], [624532.978, 6820369.687], [625471.324, 6819492.432], [625892.02, 6819723.983], [626045.338, 6819111.325], [627049.123, 6816525.931], [627131.104, 6815588.713], [628476.781, 6814481.072], [629263.017, 6813466.27], [629717.134, 6813789.529], [630624.12, 6813209.471], [630626.35, 6813208.045], [630272.903, 6812827.132], [630185.142, 6812732.55], [630185.607, 6812732.1], [630185.616, 6812732.092], [630413.055, 6812512.125], [628878.3, 6810311.3], [627542.9, 6808494.4], [626027.9, 6806345.7], [624829.5, 6804566.7], [624790.6, 6804401.2], [624707.1, 6804320.6], [624589.8, 6804277.7], [624528.5, 6804146.0], [624448.1, 6804045.6], [624420.2, 6803959.1], [624335.3, 6803909.3], [624342.2, 6803832.4], [624268.3, 6803785.9], [624207.9, 6803706.4], [624196.4, 6803580.9], [624236.3, 6803493.5], [624224.0, 6803311.0], [621391.4, 6797377.8], [620155.1, 6795597.9], [620384.7, 6795295.8], [620362.3, 6795006.7], [620055.8, 6794718.3], [619757.8, 6794734.4], [619448.5, 6794369.1], [619143.0, 6794273.8], [619103.2, 6794098.4], [619010.4, 6794085.2], [618578.1, 6793749.1], [618608.9, 6793652.6], [618529.9, 6793509.1], [618393.7, 6793476.8], [618238.1, 6793382.9], [618003.5, 6793331.3], [617901.9, 6793158.4], [616838.6, 6791963.9], [616863.4, 6791868.2], [616772.2, 6791606.4], [616713.1, 6791605.6], [616599.4, 6791694.3], [616037.2, 6791062.6], [611969.414, 6788012.02], [611631.689, 6788369.955], [610861.94, 6788936.183], [610488.015, 6789015.407], [608560.973, 6791652.929], [609296.602, 6791821.333], [609484.7, 6792534.617], [609185.527, 6792786.074], [609043.947, 6794321.848], [609515.457, 6794293.079], [609968.633, 6794441.103], [610452.754, 6794743.548], [610373.902, 6795216.418], [609943.921, 6795825.829], [610329.748, 6796038.511], [610367.84, 6796625.01], [609331.8, 6797242.202], [608875.624, 6797795.772], [609386.034, 6798165.399], [609877.752, 6798031.681], [610816.91, 6798130.993], [611201.586, 6798294.372], [611075.882, 6798638.78], [610536.864, 6798906.628], [609666.338, 6800359.754], [609819.806, 6800881.004], [610256.487, 6801363.137], [610136.203, 6801735.097], [610262.988, 6802405.638], [611134.807, 6802750.563], [610777.953, 6803879.01], [610151.83, 6804132.758], [610177.766, 6804582.797], [610931.76, 6805770.365], [609310.884, 6806212.706], [609330.881, 6806548.118], [608722.584, 6806805.981], [608233.914, 6806527.044], [607889.976, 6806883.307], [608356.053, 6807293.944], [609442.911, 6806897.4], [609604.464, 6806683.562], [612086.467, 6806453.713], [612669.583, 6806301.651], [612970.962, 6806620.452], [613502.726, 6808842.434], [613652.36, 6809727.207], [613909.552, 6810425.981], [613863.907, 6810975.914], [614790.972, 6811964.521], [615023.114, 6812491.613], [613648.111, 6813324.835], [613287.563, 6813250.195], [612109.663, 6814273.815], [611681.196, 6814924.61], [610033.227, 6815822.391], [611581.985, 6818337.888], [612394.416, 6817927.151], [612570.536, 6817623.219], [613350.867, 6817724.999], [613916.497, 6818368.728], [614937.321, 6819785.317], [615680.838, 6819528.231], [616440.175, 6819746.949], [616934.369, 6819136.207], [617953.956, 6818825.979], [618556.525, 6821336.418], [618959.17, 6822774.405], [620956.825, 6821823.99]]]}}]}\",\"selected\":{\"id\":\"1492\"},\"selection_policy\":{\"id\":\"1491\"}},\"id\":\"1456\",\"type\":\"GeoJSONDataSource\"},{\"attributes\":{},\"id\":\"1492\",\"type\":\"Selection\"},{\"attributes\":{\"text\":\"Pension\\u00e4rernas andel av befolkningen 2018 (enligt 2020 kommungr\\u00e4nser). \"},\"id\":\"1424\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"1489\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1426\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1430\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1488\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1447\",\"type\":\"HelpTool\"},{\"attributes\":{},\"id\":\"1428\",\"type\":\"DataRange1d\"},{\"attributes\":{\"formatter\":{\"id\":\"1485\"},\"major_label_policy\":{\"id\":\"1486\"},\"ticker\":{\"id\":\"1439\"}},\"id\":\"1438\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1432\",\"type\":\"LinearScale\"},{\"attributes\":{\"formatter\":{\"id\":\"1488\"},\"major_label_policy\":{\"id\":\"1489\"},\"ticker\":{\"id\":\"1435\"}},\"id\":\"1434\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1435\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"1434\"},\"ticker\":null},\"id\":\"1437\",\"type\":\"Grid\"},{\"attributes\":{\"axis\":{\"id\":\"1438\"},\"dimension\":1,\"ticker\":null},\"id\":\"1441\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1439\",\"type\":\"BasicTicker\"},{\"attributes\":{\"active_multi\":null,\"tools\":[{\"id\":\"1442\"},{\"id\":\"1443\"},{\"id\":\"1444\"},{\"id\":\"1445\"},{\"id\":\"1446\"},{\"id\":\"1447\"},{\"id\":\"1544\"}]},\"id\":\"1449\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"1443\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"field\":\"elakelaisten_osuus\",\"transform\":{\"id\":\"1457\"}},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"xs\":{\"field\":\"xs\"},\"ys\":{\"field\":\"ys\"}},\"id\":\"1460\",\"type\":\"Patches\"},{\"attributes\":{},\"id\":\"1442\",\"type\":\"PanTool\"},{\"attributes\":{\"source\":{\"id\":\"1456\"}},\"id\":\"1462\",\"type\":\"CDSView\"},{\"attributes\":{\"overlay\":{\"id\":\"1448\"}},\"id\":\"1444\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"Kommun\",\"@nameswe\"],[\"Pension\\u00e4rernas andel (%)\",\"@elakelaisten_osuus\"]]},\"id\":\"1544\",\"type\":\"HoverTool\"},{\"attributes\":{},\"id\":\"1486\",\"type\":\"AllLabels\"},{\"attributes\":{\"data_source\":{\"id\":\"1456\"},\"glyph\":{\"id\":\"1459\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1460\"},\"view\":{\"id\":\"1462\"}},\"id\":\"1461\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1445\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"1446\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"1491\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"high\":48.8,\"low\":12.6,\"palette\":[\"#edf8e9\",\"#c7e9c0\",\"#a1d99b\",\"#74c476\",\"#31a354\",\"#006d2c\"]},\"id\":\"1457\",\"type\":\"LinearColorMapper\"},{\"attributes\":{},\"id\":\"1485\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"elakelaisten_osuus\",\"transform\":{\"id\":\"1457\"}},\"line_color\":{\"value\":\"#1f77b4\"},\"xs\":{\"field\":\"xs\"},\"ys\":{\"field\":\"ys\"}},\"id\":\"1459\",\"type\":\"Patches\"}],\"root_ids\":[\"1423\"]},\"title\":\"Bokeh Application\",\"version\":\"2.3.3\"}};\n", " var render_items = [{\"docid\":\"05494ece-053e-4bba-950f-27efdff6f58e\",\"root_ids\":[\"1423\"],\"roots\":{\"1423\":\"d8b9086a-447a-4041-a8cc-aa40b1cc2e45\"}}];\n", " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", "\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " var attempts = 0;\n", " var timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "1423" } }, "output_type": "display_data" } ], "source": [ "from bokeh.models import HoverTool\n", "\n", "# Vi kapar en HoverTool och sparar den som variabeln \"hover\".\n", "hover = HoverTool()\n", "\n", "# Vi lägger till \"tooltips\"-information, som komer att synas när vi för pekaren över området.\n", "# Efter @-tecknet skriver vi in vilken kolumn informationen ska tas ifrån.\n", "hover.tooltips = [('Kommun', '@nameswe'),('Pensionärernas andel (%)','@elakelaisten_osuus')]\n", "\n", "# Vi lägger till \"hover\" bland kartans verktyg\n", "fig.add_tools(hover)\n", "\n", "# Visa bilden\n", "output_notebook()\n", "show(fig)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Lysande! Nu kan vi söka upp rätt kommun med pekaren och se pensionärernas andel av befolkningen direkt och exakt. Och det behövdes inte ens många rader kod.\n", "\n", "Testa själv att hämta någon kommun- eller landsindelad data och rita in det på en interaktiv karta. Sök någon information som intresserar dig. Lycka till!" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.10" } }, "nbformat": 4, "nbformat_minor": 4 }