Skip to content

Instantly share code, notes, and snippets.

@Pyppe
Last active May 23, 2020 08:55
Show Gist options
  • Save Pyppe/1b7e0a9536b9568b80c7d5099316a0e2 to your computer and use it in GitHub Desktop.
Save Pyppe/1b7e0a9536b9568b80c7d5099316a0e2 to your computer and use it in GitHub Desktop.
Suomen kuntakartta 2017 GeoJSON

1. Load and transform TietoaKuntajaosta_2017_4500k.zip from kartat.kapsi.fi

wget "http://kartat.kapsi.fi/files/kuntajako/kuntajako_4500k/etrs89/shp/TietoaKuntajaosta_2017_4500k.zip"
unzip TietoaKuntajaosta_2017_4500k.zip
ogr2ogr -f GeoJSON -t_srs crs:84 SuomenKuntajako_2017_4500k.geo.json SuomenKuntajako_2017_4500k.shp

2. Transform and enhance GeoJSON

  • Added "maakunta" information from Wikipedia
// Kunta -> Maakunta
const mapping = _.reduce($('.wikitable.sortable.jquery-tablesorter tbody tr').toArray(), (acc, el) => {
  acc[$(el).find('td:eq(2)').text()] = $(el).find('td:eq(5)').text();
  return acc;
}, {});

// Update orginal GeoJSON
_.forEach(geoJson.features, f => {
  const name = f.properties.NAMEFIN;
  const parent = mapping[name];
  if (!parent) {
    throw `No parent found for ${name}`;
  }
  f.properties = { name, parent };
});
geoJson.features = _.sortBy(geoJson.features, f => f.properties.name);
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:OGC:1.3:CRS84"
}
},
"features": [
{
"type": "Feature",
"properties": {
"name": "Akaa",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.958283897569146,
61.1019294578469
],
[
23.756756711938184,
61.05735515180874
],
[
23.68831493361444,
61.07610925649672
],
[
23.650319542323878,
61.1199804674629
],
[
23.494138605640035,
61.1490518392508
],
[
23.542116331793647,
61.20530155040527
],
[
23.690076978421487,
61.21461447675386
],
[
23.737132566842387,
61.25897918229805
],
[
23.811447606754097,
61.23071174205022
],
[
23.959014087641815,
61.184141436515375
],
[
23.921086026078026,
61.13088430625006
],
[
23.958283897569146,
61.1019294578469
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Alajärvi",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.359007626177622,
63.11642950932766
],
[
24.27801667898043,
63.064375353758216
],
[
24.300936607207376,
62.98835315272764
],
[
24.182296437870832,
63.01327363137843
],
[
24.09285257624639,
62.96355243641139
],
[
24.02894013892568,
62.971858203572296
],
[
23.99196412955444,
62.860918645418366
],
[
24.143433221378135,
62.831217447599435
],
[
24.03952144927872,
62.736484197242774
],
[
23.931593904759605,
62.750925813600006
],
[
23.84704884167586,
62.762605898162136
],
[
23.519471162094558,
62.919628295888245
],
[
23.490324658149394,
62.94996119652794
],
[
23.50076858759369,
62.979037193885745
],
[
23.715638349442255,
63.11190118452717
],
[
23.75038702636477,
63.075485361217616
],
[
24.170771051147174,
63.14799834173961
],
[
24.359007626177622,
63.11642950932766
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Alavieska",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.58205390948476,
64.18645318767184
],
[
24.381911778335912,
64.14736550318997
],
[
24.346336184809278,
64.0415162968083
],
[
24.137082252368174,
64.19138535287361
],
[
24.264655085848098,
64.20980086310531
],
[
24.19983772632729,
64.24955816190577
],
[
24.287705378030502,
64.30009422474612
],
[
24.58205390948476,
64.18645318767184
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Alavus",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.931593904759605,
62.750925813600006
],
[
23.993574326076395,
62.579072618109954
],
[
23.835230179589697,
62.49433630611401
],
[
23.663713288747058,
62.40863801880631
],
[
23.503407314718576,
62.41464018601937
],
[
23.46466605141908,
62.38655605680976
],
[
23.33776361985788,
62.42508342346796
],
[
23.246716066675795,
62.537388629542384
],
[
23.307794909266107,
62.57480119595269
],
[
23.161226231318402,
62.655453037585865
],
[
23.20273000735421,
62.72410035108296
],
[
23.27125520529793,
62.73573592732067
],
[
23.449050599793146,
62.65101076150568
],
[
23.54812975905757,
62.65117804894405
],
[
23.667462526163405,
62.751757565733605
],
[
23.760375642090157,
62.738505403299236
],
[
23.84704884167586,
62.762605898162136
],
[
23.931593904759605,
62.750925813600006
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Asikkala",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.807465137943495,
61.313399669464886
],
[
25.804914602368434,
61.269061650932336
],
[
25.9273280418856,
61.2280078337596
],
[
25.882065556128683,
61.185528882936865
],
[
25.919774661578174,
61.15193414519963
],
[
25.858056325995666,
61.1026663837102
],
[
25.783526213267688,
61.09629055191031
],
[
25.562502015139458,
61.114721179103924
],
[
25.53748386063044,
61.150707336920526
],
[
25.408918089146244,
61.10681232125348
],
[
25.27919323755131,
61.09819738531763
],
[
25.239935242841504,
61.11455175714531
],
[
25.259867424124533,
61.18588940238489
],
[
25.20282373528747,
61.24093846256258
],
[
25.347885359638227,
61.24910385210812
],
[
25.41567917542243,
61.312290677686384
],
[
25.517193660215938,
61.30411005160316
],
[
25.545158601786248,
61.32917586844251
],
[
25.741788527372712,
61.36462751791115
],
[
25.807465137943495,
61.313399669464886
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Askola",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.75755147446155,
60.541982463163414
],
[
25.736765195770253,
60.49930366150261
],
[
25.72177765072338,
60.48099176778927
],
[
25.652605004336767,
60.50172505418636
],
[
25.607212987014385,
60.469910910834706
],
[
25.557422635933577,
60.48853994598986
],
[
25.431476075858495,
60.48294091643315
],
[
25.415492397094226,
60.541544172332664
],
[
25.501909979005962,
60.556958438521065
],
[
25.516227783774877,
60.579859896993376
],
[
25.575644581089307,
60.61380650777964
],
[
25.659644177327916,
60.61387522887481
],
[
25.65964655260983,
60.61387522573641
],
[
25.76901979399514,
60.58883695675938
],
[
25.823164798973252,
60.5510410436814
],
[
25.823165827954327,
60.5510403254071
],
[
25.82322659602889,
60.550997848948725
],
[
25.82322708236016,
60.55099751201204
],
[
25.82310992649505,
60.55098145729179
],
[
25.82310956355571,
60.55098140919702
],
[
25.75755147446155,
60.541982463163414
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Aura",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.56121993179163,
60.66669967393439
],
[
22.682117153438526,
60.639559732786765
],
[
22.62411391480182,
60.60417824366328
],
[
22.54972692694937,
60.589681683092316
],
[
22.536166927320306,
60.56658717675098
],
[
22.487245429129963,
60.57096809414871
],
[
22.51060328797693,
60.635347617874
],
[
22.4457115801018,
60.640907194027314
],
[
22.415003582834892,
60.73729360055229
],
[
22.56121993179163,
60.66669967393439
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Brändö",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.123856031208916,
60.570268143235666
],
[
21.15134109378513,
60.49866216774663
],
[
21.08957893186858,
60.25790790924909
],
[
21.023829963645476,
60.12393293027619
],
[
20.902167795698197,
60.165348048398215
],
[
20.897718332380467,
60.26895589144779
],
[
20.98634188604269,
60.34957381947752
],
[
20.952269513492272,
60.38699738270193
],
[
20.812718090020404,
60.394559632999496
],
[
20.744396159720466,
60.45738733855482
],
[
20.611752440721286,
60.480254605316276
],
[
20.54270649782979,
60.46152119786861
],
[
20.482002573743852,
60.49673054324571
],
[
20.4693092919105,
60.65217551062218
],
[
20.201791712762486,
60.80257091260399
],
[
20.377530566664973,
60.87663838982341
],
[
20.730006260164885,
60.72310426065437
],
[
20.969929369813805,
60.71290019159185
],
[
21.123856031208916,
60.570268143235666
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Eckerö",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
19.654984809776888,
60.1428252210414
],
[
19.325243567369508,
60.02487792684729
],
[
19.24431861704169,
60.080898661378335
],
[
19.48476913039068,
60.16566422230709
],
[
19.46948338887993,
60.204171363563454
],
[
19.413669080959195,
60.21162447149087
],
[
19.45994293362743,
60.26307934070519
],
[
19.16116656092261,
60.37491956568411
],
[
19.220199908055456,
60.61151374359
],
[
19.39547022043881,
60.43172835948136
],
[
19.64594162360636,
60.375258397591104
],
[
19.61935099805383,
60.28996447343664
],
[
19.67829364978022,
60.22854113624197
],
[
19.654984809776888,
60.1428252210414
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Enonkoski",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.99128832424196,
62.197972363480574
],
[
29.01389601600369,
62.15742871596823
],
[
29.095539931338433,
62.12640072912523
],
[
29.125848481126784,
62.097590924662015
],
[
29.087310429994737,
62.03087939846074
],
[
28.97870923448112,
62.00099352882676
],
[
28.878703950703557,
62.002193304596354
],
[
28.78899594960943,
62.019749063698384
],
[
28.72631045066016,
62.0539810530569
],
[
28.83692695550838,
62.065919347405256
],
[
28.77963912623135,
62.08352302476037
],
[
28.763648250993576,
62.11916555478944
],
[
28.651022221893797,
62.14185883896364
],
[
28.677422257792603,
62.208043641019124
],
[
28.774288607176768,
62.19220712257912
],
[
28.80537333612602,
62.20421988867432
],
[
28.789017530832975,
62.264728726184664
],
[
28.917994832988438,
62.24349834441478
],
[
28.911619213567967,
62.20275065035009
],
[
28.99128832424196,
62.197972363480574
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Enontekiö",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.62708632444251,
69.27658830250635
],
[
22.17576239595888,
68.95632430080629
],
[
22.19186799524664,
68.91877368397726
],
[
22.340780648100587,
68.82722489470027
],
[
22.37452189707709,
68.7166665655402
],
[
22.53538932527951,
68.74451196687868
],
[
22.800824039155682,
68.68754801493175
],
[
23.045952044668095,
68.68934331772154
],
[
23.167582287062093,
68.62851892588682
],
[
23.44063565642118,
68.69216350062865
],
[
23.673520205747977,
68.70552137301381
],
[
23.73106351020086,
68.75075140520602
],
[
23.775391388928064,
68.81885111932033
],
[
23.871460767308832,
68.83651918455728
],
[
23.983330152164555,
68.82714318603477
],
[
24.075591585758982,
68.77996683457214
],
[
24.15855051650293,
68.78970938439822
],
[
24.152962305533535,
68.75359104303541
],
[
24.250964782758228,
68.72713206908773
],
[
24.60838790901812,
68.68190159962333
],
[
24.783424581786484,
68.63623461509758
],
[
24.85716613822789,
68.5622098121636
],
[
24.903165781750364,
68.55459183085824
],
[
25.027195746563052,
68.39528874685914
],
[
24.698577140270192,
68.38220246465778
],
[
24.445601258282025,
68.32059906242645
],
[
24.16015859234927,
68.14600062287954
],
[
24.106807114112947,
68.13894079180724
],
[
23.9628696125696,
68.1159329931437
],
[
23.956598969541908,
68.15062355177561
],
[
23.818118638409963,
68.15284509431608
],
[
23.739349790594748,
68.18729499761642
],
[
23.322001006633556,
68.17473583225055
],
[
23.28669821813509,
68.154273008972
],
[
23.16899366469881,
68.13367825727727
],
[
23.139859822290877,
68.15835133447334
],
[
23.144072110671008,
68.2462989314706
],
[
23.079827669314998,
68.26578443729268
],
[
23.05935978158816,
68.30163764579888
],
[
22.93425009362752,
68.33372070237421
],
[
22.83755671143671,
68.36514980060068
],
[
22.837121783593624,
68.38523365568109
],
[
22.77438382764623,
68.38937878577991
],
[
22.722982235258463,
68.392083180024
],
[
22.64467547828817,
68.41738877388454
],
[
22.642012652092475,
68.43050407251471
],
[
22.563435030240914,
68.42829799230586
],
[
22.474496098514948,
68.44212343406551
],
[
22.41145573838356,
68.46601353210913
],
[
22.34175958662461,
68.44487393610854
],
[
22.346834669391924,
68.48222840788267
],
[
22.24218108980978,
68.48032397963418
],
[
22.156144614357192,
68.4718863039636
],
[
22.04190557733232,
68.48018914528468
],
[
21.98431591043676,
68.53757711660519
],
[
21.89032193248735,
68.58389060663357
],
[
21.71502060615078,
68.59246474757559
],
[
21.7053428281711,
68.6261634379548
],
[
21.623065944987957,
68.66091614536192
],
[
21.420314020244327,
68.69587698924134
],
[
21.406694394124536,
68.75161028712412
],
[
21.387759604638152,
68.76497049777858
],
[
21.299083542203118,
68.76240260229457
],
[
21.240326453388935,
68.81039099373538
],
[
20.999059031286663,
68.89615045477967
],
[
20.892753144497036,
68.89185515779795
],
[
20.844799481038425,
68.93588208690215
],
[
20.914773317731232,
68.95579153597103
],
[
20.874223278453847,
68.98233668146378
],
[
20.814001790681928,
69.00756681247564
],
[
20.73202652592961,
69.03853685691026
],
[
20.61168022760913,
69.04599354297456
],
[
20.55232777589898,
69.06007630909798
],
[
20.717322326190498,
69.11979049275554
],
[
21.057543912371823,
69.03628966790193
],
[
21.10867512403577,
69.10392912295718
],
[
21.05562537096191,
69.12208529710041
],
[
20.986720230841676,
69.19327678676132
],
[
21.008198065098142,
69.22165033320874
],
[
21.094022122121856,
69.25954714431462
],
[
21.278820781632263,
69.31188401536458
],
[
21.62708632444251,
69.27658830250635
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Espoo",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.749283198085372,
60.34178329414992
],
[
24.784754108863698,
60.24150497791208
],
[
24.831403063881027,
60.254055152162
],
[
24.83567140949369,
60.13041361699695
],
[
24.782804660307274,
60.09995994055001
],
[
24.942298981184784,
59.922489218421
],
[
24.831663633514527,
59.90108720515753
],
[
24.728563123402118,
60.0197301078405
],
[
24.67588797343993,
60.06814167864427
],
[
24.626771404540786,
60.14928013118474
],
[
24.5032007433187,
60.21286290906278
],
[
24.515568815751305,
60.28129151887541
],
[
24.524207484113777,
60.31341242815312
],
[
24.562671778167118,
60.314084869302796
],
[
24.62769391815298,
60.359241407243374
],
[
24.749283198085372,
60.34178329414992
]
],
[
[
24.66105652507189,
60.23032700847296
],
[
24.667408516735918,
60.20776804875412
],
[
24.69337773922057,
60.18933016781032
],
[
24.757043677257478,
60.18758909698072
],
[
24.791770494233525,
60.221232455607506
],
[
24.725588487647045,
60.2446735068576
],
[
24.66105652507189,
60.23032700847296
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Eura",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.263631915099023,
60.926863484051886
],
[
22.160313629897413,
60.87200574225194
],
[
22.128467335899913,
60.9042053748535
],
[
21.98521432718883,
60.90100179085616
],
[
21.951365188667133,
60.9769360921387
],
[
21.844109882599177,
61.00940228698549
],
[
22.070715361386327,
61.04242077509147
],
[
22.049528873544986,
61.08029242625965
],
[
21.867478513022416,
61.14566324523323
],
[
21.945950221963663,
61.172545563299664
],
[
21.876235787284795,
61.296704471719806
],
[
22.021194689869237,
61.29444037097628
],
[
22.12993946476303,
61.26511532123096
],
[
22.17620484291836,
61.251940624451116
],
[
22.141903574444886,
61.2112128213237
],
[
22.21758559940263,
61.15507414582851
],
[
22.236133242631407,
61.108552382048536
],
[
22.263631915099023,
60.926863484051886
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Eurajoki",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.400397043818394,
61.49967718941109
],
[
21.58227082678724,
61.41747338156919
],
[
21.658125334280207,
61.4236261467887
],
[
21.71324758999653,
61.389872734571306
],
[
21.780783527548593,
61.33781700816528
],
[
21.876235787284795,
61.296704471719806
],
[
21.945950221963663,
61.172545563299664
],
[
21.867478513022416,
61.14566324523323
],
[
21.646979502703374,
61.14984612690329
],
[
21.4114576650771,
61.24508955556688
],
[
20.812072383169568,
61.28487571704425
],
[
20.829616880858744,
61.35265394782437
],
[
20.874559106225444,
61.53018317197746
],
[
21.400397043818394,
61.49967718941109
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Evijärvi",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.54396218225035,
63.46753421370062
],
[
23.69698894002367,
63.380320683201724
],
[
23.702697895849397,
63.31588484733819
],
[
23.596681943211028,
63.30055571399707
],
[
23.54715397925451,
63.31554158172557
],
[
23.443462351396857,
63.281774977325405
],
[
23.225533823729844,
63.34286904789055
],
[
23.207039643873753,
63.398961426904634
],
[
23.264637229512243,
63.47005562911095
],
[
23.392888589070726,
63.49804666143027
],
[
23.54396218225035,
63.46753421370062
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Finström",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.02399585894116,
60.23057647641206
],
[
20.026785301747566,
60.19890098939285
],
[
19.930574498729797,
60.21085917811505
],
[
19.84118140535893,
60.18766740164307
],
[
19.785721591115294,
60.26486464507464
],
[
19.81073919064548,
60.32493635561899
],
[
19.884562938680364,
60.32970267909628
],
[
19.94608318337467,
60.37632469548971
],
[
20.01369984506093,
60.35963880344169
],
[
19.94729613806743,
60.2974260614252
],
[
20.02399585894116,
60.23057647641206
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Forssa",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.83937006460241,
60.93970582597338
],
[
23.755475170056428,
60.93813885936524
],
[
23.647707680528065,
60.87636177539189
],
[
23.702009986101558,
60.805265501156995
],
[
23.634543604059193,
60.779526834423706
],
[
23.55046486766413,
60.788933137416805
],
[
23.54713050711177,
60.925111940910675
],
[
23.50074750261074,
60.947617798861984
],
[
23.474091075909925,
60.96346793145917
],
[
23.55051202495081,
60.99146734976936
],
[
23.712336950013,
61.00903353162332
],
[
23.83937006460241,
60.93970582597338
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Föglö",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.409600624117555,
60.15079405807741
],
[
20.511039327290824,
60.128365594569736
],
[
20.520575392232846,
60.14721782977171
],
[
20.618803294711434,
60.12032787879972
],
[
20.663224542633454,
60.05117735207811
],
[
20.655436668543366,
59.98969663254517
],
[
20.771623047577368,
59.90978761325692
],
[
20.742061650030674,
59.853535917876044
],
[
20.570621566684107,
59.71623762091774
],
[
20.284307336116846,
59.466082102967064
],
[
19.99629349084491,
59.59059086412
],
[
19.940631385735266,
59.59506063549748
],
[
20.107028645286846,
59.78440674925988
],
[
20.068853546879104,
59.913050056534445
],
[
20.223909574767415,
59.95922402958059
],
[
20.25310873672744,
60.04159949926333
],
[
20.30261608474368,
60.045215428266815
],
[
20.324685565767194,
60.111716141889865
],
[
20.407469585223986,
60.10615924656429
],
[
20.409600624117555,
60.15079405807741
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Geta",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
19.884562938680364,
60.32970267909628
],
[
19.81073919064548,
60.32493635561899
],
[
19.7143285367451,
60.35238405053284
],
[
19.71401948895383,
60.40798509024997
],
[
19.669502917362337,
60.437970865236956
],
[
19.47323405698489,
60.665789064001515
],
[
19.59845164537579,
60.68951796411438
],
[
19.7978434922093,
60.7083454501912
],
[
19.889138781362114,
60.45527097425158
],
[
19.99421444152942,
60.41872722665611
],
[
19.94608318337467,
60.37632469548971
],
[
19.884562938680364,
60.32970267909628
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Haapajärvi",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.661957745039526,
63.79977186288133
],
[
25.561452743579697,
63.645082054289716
],
[
25.408285938113128,
63.620177864822026
],
[
25.34804418259938,
63.58148010237853
],
[
25.245179886087065,
63.61027606166918
],
[
25.092765663905467,
63.74784514090767
],
[
24.95561456341682,
63.757488989525115
],
[
24.967383887218645,
63.80059856139146
],
[
25.02100081954883,
63.83110607719456
],
[
25.107106941178042,
63.77184526156415
],
[
25.266629049793554,
63.93226048691829
],
[
25.366416102780104,
63.93004031596365
],
[
25.534041821066605,
63.92160249969701
],
[
25.60918611137756,
63.91780838091586
],
[
25.661957745039526,
63.79977186288133
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Haapavesi",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.547200549449354,
64.24877605876448
],
[
25.77730091762208,
64.11064400261549
],
[
25.650761614801365,
64.08491301003683
],
[
25.584456692880117,
64.0048654231319
],
[
25.534041821066605,
63.92160249969701
],
[
25.366416102780104,
63.93004031596365
],
[
25.147412224240632,
64.02615476349342
],
[
25.021245459303245,
64.0679382879068
],
[
24.906373771497304,
64.10945083311623
],
[
24.9524882904707,
64.13601788503924
],
[
25.15600815023835,
64.2308438231494
],
[
25.198324186396352,
64.2902265932013
],
[
25.20017311681156,
64.32093969415712
],
[
25.462926651381874,
64.36257844219206
],
[
25.547200549449354,
64.24877605876448
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hailuoto",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.95097960146365,
65.14112142357409
],
[
25.134789950981,
65.0613390595066
],
[
25.124239730434386,
65.05044824390578
],
[
25.0454030438793,
64.98422028822813
],
[
24.99104448213112,
64.96644535659608
],
[
24.754000112884903,
64.89846424704375
],
[
24.0385990841975,
65.00794882176848
],
[
24.083825475562325,
65.08176318139202
],
[
24.114933436625112,
65.1739425977789
],
[
24.95097960146365,
65.14112142357409
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Halsua",
"parent": "Keski-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.321199546331258,
63.499110377587435
],
[
24.46686406277122,
63.52539245267833
],
[
24.554593897621814,
63.522952851287215
],
[
24.48618066727618,
63.375204489680044
],
[
24.40568559446781,
63.372141153945876
],
[
24.369249746890617,
63.33700690192254
],
[
24.16462873342756,
63.331917658426825
],
[
24.10305676967954,
63.41259537901687
],
[
24.091527612153232,
63.495331187388935
],
[
24.040818042479273,
63.52154144491374
],
[
24.098946787361378,
63.57705505305615
],
[
24.321199546331258,
63.499110377587435
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hamina",
"parent": "Kymenlaakso"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.42835969891217,
60.84264003741156
],
[
27.45467885232189,
60.641097002999544
],
[
27.388185349048836,
60.60218266440525
],
[
27.35656950324875,
60.55877349305756
],
[
27.397832114635364,
60.5176125293332
],
[
27.39804214451003,
60.4747759465602
],
[
27.534725121388302,
60.439899947251696
],
[
27.525955903267448,
60.4172924391129
],
[
27.55696832886672,
60.38743640061775
],
[
27.649530636965775,
60.344922149473724
],
[
27.466446137057726,
60.22940452814421
],
[
27.248765410774933,
60.35874943600751
],
[
27.118457386981046,
60.406466433641114
],
[
27.111592423165504,
60.4430219403642
],
[
27.062690586434528,
60.474603768799895
],
[
27.009284701217712,
60.5495563480388
],
[
27.028502694906617,
60.6045130532931
],
[
26.922136412968754,
60.64855294749256
],
[
27.103117334156412,
60.68554578502138
],
[
27.124651148758794,
60.77686263979184
],
[
27.225272961089143,
60.760397319113586
],
[
27.292644669829112,
60.82200122440741
],
[
27.42835969891217,
60.84264003741156
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hammarland",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
19.699572790666387,
60.11813611468745
],
[
19.423652560207707,
59.956418250639544
],
[
19.325243567369508,
60.02487792684729
],
[
19.654984809776888,
60.1428252210414
],
[
19.67829364978022,
60.22854113624197
],
[
19.61935099805383,
60.28996447343664
],
[
19.64594162360636,
60.375258397591104
],
[
19.39547022043881,
60.43172835948136
],
[
19.220199908055456,
60.61151374359
],
[
19.47323405698489,
60.665789064001515
],
[
19.669502917362337,
60.437970865236956
],
[
19.71401948895383,
60.40798509024997
],
[
19.7143285367451,
60.35238405053284
],
[
19.81073919064548,
60.32493635561899
],
[
19.785721591115294,
60.26486464507464
],
[
19.84118140535893,
60.18766740164307
],
[
19.791966368406587,
60.14423737584815
],
[
19.699572790666387,
60.11813611468745
]
]
],
[
[
[
19.48476913039068,
60.16566422230709
],
[
19.24431861704169,
60.080898661378335
],
[
19.083203892089546,
60.19169334643043
],
[
19.16116656092261,
60.37491956568411
],
[
19.45994293362743,
60.26307934070519
],
[
19.413669080959195,
60.21162447149087
],
[
19.46948338887993,
60.204171363563454
],
[
19.48476913039068,
60.16566422230709
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hankasalmi",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.213726277764806,
62.57815399614699
],
[
26.400079595058386,
62.506179210027234
],
[
26.483215272611602,
62.53236422842547
],
[
26.633113429681593,
62.4507694393915
],
[
26.709125304677194,
62.452947916678944
],
[
26.680533003448943,
62.40382287180549
],
[
26.776124783540777,
62.35411024155361
],
[
26.66904420308034,
62.34186156569248
],
[
26.68316055557062,
62.30772635258236
],
[
26.631160015090284,
62.27696267433735
],
[
26.614092408363696,
62.21705980479393
],
[
26.544033921205152,
62.26562675591812
],
[
26.43786296755812,
62.21979878721525
],
[
26.315948111866824,
62.20047067851031
],
[
26.324154080769283,
62.26625651433706
],
[
26.230031945816297,
62.335937582126085
],
[
26.31101973883333,
62.403443167507724
],
[
26.251047294393445,
62.42241529953165
],
[
26.218668363128636,
62.49106802583329
],
[
26.213726277764806,
62.57815399614699
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hanko",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.090649777052615,
59.93558385302922
],
[
23.16071277766133,
59.902666307213025
],
[
23.218893846843585,
59.93230665668949
],
[
23.295166517340334,
59.902006766870336
],
[
23.218803650225304,
59.757941810966635
],
[
23.21534713414351,
59.651187557134584
],
[
22.863352849063425,
59.635078924453424
],
[
22.658921499896163,
59.61100376501234
],
[
22.814285694377972,
59.87758190842406
],
[
23.010038648458295,
59.88220454889591
],
[
23.090649777052615,
59.93558385302922
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Harjavalta",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.272024026649202,
61.35024246154946
],
[
22.22616525894104,
61.27854995687325
],
[
22.17135321079162,
61.28381869535055
],
[
22.12993946476303,
61.26511532123096
],
[
22.021194689869237,
61.29444037097628
],
[
22.064535337254508,
61.3503930364891
],
[
22.16612587285928,
61.40546109442364
],
[
22.205018623992856,
61.407397651110884
],
[
22.272024026649202,
61.35024246154946
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hartola",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.05247443979764,
61.738340888654534
],
[
26.137587391205678,
61.61953459127968
],
[
26.191814211367472,
61.65003337444611
],
[
26.283079568632587,
61.65670344464723
],
[
26.315039150183576,
61.608449415103195
],
[
26.277894557721545,
61.53715385114917
],
[
26.264849337341406,
61.42583080249349
],
[
26.172951343561973,
61.392893745923665
],
[
26.049631246183598,
61.477967547519086
],
[
25.975901111540512,
61.43082134143531
],
[
25.87004773812469,
61.47847979301763
],
[
25.961888054418978,
61.5425716527233
],
[
25.857745855516345,
61.575179673483575
],
[
25.88322160390516,
61.6394677366945
],
[
25.771178593285796,
61.68506674876036
],
[
25.844956218787257,
61.80140787981894
],
[
25.92163812723722,
61.78734715219729
],
[
25.98030774189685,
61.74717435970488
],
[
26.05247443979764,
61.738340888654534
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hattula",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.378561388324815,
61.028328413060414
],
[
24.086217413970914,
60.857431558692454
],
[
24.032600049791622,
60.87565817765721
],
[
24.050311710191846,
60.90921353180058
],
[
24.056169443343,
60.94992058732111
],
[
24.250610605713884,
61.0728429880999
],
[
24.235499603131785,
61.15143135152052
],
[
24.297273137601078,
61.191581114683636
],
[
24.30238524657783,
61.233216077362
],
[
24.455797220831574,
61.12385826309817
],
[
24.624396570630832,
61.06119233751476
],
[
24.378561388324815,
61.028328413060414
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hausjärvi",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.10810892216898,
60.86507516415426
],
[
25.110974490804917,
60.81858334937388
],
[
25.1548758665493,
60.7783828284859
],
[
25.05827802453764,
60.724986221628235
],
[
25.146052623187938,
60.71646528315185
],
[
25.112461801735225,
60.66159621837994
],
[
25.03486643133241,
60.68499212104648
],
[
24.835072390467623,
60.666275324683625
],
[
24.83643516097875,
60.77607935638761
],
[
24.714607765624805,
60.796462241050904
],
[
24.809333350571055,
60.86876422151744
],
[
24.941158532618907,
60.84662784947558
],
[
24.98039413069483,
60.90755356197028
],
[
25.027675928135455,
60.927816347570804
],
[
25.093770648172434,
60.91899671212238
],
[
25.10810892216898,
60.86507516415426
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Heinola",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.318238062097517,
61.370904708869915
],
[
26.399569646145594,
61.322020756894155
],
[
26.483071417738024,
61.32283651900815
],
[
26.513662871661026,
61.27432639637527
],
[
26.42497012531653,
61.251502835755666
],
[
26.38547765057158,
61.18813785820796
],
[
26.234450451468998,
61.13000429396163
],
[
26.14125474236977,
61.1554854542846
],
[
26.04895654791944,
61.120462234284815
],
[
26.05103316147997,
61.10098183555989
],
[
25.936835793017984,
61.07091952802075
],
[
25.858056325995666,
61.1026663837102
],
[
25.919774661578174,
61.15193414519963
],
[
25.882065556128683,
61.185528882936865
],
[
25.9273280418856,
61.2280078337596
],
[
25.804914602368434,
61.269061650932336
],
[
25.807465137943495,
61.313399669464886
],
[
25.903405697350756,
61.37399992109871
],
[
26.172951343561973,
61.392893745923665
],
[
26.264849337341406,
61.42583080249349
],
[
26.318238062097517,
61.370904708869915
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Heinävesi",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.944018943130423,
62.57683117930497
],
[
29.033869168471124,
62.52884619183863
],
[
29.08477954687473,
62.47988869833382
],
[
29.08147523982306,
62.42415354323682
],
[
29.16644885870124,
62.38633756072567
],
[
29.168239971569655,
62.3320501362585
],
[
29.00510026361068,
62.32743022085896
],
[
28.932052171919537,
62.261216978573835
],
[
28.752835390958623,
62.286760479702494
],
[
28.769765277680644,
62.21221606988403
],
[
28.652808235808152,
62.231323003658524
],
[
28.5624586861384,
62.29436994950805
],
[
28.437926464228138,
62.31684346969173
],
[
28.437760850425306,
62.346336414559644
],
[
28.315004237355065,
62.35455262551124
],
[
28.244771661298643,
62.4240458744385
],
[
28.28641680501183,
62.47314655676619
],
[
28.381865580631533,
62.46163574541451
],
[
28.4008746324508,
62.559573270929306
],
[
28.520773870072663,
62.54845677408233
],
[
28.4669730201514,
62.58316265766578
],
[
28.611987793101225,
62.59456626262985
],
[
28.655149547575327,
62.657021681055895
],
[
28.790650906673246,
62.6402852165068
],
[
28.944018943130423,
62.57683117930497
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Helsinki",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.24091403134075,
60.246318316492655
],
[
25.204388595432434,
60.229895113968496
],
[
25.221618391771287,
60.20019116450268
],
[
25.19096620146765,
60.13717330645637
],
[
25.158560614202514,
59.94245341398969
],
[
24.942298981184784,
59.922489218421
],
[
24.782804660307274,
60.09995994055001
],
[
24.83567140949369,
60.13041361699695
],
[
24.831403063881027,
60.254055152162
],
[
25.020906415585284,
60.289317838838244
],
[
25.090690411701868,
60.26421749023604
],
[
25.082918122117707,
60.24280819140188
],
[
25.135844043571428,
60.237228219952286
],
[
25.159883043149094,
60.248817273737565
],
[
25.142534947515742,
60.26977888214257
],
[
25.19024994569274,
60.28568133849804
],
[
25.271647357286597,
60.29808012290824
],
[
25.250902429532,
60.273519181687774
],
[
25.24091403134075,
60.246318316492655
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hirvensalmi",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.606027849229694,
61.85854134636985
],
[
26.632918993941875,
61.79994296034398
],
[
26.711780012487278,
61.82565149153436
],
[
26.832212428415843,
61.85030537948557
],
[
26.883880600269794,
61.73756998331941
],
[
26.982243185500703,
61.7006859932513
],
[
26.951778593520817,
61.61100645388971
],
[
27.019442235373607,
61.567996624748325
],
[
26.963680060721853,
61.503426386527366
],
[
26.83592639603272,
61.5228658514837
],
[
26.784016041417917,
61.57585158208221
],
[
26.727759901087275,
61.56536417534838
],
[
26.65238821966232,
61.58829118896386
],
[
26.60468283188428,
61.57224807662552
],
[
26.515458036200826,
61.627056458618966
],
[
26.527086838181788,
61.704575282124246
],
[
26.452154012283536,
61.77572848704894
],
[
26.367181305001957,
61.80787346077015
],
[
26.389102414177504,
61.85415260978596
],
[
26.530117468721773,
61.8438637798752
],
[
26.606027849229694,
61.85854134636985
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hollola",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.562502015139458,
61.114721179103924
],
[
25.783526213267688,
61.09629055191031
],
[
25.749024150832106,
61.070255857820975
],
[
25.82219467624819,
61.05136946041451
],
[
25.751297040612553,
61.03167997012058
],
[
25.59965017383172,
61.03400914392248
],
[
25.54030801082675,
60.998264389037104
],
[
25.556342133738312,
60.93369949945589
],
[
25.657510017507587,
60.90643983482452
],
[
25.60470452020724,
60.87054203987964
],
[
25.50776437715635,
60.88616596575495
],
[
25.40221804797134,
60.85435886375159
],
[
25.323801357770975,
60.89276586769557
],
[
25.312769127464275,
60.944454442038335
],
[
25.26143833464388,
60.981676723647674
],
[
25.17000920098204,
60.92622009173147
],
[
25.10810892216898,
60.86507516415426
],
[
25.093770648172434,
60.91899671212238
],
[
25.027675928135455,
60.927816347570804
],
[
25.028697277300594,
61.030946556016346
],
[
25.152265091874536,
61.06298658066858
],
[
25.239935242841504,
61.11455175714531
],
[
25.27919323755131,
61.09819738531763
],
[
25.408918089146244,
61.10681232125348
],
[
25.53748386063044,
61.150707336920526
],
[
25.562502015139458,
61.114721179103924
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Honkajoki",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.44541197818572,
62.10954318225557
],
[
22.419814139619707,
62.063513769585306
],
[
22.449847485502623,
62.03175289302314
],
[
22.433171556314456,
62.01321333655129
],
[
22.354819104915126,
62.0023377088155
],
[
22.250768392657175,
61.91623856660365
],
[
22.15353464446419,
61.92135861250021
],
[
22.138185065474573,
61.89626875016006
],
[
22.0096572180205,
61.93440429769241
],
[
21.974686370636505,
61.97975958442847
],
[
22.108395744410245,
62.03184735102798
],
[
22.198721517842944,
62.10333594763143
],
[
22.320064019944578,
62.1031056774879
],
[
22.373688389136014,
62.142448106675786
],
[
22.44541197818572,
62.10954318225557
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Huittinen",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.92418106714482,
61.141993462565765
],
[
22.993958190170343,
61.078652543912966
],
[
22.96850459112584,
61.04325435929721
],
[
22.8239105462591,
61.10143532305665
],
[
22.815933050071123,
60.993408695963794
],
[
22.70154448335616,
60.98693552139922
],
[
22.597561567357072,
61.015413157437784
],
[
22.55906445993522,
61.1037271583092
],
[
22.48034135448138,
61.170623258526724
],
[
22.599107829572574,
61.301979667313184
],
[
22.645436053613146,
61.246620376870396
],
[
22.856060971242794,
61.235842657982325
],
[
22.934220209138495,
61.20497634041384
],
[
22.92418106714482,
61.141993462565765
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Humppila",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.362461609167617,
61.01451637246428
],
[
23.474091075909925,
60.96346793145917
],
[
23.50074750261074,
60.947617798861984
],
[
23.421936296588687,
60.871075279989185
],
[
23.27633462386964,
60.88218432333941
],
[
23.266664800142745,
60.88910949732437
],
[
23.29392896508692,
60.95469735024718
],
[
23.195365933783123,
61.00121980619564
],
[
23.25998476936507,
61.01855397534714
],
[
23.362461609167617,
61.01451637246428
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hyrynsalmi",
"parent": "Kainuu"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.116987151299593,
64.67224816510696
],
[
29.45945575510929,
64.56629124383322
],
[
29.416790954841268,
64.51989590214309
],
[
29.16328976039018,
64.45459729900972
],
[
29.025105602828063,
64.45786939239466
],
[
28.859837309382307,
64.49343277222424
],
[
28.431112028724897,
64.59672498076246
],
[
28.321246660967763,
64.58967060216102
],
[
28.246019662203597,
64.63678023222835
],
[
28.074326976874026,
64.63287704896294
],
[
28.05601396041358,
64.8085734509567
],
[
28.14797194439845,
64.80820725166964
],
[
28.294301348803234,
64.89837490872456
],
[
28.80796894695653,
64.70495235408656
],
[
29.116987151299593,
64.67224816510696
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hyvinkää",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.112461801735225,
60.66159621837994
],
[
25.045343265498154,
60.57686325339518
],
[
24.912163088553147,
60.555624788523495
],
[
24.835337991043538,
60.54621793246463
],
[
24.74815753821454,
60.5888705409254
],
[
24.70594949814005,
60.51880126294002
],
[
24.648835852297154,
60.51665902999964
],
[
24.577250305962746,
60.58580118883246
],
[
24.566910642124313,
60.63233238730183
],
[
24.615911178660863,
60.66756880298995
],
[
24.739880309973124,
60.647496423399396
],
[
24.835072390467623,
60.666275324683625
],
[
25.03486643133241,
60.68499212104648
],
[
25.112461801735225,
60.66159621837994
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hämeenkyrö",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.21025924429434,
61.73440412256075
],
[
23.20830134796825,
61.655283732326026
],
[
23.309104262154857,
61.66612860806623
],
[
23.335439363421365,
61.63706850518665
],
[
23.50047659443665,
61.69791181092487
],
[
23.492755817486575,
61.58587195458141
],
[
23.442162492358307,
61.57222748774658
],
[
23.381572971830302,
61.5189041596173
],
[
23.193788260022153,
61.537756034794754
],
[
23.074274339292895,
61.54424648915126
],
[
23.026593283813813,
61.600657662484984
],
[
22.939183546849577,
61.58702007164985
],
[
22.852729738600093,
61.62470491336703
],
[
22.82406852486029,
61.67513930660755
],
[
22.910804815091183,
61.70200074318302
],
[
23.033395350116024,
61.687241331853535
],
[
23.109062112694538,
61.73091428304183
],
[
23.21025924429434,
61.73440412256075
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Hämeenlinna",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.951791144033248,
61.293103665089305
],
[
24.991104672977173,
61.275325420155525
],
[
25.02938214758615,
61.24615327411947
],
[
25.20282373528747,
61.24093846256258
],
[
25.259867424124533,
61.18588940238489
],
[
25.239935242841504,
61.11455175714531
],
[
25.152265091874536,
61.06298658066858
],
[
25.028697277300594,
61.030946556016346
],
[
25.027675928135455,
60.927816347570804
],
[
24.98039413069483,
60.90755356197028
],
[
24.942904449060908,
60.96271816962839
],
[
24.85573659738561,
61.00884512259918
],
[
24.67884150830533,
61.02543344773396
],
[
24.557257235350793,
60.9394740720273
],
[
24.398697667619086,
60.90283870257758
],
[
24.479906240884493,
60.81023911368268
],
[
24.42295801067793,
60.77120921741747
],
[
24.334905447077965,
60.79461570120579
],
[
24.253324575531146,
60.78598648544613
],
[
24.170973542902285,
60.806564989279465
],
[
24.063243377282255,
60.79345534460807
],
[
23.988765148775254,
60.87963502491954
],
[
24.021798498533855,
60.92840354318346
],
[
23.856574594914235,
60.97153622223972
],
[
23.815408055486376,
61.000660775632525
],
[
23.792614649824138,
61.02517586894721
],
[
23.756756711938184,
61.05735515180874
],
[
23.958283897569146,
61.1019294578469
],
[
24.235499603131785,
61.15143135152052
],
[
24.250610605713884,
61.0728429880999
],
[
24.056169443343,
60.94992058732111
],
[
24.050311710191846,
60.90921353180058
],
[
24.032600049791622,
60.87565817765721
],
[
24.086217413970914,
60.857431558692454
],
[
24.378561388324815,
61.028328413060414
],
[
24.624396570630832,
61.06119233751476
],
[
24.455797220831574,
61.12385826309817
],
[
24.30238524657783,
61.233216077362
],
[
24.573676705979434,
61.30393742213433
],
[
24.70832038524796,
61.272398926726034
],
[
24.731737449954004,
61.31745587133353
],
[
24.82575021610387,
61.27592518313528
],
[
24.913942605529876,
61.324881259957166
],
[
24.951791144033248,
61.293103665089305
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ii",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.160110816913246,
65.82233496749187
],
[
26.158233713787187,
65.72555548273235
],
[
26.15564524250188,
65.55521146146656
],
[
25.789125250478047,
65.55029141204213
],
[
25.64692493424667,
65.37856260513966
],
[
25.569979398511904,
65.34612780005888
],
[
25.55242867490965,
65.25291823235038
],
[
25.31945496256901,
65.26262867062957
],
[
25.224910892083386,
65.23664228522671
],
[
25.130853447595264,
65.2493844540602
],
[
24.607151273172022,
65.21149268221765
],
[
24.137494816997418,
65.24164841288558
],
[
24.15450767085386,
65.29248053475472
],
[
24.597813071297395,
65.37220596420475
],
[
25.129337125279374,
65.60733322656337
],
[
25.4245049549777,
65.74256854916105
],
[
25.79023536814487,
65.74071168755202
],
[
25.93919091455563,
65.77399249201358
],
[
26.160110816913246,
65.82233496749187
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Iisalmi",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.26095863843197,
63.6888390696109
],
[
27.368379550993556,
63.62141982187353
],
[
27.542174998575437,
63.585781395423766
],
[
27.625181488850654,
63.502469777957465
],
[
27.569421375676153,
63.48270325077813
],
[
27.489173120660116,
63.50349836775378
],
[
27.37319120183175,
63.49146456169326
],
[
27.31045542463662,
63.433995825993996
],
[
27.218568399615794,
63.45148196006123
],
[
27.119091807426308,
63.36920482013604
],
[
27.18294852360809,
63.33021506619302
],
[
27.136988520460413,
63.3212241021394
],
[
27.01977996331529,
63.32962793347624
],
[
26.824552515136386,
63.51640784167903
],
[
26.80300525248447,
63.58189850389362
],
[
26.82880660814769,
63.66681695887366
],
[
26.915245603186598,
63.62909419693373
],
[
27.015326252210237,
63.616477604254406
],
[
27.07243964067696,
63.660713027653095
],
[
27.20894314555352,
63.651321793784135
],
[
27.26095863843197,
63.6888390696109
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Iitti",
"parent": "Kymenlaakso"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.265810974984092,
61.011660486119204
],
[
26.346189756470096,
61.00047107266803
],
[
26.386341378744056,
61.027745847356236
],
[
26.504357973955532,
61.00979604927235
],
[
26.544968246849034,
60.883818679890936
],
[
26.51139239373177,
60.84061530987131
],
[
26.37885633590844,
60.805536923680066
],
[
26.374424663336487,
60.76110865436859
],
[
26.30014194627122,
60.74920742008863
],
[
26.30013052041372,
60.749205582727534
],
[
26.30012509721257,
60.74920610213295
],
[
26.20836632088715,
60.757994101756125
],
[
26.20836346987737,
60.75799437225537
],
[
26.208360065813284,
60.75801783142207
],
[
26.202004579725845,
60.801862554235576
],
[
26.07782947692055,
60.835476738045685
],
[
26.13994377330741,
60.907233947877415
],
[
26.138269855459185,
60.93284480066412
],
[
26.06019754069876,
60.93608279752228
],
[
26.042201439217123,
60.972924883345534
],
[
26.11672051245745,
60.984555021229355
],
[
26.1329047383678,
61.0277473789576
],
[
26.05103316147997,
61.10098183555989
],
[
26.04895654791944,
61.120462234284815
],
[
26.14125474236977,
61.1554854542846
],
[
26.234450451468998,
61.13000429396163
],
[
26.310965913534556,
61.10665471279228
],
[
26.26731883694171,
61.06982683210103
],
[
26.265810974984092,
61.011660486119204
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ikaalinen",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.964666298932464,
61.91299723614291
],
[
23.116764704922275,
61.93962299442951
],
[
23.149405339421772,
61.89659998225156
],
[
23.310086523091364,
61.90175929393952
],
[
23.310840309854246,
61.949515512319245
],
[
23.447628548717176,
61.91465794651289
],
[
23.448384426155926,
61.87358519848629
],
[
23.592160170150525,
61.855998087030265
],
[
23.59387529150075,
61.819351880328135
],
[
23.41802337305155,
61.811204443898184
],
[
23.335234605295316,
61.784623920928766
],
[
23.351281018700785,
61.760248687695935
],
[
23.21025924429434,
61.73440412256075
],
[
23.109062112694538,
61.73091428304183
],
[
23.033395350116024,
61.687241331853535
],
[
22.910804815091183,
61.70200074318302
],
[
22.82406852486029,
61.67513930660755
],
[
22.76383093671394,
61.694365527055886
],
[
22.691008642728388,
61.702547178880614
],
[
22.693701636182514,
61.73776616271796
],
[
22.786365113586765,
61.75533595165856
],
[
22.82842184150258,
61.81521814839139
],
[
22.800425595997556,
61.84660565255988
],
[
22.788185038433845,
61.87062565750905
],
[
22.738728763065744,
61.91064382786737
],
[
22.81374831604955,
61.95805606489536
],
[
22.951782251038402,
61.97158506314644
],
[
22.964666298932464,
61.91299723614291
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ilmajoki",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.687000513714434,
62.775202449445935
],
[
22.877519819460918,
62.68199484081602
],
[
22.857674720217126,
62.6342006243459
],
[
22.739314085928015,
62.62102318288632
],
[
22.66525850623007,
62.59985514896142
],
[
22.150151579137304,
62.71957700011853
],
[
22.200677295791202,
62.75157420779531
],
[
22.27386579133295,
62.79114191151007
],
[
22.302619662362204,
62.795106004363106
],
[
22.736946182763397,
62.8713026853918
],
[
22.687000513714434,
62.775202449445935
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ilomantsi",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
31.184829447023777,
62.493703144677504
],
[
31.162527157185124,
62.44606276981341
],
[
31.131323182584822,
62.43607233013893
],
[
31.093521847716804,
62.416611668205675
],
[
30.95545922151367,
62.38495097618554
],
[
30.938070595210515,
62.44537616262767
],
[
31.000474323027124,
62.45922689000441
],
[
30.937418171780887,
62.488211745128346
],
[
30.92037394634422,
62.47812253853396
],
[
30.8645848864662,
62.53642719712816
],
[
30.841063041390225,
62.55453768156562
],
[
30.75538647359495,
62.56081225069556
],
[
30.70224228289473,
62.59215339671547
],
[
30.714106927726714,
62.61780064429015
],
[
30.593100599091855,
62.663590247293
],
[
30.58228902653074,
62.686885193902555
],
[
30.51155813360961,
62.69676229304785
],
[
30.55927405942014,
62.769915502832205
],
[
30.469052415410754,
62.86928506880808
],
[
30.433442580241564,
62.945368618199645
],
[
30.36138740295936,
62.99840243897721
],
[
30.633263648568295,
63.091986823539706
],
[
30.908249749755935,
63.13235995643662
],
[
30.964696427080195,
63.167311824162624
],
[
31.238247194904886,
63.19513289204111
],
[
31.254850555961536,
63.178651366742756
],
[
31.272127201556636,
63.10762776540019
],
[
31.462986598888314,
63.02424572411295
],
[
31.448770154360613,
63.00605388029179
],
[
31.50214352879911,
62.99625141062394
],
[
31.586705850698404,
62.90870696177452
],
[
31.439208818199283,
62.78488290625271
],
[
31.380325573,
62.68993232129639
],
[
31.37315715753607,
62.64972170566971
],
[
31.345281483796544,
62.64022504262144
],
[
31.226627298247774,
62.503556348137856
],
[
31.184829447023777,
62.493703144677504
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Imatra",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.918882714974572,
61.275743420164254
],
[
28.927280720253236,
61.2275864823915
],
[
29.021965868535457,
61.188489395604385
],
[
28.953712511891116,
61.15067347594608
],
[
28.883532236079255,
61.14233219840181
],
[
28.81910288771239,
61.121576719415664
],
[
28.8080073103091,
61.09653046577752
],
[
28.77664853900112,
61.079254964100464
],
[
28.73476728536596,
61.1006508452583
],
[
28.745288378563924,
61.14372442098302
],
[
28.701680111029237,
61.231561630379446
],
[
28.74560367897104,
61.24298142721606
],
[
28.811471207576194,
61.24029185868146
],
[
28.848907675844476,
61.249787271049186
],
[
28.845641124358874,
61.277634702283166
],
[
28.918882714974572,
61.275743420164254
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Inari",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.415787999306318,
68.91545077245988
],
[
28.468014934827355,
68.88543509653286
],
[
28.661277938473564,
68.88642098171233
],
[
28.800785891752493,
68.86928469643676
],
[
28.706408174795335,
68.73223767085064
],
[
28.43393190085149,
68.53967166951692
],
[
28.47898209494701,
68.46619066940093
],
[
28.26423693686048,
68.4616492394239
],
[
27.502126840192282,
68.34361326517978
],
[
26.19526556546335,
68.31420320387348
],
[
25.97561956554279,
68.27757167763335
],
[
25.524749417681527,
68.31083905845108
],
[
25.027195746563052,
68.39528874685914
],
[
24.903165781750364,
68.55459183085824
],
[
24.916923979307185,
68.60524662271862
],
[
24.980020981010114,
68.61734508353415
],
[
25.056378715826877,
68.62316502875763
],
[
25.11638898091602,
68.63958833056657
],
[
25.110787445285478,
68.69936200963645
],
[
25.14220352696849,
68.78723034842655
],
[
25.229846761764858,
68.82543113814368
],
[
25.24662164673227,
68.84266081825393
],
[
25.28908980510434,
68.85645527158675
],
[
25.474802752322514,
68.904516799283
],
[
25.53054178003382,
68.88803709047195
],
[
25.58813948881629,
68.88325969061694
],
[
25.653478069975147,
68.90702299271118
],
[
25.713243920462332,
68.97621219279476
],
[
25.77726546922418,
69.01790983146854
],
[
25.74769707041274,
69.04326437309847
],
[
25.725232796075073,
69.09356284087696
],
[
25.738374212965972,
69.14758010041825
],
[
27.315452340648637,
69.48597017599377
],
[
27.88678116227457,
69.56532318771013
],
[
28.33047611756854,
69.84919253825251
],
[
28.404225770743142,
69.81842492745852
],
[
29.13390345143145,
69.69534054183559
],
[
29.170532827604998,
69.63904133014003
],
[
29.336496786481657,
69.47832203271004
],
[
29.21934006534001,
69.39763599480126
],
[
28.831540659544306,
69.22436064503553
],
[
28.83031290335933,
69.17190134208717
],
[
28.80542980418946,
69.11115554854369
],
[
28.85457621634801,
69.07663899771252
],
[
28.929292075907373,
69.0519153468213
],
[
28.495790736035,
68.93012454721847
],
[
28.415787999306318,
68.91545077245988
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Inkoo",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.136231509568297,
60.111402646621244
],
[
24.20170971496062,
60.12828109397549
],
[
24.31628209448747,
60.022494931942205
],
[
24.28140217798758,
59.95521801629913
],
[
24.281589361173396,
59.79156621133889
],
[
23.98637170065384,
59.75169493879565
],
[
23.800638087754166,
59.92051919251274
],
[
23.83863116336517,
59.981016338576154
],
[
23.773635145982407,
60.00321101204122
],
[
23.759067382224075,
60.03762149198219
],
[
23.87455168985584,
60.047688091815445
],
[
23.81502335630176,
60.12441123093632
],
[
23.942377708606152,
60.12949255559913
],
[
24.045805674541594,
60.15011723954438
],
[
24.136231509568297,
60.111402646621244
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Isojoki",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.108395744410245,
62.03184735102798
],
[
21.974686370636505,
61.97975958442847
],
[
21.749405169782108,
62.01586179294563
],
[
21.647847941549546,
62.019585020601276
],
[
21.641700400740035,
62.149443113815266
],
[
21.767510211722563,
62.22268327756406
],
[
21.825793323257034,
62.23167526088664
],
[
21.831829168424605,
62.28439143443919
],
[
21.9389813362541,
62.26043403315063
],
[
22.1753379865869,
62.15240712738286
],
[
22.198721517842944,
62.10333594763143
],
[
22.108395744410245,
62.03184735102798
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Isokyrö",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.6762298874263,
63.08386002723173
],
[
22.53281946272991,
63.06473704150646
],
[
22.41735760967872,
62.95216472653947
],
[
22.40900278537526,
62.8643552464172
],
[
22.302619662362204,
62.795106004363106
],
[
22.27386579133295,
62.79114191151007
],
[
22.248995669358532,
62.8800138020339
],
[
22.14397311370223,
62.96310731572087
],
[
22.242322571074443,
63.06372647668732
],
[
22.63165211057555,
63.10191750538556
],
[
22.6762298874263,
63.08386002723173
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Janakkala",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.98039413069483,
60.90755356197028
],
[
24.941158532618907,
60.84662784947558
],
[
24.809333350571055,
60.86876422151744
],
[
24.714607765624805,
60.796462241050904
],
[
24.690949829294112,
60.75148881006861
],
[
24.62334341961935,
60.75587624998699
],
[
24.490835550691916,
60.744569287120015
],
[
24.42295801067793,
60.77120921741747
],
[
24.479906240884493,
60.81023911368268
],
[
24.398697667619086,
60.90283870257758
],
[
24.557257235350793,
60.9394740720273
],
[
24.67884150830533,
61.02543344773396
],
[
24.85573659738561,
61.00884512259918
],
[
24.942904449060908,
60.96271816962839
],
[
24.98039413069483,
60.90755356197028
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Joensuu",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
30.239425473676903,
63.042439663756696
],
[
30.36138740295936,
62.99840243897721
],
[
30.433442580241564,
62.945368618199645
],
[
30.469052415410754,
62.86928506880808
],
[
30.55927405942014,
62.769915502832205
],
[
30.51155813360961,
62.69676229304785
],
[
30.58228902653074,
62.686885193902555
],
[
30.593100599091855,
62.663590247293
],
[
30.714106927726714,
62.61780064429015
],
[
30.70224228289473,
62.59215339671547
],
[
30.75538647359495,
62.56081225069556
],
[
30.841063041390225,
62.55453768156562
],
[
30.8645848864662,
62.53642719712816
],
[
30.92037394634422,
62.47812253853396
],
[
30.937418171780887,
62.488211745128346
],
[
31.000474323027124,
62.45922689000441
],
[
30.938070595210515,
62.44537616262767
],
[
30.95545922151367,
62.38495097618554
],
[
31.093521847716804,
62.416611668205675
],
[
30.955528680538052,
62.33891611398762
],
[
30.96006493364863,
62.328369151353186
],
[
30.943312207728763,
62.30562613610313
],
[
30.904260050233844,
62.31039018650757
],
[
30.789182002558377,
62.250802842682425
],
[
30.72296593898377,
62.329609375787584
],
[
30.569993384671687,
62.372566433707426
],
[
30.407135372561463,
62.33718376294222
],
[
30.35703720897073,
62.359527895034766
],
[
30.277005290243256,
62.35000433211083
],
[
30.240734258293777,
62.416349278645974
],
[
29.949640908595665,
62.37025335980482
],
[
29.763220867645924,
62.407439052530115
],
[
29.75105338135097,
62.521363682591776
],
[
29.640312125204105,
62.59497422923723
],
[
29.637207991895906,
62.65452939931037
],
[
29.748501871204027,
62.63194607856982
],
[
29.900650499154008,
62.62814602149153
],
[
29.943092961535363,
62.566243850426204
],
[
30.110900192304808,
62.6086597381975
],
[
30.20111582114519,
62.59374483641486
],
[
30.28800486538119,
62.63255845367999
],
[
30.193002721624556,
62.72606341221436
],
[
30.03812071856168,
62.77978878036445
],
[
29.948066191501137,
62.88396174127954
],
[
29.95997003195735,
63.019549923123385
],
[
29.983645252464775,
63.0457604998985
],
[
30.140256139992594,
63.03237676334768
],
[
30.239425473676903,
63.042439663756696
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Jokioinen",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.54713050711177,
60.925111940910675
],
[
23.55046486766413,
60.788933137416805
],
[
23.502136897836547,
60.74398925753994
],
[
23.40862398072131,
60.7397738005781
],
[
23.372150778895694,
60.81411531924126
],
[
23.27633462386964,
60.88218432333941
],
[
23.421936296588687,
60.871075279989185
],
[
23.50074750261074,
60.947617798861984
],
[
23.54713050711177,
60.925111940910675
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Jomala",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.026785301747566,
60.19890098939285
],
[
20.13347758235016,
60.143239443881704
],
[
19.999570255475657,
60.0972434594202
],
[
19.97598404058874,
60.15192467412746
],
[
19.87080598216976,
60.1366618463912
],
[
19.890959902514876,
60.077047352009906
],
[
19.90398255162705,
60.02786614921386
],
[
19.65828500403631,
59.791694045543444
],
[
19.423652560207707,
59.956418250639544
],
[
19.699572790666387,
60.11813611468745
],
[
19.791966368406587,
60.14423737584815
],
[
19.84118140535893,
60.18766740164307
],
[
19.930574498729797,
60.21085917811505
],
[
20.026785301747566,
60.19890098939285
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Joroinen",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.740369180644684,
62.323131635334704
],
[
27.83305745564122,
62.278197135618136
],
[
27.89187440224255,
62.290022166799204
],
[
28.04892181713235,
62.23529266826224
],
[
28.059655397474412,
62.20496128193318
],
[
28.02684516848171,
62.17037818106208
],
[
28.08008765743461,
62.116437821253044
],
[
27.926983917998882,
62.08235133485993
],
[
27.94472326412317,
62.05863411079929
],
[
27.866773620074905,
62.04043151705415
],
[
27.871848743683604,
62.006461803552696
],
[
27.79360806616673,
61.98775913059708
],
[
27.653080489687532,
62.02776518212456
],
[
27.630933907070393,
62.15020687186361
],
[
27.566164121925986,
62.1476423547138
],
[
27.54890814589102,
62.20986900048772
],
[
27.5316048153009,
62.26812749423525
],
[
27.631887058689124,
62.282963078717124
],
[
27.691911101734537,
62.37475948510638
],
[
27.757958702634102,
62.36739435417161
],
[
27.740369180644684,
62.323131635334704
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Joutsa",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.331673524660186,
62.03678926031897
],
[
26.414590347115293,
61.97288552576223
],
[
26.330064778432845,
61.94046241312283
],
[
26.324292213692846,
61.88003396706758
],
[
26.378090098498127,
61.88306759838885
],
[
26.389102414177504,
61.85415260978596
],
[
26.367181305001957,
61.80787346077015
],
[
26.452154012283536,
61.77572848704894
],
[
26.527086838181788,
61.704575282124246
],
[
26.515458036200826,
61.627056458618966
],
[
26.37718876362281,
61.657805244607815
],
[
26.315039150183576,
61.608449415103195
],
[
26.283079568632587,
61.65670344464723
],
[
26.191814211367472,
61.65003337444611
],
[
26.137587391205678,
61.61953459127968
],
[
26.05247443979764,
61.738340888654534
],
[
25.98030774189685,
61.74717435970488
],
[
25.92163812723722,
61.78734715219729
],
[
25.844956218787257,
61.80140787981894
],
[
25.921275408830713,
61.85846013892791
],
[
25.850075249861565,
61.89064466006256
],
[
25.9848653740395,
61.96576892024867
],
[
25.951446644059295,
61.997468177990974
],
[
25.976455836740925,
62.03582731961098
],
[
26.050724025489156,
62.033351626927846
],
[
26.116097830301644,
61.99659637585955
],
[
26.163312948090702,
62.03848033731555
],
[
26.331673524660186,
62.03678926031897
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Juuka",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.331510721829872,
63.36107928016165
],
[
29.467286890333146,
63.34785018997973
],
[
29.574947966883915,
63.325388965948804
],
[
29.54730942002626,
63.29703910966316
],
[
29.567900989501197,
63.25369172106675
],
[
29.62926689359734,
63.24398207025563
],
[
29.650545385538777,
63.198883414062784
],
[
29.641113668289073,
63.15515041624139
],
[
29.78716388947024,
63.0514983979852
],
[
29.737811620824456,
63.00553101763303
],
[
29.60567231089693,
62.96848722885659
],
[
29.526720817607515,
63.00895521658052
],
[
29.49762653888714,
63.0618273833164
],
[
29.41611244889776,
63.10698721872728
],
[
29.355171495720434,
63.05456390808935
],
[
29.14870411808239,
63.0298971170034
],
[
29.127455807597656,
62.99000120183355
],
[
29.06483865500969,
62.98657331123877
],
[
28.861020865651835,
63.057029700990014
],
[
28.762386834186053,
63.13671545467783
],
[
28.698017486192416,
63.183109210498586
],
[
28.610804126705016,
63.20383531983483
],
[
28.736763922478662,
63.311357421163656
],
[
28.75952582328101,
63.38780885401111
],
[
28.819603648066057,
63.36739768327671
],
[
28.893442205046615,
63.409981485628435
],
[
29.106814610957176,
63.44971558759444
],
[
29.18306958673448,
63.444137504316124
],
[
29.331510721829872,
63.36107928016165
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Juupajoki",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.524644005308772,
61.90933334435215
],
[
24.666651269867305,
61.86298950628995
],
[
24.55539303157804,
61.715538248495534
],
[
24.41654751213133,
61.73749549310773
],
[
24.227415504177547,
61.82480644080009
],
[
24.410989836671078,
61.85936473372981
],
[
24.438634490343645,
61.91056619994726
],
[
24.524644005308772,
61.90933334435215
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Juva",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.653080489687532,
62.02776518212456
],
[
27.79360806616673,
61.98775913059708
],
[
27.871848743683604,
62.006461803552696
],
[
28.07497678897726,
61.94924725861606
],
[
28.132210312876392,
61.977261022088996
],
[
28.227784858228787,
61.95769757888552
],
[
28.221653617659776,
61.93757417619655
],
[
28.156927041731098,
61.92014046564797
],
[
28.088783295052135,
61.88528108674878
],
[
28.125785750848287,
61.8520645344655
],
[
28.116985388531443,
61.80934271036337
],
[
28.187962281365508,
61.76300895137353
],
[
28.112230103832434,
61.7344550537743
],
[
28.176055089452117,
61.71694120114094
],
[
28.124158156187423,
61.66787079182006
],
[
28.120439140335996,
61.61892142638295
],
[
27.98077603817275,
61.65594061283398
],
[
27.969343494950184,
61.60455632702678
],
[
27.900382419289237,
61.54559553325935
],
[
27.874346428882998,
61.597086552618386
],
[
27.877102870935467,
61.653092812130396
],
[
27.80961145270313,
61.687324685461206
],
[
27.650463262156638,
61.69834746212116
],
[
27.540708107280697,
61.76269421789965
],
[
27.433432268653725,
61.86460522563287
],
[
27.429776307808517,
61.90696050443683
],
[
27.47031970233752,
61.93767271798642
],
[
27.393024769867033,
61.98181826064561
],
[
27.39246175512771,
62.00586209483991
],
[
27.464363792346234,
62.03486090023533
],
[
27.653080489687532,
62.02776518212456
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Jyväskylä",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.81670467009386,
62.30559548965363
],
[
25.878782358730312,
62.27267775361839
],
[
25.96204811308668,
62.298647987838194
],
[
26.050994534086612,
62.26759035009109
],
[
26.048622298360204,
62.18127851817093
],
[
25.96032086272981,
62.15841897578133
],
[
25.960900123688056,
62.074654561689336
],
[
25.839612454398328,
62.12776934125573
],
[
25.795206628010455,
62.094439421332176
],
[
25.705155659386897,
62.11816540592456
],
[
25.71537183531807,
62.149629139635316
],
[
25.79402233512785,
62.15239679039964
],
[
25.762098341171527,
62.179884523769786
],
[
25.60040260559539,
62.1861954976089
],
[
25.57079649402651,
62.24282665466838
],
[
25.493946402038585,
62.23300889858816
],
[
25.479357132107825,
62.184429353496434
],
[
25.54184494702962,
62.15996804857076
],
[
25.479702715001398,
62.08611287948424
],
[
25.767989107303237,
62.06355418986611
],
[
25.951446644059295,
61.997468177990974
],
[
25.9848653740395,
61.96576892024867
],
[
25.850075249861565,
61.89064466006256
],
[
25.793981817963587,
61.892322574406926
],
[
25.75164191007761,
61.84953531010222
],
[
25.596409733506945,
61.839518897594864
],
[
25.44261259544152,
61.93146419471431
],
[
25.335614125588744,
61.95082537136602
],
[
25.371185273626818,
62.005976731515375
],
[
25.260780348718114,
62.04834872311368
],
[
25.34769121842788,
62.109785149626845
],
[
25.28521259874794,
62.15236215544774
],
[
25.469887648978624,
62.324485484088946
],
[
25.408210587986723,
62.34043784772776
],
[
25.299929903725804,
62.35580184494647
],
[
25.285410892037767,
62.389180684493205
],
[
25.489850511213746,
62.397620927072516
],
[
25.579133273671573,
62.4287455718501
],
[
25.718846385409176,
62.39244480551582
],
[
25.84230844310599,
62.36847455715768
],
[
25.81670467009386,
62.30559548965363
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Jämijärvi",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.738728763065744,
61.91064382786737
],
[
22.788185038433845,
61.87062565750905
],
[
22.800425595997556,
61.84660565255988
],
[
22.82842184150258,
61.81521814839139
],
[
22.786365113586765,
61.75533595165856
],
[
22.693701636182514,
61.73776616271796
],
[
22.54424010782937,
61.80228726757437
],
[
22.516369511893,
61.897697676825835
],
[
22.64664346260216,
61.952107505000235
],
[
22.738728763065744,
61.91064382786737
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Jämsä",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.596409733506945,
61.839518897594864
],
[
25.535220960617686,
61.77955938686043
],
[
25.41226481470282,
61.75525654455449
],
[
25.372843983168053,
61.71307431919751
],
[
25.014742552185524,
61.7752017271657
],
[
24.913461536802373,
61.70647529572533
],
[
24.960334465627454,
61.630652656699255
],
[
24.812033976710975,
61.660023706146504
],
[
24.735950995139206,
61.69376296754666
],
[
24.724470398186256,
61.749016468404484
],
[
24.820712831514218,
61.77013395884482
],
[
24.666651269867305,
61.86298950628995
],
[
24.524644005308772,
61.90933334435215
],
[
24.621260753825364,
61.992534457442964
],
[
24.73091347612382,
62.02319174960274
],
[
24.87791366374409,
62.05890145854508
],
[
24.82904278579817,
62.112530375182956
],
[
24.968808154789652,
62.21080123649752
],
[
25.118260964067236,
62.16379167361145
],
[
25.28521259874794,
62.15236215544774
],
[
25.34769121842788,
62.109785149626845
],
[
25.260780348718114,
62.04834872311368
],
[
25.371185273626818,
62.005976731515375
],
[
25.335614125588744,
61.95082537136602
],
[
25.44261259544152,
61.93146419471431
],
[
25.596409733506945,
61.839518897594864
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Järvenpää",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.169302162733377,
60.50623127538346
],
[
25.180708619355336,
60.460857264245284
],
[
25.04445940463107,
60.44756105503335
],
[
25.030989625318096,
60.51208377481427
],
[
25.128145904173874,
60.528528653021695
],
[
25.169302162733377,
60.50623127538346
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kaarina",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.607480327837038,
60.38184337031898
],
[
22.54299913670399,
60.34672375394998
],
[
22.436951865830196,
60.353439177100185
],
[
22.4237831921889,
60.3769576032792
],
[
22.31122339702153,
60.362114909532835
],
[
22.27421596913925,
60.40261757684261
],
[
22.36299512446281,
60.43006002595974
],
[
22.365284915856165,
60.47831297539132
],
[
22.43337013889797,
60.452671068123834
],
[
22.578785066304636,
60.4950741130653
],
[
22.607480327837038,
60.38184337031898
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kaavi",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.097602163511812,
62.845589545324984
],
[
28.96622919899988,
62.80299678805948
],
[
28.930527122959866,
62.774626232065074
],
[
28.790093251519092,
62.83379656114365
],
[
28.74441184985887,
62.81237694965378
],
[
28.658105479560287,
62.885199860221704
],
[
28.385947343170464,
62.96386093945374
],
[
28.465034315778137,
63.015475218408696
],
[
28.39794397186742,
63.052291297517804
],
[
28.471539199044347,
63.10735347671374
],
[
28.762386834186053,
63.13671545467783
],
[
28.861020865651835,
63.057029700990014
],
[
29.06483865500969,
62.98657331123877
],
[
28.971774147027407,
62.958758829610616
],
[
28.97322664331757,
62.91080545897496
],
[
29.097602163511812,
62.845589545324984
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kajaani",
"parent": "Kainuu"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.13283889017708,
64.31714503827646
],
[
27.796785506925335,
64.16240601450018
],
[
27.83145873623581,
64.04426883251054
],
[
28.06543448443938,
63.903522137678884
],
[
27.92632096669212,
63.84457009113704
],
[
27.540596774381534,
63.95643279918476
],
[
27.44949428981902,
63.944381160526355
],
[
27.119271141807904,
63.99077938048499
],
[
26.870402194524914,
64.03697383279663
],
[
26.781108999649764,
64.05710016383861
],
[
26.77087094547036,
64.21602350653131
],
[
26.767499642680935,
64.26516554083855
],
[
26.817625699320566,
64.29878170737322
],
[
26.941675378784453,
64.32706501498394
],
[
27.040635951973382,
64.29209373265546
],
[
27.187766414503624,
64.31032381408755
],
[
27.427016363595126,
64.29289060896437
],
[
27.792932764750752,
64.36517011698815
],
[
28.13283889017708,
64.31714503827646
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kalajoki",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.984469053964762,
64.37701512055027
],
[
24.264593123138543,
64.31210613128678
],
[
24.287705378030502,
64.30009422474612
],
[
24.19983772632729,
64.24955816190577
],
[
24.264655085848098,
64.20980086310531
],
[
24.137082252368174,
64.19138535287361
],
[
24.346336184809278,
64.0415162968083
],
[
24.306638460495336,
64.02212085314284
],
[
24.127078414766828,
63.982785362329125
],
[
24.087077688228053,
64.0711450075463
],
[
23.970442744993218,
64.09526557552714
],
[
23.87961013414484,
64.01240788731852
],
[
23.74614529628761,
63.97373192977788
],
[
23.49220196228811,
64.10715804956716
],
[
22.778900492706452,
64.1789731326456
],
[
22.961152930493693,
64.2200973458136
],
[
22.984629729018792,
64.34328885341351
],
[
23.003181396399434,
64.39163758257914
],
[
23.055380710739318,
64.44088186177086
],
[
23.140053933743303,
64.48346646468895
],
[
23.984469053964762,
64.37701512055027
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kangasala",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.245113418958905,
61.568250229903796
],
[
24.319291757836115,
61.58499925941233
],
[
24.348445842827864,
61.555345662304575
],
[
24.625636260264457,
61.51374196426173
],
[
24.736994639136377,
61.52574770712342
],
[
24.744850729803044,
61.56590228332034
],
[
24.82834265042949,
61.55343086447705
],
[
24.945434647662093,
61.53903262974283
],
[
24.97048058272434,
61.45070381560233
],
[
24.85995270335879,
61.475977759282216
],
[
24.781801392842308,
61.49100671745091
],
[
24.729095877344793,
61.445853764408945
],
[
24.449114007262587,
61.41443592444401
],
[
24.28197906510681,
61.43813152867347
],
[
24.286852594481132,
61.40008734307105
],
[
24.079139117954103,
61.33048362797323
],
[
23.957771294730385,
61.33134860479687
],
[
23.890192527315477,
61.427368437483956
],
[
24.11851674326715,
61.62719129079597
],
[
24.245113418958905,
61.568250229903796
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kangasniemi",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.71858018526519,
62.257034480919124
],
[
26.69786131091693,
62.21244346950788
],
[
26.852738039496327,
62.128900947031546
],
[
26.831494344447368,
62.075425709749126
],
[
26.874503027221664,
62.044706957603914
],
[
26.972759247534757,
62.0392026619815
],
[
27.126573915844702,
61.9637071141741
],
[
26.98265662600474,
61.9023811510728
],
[
26.94218015155923,
61.922251515470485
],
[
26.86638332580752,
61.901255505710104
],
[
26.832212428415843,
61.85030537948557
],
[
26.711780012487278,
61.82565149153436
],
[
26.632918993941875,
61.79994296034398
],
[
26.606027849229694,
61.85854134636985
],
[
26.530117468721773,
61.8438637798752
],
[
26.389102414177504,
61.85415260978596
],
[
26.378090098498127,
61.88306759838885
],
[
26.324292213692846,
61.88003396706758
],
[
26.330064778432845,
61.94046241312283
],
[
26.414590347115293,
61.97288552576223
],
[
26.331673524660186,
62.03678926031897
],
[
26.220722544400918,
62.11856169379799
],
[
26.315948111866824,
62.20047067851031
],
[
26.43786296755812,
62.21979878721525
],
[
26.544033921205152,
62.26562675591812
],
[
26.614092408363696,
62.21705980479393
],
[
26.631160015090284,
62.27696267433735
],
[
26.68316055557062,
62.30772635258236
],
[
26.71858018526519,
62.257034480919124
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kankaanpää",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.64664346260216,
61.952107505000235
],
[
22.516369511893,
61.897697676825835
],
[
22.54424010782937,
61.80228726757437
],
[
22.693701636182514,
61.73776616271796
],
[
22.691008642728388,
61.702547178880614
],
[
22.647174002892154,
61.69650126502768
],
[
22.556169269923092,
61.68606674207458
],
[
22.382677395321963,
61.70936337013331
],
[
22.298418178786175,
61.75678167003111
],
[
22.19171265295253,
61.74081779925222
],
[
22.163665879225135,
61.772257058201696
],
[
22.0875205791881,
61.78265935529447
],
[
22.03485512383449,
61.80434151806233
],
[
22.175435158001505,
61.87883899289541
],
[
22.138185065474573,
61.89626875016006
],
[
22.15353464446419,
61.92135861250021
],
[
22.250768392657175,
61.91623856660365
],
[
22.354819104915126,
62.0023377088155
],
[
22.433171556314456,
62.01321333655129
],
[
22.522595370590526,
61.99810584709524
],
[
22.64664346260216,
61.952107505000235
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kannonkoski",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.530450450815444,
63.033459455177116
],
[
25.519467077921153,
62.98743294699637
],
[
25.586666318109565,
62.95982849459594
],
[
25.68306104125845,
62.95458949849035
],
[
25.707689806892965,
62.92074287156468
],
[
25.57111871182723,
62.85926780156143
],
[
25.53452201354562,
62.90604022893137
],
[
25.467251332706045,
62.90849061231115
],
[
25.300406461035305,
62.8184639410972
],
[
25.180259050774854,
62.875933080410064
],
[
25.188951050589072,
62.92496113549602
],
[
25.06591814719295,
62.9451178032558
],
[
25.052486662130242,
63.007888336476164
],
[
25.158975064567034,
63.03301835250302
],
[
25.159837949039442,
63.08041084826916
],
[
25.375094856512824,
63.09926922331081
],
[
25.530450450815444,
63.033459455177116
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kannus",
"parent": "Keski-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.087077688228053,
64.0711450075463
],
[
24.127078414766828,
63.982785362329125
],
[
24.247452259357917,
63.87694948301354
],
[
24.110831256702077,
63.87126211180433
],
[
24.016525502281898,
63.8317601356087
],
[
23.98521393999945,
63.75625525331907
],
[
23.80832577625513,
63.86518829648324
],
[
23.71085498349529,
63.90754631289112
],
[
23.74614529628761,
63.97373192977788
],
[
23.87961013414484,
64.01240788731852
],
[
23.970442744993218,
64.09526557552714
],
[
24.087077688228053,
64.0711450075463
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Karijoki",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.875631099174928,
62.36189663017597
],
[
21.9389813362541,
62.26043403315063
],
[
21.831829168424605,
62.28439143443919
],
[
21.825793323257034,
62.23167526088664
],
[
21.767510211722563,
62.22268327756406
],
[
21.672860380960927,
62.260112772395146
],
[
21.686571971015262,
62.355213698532594
],
[
21.558793060410075,
62.3577817642733
],
[
21.5541301104659,
62.42429873837683
],
[
21.875631099174928,
62.36189663017597
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Karkkila",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.23726372569462,
60.6180660462518
],
[
24.28538666866718,
60.56541060917438
],
[
24.347723543549947,
60.61215372244201
],
[
24.40325496976645,
60.59562135031032
],
[
24.423680353450436,
60.55249148066438
],
[
24.46490446861622,
60.504066319156316
],
[
24.2880674073535,
60.4754655743215
],
[
24.171254162864063,
60.48473818331299
],
[
23.9713267300057,
60.63820101408995
],
[
24.046748246518096,
60.64232451140095
],
[
24.23726372569462,
60.6180660462518
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Karstula",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.026838781773694,
63.046331995250576
],
[
25.052486662130242,
63.007888336476164
],
[
25.06591814719295,
62.9451178032558
],
[
25.188951050589072,
62.92496113549602
],
[
25.180259050774854,
62.875933080410064
],
[
25.300406461035305,
62.8184639410972
],
[
25.17294000290965,
62.79869041418783
],
[
25.036633625473463,
62.86230245998095
],
[
24.931239946516314,
62.81858072038899
],
[
24.947916073767264,
62.78576435851505
],
[
24.90022251870819,
62.74321220452121
],
[
24.822516783052762,
62.79027735453163
],
[
24.504238561717493,
62.71043046399901
],
[
24.341976292488166,
62.8592589364602
],
[
24.448430222846895,
62.87098972297024
],
[
24.433996365323214,
62.90784414028393
],
[
24.342973518828288,
62.91771610577935
],
[
24.348219727984038,
62.96369854426831
],
[
24.445884788316555,
62.96086011606055
],
[
24.51324929958861,
62.94167607937778
],
[
24.604810272006542,
62.997912043365204
],
[
24.709078740087058,
62.98405555727033
],
[
24.88165794257854,
63.04573136175599
],
[
25.026838781773694,
63.046331995250576
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Karvia",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.780240238608897,
62.06072361543262
],
[
22.522595370590526,
61.99810584709524
],
[
22.433171556314456,
62.01321333655129
],
[
22.449847485502623,
62.03175289302314
],
[
22.419814139619707,
62.063513769585306
],
[
22.44541197818572,
62.10954318225557
],
[
22.373688389136014,
62.142448106675786
],
[
22.450427096423727,
62.19845867747174
],
[
22.524828678718155,
62.210192801108576
],
[
22.59174815911839,
62.311125803549544
],
[
22.634251817098146,
62.300871417771695
],
[
22.83125226399381,
62.27088364900686
],
[
22.861626435316804,
62.17255600282963
],
[
22.770893533828417,
62.15439456996235
],
[
22.780240238608897,
62.06072361543262
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kaskinen",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.132276442409676,
62.28269160015419
],
[
20.711045180570135,
62.24780595453498
],
[
20.69171281704624,
62.2974971043024
],
[
21.098625738221337,
62.34022419019565
],
[
21.2531259744342,
62.42620036036161
],
[
21.341725432471538,
62.393456430312085
],
[
21.132276442409676,
62.28269160015419
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kauhajoki",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.641897498862914,
62.411718554637424
],
[
22.634251817098146,
62.300871417771695
],
[
22.59174815911839,
62.311125803549544
],
[
22.524828678718155,
62.210192801108576
],
[
22.450427096423727,
62.19845867747174
],
[
22.373688389136014,
62.142448106675786
],
[
22.320064019944578,
62.1031056774879
],
[
22.198721517842944,
62.10333594763143
],
[
22.1753379865869,
62.15240712738286
],
[
21.9389813362541,
62.26043403315063
],
[
21.875631099174928,
62.36189663017597
],
[
22.041523988817293,
62.541444594812795
],
[
22.2920231472263,
62.53184929604095
],
[
22.364155536204812,
62.49254833663282
],
[
22.5813996568762,
62.46766494213363
],
[
22.641897498862914,
62.411718554637424
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kauhava",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.225533823729844,
63.34286904789055
],
[
23.443462351396857,
63.281774977325405
],
[
23.37754392920151,
63.228108853737496
],
[
23.3146136797918,
63.20081468990598
],
[
23.404237442778438,
63.1660274889114
],
[
23.454826917227535,
63.063307329707435
],
[
23.35339437936058,
63.027302557504015
],
[
23.05207483563257,
63.02969647793608
],
[
22.896909658818295,
63.07351363497591
],
[
22.78411600313601,
63.03792380752572
],
[
22.6762298874263,
63.08386002723173
],
[
22.63165211057555,
63.10191750538556
],
[
22.650473871540793,
63.15331134979266
],
[
22.60662731196059,
63.17731906856764
],
[
22.597178539724645,
63.21315730030376
],
[
22.574634526803333,
63.25581443582326
],
[
22.61655978901095,
63.2820480393565
],
[
22.735608380316545,
63.35895933838053
],
[
22.94525978297841,
63.32827661831768
],
[
22.971599682451753,
63.37226563556848
],
[
23.10395795345943,
63.35798812082679
],
[
23.207039643873753,
63.398961426904634
],
[
23.225533823729844,
63.34286904789055
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kauniainen",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.791770494233525,
60.221232455607506
],
[
24.757043677257478,
60.18758909698072
],
[
24.69337773922057,
60.18933016781032
],
[
24.667408516735918,
60.20776804875412
],
[
24.66105652507189,
60.23032700847296
],
[
24.725588487647045,
60.2446735068576
],
[
24.791770494233525,
60.221232455607506
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kaustinen",
"parent": "Keski-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.098946787361378,
63.57705505305615
],
[
24.040818042479273,
63.52154144491374
],
[
23.94297191654395,
63.497870501596196
],
[
23.859069969540744,
63.53157104382945
],
[
23.65776813388026,
63.48297283571017
],
[
23.587226599384895,
63.57032863858177
],
[
23.490964512975385,
63.58637531223512
],
[
23.422407213562227,
63.61601354619621
],
[
23.468827340199837,
63.6616080441418
],
[
23.58294448322286,
63.64972467853463
],
[
23.744081227745255,
63.67543699310366
],
[
24.098946787361378,
63.57705505305615
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Keitele",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.622740793498956,
63.02031845867719
],
[
26.543630671842223,
62.99881354260843
],
[
26.33427411387749,
63.03508948476569
],
[
26.218936319665005,
63.089625662889524
],
[
26.16351306177785,
63.14704119499248
],
[
26.14189094724279,
63.274704395740855
],
[
26.128811456201806,
63.330200742646305
],
[
26.07054060654935,
63.3547797419207
],
[
26.176711920224694,
63.43886160812046
],
[
26.41925001399074,
63.26038788286246
],
[
26.493426492708736,
63.112126518375376
],
[
26.606840318940815,
63.04207093817929
],
[
26.622740793498956,
63.02031845867719
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kemi",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.7474121200751,
65.69503725290205
],
[
24.650934032892213,
65.64406840049992
],
[
24.472268768654487,
65.45627691226606
],
[
24.15016469660224,
65.33728790379293
],
[
24.13301980682984,
65.51269046710263
],
[
24.131929238872303,
65.51541374053456
],
[
24.159751002143988,
65.6128100204238
],
[
24.43619311099154,
65.7671634447421
],
[
24.566992395030827,
65.78995819761566
],
[
24.66352644218266,
65.76509781974067
],
[
24.7474121200751,
65.69503725290205
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kemijärvi",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.13861959337652,
66.43186351929599
],
[
27.981952494621304,
66.41940300356546
],
[
27.792954315603232,
66.43218343706529
],
[
27.59596356527379,
66.40094267183709
],
[
27.414663220564194,
66.28906765570898
],
[
27.24984879607299,
66.33199293711307
],
[
27.123526705910212,
66.3668348755905
],
[
26.6975452099436,
66.57459397653854
],
[
26.655724601167634,
66.82203699267963
],
[
26.517973570018743,
66.94292424980955
],
[
27.14817506882804,
67.01381474993107
],
[
27.584586588025346,
67.00715720835987
],
[
27.685151890927695,
66.97888006384284
],
[
27.88160214883602,
66.8859098467001
],
[
27.942776676725426,
66.77626432078314
],
[
28.064575052880002,
66.70354348192451
],
[
28.15613630296618,
66.69771702607858
],
[
28.19192026983768,
66.62676934952064
],
[
28.075159055014062,
66.50141134504831
],
[
28.13861959337652,
66.43186351929599
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Keminmaa",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.50955570400758,
66.03044288250152
],
[
24.71416211967168,
65.9624177231139
],
[
25.040046836041554,
65.9746975989419
],
[
25.225674784290337,
65.9615313663275
],
[
25.166241655902354,
65.90403363496296
],
[
24.96627245045685,
65.82571044225901
],
[
24.91328985942939,
65.74851688662214
],
[
24.834890245656272,
65.7425076566352
],
[
24.7474121200751,
65.69503725290205
],
[
24.66352644218266,
65.76509781974067
],
[
24.566992395030827,
65.78995819761566
],
[
24.43619311099154,
65.7671634447421
],
[
24.525151636611188,
65.8614215313055
],
[
24.50955570400758,
66.03044288250152
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kemiönsaari",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.920419711426163,
60.250896538887645
],
[
22.85888479415244,
60.175301883853614
],
[
22.900520272362115,
60.13289967585295
],
[
22.833204581856602,
60.05420640559556
],
[
22.801316717314513,
60.0253749161876
],
[
22.814285694377972,
59.87758190842406
],
[
22.658921499896163,
59.61100376501234
],
[
22.39653633536827,
59.51309276453475
],
[
22.09808736176567,
59.50107387870316
],
[
22.066448432879234,
59.70936684187345
],
[
21.99075346629216,
59.8950802198172
],
[
22.171412524358626,
59.968389212727914
],
[
22.171319240202305,
60.036023802012856
],
[
22.265250937473986,
60.110960250459414
],
[
22.33855123364091,
60.116577004558614
],
[
22.446140328935403,
60.246971145846175
],
[
22.54466094678686,
60.21005941871707
],
[
22.854959564598023,
60.2614429676086
],
[
22.920419711426163,
60.250896538887645
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kempele",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.728301485724675,
64.90445548018992
],
[
25.65533911359413,
64.84684728876171
],
[
25.555334113719823,
64.84887300672708
],
[
25.44509475757762,
64.89238902463212
],
[
25.425698479668604,
64.92156913626249
],
[
25.494239626435892,
64.94298952588731
],
[
25.61397235980966,
64.94108154227935
],
[
25.728301485724675,
64.90445548018992
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kerava",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.17283853693059,
60.35661064929543
],
[
25.056011590944298,
60.37590646298717
],
[
25.051492427750603,
60.425932930389585
],
[
25.176826043484365,
60.4410857413326
],
[
25.17283853693059,
60.35661064929543
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Keuruu",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.58601049400613,
62.454179867463765
],
[
24.6169906259077,
62.429025703216396
],
[
24.714229737819522,
62.35563378407383
],
[
24.741696754520976,
62.32742320402196
],
[
24.870688433343922,
62.349876414274405
],
[
24.902236047099226,
62.31583966149383
],
[
25.068965728197682,
62.33205985422405
],
[
25.071853945740802,
62.23802538575506
],
[
24.968808154789652,
62.21080123649752
],
[
24.82904278579817,
62.112530375182956
],
[
24.87791366374409,
62.05890145854508
],
[
24.73091347612382,
62.02319174960274
],
[
24.56019641231939,
62.18565007577623
],
[
24.498211629500812,
62.197101809856214
],
[
24.427472390033596,
62.15270449342711
],
[
24.33594797454425,
62.16803968365219
],
[
24.21129189782857,
62.25232617496253
],
[
24.080775274560754,
62.27640519264514
],
[
24.01300320898738,
62.3633263711646
],
[
24.201285133339336,
62.4826581442583
],
[
24.28449508318794,
62.451250365976385
],
[
24.330883234245256,
62.49116716617071
],
[
24.44345008692607,
62.484225927444726
],
[
24.5305679210293,
62.528407842952014
],
[
24.58601049400613,
62.454179867463765
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kihniö",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.424002088599636,
62.15811033354085
],
[
23.35918707690713,
62.14311263199709
],
[
23.29520839535918,
62.08294407625678
],
[
23.14111085391748,
62.08266510783552
],
[
22.994363772710884,
62.28890401573873
],
[
23.14451822758734,
62.319197947176455
],
[
23.217823352546738,
62.334166699292666
],
[
23.424002088599636,
62.15811033354085
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kinnula",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.333469424015604,
63.28431229966047
],
[
25.309317624084755,
63.27865420656208
],
[
24.98516567846729,
63.231559762663565
],
[
24.85682609083098,
63.240281719661866
],
[
24.80360264332187,
63.27593050755667
],
[
24.77292096719699,
63.35868411607549
],
[
24.90246952096805,
63.43123386549212
],
[
25.036315554646627,
63.45807317068062
],
[
25.081871553936566,
63.46716818617796
],
[
25.333469424015604,
63.28431229966047
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kirkkonummi",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.515568815751305,
60.28129151887541
],
[
24.5032007433187,
60.21286290906278
],
[
24.626771404540786,
60.14928013118474
],
[
24.67588797343993,
60.06814167864427
],
[
24.728563123402118,
60.0197301078405
],
[
24.831663633514527,
59.90108720515753
],
[
24.490603284746776,
59.8181577680512
],
[
24.281589361173396,
59.79156621133889
],
[
24.28140217798758,
59.95521801629913
],
[
24.31628209448747,
60.022494931942205
],
[
24.361533769629183,
60.07935718477356
],
[
24.29280690604569,
60.18979051919383
],
[
24.34248577093407,
60.24619821297415
],
[
24.417777472528112,
60.294140602078514
],
[
24.515568815751305,
60.28129151887541
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kitee",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
30.20899932503205,
62.15667047659446
],
[
30.3011828369835,
62.128805733045205
],
[
30.40461144637006,
62.07051732616291
],
[
30.483086874010986,
62.063843942730095
],
[
30.30978203995746,
61.95463483075937
],
[
30.30074225370642,
61.934970987322885
],
[
30.26387336771517,
61.92660941224931
],
[
30.143957436061683,
61.852242214781576
],
[
30.082417589864573,
61.853209043372956
],
[
29.55927163880038,
61.7220728044556
],
[
29.6758615463624,
61.79173975709584
],
[
29.696825626730423,
61.86439818578074
],
[
29.614863461535997,
61.913329084922076
],
[
29.66037252809042,
61.97689972833175
],
[
29.482333141387652,
62.05668658331433
],
[
29.42714621527863,
62.15838457706865
],
[
29.43008176329975,
62.236528971301276
],
[
29.61296840274265,
62.17526779203335
],
[
29.784169959963755,
62.1954108878952
],
[
29.951388615510336,
62.14611679898643
],
[
29.877744741183577,
62.21183651124385
],
[
30.005086545851793,
62.24430449895214
],
[
30.188092316926777,
62.23568249827303
],
[
30.20899932503205,
62.15667047659446
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kittilä",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.48561575909667,
67.30379951569662
],
[
25.350017390823425,
67.15128862116994
],
[
24.861994293491573,
67.17711906044086
],
[
24.736798652812862,
67.15191696854377
],
[
24.461845391670412,
67.34640306412496
],
[
24.272948741290058,
67.62685488036492
],
[
24.145248778732945,
67.92147463209224
],
[
24.210440157929934,
67.99088789315665
],
[
24.177114435047443,
68.03393123127972
],
[
24.19204329369398,
68.08625353306623
],
[
24.100774326850654,
68.09252902002528
],
[
24.106807114112947,
68.13894079180724
],
[
24.16015859234927,
68.14600062287954
],
[
24.445601258282025,
68.32059906242645
],
[
24.698577140270192,
68.38220246465778
],
[
25.027195746563052,
68.39528874685914
],
[
25.524749417681527,
68.31083905845108
],
[
25.97561956554279,
68.27757167763335
],
[
25.878393259663156,
68.0973641415427
],
[
26.00783951950857,
67.93879640590691
],
[
25.737833645229497,
67.54138010051291
],
[
25.76072945108226,
67.43416024037185
],
[
25.48561575909667,
67.30379951569662
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kiuruvesi",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.73363018797846,
63.848491801980394
],
[
26.73017899977908,
63.815210171139285
],
[
26.835611297142027,
63.81536857570769
],
[
26.826196256645417,
63.76771731030052
],
[
26.894741640193562,
63.695333596911055
],
[
26.82880660814769,
63.66681695887366
],
[
26.80300525248447,
63.58189850389362
],
[
26.824552515136386,
63.51640784167903
],
[
26.770814039884577,
63.46170358036997
],
[
26.69350492451615,
63.44351073024701
],
[
26.56261272222826,
63.450422196216415
],
[
26.462370240205384,
63.44342515640159
],
[
26.361651225484767,
63.47778727784759
],
[
26.165383150807433,
63.480861929333216
],
[
26.195212388391383,
63.56930275428687
],
[
26.29180374485319,
63.58994769144543
],
[
26.24343828592651,
63.84103548005324
],
[
26.559394743141567,
63.96368806767338
],
[
26.758669214506345,
63.88515872234528
],
[
26.73363018797846,
63.848491801980394
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kivijärvi",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.85682609083098,
63.240281719661866
],
[
24.98516567846729,
63.231559762663565
],
[
25.309317624084755,
63.27865420656208
],
[
25.315859344640575,
63.24247386884396
],
[
25.375094856512824,
63.09926922331081
],
[
25.159837949039442,
63.08041084826916
],
[
25.158975064567034,
63.03301835250302
],
[
25.052486662130242,
63.007888336476164
],
[
25.026838781773694,
63.046331995250576
],
[
24.88165794257854,
63.04573136175599
],
[
24.772883156821724,
63.13336361155502
],
[
24.754167639378114,
63.26591867876157
],
[
24.80360264332187,
63.27593050755667
],
[
24.85682609083098,
63.240281719661866
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kokemäki",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.599107829572574,
61.301979667313184
],
[
22.48034135448138,
61.170623258526724
],
[
22.27781934996161,
61.19399819857958
],
[
22.17620484291836,
61.251940624451116
],
[
22.12993946476303,
61.26511532123096
],
[
22.17135321079162,
61.28381869535055
],
[
22.22616525894104,
61.27854995687325
],
[
22.272024026649202,
61.35024246154946
],
[
22.205018623992856,
61.407397651110884
],
[
22.288593881460308,
61.419210601199886
],
[
22.434161862464983,
61.48892267202585
],
[
22.57423113820478,
61.39687892443938
],
[
22.559454252558393,
61.33091528450157
],
[
22.599107829572574,
61.301979667313184
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kokkola",
"parent": "Keski-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.49220196228811,
64.10715804956716
],
[
23.74614529628761,
63.97373192977788
],
[
23.71085498349529,
63.90754631289112
],
[
23.80832577625513,
63.86518829648324
],
[
23.98521393999945,
63.75625525331907
],
[
24.22769725170087,
63.64736733860811
],
[
24.330819338667663,
63.60109374278579
],
[
24.408546737368308,
63.56600473181805
],
[
24.46686406277122,
63.52539245267833
],
[
24.321199546331258,
63.499110377587435
],
[
24.098946787361378,
63.57705505305615
],
[
23.744081227745255,
63.67543699310366
],
[
23.47764038039563,
63.779130025470565
],
[
23.44434057332208,
63.73722165841719
],
[
23.336351950403998,
63.761274459634386
],
[
23.24839665410445,
63.71692162627596
],
[
23.011294826734986,
63.79171026273888
],
[
22.92153612648648,
63.775112482971004
],
[
22.886801595267052,
63.81255347775224
],
[
22.749098205027515,
63.94763125016336
],
[
22.287878839136997,
64.00938556010786
],
[
22.367821580132013,
64.05826886923414
],
[
22.455042390261998,
64.09379365694572
],
[
22.572957832632422,
64.13199258856733
],
[
22.778900492706452,
64.1789731326456
],
[
23.49220196228811,
64.10715804956716
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kolari",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.736798652812862,
67.15191696854377
],
[
24.870206405872707,
66.93787714071286
],
[
24.158750140379368,
67.00952261469143
],
[
23.7843836068018,
66.996929396033
],
[
23.738789574239007,
67.0177016621106
],
[
23.674057554003234,
67.06453831750733
],
[
23.65675386280976,
67.10151009313454
],
[
23.553188860656295,
67.17137051991244
],
[
23.595865390087013,
67.20781828941496
],
[
23.546260358292965,
67.22518793217492
],
[
23.575282493257006,
67.26836409125518
],
[
23.72000445174881,
67.28232730930691
],
[
23.766952702183502,
67.33305402264764
],
[
23.717052986902203,
67.3862044946387
],
[
23.764581664683202,
67.42821431532933
],
[
23.692447383522534,
67.44407626414795
],
[
23.540489905675166,
67.46104489477649
],
[
24.065584029037584,
67.6355335614506
],
[
24.272948741290058,
67.62685488036492
],
[
24.461845391670412,
67.34640306412496
],
[
24.736798652812862,
67.15191696854377
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Konnevesi",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.151774059576045,
62.84684100925587
],
[
26.356160937667056,
62.74740990463624
],
[
26.446560232981774,
62.78917312534236
],
[
26.598386281160533,
62.61077257947533
],
[
26.483215272611602,
62.53236422842547
],
[
26.400079595058386,
62.506179210027234
],
[
26.213726277764806,
62.57815399614699
],
[
26.218668363128636,
62.49106802583329
],
[
26.14014226140268,
62.489475769829404
],
[
26.0359597397263,
62.583585821635694
],
[
26.110477091588965,
62.60561077272148
],
[
26.233764236135777,
62.678368478351395
],
[
26.136065472669657,
62.711404842566054
],
[
26.134756838817765,
62.76025858419112
],
[
26.066600568685782,
62.77907125146926
],
[
26.024797321459157,
62.825363068634836
],
[
26.151774059576045,
62.84684100925587
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kontiolahti",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
30.28800486538119,
62.63255845367999
],
[
30.20111582114519,
62.59374483641486
],
[
30.110900192304808,
62.6086597381975
],
[
29.943092961535363,
62.566243850426204
],
[
29.900650499154008,
62.62814602149153
],
[
29.748501871204027,
62.63194607856982
],
[
29.637207991895906,
62.65452939931037
],
[
29.584799067002294,
62.721465506752
],
[
29.563226547265565,
62.793229707081174
],
[
29.647924078467632,
62.8067611787647
],
[
29.723254707093812,
62.8470240675225
],
[
29.663291800540936,
62.865748851578466
],
[
29.667767462745108,
62.90447858372912
],
[
29.60567231089693,
62.96848722885659
],
[
29.737811620824456,
63.00553101763303
],
[
29.78716388947024,
63.0514983979852
],
[
29.864786990805356,
63.065751852091005
],
[
29.95997003195735,
63.019549923123385
],
[
29.948066191501137,
62.88396174127954
],
[
30.03812071856168,
62.77978878036445
],
[
30.193002721624556,
62.72606341221436
],
[
30.28800486538119,
62.63255845367999
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Korsnäs",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.37440668430879,
62.75787328461822
],
[
21.296557204193384,
62.669039431098724
],
[
21.16410094842319,
62.690605469220074
],
[
20.466031678562494,
62.65618865731428
],
[
20.40461290671011,
62.74309159499951
],
[
20.300178224437428,
62.930016646475345
],
[
21.24005545440502,
62.93952903019625
],
[
21.371595249916666,
62.83587285156612
],
[
21.302503237898318,
62.810025493320715
],
[
21.37440668430879,
62.75787328461822
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Koski Tl",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.25769555054539,
60.627865114769
],
[
23.20777017619082,
60.585697706259126
],
[
23.10071716949097,
60.57352904821074
],
[
22.965244304809815,
60.71085625455865
],
[
23.03171424513432,
60.69880732572769
],
[
23.154615351559784,
60.77416823699695
],
[
23.25769555054539,
60.627865114769
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kotka",
"parent": "Kymenlaakso"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.827396391297057,
60.6447752943953
],
[
26.882100212431478,
60.636349213053926
],
[
26.922136412968754,
60.64855294749256
],
[
27.028502694906617,
60.6045130532931
],
[
27.009284701217712,
60.5495563480388
],
[
27.062690586434528,
60.474603768799895
],
[
27.111592423165504,
60.4430219403642
],
[
27.118457386981046,
60.406466433641114
],
[
27.248765410774933,
60.35874943600751
],
[
27.466446137057726,
60.22940452814421
],
[
27.45671508822287,
60.22327752659052
],
[
27.29311822274011,
60.200211972168105
],
[
26.875334064624905,
60.2003359585126
],
[
26.839680469480655,
60.47485933621289
],
[
26.753882629017703,
60.57570973161675
],
[
26.78669465311604,
60.604519112379215
],
[
26.7411326171269,
60.65627086080209
],
[
26.781605479442444,
60.673502917313506
],
[
26.827396391297057,
60.6447752943953
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kouvola",
"parent": "Kymenlaakso"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.67110156532801,
61.24359057040124
],
[
26.661317791706036,
61.20687902162881
],
[
26.852307263644246,
61.283686719295275
],
[
26.920758582575374,
61.225749317502256
],
[
26.91213304448686,
61.18316152601422
],
[
27.03116750114162,
61.152061287446465
],
[
27.205820105829734,
61.16247138726633
],
[
27.228489977819578,
61.090202259791674
],
[
27.150648631354034,
61.06229346543177
],
[
27.141153440474188,
61.01054786604509
],
[
27.241662127778692,
60.973185459485585
],
[
27.136110474356173,
60.95124724200552
],
[
27.213224321664107,
60.9040498622964
],
[
27.324513639292388,
60.88934870147451
],
[
27.42835969891217,
60.84264003741156
],
[
27.292644669829112,
60.82200122440741
],
[
27.225272961089143,
60.760397319113586
],
[
27.124651148758794,
60.77686263979184
],
[
27.103117334156412,
60.68554578502138
],
[
26.922136412968754,
60.64855294749256
],
[
26.882100212431478,
60.636349213053926
],
[
26.827396391297057,
60.6447752943953
],
[
26.781605479442444,
60.673502917313506
],
[
26.7411326171269,
60.65627086080209
],
[
26.78669465311604,
60.604519112379215
],
[
26.753882629017703,
60.57570973161675
],
[
26.682763889321166,
60.64929362822725
],
[
26.597278764294444,
60.64141045439376
],
[
26.54178379622185,
60.57500645546376
],
[
26.4584532378892,
60.63908207955472
],
[
26.458384887283515,
60.63909579167297
],
[
26.347227848660708,
60.661333387126064
],
[
26.347227279200467,
60.66133350107295
],
[
26.347129076052344,
60.661353089677476
],
[
26.347104681241277,
60.66135796288652
],
[
26.347094393369467,
60.661377234818055
],
[
26.347002577451192,
60.66154942893114
],
[
26.30013052041372,
60.749205582727534
],
[
26.30014194627122,
60.74920742008863
],
[
26.374424663336487,
60.76110865436859
],
[
26.37885633590844,
60.805536923680066
],
[
26.51139239373177,
60.84061530987131
],
[
26.544968246849034,
60.883818679890936
],
[
26.504357973955532,
61.00979604927235
],
[
26.386341378744056,
61.027745847356236
],
[
26.346189756470096,
61.00047107266803
],
[
26.265810974984092,
61.011660486119204
],
[
26.26731883694171,
61.06982683210103
],
[
26.310965913534556,
61.10665471279228
],
[
26.234450451468998,
61.13000429396163
],
[
26.38547765057158,
61.18813785820796
],
[
26.42497012531653,
61.251502835755666
],
[
26.513662871661026,
61.27432639637527
],
[
26.63379943179411,
61.28714635495837
],
[
26.67110156532801,
61.24359057040124
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kristiinankaupunki",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.282184529874232,
61.94444640692086
],
[
20.82916211229922,
61.92167188200882
],
[
20.72811268229396,
62.20378696352818
],
[
21.14874794146371,
62.23862033874657
],
[
21.5541301104659,
62.42429873837683
],
[
21.558793060410075,
62.3577817642733
],
[
21.686571971015262,
62.355213698532594
],
[
21.672860380960927,
62.260112772395146
],
[
21.767510211722563,
62.22268327756406
],
[
21.641700400740035,
62.149443113815266
],
[
21.647847941549546,
62.019585020601276
],
[
21.42663977098412,
62.0095850196397
],
[
21.282184529874232,
61.94444640692086
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kruunupyy",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.24839665410445,
63.71692162627596
],
[
23.336351950403998,
63.761274459634386
],
[
23.44434057332208,
63.73722165841719
],
[
23.47764038039563,
63.779130025470565
],
[
23.744081227745255,
63.67543699310366
],
[
23.58294448322286,
63.64972467853463
],
[
23.468827340199837,
63.6616080441418
],
[
23.422407213562227,
63.61601354619621
],
[
23.490964512975385,
63.58637531223512
],
[
23.587226599384895,
63.57032863858177
],
[
23.65776813388026,
63.48297283571017
],
[
23.69698894002367,
63.380320683201724
],
[
23.54396218225035,
63.46753421370062
],
[
23.392888589070726,
63.49804666143027
],
[
23.16308641159819,
63.638041451557406
],
[
22.9370027184434,
63.67572498606114
],
[
22.8296768558988,
63.73591121664796
],
[
22.92153612648648,
63.775112482971004
],
[
23.011294826734986,
63.79171026273888
],
[
23.24839665410445,
63.71692162627596
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kuhmo",
"parent": "Kainuu"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
30.05833878370532,
64.45088671240109
],
[
30.044866543720293,
64.40202861554185
],
[
30.083057096991034,
64.37671467952688
],
[
30.137176910350377,
64.35795596382195
],
[
30.2101503268958,
64.35046542480454
],
[
30.366936138014072,
64.29968791953792
],
[
30.360806860633733,
64.28131912080268
],
[
30.388276386151215,
64.26906907584811
],
[
30.48244076272697,
64.26232629847776
],
[
30.509600114064433,
64.221686836899
],
[
30.466367538099234,
64.20443120109746
],
[
30.48866803364928,
64.18016609643092
],
[
30.54832863583263,
64.13670348141142
],
[
30.553557623577014,
64.10168642187413
],
[
30.528019040702493,
64.04887639500085
],
[
30.447025719791686,
63.98277287493032
],
[
30.353574859647086,
63.9320897464252
],
[
30.320914354364437,
63.90953173204746
],
[
30.260414174560704,
63.82200933288273
],
[
29.97189358598915,
63.75716532802074
],
[
29.874664825866414,
63.749205658117106
],
[
29.775689020533093,
63.70335637386379
],
[
29.72268883780468,
63.74803148901187
],
[
29.68252613054818,
63.878942323778475
],
[
29.158309434997552,
63.84732694312728
],
[
29.211042315802306,
63.96473993179493
],
[
29.0493682350917,
64.0021982726862
],
[
28.89062831170348,
64.0985230986485
],
[
28.855774712168905,
64.22566193366397
],
[
28.751945844500508,
64.3102361088784
],
[
28.813443736390266,
64.34150413414086
],
[
28.83249565656044,
64.44626805994211
],
[
28.859837309382307,
64.49343277222424
],
[
29.025105602828063,
64.45786939239466
],
[
29.16328976039018,
64.45459729900972
],
[
29.416790954841268,
64.51989590214309
],
[
29.45945575510929,
64.56629124383322
],
[
29.50643682005986,
64.61572646943513
],
[
29.622286542871596,
64.63536361826218
],
[
29.98977175796118,
64.58714462423423
],
[
29.986956714565377,
64.5338970509151
],
[
30.028028244198392,
64.48969653613125
],
[
30.05833878370532,
64.45088671240109
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kuhmoinen",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.014742552185524,
61.7752017271657
],
[
25.372843983168053,
61.71307431919751
],
[
25.41226481470282,
61.75525654455449
],
[
25.535220960617686,
61.77955938686043
],
[
25.501333310993584,
61.67685863090883
],
[
25.49944506590699,
61.61850608236782
],
[
25.437427145203436,
61.48690614807831
],
[
24.97048058272434,
61.45070381560233
],
[
24.945434647662093,
61.53903262974283
],
[
24.82834265042949,
61.55343086447705
],
[
24.812033976710975,
61.660023706146504
],
[
24.960334465627454,
61.630652656699255
],
[
24.913461536802373,
61.70647529572533
],
[
25.014742552185524,
61.7752017271657
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kumlinge",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.482002573743852,
60.49673054324571
],
[
20.54270649782979,
60.46152119786861
],
[
20.611752440721286,
60.480254605316276
],
[
20.744396159720466,
60.45738733855482
],
[
20.812718090020404,
60.394559632999496
],
[
20.952269513492272,
60.38699738270193
],
[
20.98634188604269,
60.34957381947752
],
[
20.897718332380467,
60.26895589144779
],
[
20.902167795698197,
60.165348048398215
],
[
20.87609063587344,
60.11418479604205
],
[
20.812021768022117,
60.10748803200694
],
[
20.58745185404184,
60.208378687330594
],
[
20.63576313762484,
60.30778773511598
],
[
20.596339505659422,
60.371765167766604
],
[
20.45511505844724,
60.46648072989623
],
[
20.375321656097686,
60.46604089743253
],
[
20.373731284894337,
60.61179627619836
],
[
20.106102451522965,
60.762003678067046
],
[
20.201791712762486,
60.80257091260399
],
[
20.4693092919105,
60.65217551062218
],
[
20.482002573743852,
60.49673054324571
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kuopio",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.088413282867506,
63.403310726003085
],
[
28.165735933859303,
63.37977983427879
],
[
28.259382110625793,
63.385307269829916
],
[
28.269042163816817,
63.32873226177171
],
[
28.34042744770475,
63.32503512254138
],
[
28.358932785598192,
63.37425895612106
],
[
28.438887358951092,
63.35130930074883
],
[
28.448258150670977,
63.2726742037143
],
[
28.467468050401152,
63.246820420749245
],
[
28.549098899184138,
63.229345089631025
],
[
28.610804126705016,
63.20383531983483
],
[
28.698017486192416,
63.183109210498586
],
[
28.762386834186053,
63.13671545467783
],
[
28.471539199044347,
63.10735347671374
],
[
28.39794397186742,
63.052291297517804
],
[
28.465034315778137,
63.015475218408696
],
[
28.385947343170464,
62.96386093945374
],
[
28.33927169805317,
62.94599090754355
],
[
28.248952012411262,
62.94630883829409
],
[
28.299759827732284,
62.8976789315567
],
[
28.16669263429741,
62.87649902045923
],
[
28.230623194864542,
62.82375644286112
],
[
28.335099645330402,
62.81584208506152
],
[
28.2937522685979,
62.761267022286894
],
[
28.371299945336585,
62.702152564112616
],
[
28.312090518926205,
62.651528852001455
],
[
28.360788522831232,
62.61241983317558
],
[
28.243964576623526,
62.613598440681194
],
[
28.205272863373782,
62.64735550047233
],
[
27.937663235932675,
62.67130239421241
],
[
27.844262366568824,
62.66821758488463
],
[
27.482517654388023,
62.70579132755944
],
[
27.2757480457075,
62.7024402840462
],
[
27.11706001949149,
62.76327791605469
],
[
27.01197634552196,
62.75605258347252
],
[
26.90894654473224,
62.84994578428038
],
[
26.940105920752387,
62.915803504559136
],
[
26.895500491490804,
62.98903278506686
],
[
27.12556030674744,
63.00550355939072
],
[
26.9566165505212,
63.11769253707038
],
[
27.021238378646654,
63.1427701501197
],
[
27.049162336856437,
63.19318233005483
],
[
27.04555111584327,
63.23977258860491
],
[
27.123779539089586,
63.2551550052416
],
[
27.136988520460413,
63.3212241021394
],
[
27.18294852360809,
63.33021506619302
],
[
27.298623666490563,
63.29337653435201
],
[
27.35762679288573,
63.1731272980034
],
[
27.49279986457686,
63.18472323866022
],
[
27.52663204107277,
63.162166921793066
],
[
27.461775539052375,
63.119979506423164
],
[
27.51717994316519,
63.104150576530344
],
[
27.470012608795997,
63.06329431939671
],
[
27.35246306311625,
63.04901608519037
],
[
27.420223831641742,
62.99357980199535
],
[
27.528977095367182,
62.96624565090513
],
[
27.690486244462345,
62.97614790922302
],
[
27.83192954934296,
62.951872235393076
],
[
27.82400360732334,
62.993452044876996
],
[
27.909773310581883,
62.98158091988017
],
[
27.943250032808194,
63.00655602844113
],
[
27.83042179685474,
63.02233271043667
],
[
27.80268514923399,
63.05930275509772
],
[
27.886107308064677,
63.0821897727662
],
[
27.804363553806784,
63.14966183574114
],
[
27.817027181430284,
63.20668216898715
],
[
27.699954654083925,
63.25001373522911
],
[
27.82429134882713,
63.258786847147334
],
[
27.93849829357913,
63.30119704140533
],
[
28.088413282867506,
63.403310726003085
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kuortane",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.84704884167586,
62.762605898162136
],
[
23.760375642090157,
62.738505403299236
],
[
23.667462526163405,
62.751757565733605
],
[
23.54812975905757,
62.65117804894405
],
[
23.449050599793146,
62.65101076150568
],
[
23.27125520529793,
62.73573592732067
],
[
23.27892155417038,
62.774709386234555
],
[
23.380193573609336,
62.894475793271404
],
[
23.519471162094558,
62.919628295888245
],
[
23.84704884167586,
62.762605898162136
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kurikka",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.150151579137304,
62.71957700011853
],
[
22.66525850623007,
62.59985514896142
],
[
22.739314085928015,
62.62102318288632
],
[
22.857674720217126,
62.6342006243459
],
[
23.119171193217102,
62.409635392903986
],
[
23.14451822758734,
62.319197947176455
],
[
22.994363772710884,
62.28890401573873
],
[
22.83125226399381,
62.27088364900686
],
[
22.634251817098146,
62.300871417771695
],
[
22.641897498862914,
62.411718554637424
],
[
22.5813996568762,
62.46766494213363
],
[
22.364155536204812,
62.49254833663282
],
[
22.2920231472263,
62.53184929604095
],
[
22.041523988817293,
62.541444594812795
],
[
22.099622254681258,
62.605416383833095
],
[
21.969522010572916,
62.62330183962525
],
[
21.935965292566546,
62.586808508737555
],
[
21.79939859419432,
62.594268409677554
],
[
21.780108117270508,
62.62847221595821
],
[
21.662244560342923,
62.64004504085153
],
[
21.79096769351884,
62.69422480201799
],
[
21.72913831288168,
62.767665480649015
],
[
21.77206102008668,
62.86356416028021
],
[
21.85823629573712,
62.81178802371187
],
[
22.200677295791202,
62.75157420779531
],
[
22.150151579137304,
62.71957700011853
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kustavi",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.22914699286842,
60.70516236332403
],
[
21.3656174486445,
60.62417731654377
],
[
21.49717110433533,
60.558797517151895
],
[
21.53535306768109,
60.466410681078806
],
[
21.516815808599862,
60.43068456371715
],
[
21.445809675854964,
60.46949435042658
],
[
21.298001618902955,
60.459460618768
],
[
21.15134109378513,
60.49866216774663
],
[
21.123856031208916,
60.570268143235666
],
[
20.969929369813805,
60.71290019159185
],
[
20.730006260164885,
60.72310426065437
],
[
20.377530566664973,
60.87663838982341
],
[
20.437558533647664,
60.901808985861635
],
[
21.22914699286842,
60.70516236332403
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kuusamo",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.695312032581324,
66.48585324172434
],
[
29.258521601774095,
66.40814694260453
],
[
29.25797325676395,
66.43289263570108
],
[
29.57292981738239,
66.43285320432079
],
[
29.696996646751433,
66.27194330590592
],
[
29.923290005624704,
66.1271435136028
],
[
29.98913861876082,
66.01981602996155
],
[
29.997123832114514,
65.9788353806287
],
[
30.021885391649693,
65.96468620462771
],
[
30.075576911891126,
65.8810444035062
],
[
30.134074128332802,
65.69972413600235
],
[
30.138467224925495,
65.66867891929084
],
[
30.017112630396827,
65.69647918538594
],
[
29.721869597129274,
65.63708483989934
],
[
29.7539697140542,
65.6093497228503
],
[
29.86390447639284,
65.5604441277604
],
[
29.754713953508038,
65.4973656893719
],
[
29.548355111487897,
65.50593999715605
],
[
29.396165458924624,
65.50340207800387
],
[
29.213217516567607,
65.51847740483255
],
[
29.063406157751587,
65.56775850245715
],
[
28.931897304315967,
65.64673045219942
],
[
28.84957384458,
65.59946670659738
],
[
28.66680338427165,
65.62128720812079
],
[
28.6443345788703,
65.74081717604018
],
[
28.51319568641343,
65.84620753414578
],
[
28.508768205519964,
65.8897805629578
],
[
28.372170971760916,
65.96021883960108
],
[
28.390259248595047,
65.9962958364826
],
[
28.544104758718273,
66.00895517958301
],
[
28.651970996481122,
65.98689030173668
],
[
28.74726399890935,
66.00180794676656
],
[
28.76423983670993,
66.04334480801933
],
[
28.6248053435983,
66.07090453221068
],
[
28.604163409963913,
66.12816250390854
],
[
28.715761749116133,
66.13590787360437
],
[
28.749659454162465,
66.25448293084146
],
[
28.592998096746168,
66.26788377069155
],
[
28.538087470803234,
66.33261019166024
],
[
28.695312032581324,
66.48585324172434
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kyyjärvi",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.772883156821724,
63.13336361155502
],
[
24.88165794257854,
63.04573136175599
],
[
24.709078740087058,
62.98405555727033
],
[
24.604810272006542,
62.997912043365204
],
[
24.51324929958861,
62.94167607937778
],
[
24.445884788316555,
62.96086011606055
],
[
24.348219727984038,
62.96369854426831
],
[
24.300936607207376,
62.98835315272764
],
[
24.27801667898043,
63.064375353758216
],
[
24.359007626177622,
63.11642950932766
],
[
24.530751179348353,
63.15748059186713
],
[
24.772883156821724,
63.13336361155502
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kärkölä",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.40221804797134,
60.85435886375159
],
[
25.433299700720138,
60.79544892540847
],
[
25.382183800607663,
60.75340104485785
],
[
25.2981175705604,
60.75195510039674
],
[
25.209112372601055,
60.84085112823636
],
[
25.110974490804917,
60.81858334937388
],
[
25.10810892216898,
60.86507516415426
],
[
25.17000920098204,
60.92622009173147
],
[
25.26143833464388,
60.981676723647674
],
[
25.312769127464275,
60.944454442038335
],
[
25.323801357770975,
60.89276586769557
],
[
25.40221804797134,
60.85435886375159
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kärsämäki",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.188824130674572,
63.99510810963146
],
[
26.25085285125394,
63.926376385199255
],
[
25.661957745039526,
63.79977186288133
],
[
25.60918611137756,
63.91780838091586
],
[
25.534041821066605,
63.92160249969701
],
[
25.584456692880117,
64.0048654231319
],
[
25.650761614801365,
64.08491301003683
],
[
25.77730091762208,
64.11064400261549
],
[
26.188824130674572,
63.99510810963146
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Kökar",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.114869394708872,
60.07748224644035
],
[
21.171384977303973,
59.950156879238456
],
[
21.23053014596861,
59.9379901160706
],
[
21.345645063001836,
59.88556530287525
],
[
21.262768954688962,
59.76188056071996
],
[
21.17971997374928,
59.499205140619736
],
[
20.760842486977154,
59.53248224843443
],
[
20.373189171682274,
59.45582027121951
],
[
20.326421114861525,
59.45542419120654
],
[
20.284307336116846,
59.466082102967064
],
[
20.570621566684107,
59.71623762091774
],
[
20.742061650030674,
59.853535917876044
],
[
20.771623047577368,
59.90978761325692
],
[
20.761738411855198,
59.99003939259175
],
[
20.797639454760297,
60.04429294285361
],
[
20.889992469109597,
60.04423894779268
],
[
21.063007023387595,
60.103968100260246
],
[
21.114869394708872,
60.07748224644035
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lahti",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.858056325995666,
61.1026663837102
],
[
25.936835793017984,
61.07091952802075
],
[
26.05103316147997,
61.10098183555989
],
[
26.1329047383678,
61.0277473789576
],
[
26.11672051245745,
60.984555021229355
],
[
26.042201439217123,
60.972924883345534
],
[
26.06019754069876,
60.93608279752228
],
[
26.138269855459185,
60.93284480066412
],
[
26.13994377330741,
60.907233947877415
],
[
26.050959314151626,
60.89335729603768
],
[
25.968264693542125,
60.9284976093024
],
[
25.918648296009007,
60.88664902178304
],
[
25.777668131411975,
60.891049556468346
],
[
25.728303485200502,
60.93455999091179
],
[
25.657510017507587,
60.90643983482452
],
[
25.556342133738312,
60.93369949945589
],
[
25.54030801082675,
60.998264389037104
],
[
25.59965017383172,
61.03400914392248
],
[
25.751297040612553,
61.03167997012058
],
[
25.82219467624819,
61.05136946041451
],
[
25.749024150832106,
61.070255857820975
],
[
25.783526213267688,
61.09629055191031
],
[
25.858056325995666,
61.1026663837102
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Laihia",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.14397311370223,
62.96310731572087
],
[
22.248995669358532,
62.8800138020339
],
[
22.27386579133295,
62.79114191151007
],
[
22.200677295791202,
62.75157420779531
],
[
21.85823629573712,
62.81178802371187
],
[
21.77206102008668,
62.86356416028021
],
[
21.785131657597255,
62.893989296484605
],
[
21.91210575190337,
63.04876461042721
],
[
22.14397311370223,
62.96310731572087
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Laitila",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.951365188667133,
60.9769360921387
],
[
21.98521432718883,
60.90100179085616
],
[
22.128467335899913,
60.9042053748535
],
[
21.798820582389634,
60.73846267181518
],
[
21.732009139046806,
60.7592913386679
],
[
21.70342799985576,
60.81704663056282
],
[
21.561426623355793,
60.84055879709926
],
[
21.505549695699298,
60.88351030012882
],
[
21.512703253172113,
60.96434455486463
],
[
21.591764810028643,
60.95055907605147
],
[
21.66559235142651,
60.99633223547109
],
[
21.775752187513167,
61.03411218223962
],
[
21.844109882599177,
61.00940228698549
],
[
21.951365188667133,
60.9769360921387
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lapinjärvi",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.30013052041372,
60.749205582727534
],
[
26.347002577451192,
60.66154942893114
],
[
26.347094393369467,
60.661377234818055
],
[
26.347104681241277,
60.66135796288652
],
[
26.347104717525905,
60.66135707417552
],
[
26.350129450255537,
60.59258136606893
],
[
26.380208551247605,
60.50910442961515
],
[
26.380212282942296,
60.50909400455151
],
[
26.38021691840263,
60.50908106960895
],
[
26.28624003214165,
60.50019666764527
],
[
26.286171675059233,
60.50023554001605
],
[
26.286171103480807,
60.50023586917968
],
[
26.28617031070987,
60.5002363228654
],
[
26.286157590559178,
60.500243554707964
],
[
26.22142997900692,
60.53699779386774
],
[
26.193326813021145,
60.57962539605563
],
[
26.192609589797364,
60.580711755281264
],
[
26.19254452233451,
60.58069737312011
],
[
26.19254401409924,
60.58069726230325
],
[
26.19254020255884,
60.58069642219902
],
[
26.19253646378367,
60.580695591513155
],
[
26.152076164225328,
60.57174480195602
],
[
26.09806220042615,
60.5845490041881
],
[
26.098062118901623,
60.58454996439562
],
[
26.098061163880867,
60.58456065199175
],
[
26.098061061354443,
60.584561710827025
],
[
26.098060980830876,
60.58456263512511
],
[
26.098060211612296,
60.58457124083697
],
[
26.09781996774791,
60.58717663939054
],
[
26.095052333137208,
60.61716057627777
],
[
26.094963770786343,
60.618118934646276
],
[
26.094963008917652,
60.61812721711102
],
[
26.095053648982862,
60.61810258126677
],
[
26.084713903063168,
60.63185038713302
],
[
26.074578586140408,
60.64531416884255
],
[
26.074574345979666,
60.64531408565662
],
[
26.07449372936757,
60.6453124598331
],
[
26.00059360175564,
60.64380303155105
],
[
25.90495905727514,
60.63704596288409
],
[
25.90495917973749,
60.63704612551248
],
[
25.90497837557101,
60.63707148731014
],
[
25.90497881241527,
60.63707208351446
],
[
25.934472992822155,
60.67599970177379
],
[
25.933518664119816,
60.70594316067843
],
[
26.02777509747221,
60.71663024654294
],
[
26.109239115663442,
60.686376580238445
],
[
26.214258429154942,
60.71625173359061
],
[
26.21425512872841,
60.716275067921295
],
[
26.20836346987737,
60.75799437225537
],
[
26.20836632088715,
60.757994101756125
],
[
26.30012509721257,
60.74920610213295
],
[
26.30013052041372,
60.749205582727534
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lapinlahti",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.041811389483136,
63.55011725706941
],
[
28.126743634830525,
63.48828047581767
],
[
28.088413282867506,
63.403310726003085
],
[
27.93849829357913,
63.30119704140533
],
[
27.82429134882713,
63.258786847147334
],
[
27.699954654083925,
63.25001373522911
],
[
27.61480701884914,
63.224548760521046
],
[
27.56908021283324,
63.190403215266535
],
[
27.52663204107277,
63.162166921793066
],
[
27.49279986457686,
63.18472323866022
],
[
27.35762679288573,
63.1731272980034
],
[
27.298623666490563,
63.29337653435201
],
[
27.18294852360809,
63.33021506619302
],
[
27.119091807426308,
63.36920482013604
],
[
27.218568399615794,
63.45148196006123
],
[
27.31045542463662,
63.433995825993996
],
[
27.37319120183175,
63.49146456169326
],
[
27.489173120660116,
63.50349836775378
],
[
27.569421375676153,
63.48270325077813
],
[
27.625181488850654,
63.502469777957465
],
[
27.880454219662983,
63.53505983020149
],
[
27.942810737765836,
63.51891673701335
],
[
28.041811389483136,
63.55011725706941
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lappajärvi",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.86202124117601,
63.2775844465823
],
[
23.860307651537184,
63.21772788911991
],
[
23.69794611225794,
63.175325491506875
],
[
23.715638349442255,
63.11190118452717
],
[
23.50076858759369,
62.979037193885745
],
[
23.454826917227535,
63.063307329707435
],
[
23.404237442778438,
63.1660274889114
],
[
23.3146136797918,
63.20081468990598
],
[
23.37754392920151,
63.228108853737496
],
[
23.443462351396857,
63.281774977325405
],
[
23.54715397925451,
63.31554158172557
],
[
23.596681943211028,
63.30055571399707
],
[
23.702697895849397,
63.31588484733819
],
[
23.69698894002367,
63.380320683201724
],
[
23.86202124117601,
63.2775844465823
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lappeenranta",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.397944570503554,
61.284686929479726
],
[
28.598181346959322,
61.19978088821277
],
[
28.701680111029237,
61.231561630379446
],
[
28.745288378563924,
61.14372442098302
],
[
28.73476728536596,
61.1006508452583
],
[
28.77664853900112,
61.079254964100464
],
[
28.713845036468026,
61.04446243036035
],
[
28.690797474040643,
60.988545339987304
],
[
28.65500133307349,
60.9494993422551
],
[
28.524604831502693,
60.957104565909574
],
[
28.32072104177539,
60.85131935688872
],
[
28.220499763166096,
60.78279288840095
],
[
28.17144906102428,
60.775867465014066
],
[
28.135465860491607,
60.74086747714441
],
[
27.991282508647966,
60.668984883257124
],
[
27.90192915998299,
60.69638510049164
],
[
27.872870332971644,
60.72312504642711
],
[
27.85115206484231,
60.76516588670135
],
[
27.792923337267656,
60.7692029973313
],
[
27.727538557807133,
60.76279424208224
],
[
27.71388375295592,
60.795331602286595
],
[
27.74793843040798,
60.818901635538396
],
[
27.852745573447795,
60.83255896391715
],
[
27.92433236746697,
60.86828836561041
],
[
27.901066909916082,
60.891079398874524
],
[
27.901191939429257,
61.0008597535236
],
[
27.857559200241273,
60.99375236965494
],
[
27.867100794946452,
61.026613611934586
],
[
27.942324335139517,
61.027678512934905
],
[
27.991111360808315,
61.06152819436725
],
[
28.052501430185284,
61.083289612348125
],
[
28.069049362375132,
61.11255183224232
],
[
28.195237298636055,
61.10137903295831
],
[
28.331154042213015,
61.1294119113076
],
[
28.409193090222352,
61.17620677615536
],
[
28.31569463620447,
61.208489271206204
],
[
28.302200757050763,
61.240580432540774
],
[
28.397944570503554,
61.284686929479726
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lapua",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.05207483563257,
63.02969647793608
],
[
23.35339437936058,
63.027302557504015
],
[
23.454826917227535,
63.063307329707435
],
[
23.50076858759369,
62.979037193885745
],
[
23.490324658149394,
62.94996119652794
],
[
23.519471162094558,
62.919628295888245
],
[
23.380193573609336,
62.894475793271404
],
[
23.27892155417038,
62.774709386234555
],
[
23.18961547280172,
62.81649116484711
],
[
23.09150182704147,
62.816778470401864
],
[
23.04499547922856,
62.861133317944116
],
[
22.817791484286047,
62.87099666791849
],
[
22.78411600313601,
63.03792380752572
],
[
22.896909658818295,
63.07351363497591
],
[
23.05207483563257,
63.02969647793608
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Laukaa",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.0359597397263,
62.583585821635694
],
[
26.14014226140268,
62.489475769829404
],
[
26.218668363128636,
62.49106802583329
],
[
26.251047294393445,
62.42241529953165
],
[
26.31101973883333,
62.403443167507724
],
[
26.230031945816297,
62.335937582126085
],
[
26.324154080769283,
62.26625651433706
],
[
26.315948111866824,
62.20047067851031
],
[
26.134205119942486,
62.235863876646384
],
[
26.048622298360204,
62.18127851817093
],
[
26.050994534086612,
62.26759035009109
],
[
25.96204811308668,
62.298647987838194
],
[
25.878782358730312,
62.27267775361839
],
[
25.81670467009386,
62.30559548965363
],
[
25.84230844310599,
62.36847455715768
],
[
25.718846385409176,
62.39244480551582
],
[
25.579133273671573,
62.4287455718501
],
[
25.69515068574923,
62.491503958382616
],
[
25.838689032725668,
62.52176422422617
],
[
25.935676340549833,
62.52477845294776
],
[
26.0359597397263,
62.583585821635694
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lemi",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.867100794946452,
61.026613611934586
],
[
27.857559200241273,
60.99375236965494
],
[
27.57278865616132,
61.01769167235932
],
[
27.61718368110556,
61.06411862434599
],
[
27.708709129631558,
61.10288130947597
],
[
27.694708206801224,
61.15081551631438
],
[
27.784236449561565,
61.16367630114178
],
[
27.861427865172868,
61.15485190931484
],
[
27.93447534892668,
61.130703384761105
],
[
27.991111360808315,
61.06152819436725
],
[
27.942324335139517,
61.027678512934905
],
[
27.867100794946452,
61.026613611934586
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lemland",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.25310873672744,
60.04159949926333
],
[
20.223909574767415,
59.95922402958059
],
[
20.068853546879104,
59.913050056534445
],
[
20.107028645286846,
59.78440674925988
],
[
19.940631385735266,
59.59506063549748
],
[
19.65828500403631,
59.791694045543444
],
[
19.90398255162705,
60.02786614921386
],
[
20.010600453029923,
60.03477764086892
],
[
19.999570255475657,
60.0972434594202
],
[
20.13347758235016,
60.143239443881704
],
[
20.25310873672744,
60.04159949926333
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lempäälä",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.957771294730385,
61.33134860479687
],
[
23.811447606754097,
61.23071174205022
],
[
23.737132566842387,
61.25897918229805
],
[
23.672733535759143,
61.31291751682526
],
[
23.548336625540976,
61.35829870428967
],
[
23.591514238264033,
61.40386125838897
],
[
23.741124412264558,
61.43216156176925
],
[
23.890192527315477,
61.427368437483956
],
[
23.957771294730385,
61.33134860479687
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Leppävirta",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.482517654388023,
62.70579132755944
],
[
27.844262366568824,
62.66821758488463
],
[
27.937663235932675,
62.67130239421241
],
[
28.205272863373782,
62.64735550047233
],
[
28.243964576623526,
62.613598440681194
],
[
28.360788522831232,
62.61241983317558
],
[
28.4669730201514,
62.58316265766578
],
[
28.520773870072663,
62.54845677408233
],
[
28.4008746324508,
62.559573270929306
],
[
28.381865580631533,
62.46163574541451
],
[
28.28641680501183,
62.47314655676619
],
[
28.244771661298643,
62.4240458744385
],
[
28.315004237355065,
62.35455262551124
],
[
28.224374613675973,
62.34932555969115
],
[
28.03169664866176,
62.29548442279128
],
[
27.912520740890667,
62.38050636195069
],
[
27.826309602857176,
62.35313552224809
],
[
27.757958702634102,
62.36739435417161
],
[
27.691911101734537,
62.37475948510638
],
[
27.408508822240503,
62.503886123961415
],
[
27.460179630181795,
62.55332905509284
],
[
27.449879648771688,
62.614145590981664
],
[
27.529794630958303,
62.62675404316713
],
[
27.482517654388023,
62.70579132755944
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lestijärvi",
"parent": "Keski-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.820169511543167,
63.58660503262268
],
[
25.036315554646627,
63.45807317068062
],
[
24.90246952096805,
63.43123386549212
],
[
24.77292096719699,
63.35868411607549
],
[
24.57275793823593,
63.39223265196013
],
[
24.48618066727618,
63.375204489680044
],
[
24.554593897621814,
63.522952851287215
],
[
24.46686406277122,
63.52539245267833
],
[
24.408546737368308,
63.56600473181805
],
[
24.618713972942537,
63.65088801439577
],
[
24.820169511543167,
63.58660503262268
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lieksa",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
30.633263648568295,
63.091986823539706
],
[
30.36138740295936,
62.99840243897721
],
[
30.239425473676903,
63.042439663756696
],
[
30.140256139992594,
63.03237676334768
],
[
29.983645252464775,
63.0457604998985
],
[
29.95997003195735,
63.019549923123385
],
[
29.864786990805356,
63.065751852091005
],
[
29.78716388947024,
63.0514983979852
],
[
29.641113668289073,
63.15515041624139
],
[
29.650545385538777,
63.198883414062784
],
[
29.62926689359734,
63.24398207025563
],
[
29.567900989501197,
63.25369172106675
],
[
29.54730942002626,
63.29703910966316
],
[
29.574947966883915,
63.325388965948804
],
[
29.467286890333146,
63.34785018997973
],
[
29.52247880548423,
63.36908385357456
],
[
29.56649591948441,
63.46443446870076
],
[
29.495061205888877,
63.547681617634105
],
[
29.5426014577606,
63.614883482914664
],
[
29.60789559356724,
63.66008775785221
],
[
29.681838684892934,
63.672945699496395
],
[
29.775689020533093,
63.70335637386379
],
[
29.874664825866414,
63.749205658117106
],
[
29.97189358598915,
63.75716532802074
],
[
30.244149657638307,
63.60727218900646
],
[
30.26200200948441,
63.58302281401343
],
[
30.384538052941085,
63.54550922454823
],
[
30.484010265511166,
63.466702932800935
],
[
30.78769420524627,
63.40527529184546
],
[
30.854500047171356,
63.36783514828531
],
[
30.934443715119688,
63.35545240010316
],
[
30.979078729940365,
63.30785173992199
],
[
31.020675123421864,
63.30323107132199
],
[
31.14666690982975,
63.26174674801187
],
[
31.172654460832213,
63.241281973216985
],
[
31.23985715056642,
63.21765578988912
],
[
31.238247194904886,
63.19513289204111
],
[
30.964696427080195,
63.167311824162624
],
[
30.908249749755935,
63.13235995643662
],
[
30.633263648568295,
63.091986823539706
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lieto",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.487245429129963,
60.57096809414871
],
[
22.536166927320306,
60.56658717675098
],
[
22.54972692694937,
60.589681683092316
],
[
22.62411391480182,
60.60417824366328
],
[
22.682117153438526,
60.639559732786765
],
[
22.85468395944387,
60.62926345793749
],
[
22.799214035719594,
60.59366646576585
],
[
22.8289178796579,
60.52435674116688
],
[
22.699272607412038,
60.54569697424348
],
[
22.578785066304636,
60.4950741130653
],
[
22.43337013889797,
60.452671068123834
],
[
22.365284915856165,
60.47831297539132
],
[
22.4457115801018,
60.640907194027314
],
[
22.51060328797693,
60.635347617874
],
[
22.487245429129963,
60.57096809414871
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Liminka",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.604465839230418,
64.648130067965
],
[
25.725799972832096,
64.58259812330131
],
[
25.771300492127267,
64.60463314838873
],
[
25.707298901445732,
64.6394266982014
],
[
25.75590304972106,
64.662310759122
],
[
25.974498897245866,
64.56622010783624
],
[
26.075053244488554,
64.58163108986987
],
[
25.929262589232383,
64.64655519649735
],
[
25.99807511560431,
64.67702075203601
],
[
26.168171254721624,
64.59216709939506
],
[
26.291105954354357,
64.47906385912782
],
[
26.216671606417513,
64.46268228441323
],
[
25.910699556649604,
64.54353980128288
],
[
25.739934658857784,
64.51768299974633
],
[
25.52026946015472,
64.62894252074422
],
[
25.1682357040171,
64.73418318356565
],
[
25.270527670898574,
64.80222804478643
],
[
25.327308415081053,
64.88238904549016
],
[
25.44509475757762,
64.89238902463212
],
[
25.555334113719823,
64.84887300672708
],
[
25.52783174861798,
64.80676502541468
],
[
25.60798040621025,
64.72647742171621
],
[
25.501053443339178,
64.70685159217159
],
[
25.604465839230418,
64.648130067965
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Liperi",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.584799067002294,
62.721465506752
],
[
29.637207991895906,
62.65452939931037
],
[
29.640312125204105,
62.59497422923723
],
[
29.75105338135097,
62.521363682591776
],
[
29.763220867645924,
62.407439052530115
],
[
29.645518482786382,
62.35974842085642
],
[
29.5385214269183,
62.407143282732896
],
[
29.29596533462261,
62.3867277702124
],
[
29.23080859359112,
62.41775699448758
],
[
29.16644885870124,
62.38633756072567
],
[
29.08147523982306,
62.42415354323682
],
[
29.08477954687473,
62.47988869833382
],
[
29.033869168471124,
62.52884619183863
],
[
28.944018943130423,
62.57683117930497
],
[
29.04340376825647,
62.60234549079501
],
[
28.978838704136386,
62.64113982312608
],
[
29.139869072135575,
62.699332444074386
],
[
29.27666332025388,
62.68185324561919
],
[
29.303956762757064,
62.71795605290296
],
[
29.398842054235107,
62.68085356590779
],
[
29.474182747504916,
62.722347046868215
],
[
29.584799067002294,
62.721465506752
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lohja",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.305695635051205,
60.29464546893561
],
[
24.1620505020416,
60.22812774726178
],
[
24.07696599883724,
60.22748994718397
],
[
24.00826287587033,
60.18250206412559
],
[
24.045805674541594,
60.15011723954438
],
[
23.942377708606152,
60.12949255559913
],
[
23.898992775320302,
60.20600126568937
],
[
23.825840732070514,
60.19753585992334
],
[
23.622395098955092,
60.16641609543189
],
[
23.620482993614967,
60.19413309712222
],
[
23.586321575780698,
60.25884047401348
],
[
23.728880254761616,
60.32899281758085
],
[
23.72317244702929,
60.368755864053185
],
[
23.79048727613774,
60.387825226449294
],
[
23.784140396284556,
60.4501860171273
],
[
23.739210778375156,
60.457028060895645
],
[
23.7374861102945,
60.49036945268051
],
[
23.871849839006135,
60.50793431776386
],
[
23.844492481484675,
60.55642346082885
],
[
23.92054909127961,
60.606087320826994
],
[
23.900506809095063,
60.64975684248594
],
[
23.9713267300057,
60.63820101408995
],
[
24.171254162864063,
60.48473818331299
],
[
24.13396334812912,
60.391843586818105
],
[
24.204039004782278,
60.362918302348106
],
[
24.208132079542644,
60.29870025918789
],
[
24.305695635051205,
60.29464546893561
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Loimaa",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.29392896508692,
60.95469735024718
],
[
23.266664800142745,
60.88910949732437
],
[
23.135638115865078,
60.88351844325512
],
[
23.142581854509448,
60.8375029516263
],
[
23.230069679852406,
60.825406772085906
],
[
23.154615351559784,
60.77416823699695
],
[
23.03171424513432,
60.69880732572769
],
[
22.965244304809815,
60.71085625455865
],
[
22.93844512654594,
60.71567377920744
],
[
22.757723689164372,
60.81532837206671
],
[
22.786352996523497,
60.84097280454192
],
[
22.758494940949856,
60.93705669098894
],
[
22.677419629876567,
60.916952215085324
],
[
22.60237842622934,
60.92688994877894
],
[
22.586239536387065,
60.938790284221206
],
[
22.5224658599489,
60.9764011486595
],
[
22.70154448335616,
60.98693552139922
],
[
22.815933050071123,
60.993408695963794
],
[
22.8239105462591,
61.10143532305665
],
[
22.96850459112584,
61.04325435929721
],
[
23.148076391157893,
61.031411272873385
],
[
23.195365933783123,
61.00121980619564
],
[
23.29392896508692,
60.95469735024718
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Loppi",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.170973542902285,
60.806564989279465
],
[
24.253324575531146,
60.78598648544613
],
[
24.334905447077965,
60.79461570120579
],
[
24.42295801067793,
60.77120921741747
],
[
24.490835550691916,
60.744569287120015
],
[
24.62334341961935,
60.75587624998699
],
[
24.690949829294112,
60.75148881006861
],
[
24.670629160210353,
60.72287638471641
],
[
24.605615954984103,
60.69275358722805
],
[
24.615911178660863,
60.66756880298995
],
[
24.566910642124313,
60.63233238730183
],
[
24.577250305962746,
60.58580118883246
],
[
24.548952137860752,
60.559839790761394
],
[
24.423680353450436,
60.55249148066438
],
[
24.40325496976645,
60.59562135031032
],
[
24.347723543549947,
60.61215372244201
],
[
24.28538666866718,
60.56541060917438
],
[
24.23726372569462,
60.6180660462518
],
[
24.046748246518096,
60.64232451140095
],
[
24.063243377282255,
60.79345534460807
],
[
24.170973542902285,
60.806564989279465
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Loviisa",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.54178379622185,
60.57500645546376
],
[
26.54429215419041,
60.55490654039253
],
[
26.50061376433346,
60.54544127831461
],
[
26.511203000903574,
60.52731405382789
],
[
26.44783951990371,
60.492418977589494
],
[
26.485672136885192,
60.44761560388524
],
[
26.498632899583306,
60.39017672820919
],
[
26.559009538862984,
60.36432994232763
],
[
26.58379033869661,
60.27157644052291
],
[
26.656395043049717,
60.17132754163508
],
[
26.491951295952244,
60.15351383062009
],
[
26.29470232341842,
60.046513644761355
],
[
26.27129713136787,
60.044692633251486
],
[
26.27125692252034,
60.04473308007437
],
[
26.27125609612447,
60.04473391959834
],
[
26.055499741397924,
60.26020415983388
],
[
26.05544738173894,
60.26019558909488
],
[
26.055446626247633,
60.26019546698711
],
[
25.930343584317672,
60.239650636075815
],
[
25.93034069702489,
60.23970208460883
],
[
25.930340667465863,
60.23970299132314
],
[
25.92574506076938,
60.32178784213445
],
[
25.946791013936416,
60.408079277211186
],
[
25.80100235338895,
60.4869039408695
],
[
25.82322708236016,
60.55099751201204
],
[
25.938049380281452,
60.57257638876683
],
[
26.00003434661758,
60.64316764248932
],
[
26.000035529766837,
60.64316899819222
],
[
26.000199947955288,
60.64335579731881
],
[
26.00059360175564,
60.64380303155105
],
[
26.07449372936757,
60.6453124598331
],
[
26.074574345979666,
60.64531408565662
],
[
26.074578586140408,
60.64531416884255
],
[
26.084713903063168,
60.63185038713302
],
[
26.095053648982862,
60.61810258126677
],
[
26.094963008917652,
60.61812721711102
],
[
26.094963770786343,
60.618118934646276
],
[
26.095052333137208,
60.61716057627777
],
[
26.09781996774791,
60.58717663939054
],
[
26.098060211612296,
60.58457124083697
],
[
26.098060980830876,
60.58456263512511
],
[
26.098061061354443,
60.584561710827025
],
[
26.098061163880867,
60.58456065199175
],
[
26.098062118901623,
60.58454996439562
],
[
26.09806220042615,
60.5845490041881
],
[
26.152076164225328,
60.57174480195602
],
[
26.19253646378367,
60.580695591513155
],
[
26.19254020255884,
60.58069642219902
],
[
26.19254401409924,
60.58069726230325
],
[
26.19254452233451,
60.58069737312011
],
[
26.192609589797364,
60.580711755281264
],
[
26.193326813021145,
60.57962539605563
],
[
26.22142997900692,
60.53699779386774
],
[
26.286157590559178,
60.500243554707964
],
[
26.28617031070987,
60.5002363228654
],
[
26.286171103480807,
60.50023586917968
],
[
26.286171675059233,
60.50023554001605
],
[
26.28624003214165,
60.50019666764527
],
[
26.38021691840263,
60.50908106960895
],
[
26.380212282942296,
60.50909400455151
],
[
26.380208551247605,
60.50910442961515
],
[
26.350129450255537,
60.59258136606893
],
[
26.347104717525905,
60.66135707417552
],
[
26.347104681241277,
60.66135796288652
],
[
26.347129076052344,
60.661353089677476
],
[
26.347227279200467,
60.66133350107295
],
[
26.347227848660708,
60.661333387126064
],
[
26.458384887283515,
60.63909579167297
],
[
26.4584532378892,
60.63908207955472
],
[
26.54178379622185,
60.57500645546376
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Luhanka",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.844956218787257,
61.80140787981894
],
[
25.771178593285796,
61.68506674876036
],
[
25.69012670481643,
61.7141257252313
],
[
25.60842421788129,
61.68069229320239
],
[
25.501333310993584,
61.67685863090883
],
[
25.535220960617686,
61.77955938686043
],
[
25.596409733506945,
61.839518897594864
],
[
25.75164191007761,
61.84953531010222
],
[
25.793981817963587,
61.892322574406926
],
[
25.850075249861565,
61.89064466006256
],
[
25.921275408830713,
61.85846013892791
],
[
25.844956218787257,
61.80140787981894
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lumijoki",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.270527670898574,
64.80222804478643
],
[
25.1682357040171,
64.73418318356565
],
[
24.953439675868715,
64.81198941677093
],
[
24.99552161679078,
64.88244946032111
],
[
24.99104448213112,
64.96644535659608
],
[
25.0454030438793,
64.98422028822813
],
[
25.327308415081053,
64.88238904549016
],
[
25.270527670898574,
64.80222804478643
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Lumparland",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.31381246901638,
60.14590939864892
],
[
20.324685565767194,
60.111716141889865
],
[
20.30261608474368,
60.045215428266815
],
[
20.25310873672744,
60.04159949926333
],
[
20.13347758235016,
60.143239443881704
],
[
20.231989511852873,
60.17669722456789
],
[
20.31381246901638,
60.14590939864892
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Luoto",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.749098205027515,
63.94763125016336
],
[
22.886801595267052,
63.81255347775224
],
[
22.92153612648648,
63.775112482971004
],
[
22.8296768558988,
63.73591121664796
],
[
22.786237866041777,
63.69506654190963
],
[
22.09650393416145,
63.832994246616714
],
[
22.212585310426586,
63.95093997154946
],
[
22.287878839136997,
64.00938556010786
],
[
22.749098205027515,
63.94763125016336
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Luumäki",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.57278865616132,
61.01769167235932
],
[
27.857559200241273,
60.99375236965494
],
[
27.901191939429257,
61.0008597535236
],
[
27.901066909916082,
60.891079398874524
],
[
27.92433236746697,
60.86828836561041
],
[
27.852745573447795,
60.83255896391715
],
[
27.74793843040798,
60.818901635538396
],
[
27.71388375295592,
60.795331602286595
],
[
27.60604326633053,
60.805837369327634
],
[
27.50471649270506,
60.799232166278685
],
[
27.42835969891217,
60.84264003741156
],
[
27.324513639292388,
60.88934870147451
],
[
27.213224321664107,
60.9040498622964
],
[
27.136110474356173,
60.95124724200552
],
[
27.241662127778692,
60.973185459485585
],
[
27.141153440474188,
61.01054786604509
],
[
27.150648631354034,
61.06229346543177
],
[
27.228489977819578,
61.090202259791674
],
[
27.364384634363418,
61.101392542850185
],
[
27.424372861580366,
61.031010869135415
],
[
27.57278865616132,
61.01769167235932
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Maalahti",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.77206102008668,
62.86356416028021
],
[
21.72913831288168,
62.767665480649015
],
[
21.64650392301896,
62.74326721006465
],
[
21.523910630149786,
62.764013215859976
],
[
21.37440668430879,
62.75787328461822
],
[
21.302503237898318,
62.810025493320715
],
[
21.371595249916666,
62.83587285156612
],
[
21.24005545440502,
62.93952903019625
],
[
20.300178224437428,
62.930016646475345
],
[
20.165818904932706,
63.164851373148245
],
[
20.310178539338157,
63.26764664799697
],
[
21.02762730755335,
63.10829922320163
],
[
21.563075414223746,
62.98482834534634
],
[
21.785131657597255,
62.893989296484605
],
[
21.77206102008668,
62.86356416028021
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Maarianhamina",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
19.999570255475657,
60.0972434594202
],
[
20.010600453029923,
60.03477764086892
],
[
19.90398255162705,
60.02786614921386
],
[
19.890959902514876,
60.077047352009906
],
[
19.87080598216976,
60.1366618463912
],
[
19.97598404058874,
60.15192467412746
],
[
19.999570255475657,
60.0972434594202
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Marttila",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.965244304809815,
60.71085625455865
],
[
23.10071716949097,
60.57352904821074
],
[
22.846004877356663,
60.510882941868395
],
[
22.8289178796579,
60.52435674116688
],
[
22.799214035719594,
60.59366646576585
],
[
22.85468395944387,
60.62926345793749
],
[
22.93844512654594,
60.71567377920744
],
[
22.965244304809815,
60.71085625455865
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Masku",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.210045330704425,
60.59567845344566
],
[
22.143837239002444,
60.52972346856505
],
[
22.085079420475783,
60.51496134944838
],
[
21.958578621624024,
60.49137640659839
],
[
21.911042492372406,
60.5204831970305
],
[
21.80037785532227,
60.51077208639842
],
[
21.811523239242,
60.54225713142459
],
[
21.776647802647958,
60.56367398572864
],
[
21.927374456378637,
60.602178986084894
],
[
21.9769678166946,
60.59699799341713
],
[
22.040524930746034,
60.56422963520769
],
[
22.182054749984147,
60.61610523305947
],
[
22.210045330704425,
60.59567845344566
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Merijärvi",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.68520822981414,
64.37475050617284
],
[
24.797150268141312,
64.3775303773528
],
[
24.66756535836748,
64.28825069852148
],
[
24.53879804946767,
64.27753023850111
],
[
24.58205390948476,
64.18645318767184
],
[
24.287705378030502,
64.30009422474612
],
[
24.264593123138543,
64.31210613128678
],
[
24.371450897225547,
64.36149949805117
],
[
24.469980939139734,
64.38578071260321
],
[
24.68520822981414,
64.37475050617284
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Merikarvia",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.749405169782108,
62.01586179294563
],
[
21.678973363109062,
61.815890848370266
],
[
21.72805210385736,
61.74792023989012
],
[
20.88888532684414,
61.699927812336355
],
[
20.82916211229922,
61.92167188200882
],
[
21.282184529874232,
61.94444640692086
],
[
21.42663977098412,
62.0095850196397
],
[
21.647847941549546,
62.019585020601276
],
[
21.749405169782108,
62.01586179294563
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Miehikkälä",
"parent": "Kymenlaakso"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.42835969891217,
60.84264003741156
],
[
27.50471649270506,
60.799232166278685
],
[
27.60604326633053,
60.805837369327634
],
[
27.71388375295592,
60.795331602286595
],
[
27.727538557807133,
60.76279424208224
],
[
27.792923337267656,
60.7692029973313
],
[
27.85115206484231,
60.76516588670135
],
[
27.872870332971644,
60.72312504642711
],
[
27.90192915998299,
60.69638510049164
],
[
27.991282508647966,
60.668984883257124
],
[
27.888741681371428,
60.61294234693036
],
[
27.854273647549782,
60.61633993389188
],
[
27.820038295984478,
60.65451285967096
],
[
27.754105589058096,
60.62455503756847
],
[
27.6962538797953,
60.621021533138695
],
[
27.592299856299075,
60.6601868955362
],
[
27.533010650368844,
60.65638532561159
],
[
27.5398579747777,
60.618190011061614
],
[
27.48797943168171,
60.61637954296263
],
[
27.45467885232189,
60.641097002999544
],
[
27.42835969891217,
60.84264003741156
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Mikkeli",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.429776307808517,
61.90696050443683
],
[
27.433432268653725,
61.86460522563287
],
[
27.540708107280697,
61.76269421789965
],
[
27.650463262156638,
61.69834746212116
],
[
27.80961145270313,
61.687324685461206
],
[
27.877102870935467,
61.653092812130396
],
[
27.874346428882998,
61.597086552618386
],
[
27.900382419289237,
61.54559553325935
],
[
27.810532870828048,
61.4997084386491
],
[
27.740914128044512,
61.46817458472504
],
[
27.759699143301514,
61.435158760730914
],
[
27.678792070506304,
61.40608350316439
],
[
27.749400149401257,
61.36956723694685
],
[
27.79260651091915,
61.362078407515675
],
[
27.754461486821885,
61.32905028259313
],
[
27.64673370488626,
61.34388944266262
],
[
27.592085977518366,
61.3108362118608
],
[
27.57704879048882,
61.26320080274515
],
[
27.4302994779757,
61.27164307610183
],
[
27.378517821162987,
61.214238734396
],
[
27.29014755760457,
61.300017789474985
],
[
27.21741616789865,
61.31718321019616
],
[
27.051097660448583,
61.33098152934057
],
[
26.953882436172414,
61.347601217020035
],
[
27.019289681288935,
61.38498545425561
],
[
27.106646288941157,
61.368778074912264
],
[
27.16492926989366,
61.401653825252396
],
[
27.06344021061622,
61.433889576228715
],
[
26.9900594206321,
61.464548213042484
],
[
26.963680060721853,
61.503426386527366
],
[
27.019442235373607,
61.567996624748325
],
[
26.951778593520817,
61.61100645388971
],
[
26.982243185500703,
61.7006859932513
],
[
26.883880600269794,
61.73756998331941
],
[
26.832212428415843,
61.85030537948557
],
[
26.86638332580752,
61.901255505710104
],
[
26.94218015155923,
61.922251515470485
],
[
26.98265662600474,
61.9023811510728
],
[
27.126573915844702,
61.9637071141741
],
[
26.972759247534757,
62.0392026619815
],
[
26.874503027221664,
62.044706957603914
],
[
26.831494344447368,
62.075425709749126
],
[
26.852738039496327,
62.128900947031546
],
[
26.944226068945124,
62.14248478653505
],
[
26.987118827461995,
62.18189875834205
],
[
27.135460371721017,
62.199156384190566
],
[
27.39246175512771,
62.00586209483991
],
[
27.393024769867033,
61.98181826064561
],
[
27.47031970233752,
61.93767271798642
],
[
27.429776307808517,
61.90696050443683
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Muhos",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.394312752498077,
64.84441584745775
],
[
26.37323146511338,
64.79396354983287
],
[
26.19524492365147,
64.83941114186226
],
[
26.183312193589003,
64.81790331201951
],
[
26.291510256875387,
64.74923352535923
],
[
26.38828108471073,
64.65925033167954
],
[
26.238989019136582,
64.6390938840049
],
[
26.315765506365263,
64.5950807248593
],
[
26.455144920219272,
64.62195407362324
],
[
26.461583101060132,
64.56505242962632
],
[
26.291105954354357,
64.47906385912782
],
[
26.168171254721624,
64.59216709939506
],
[
25.99807511560431,
64.67702075203601
],
[
25.994105951437753,
64.7178783562642
],
[
25.750454476848684,
64.88899822128852
],
[
25.84000976743382,
64.89302445814705
],
[
26.050988210220744,
64.9778445953055
],
[
26.175525378643762,
64.94558378455352
],
[
26.273238691306656,
64.905945513851
],
[
26.394312752498077,
64.84441584745775
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Multia",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.714105419168565,
62.53152634592202
],
[
24.899756610672274,
62.60208011810733
],
[
24.95529329208448,
62.57221133180382
],
[
25.183785131071406,
62.58228324907576
],
[
25.251913085760126,
62.53765059555227
],
[
25.194984248461832,
62.534619276850435
],
[
25.124827489332947,
62.42702205838909
],
[
25.030050005894264,
62.36720417211227
],
[
25.068965728197682,
62.33205985422405
],
[
24.902236047099226,
62.31583966149383
],
[
24.870688433343922,
62.349876414274405
],
[
24.741696754520976,
62.32742320402196
],
[
24.714229737819522,
62.35563378407383
],
[
24.6169906259077,
62.429025703216396
],
[
24.58601049400613,
62.454179867463765
],
[
24.5305679210293,
62.528407842952014
],
[
24.561073130563184,
62.58622657612328
],
[
24.528773072749107,
62.62728306096284
],
[
24.582168743659775,
62.664786460810895
],
[
24.714105419168565,
62.53152634592202
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Muonio",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.956598969541908,
68.15062355177561
],
[
23.9628696125696,
68.1159329931437
],
[
24.106807114112947,
68.13894079180724
],
[
24.100774326850654,
68.09252902002528
],
[
24.19204329369398,
68.08625353306623
],
[
24.177114435047443,
68.03393123127972
],
[
24.210440157929934,
67.99088789315665
],
[
24.145248778732945,
67.92147463209224
],
[
24.272948741290058,
67.62685488036492
],
[
24.065584029037584,
67.6355335614506
],
[
23.540489905675166,
67.46104489477649
],
[
23.49481161740547,
67.44637766934429
],
[
23.422498396324812,
67.46197414550035
],
[
23.393668068937032,
67.48485559990928
],
[
23.479673620154987,
67.53620595000243
],
[
23.461461529662188,
67.56351084380739
],
[
23.543218674848767,
67.58238163108739
],
[
23.55191213097553,
67.62257428991292
],
[
23.492155457700697,
67.66383935927199
],
[
23.477040565833235,
67.74177907628881
],
[
23.477153791849734,
67.83986699254795
],
[
23.52614492899899,
67.88708607732642
],
[
23.58157307949788,
67.89330853460513
],
[
23.6645659340401,
67.94121743163588
],
[
23.61886146093832,
67.96836903745358
],
[
23.5714856822557,
67.973316304194
],
[
23.509829569503584,
68.01028900382764
],
[
23.387876715836743,
68.04789830695594
],
[
23.28669821813509,
68.154273008972
],
[
23.322001006633556,
68.17473583225055
],
[
23.739349790594748,
68.18729499761642
],
[
23.818118638409963,
68.15284509431608
],
[
23.956598969541908,
68.15062355177561
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Mustasaari",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.95852367848491,
63.26271922495292
],
[
22.05067696981737,
63.13698094146481
],
[
21.91210575190337,
63.04876461042721
],
[
21.785131657597255,
62.893989296484605
],
[
21.563075414223746,
62.98482834534634
],
[
21.637478845965802,
63.063327564136046
],
[
21.772322525779433,
63.037706670262175
],
[
21.82889435320374,
63.06167357959209
],
[
21.814374181408247,
63.11152600552635
],
[
21.754977735303985,
63.11725168514362
],
[
21.69765295471848,
63.11615901537627
],
[
21.65365991303294,
63.14769491383269
],
[
21.47204011132372,
63.17885398237219
],
[
21.41159171837697,
63.136282968500396
],
[
21.02762730755335,
63.10829922320163
],
[
20.310178539338157,
63.26764664799697
],
[
20.39872110137577,
63.3308724924611
],
[
20.696319314381952,
63.48286698659651
],
[
20.941567296578434,
63.51942514767274
],
[
21.360587550865755,
63.62898533245183
],
[
21.683602633007062,
63.44056181512535
],
[
21.670372791034538,
63.396492932081145
],
[
21.746905947813683,
63.389968086599886
],
[
21.95852367848491,
63.26271922495292
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Muurame",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.795206628010455,
62.094439421332176
],
[
25.767989107303237,
62.06355418986611
],
[
25.479702715001398,
62.08611287948424
],
[
25.54184494702962,
62.15996804857076
],
[
25.479357132107825,
62.184429353496434
],
[
25.493946402038585,
62.23300889858816
],
[
25.57079649402651,
62.24282665466838
],
[
25.60040260559539,
62.1861954976089
],
[
25.762098341171527,
62.179884523769786
],
[
25.79402233512785,
62.15239679039964
],
[
25.71537183531807,
62.149629139635316
],
[
25.705155659386897,
62.11816540592456
],
[
25.795206628010455,
62.094439421332176
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Mynämäki",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.160313629897413,
60.87200574225194
],
[
22.222081281274896,
60.80793822142038
],
[
22.415003582834892,
60.73729360055229
],
[
22.26108743319109,
60.72585547265266
],
[
22.09500774956133,
60.68703621046306
],
[
21.927374456378637,
60.602178986084894
],
[
21.776647802647958,
60.56367398572864
],
[
21.798820582389634,
60.73846267181518
],
[
22.128467335899913,
60.9042053748535
],
[
22.160313629897413,
60.87200574225194
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Myrskylä",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.933518664119816,
60.70594316067843
],
[
25.934472992822155,
60.67599970177379
],
[
25.90497881241527,
60.63707208351446
],
[
25.90497837557101,
60.63707148731014
],
[
25.90495917973749,
60.63704612551248
],
[
25.90495905727514,
60.63704596288409
],
[
26.00059360175564,
60.64380303155105
],
[
26.000199947955288,
60.64335579731881
],
[
26.000035529766837,
60.64316899819222
],
[
26.00003434661758,
60.64316764248932
],
[
25.938049380281452,
60.57257638876683
],
[
25.82322708236016,
60.55099751201204
],
[
25.82322659602889,
60.550997848948725
],
[
25.823165827954327,
60.5510403254071
],
[
25.823164798973252,
60.5510410436814
],
[
25.76901979399514,
60.58883695675938
],
[
25.65964655260983,
60.61387522573641
],
[
25.73421334661164,
60.65743086839674
],
[
25.7467504797663,
60.70806144885568
],
[
25.91493115211506,
60.73587037297272
],
[
25.91493335899092,
60.73587073203236
],
[
25.93350921757406,
60.70595842184043
],
[
25.933518644018704,
60.70594321439318
],
[
25.933518664119816,
60.70594316067843
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Mäntsälä",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.209112372601055,
60.84085112823636
],
[
25.2981175705604,
60.75195510039674
],
[
25.382183800607663,
60.75340104485785
],
[
25.433299700720138,
60.79544892540847
],
[
25.500993223930767,
60.76261145582954
],
[
25.519284242910665,
60.70389455197448
],
[
25.471161519940676,
60.69230221342839
],
[
25.42528858973978,
60.663196225245464
],
[
25.442349224533558,
60.63672868780038
],
[
25.516227783774877,
60.579859896993376
],
[
25.501909979005962,
60.556958438521065
],
[
25.415492397094226,
60.541544172332664
],
[
25.39338872883377,
60.55120649601049
],
[
25.24147877757544,
60.53799550171536
],
[
25.204086670483505,
60.524854117754
],
[
25.22418758575319,
60.50163109281483
],
[
25.169302162733377,
60.50623127538346
],
[
25.128145904173874,
60.528528653021695
],
[
25.045343265498154,
60.57686325339518
],
[
25.112461801735225,
60.66159621837994
],
[
25.146052623187938,
60.71646528315185
],
[
25.05827802453764,
60.724986221628235
],
[
25.1548758665493,
60.7783828284859
],
[
25.110974490804917,
60.81858334937388
],
[
25.209112372601055,
60.84085112823636
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Mänttä-Vilppula",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.33594797454425,
62.16803968365219
],
[
24.427472390033596,
62.15270449342711
],
[
24.498211629500812,
62.197101809856214
],
[
24.56019641231939,
62.18565007577623
],
[
24.73091347612382,
62.02319174960274
],
[
24.621260753825364,
61.992534457442964
],
[
24.524644005308772,
61.90933334435215
],
[
24.438634490343645,
61.91056619994726
],
[
24.281702501867674,
62.01240312522025
],
[
24.311223683649704,
62.04529705611278
],
[
24.28484282872805,
62.077647912566036
],
[
24.140740073434987,
62.08132718731286
],
[
24.03551018113136,
62.12095571937357
],
[
24.21129189782857,
62.25232617496253
],
[
24.33594797454425,
62.16803968365219
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Mäntyharju",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.65238821966232,
61.58829118896386
],
[
26.727759901087275,
61.56536417534838
],
[
26.784016041417917,
61.57585158208221
],
[
26.83592639603272,
61.5228658514837
],
[
26.963680060721853,
61.503426386527366
],
[
26.9900594206321,
61.464548213042484
],
[
27.06344021061622,
61.433889576228715
],
[
27.16492926989366,
61.401653825252396
],
[
27.106646288941157,
61.368778074912264
],
[
27.019289681288935,
61.38498545425561
],
[
26.953882436172414,
61.347601217020035
],
[
27.051097660448583,
61.33098152934057
],
[
27.21741616789865,
61.31718321019616
],
[
27.29014755760457,
61.300017789474985
],
[
27.378517821162987,
61.214238734396
],
[
27.355504044920842,
61.17354610326644
],
[
27.205820105829734,
61.16247138726633
],
[
27.03116750114162,
61.152061287446465
],
[
26.91213304448686,
61.18316152601422
],
[
26.920758582575374,
61.225749317502256
],
[
26.852307263644246,
61.283686719295275
],
[
26.661317791706036,
61.20687902162881
],
[
26.67110156532801,
61.24359057040124
],
[
26.63379943179411,
61.28714635495837
],
[
26.513662871661026,
61.27432639637527
],
[
26.483071417738024,
61.32283651900815
],
[
26.399569646145594,
61.322020756894155
],
[
26.318238062097517,
61.370904708869915
],
[
26.42953368652383,
61.37376549566785
],
[
26.50617149951734,
61.33983224233344
],
[
26.55929317784442,
61.40371635881503
],
[
26.55763776951527,
61.46338878701803
],
[
26.648394477618385,
61.496316844147536
],
[
26.60468283188428,
61.57224807662552
],
[
26.65238821966232,
61.58829118896386
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Naantali",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.811523239242,
60.54225713142459
],
[
21.80037785532227,
60.51077208639842
],
[
21.911042492372406,
60.5204831970305
],
[
21.958578621624024,
60.49137640659839
],
[
22.085079420475783,
60.51496134944838
],
[
22.074759841289712,
60.47143476257349
],
[
22.107843033932156,
60.447939571772686
],
[
22.07301407904579,
60.34155830274907
],
[
22.045978322442924,
60.29304891284895
],
[
21.95362854101132,
60.2652649228892
],
[
21.894689510658743,
60.26000039553686
],
[
21.81150723607576,
60.304462403431856
],
[
21.73246164675823,
60.27616263756861
],
[
21.649253643432786,
60.303586633605136
],
[
21.59865832079927,
60.38030205994266
],
[
21.52525335262206,
60.375767823368534
],
[
21.516815808599862,
60.43068456371715
],
[
21.53535306768109,
60.466410681078806
],
[
21.69025966693232,
60.487663125212585
],
[
21.70381804160894,
60.553228725406946
],
[
21.776647802647958,
60.56367398572864
],
[
21.811523239242,
60.54225713142459
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Nakkila",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.16612587285928,
61.40546109442364
],
[
22.064535337254508,
61.3503930364891
],
[
22.021194689869237,
61.29444037097628
],
[
21.876235787284795,
61.296704471719806
],
[
21.780783527548593,
61.33781700816528
],
[
21.71324758999653,
61.389872734571306
],
[
21.803713057835346,
61.38514566782163
],
[
22.028275781697477,
61.420750669191285
],
[
22.16612587285928,
61.40546109442364
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Nivala",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.147412224240632,
64.02615476349342
],
[
25.366416102780104,
63.93004031596365
],
[
25.266629049793554,
63.93226048691829
],
[
25.107106941178042,
63.77184526156415
],
[
25.02100081954883,
63.83110607719456
],
[
24.967383887218645,
63.80059856139146
],
[
24.91582559284698,
63.850865952996934
],
[
24.639092815416387,
63.94676254914173
],
[
24.745392781496403,
63.993688111350316
],
[
24.913041626977627,
63.98321357053855
],
[
25.021245459303245,
64.0679382879068
],
[
25.147412224240632,
64.02615476349342
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Nokia",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.542299896592542,
61.53333868000808
],
[
23.613138048522448,
61.47779202423211
],
[
23.5462014500308,
61.46954837980839
],
[
23.47762142851193,
61.39682548722414
],
[
23.393168822764725,
61.360741191424474
],
[
23.343086992131294,
61.34070830466133
],
[
23.27129463379031,
61.34587817887742
],
[
23.220749138913416,
61.328405047392835
],
[
23.202292860410477,
61.37673222909744
],
[
23.171146358830168,
61.436132715978296
],
[
23.203350256953055,
61.474441750290936
],
[
23.193788260022153,
61.537756034794754
],
[
23.381572971830302,
61.5189041596173
],
[
23.442162492358307,
61.57222748774658
],
[
23.542299896592542,
61.53333868000808
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Nousiainen",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.210045330704425,
60.59567845344566
],
[
22.182054749984147,
60.61610523305947
],
[
22.040524930746034,
60.56422963520769
],
[
21.9769678166946,
60.59699799341713
],
[
21.927374456378637,
60.602178986084894
],
[
22.09500774956133,
60.68703621046306
],
[
22.26108743319109,
60.72585547265266
],
[
22.415003582834892,
60.73729360055229
],
[
22.210045330704425,
60.59567845344566
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Nurmes",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.5426014577606,
63.614883482914664
],
[
29.495061205888877,
63.547681617634105
],
[
29.56649591948441,
63.46443446870076
],
[
29.52247880548423,
63.36908385357456
],
[
29.467286890333146,
63.34785018997973
],
[
29.331510721829872,
63.36107928016165
],
[
29.18306958673448,
63.444137504316124
],
[
29.106814610957176,
63.44971558759444
],
[
28.893442205046615,
63.409981485628435
],
[
28.819603648066057,
63.36739768327671
],
[
28.75952582328101,
63.38780885401111
],
[
28.666111147505344,
63.423194116909016
],
[
28.641107172946768,
63.47636370038974
],
[
28.603458533141197,
63.52745557606171
],
[
28.668509050991887,
63.56120520454729
],
[
28.76954521054619,
63.58966093635234
],
[
28.851462709097984,
63.565421617323345
],
[
28.99894937344934,
63.6115453034476
],
[
28.939401063041586,
63.6566719965239
],
[
28.98360129645912,
63.726127939539104
],
[
29.191967069962693,
63.75703484144456
],
[
29.12764214722784,
63.804002766106436
],
[
29.11189029783794,
63.84635279871127
],
[
29.158309434997552,
63.84732694312728
],
[
29.68252613054818,
63.878942323778475
],
[
29.72268883780468,
63.74803148901187
],
[
29.775689020533093,
63.70335637386379
],
[
29.681838684892934,
63.672945699496395
],
[
29.60789559356724,
63.66008775785221
],
[
29.5426014577606,
63.614883482914664
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Nurmijärvi",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.74815753821454,
60.5888705409254
],
[
24.835337991043538,
60.54621793246463
],
[
24.912163088553147,
60.555624788523495
],
[
24.974392016436276,
60.52089805810907
],
[
24.86893914794676,
60.40125486342687
],
[
24.749283198085372,
60.34178329414992
],
[
24.62769391815298,
60.359241407243374
],
[
24.524838676913795,
60.47678612789196
],
[
24.648835852297154,
60.51665902999964
],
[
24.70594949814005,
60.51880126294002
],
[
24.74815753821454,
60.5888705409254
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Närpiö",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.523910630149786,
62.764013215859976
],
[
21.64650392301896,
62.74326721006465
],
[
21.72913831288168,
62.767665480649015
],
[
21.79096769351884,
62.69422480201799
],
[
21.662244560342923,
62.64004504085153
],
[
21.591769426233185,
62.60543813384248
],
[
21.6033384263414,
62.53089023808478
],
[
21.5541301104659,
62.42429873837683
],
[
21.14874794146371,
62.23862033874657
],
[
20.72811268229396,
62.20378696352818
],
[
20.711045180570135,
62.24780595453498
],
[
21.132276442409676,
62.28269160015419
],
[
21.341725432471538,
62.393456430312085
],
[
21.2531259744342,
62.42620036036161
],
[
21.098625738221337,
62.34022419019565
],
[
20.69171281704624,
62.2974971043024
],
[
20.66186401832487,
62.37312019548503
],
[
20.466031678562494,
62.65618865731428
],
[
21.16410094842319,
62.690605469220074
],
[
21.296557204193384,
62.669039431098724
],
[
21.37440668430879,
62.75787328461822
],
[
21.523910630149786,
62.764013215859976
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Orimattila",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.777668131411975,
60.891049556468346
],
[
25.918648296009007,
60.88664902178304
],
[
25.968264693542125,
60.9284976093024
],
[
26.050959314151626,
60.89335729603768
],
[
26.13994377330741,
60.907233947877415
],
[
26.07782947692055,
60.835476738045685
],
[
26.202004579725845,
60.801862554235576
],
[
26.208360065813284,
60.75801783142207
],
[
26.20836346987737,
60.75799437225537
],
[
26.21425512872841,
60.716275067921295
],
[
26.214258429154942,
60.71625173359061
],
[
26.109239115663442,
60.686376580238445
],
[
26.02777509747221,
60.71663024654294
],
[
25.933518664119816,
60.70594316067843
],
[
25.933518644018704,
60.70594321439318
],
[
25.93350921757406,
60.70595842184043
],
[
25.91493335899092,
60.73587073203236
],
[
25.91493115211506,
60.73587037297272
],
[
25.7467504797663,
60.70806144885568
],
[
25.74674790498569,
60.708060751325206
],
[
25.610868507914358,
60.67147625647465
],
[
25.519284242910665,
60.70389455197448
],
[
25.500993223930767,
60.76261145582954
],
[
25.433299700720138,
60.79544892540847
],
[
25.40221804797134,
60.85435886375159
],
[
25.50776437715635,
60.88616596575495
],
[
25.60470452020724,
60.87054203987964
],
[
25.657510017507587,
60.90643983482452
],
[
25.728303485200502,
60.93455999091179
],
[
25.777668131411975,
60.891049556468346
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Oripää",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.758494940949856,
60.93705669098894
],
[
22.786352996523497,
60.84097280454192
],
[
22.757723689164372,
60.81532837206671
],
[
22.61862023134512,
60.83607418941478
],
[
22.55246267945852,
60.87357073456236
],
[
22.60237842622934,
60.92688994877894
],
[
22.677419629876567,
60.916952215085324
],
[
22.758494940949856,
60.93705669098894
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Orivesi",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.724470398186256,
61.749016468404484
],
[
24.735950995139206,
61.69376296754666
],
[
24.812033976710975,
61.660023706146504
],
[
24.82834265042949,
61.55343086447705
],
[
24.744850729803044,
61.56590228332034
],
[
24.736994639136377,
61.52574770712342
],
[
24.625636260264457,
61.51374196426173
],
[
24.348445842827864,
61.555345662304575
],
[
24.319291757836115,
61.58499925941233
],
[
24.245113418958905,
61.568250229903796
],
[
24.11851674326715,
61.62719129079597
],
[
24.090787718748203,
61.792849795652394
],
[
24.227415504177547,
61.82480644080009
],
[
24.41654751213133,
61.73749549310773
],
[
24.55539303157804,
61.715538248495534
],
[
24.666651269867305,
61.86298950628995
],
[
24.820712831514218,
61.77013395884482
],
[
24.724470398186256,
61.749016468404484
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Oulainen",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.97780479798896,
64.34560368882525
],
[
25.20017311681156,
64.32093969415712
],
[
25.198324186396352,
64.2902265932013
],
[
25.15600815023835,
64.2308438231494
],
[
24.9524882904707,
64.13601788503924
],
[
24.906373771497304,
64.10945083311623
],
[
24.58205390948476,
64.18645318767184
],
[
24.53879804946767,
64.27753023850111
],
[
24.66756535836748,
64.28825069852148
],
[
24.797150268141312,
64.3775303773528
],
[
24.877921502038316,
64.39178520483763
],
[
24.97780479798896,
64.34560368882525
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Oulu",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.23368732155154,
65.27424471227071
],
[
26.316457609014936,
65.20120296075271
],
[
26.62861583971937,
65.09704847284878
],
[
26.61057509740945,
65.05396967755563
],
[
26.76842418089874,
64.95275971453599
],
[
26.661558341697674,
64.89163549085208
],
[
26.560452279694793,
64.90694029005235
],
[
26.499712657037644,
64.85947065930706
],
[
26.394312752498077,
64.84441584745775
],
[
26.273238691306656,
64.905945513851
],
[
26.175525378643762,
64.94558378455352
],
[
26.050988210220744,
64.9778445953055
],
[
25.84000976743382,
64.89302445814705
],
[
25.750454476848684,
64.88899822128852
],
[
25.728301485724675,
64.90445548018992
],
[
25.61397235980966,
64.94108154227935
],
[
25.494239626435892,
64.94298952588731
],
[
25.425698479668604,
64.92156913626249
],
[
25.44509475757762,
64.89238902463212
],
[
25.327308415081053,
64.88238904549016
],
[
25.0454030438793,
64.98422028822813
],
[
25.124239730434386,
65.05044824390578
],
[
25.134789950981,
65.0613390595066
],
[
24.95097960146365,
65.14112142357409
],
[
24.114933436625112,
65.1739425977789
],
[
24.137494816997418,
65.24164841288558
],
[
24.607151273172022,
65.21149268221765
],
[
25.130853447595264,
65.2493844540602
],
[
25.224910892083386,
65.23664228522671
],
[
25.31945496256901,
65.26262867062957
],
[
25.55242867490965,
65.25291823235038
],
[
25.569979398511904,
65.34612780005888
],
[
25.64692493424667,
65.37856260513966
],
[
25.789125250478047,
65.55029141204213
],
[
26.15564524250188,
65.55521146146656
],
[
26.15331905680124,
65.41907723239032
],
[
26.426655169404192,
65.34719518188783
],
[
26.23368732155154,
65.27424471227071
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Outokumpu",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.244641892037613,
62.79688470193371
],
[
29.303956762757064,
62.71795605290296
],
[
29.27666332025388,
62.68185324561919
],
[
29.139869072135575,
62.699332444074386
],
[
28.978838704136386,
62.64113982312608
],
[
29.04340376825647,
62.60234549079501
],
[
28.944018943130423,
62.57683117930497
],
[
28.790650906673246,
62.6402852165068
],
[
28.655149547575327,
62.657021681055895
],
[
28.70287954004013,
62.69426109953391
],
[
28.632706426384264,
62.74397733489813
],
[
28.717012210986507,
62.77332519666832
],
[
28.74441184985887,
62.81237694965378
],
[
28.790093251519092,
62.83379656114365
],
[
28.930527122959866,
62.774626232065074
],
[
28.96622919899988,
62.80299678805948
],
[
29.097602163511812,
62.845589545324984
],
[
29.244641892037613,
62.79688470193371
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Padasjoki",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.437427145203436,
61.48690614807831
],
[
25.490604550837034,
61.4382769585955
],
[
25.471203909297728,
61.40464090245407
],
[
25.545158601786248,
61.32917586844251
],
[
25.517193660215938,
61.30411005160316
],
[
25.41567917542243,
61.312290677686384
],
[
25.347885359638227,
61.24910385210812
],
[
25.20282373528747,
61.24093846256258
],
[
25.02938214758615,
61.24615327411947
],
[
24.991104672977173,
61.275325420155525
],
[
24.951791144033248,
61.293103665089305
],
[
24.913942605529876,
61.324881259957166
],
[
24.85995270335879,
61.475977759282216
],
[
24.97048058272434,
61.45070381560233
],
[
25.437427145203436,
61.48690614807831
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Paimio",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.8289178796579,
60.52435674116688
],
[
22.846004877356663,
60.510882941868395
],
[
22.875913678831346,
60.44526910689882
],
[
22.8189317634202,
60.37292142528093
],
[
22.607480327837038,
60.38184337031898
],
[
22.578785066304636,
60.4950741130653
],
[
22.699272607412038,
60.54569697424348
],
[
22.8289178796579,
60.52435674116688
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Paltamo",
"parent": "Kainuu"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.026143139309003,
64.55242374676922
],
[
28.079059004945634,
64.46978338859337
],
[
28.463041202594056,
64.37524853858756
],
[
28.13283889017708,
64.31714503827646
],
[
27.792932764750752,
64.36517011698815
],
[
27.427016363595126,
64.29289060896437
],
[
27.187766414503624,
64.31032381408755
],
[
27.251233684887143,
64.39904561700908
],
[
27.185076639378963,
64.45589011886247
],
[
27.396980797669062,
64.57188462691126
],
[
27.534724810346773,
64.5025904669916
],
[
27.7554941471506,
64.52935298798694
],
[
27.870479751579538,
64.57730365033461
],
[
28.026143139309003,
64.55242374676922
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Parainen",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.15134109378513,
60.49866216774663
],
[
21.298001618902955,
60.459460618768
],
[
21.445809675854964,
60.46949435042658
],
[
21.516815808599862,
60.43068456371715
],
[
21.52525335262206,
60.375767823368534
],
[
21.59865832079927,
60.38030205994266
],
[
21.649253643432786,
60.303586633605136
],
[
21.73246164675823,
60.27616263756861
],
[
21.81150723607576,
60.304462403431856
],
[
21.894689510658743,
60.26000039553686
],
[
21.95362854101132,
60.2652649228892
],
[
22.045978322442924,
60.29304891284895
],
[
22.07301407904579,
60.34155830274907
],
[
22.212039337807703,
60.3339952220964
],
[
22.31122339702153,
60.362114909532835
],
[
22.4237831921889,
60.3769576032792
],
[
22.436951865830196,
60.353439177100185
],
[
22.54299913670399,
60.34672375394998
],
[
22.446140328935403,
60.246971145846175
],
[
22.33855123364091,
60.116577004558614
],
[
22.265250937473986,
60.110960250459414
],
[
22.171319240202305,
60.036023802012856
],
[
22.171412524358626,
59.968389212727914
],
[
21.99075346629216,
59.8950802198172
],
[
22.066448432879234,
59.70936684187345
],
[
22.09808736176567,
59.50107387870316
],
[
21.49666555859932,
59.47564146137162
],
[
21.17971997374928,
59.499205140619736
],
[
21.262768954688962,
59.76188056071996
],
[
21.345645063001836,
59.88556530287525
],
[
21.23053014596861,
59.9379901160706
],
[
21.171384977303973,
59.950156879238456
],
[
21.114869394708872,
60.07748224644035
],
[
21.063007023387595,
60.103968100260246
],
[
21.023829963645476,
60.12393293027619
],
[
21.08957893186858,
60.25790790924909
],
[
21.15134109378513,
60.49866216774663
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Parikkala",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.503099980300792,
61.46127735722314
],
[
29.44430525022875,
61.424473719725945
],
[
29.364553266785926,
61.490655477438885
],
[
29.236422970256793,
61.52021337132583
],
[
29.26156800676476,
61.55776948966646
],
[
29.311391988873947,
61.60876795556757
],
[
29.40419875088417,
61.653868037293
],
[
29.538346869884656,
61.68389441085799
],
[
29.55927163880038,
61.7220728044556
],
[
30.082417589864573,
61.853209043372956
],
[
30.143957436061683,
61.852242214781576
],
[
30.07103309149357,
61.81878719399492
],
[
30.038115928239307,
61.76539439879079
],
[
29.818705994864843,
61.6552239774305
],
[
29.8084951342926,
61.63587407559027
],
[
29.754639303254542,
61.60309988014264
],
[
29.740461113161988,
61.575734740450784
],
[
29.688717996020195,
61.55209119158122
],
[
29.643207309240005,
61.5260959413173
],
[
29.591522293622674,
61.49562169684678
],
[
29.496249495959017,
61.49189803598222
],
[
29.503099980300792,
61.46127735722314
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Parkano",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.14111085391748,
62.08266510783552
],
[
23.29520839535918,
62.08294407625678
],
[
23.365385256883993,
62.07129007201177
],
[
23.310840309854246,
61.949515512319245
],
[
23.310086523091364,
61.90175929393952
],
[
23.149405339421772,
61.89659998225156
],
[
23.116764704922275,
61.93962299442951
],
[
22.964666298932464,
61.91299723614291
],
[
22.951782251038402,
61.97158506314644
],
[
22.81374831604955,
61.95805606489536
],
[
22.738728763065744,
61.91064382786737
],
[
22.64664346260216,
61.952107505000235
],
[
22.522595370590526,
61.99810584709524
],
[
22.780240238608897,
62.06072361543262
],
[
22.770893533828417,
62.15439456996235
],
[
22.861626435316804,
62.17255600282963
],
[
22.83125226399381,
62.27088364900686
],
[
22.994363772710884,
62.28890401573873
],
[
23.14111085391748,
62.08266510783552
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pedersören kunta",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.9370027184434,
63.67572498606114
],
[
23.16308641159819,
63.638041451557406
],
[
23.392888589070726,
63.49804666143027
],
[
23.264637229512243,
63.47005562911095
],
[
23.207039643873753,
63.398961426904634
],
[
23.10395795345943,
63.35798812082679
],
[
22.971599682451753,
63.37226563556848
],
[
22.87721943041745,
63.391709194778755
],
[
22.833946877425678,
63.473738711260616
],
[
22.842825548480942,
63.506052054272864
],
[
22.539402609692054,
63.610761188799906
],
[
22.733460306177864,
63.6663465604999
],
[
22.786237866041777,
63.69506654190963
],
[
22.8296768558988,
63.73591121664796
],
[
22.9370027184434,
63.67572498606114
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pelkosenniemi",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.956478473714032,
67.02954333070689
],
[
27.88160214883602,
66.8859098467001
],
[
27.685151890927695,
66.97888006384284
],
[
27.584586588025346,
67.00715720835987
],
[
27.14817506882804,
67.01381474993107
],
[
26.517973570018743,
66.94292424980955
],
[
26.760869252935976,
67.05232741340019
],
[
27.019580660024694,
67.16709309410025
],
[
27.086475298680025,
67.3377112957944
],
[
27.25269086123019,
67.36318802291454
],
[
27.221898834654485,
67.42530012226032
],
[
27.769901975690335,
67.30438690461997
],
[
27.87576162054677,
67.17544460153796
],
[
28.040696319139002,
67.17196918385562
],
[
28.35982838865922,
67.10811302589732
],
[
28.084537534131712,
67.03917239567176
],
[
27.956478473714032,
67.02954333070689
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pello",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.870206405872707,
66.93787714071286
],
[
24.988052006498464,
66.75437741706818
],
[
24.84607091550848,
66.76571339137553
],
[
24.739615538824335,
66.75355980456068
],
[
24.65821308656043,
66.71017178534835
],
[
24.526666043277757,
66.62811435848577
],
[
24.323164446488327,
66.59791778682052
],
[
24.299814551372123,
66.55001770014508
],
[
24.227047864486067,
66.53416501720743
],
[
24.185888868806146,
66.5125435086305
],
[
24.096910003272725,
66.49919415094533
],
[
23.94538036615488,
66.46542107496226
],
[
23.797080098711664,
66.52111685019243
],
[
23.79016045007832,
66.53817395098545
],
[
23.853723205786604,
66.55628773209254
],
[
23.878270721657167,
66.58296918475378
],
[
23.866042042916952,
66.6539877460247
],
[
23.888367400254616,
66.68304631422129
],
[
23.898957676525868,
66.71511114387488
],
[
23.879574978735306,
66.76324357249788
],
[
23.912092764651497,
66.79302439369124
],
[
23.961045305088252,
66.78499271376113
],
[
23.99534840358723,
66.82120009858455
],
[
23.935536497426497,
66.8832082373595
],
[
23.864933719978016,
66.91952433426465
],
[
23.86043464175767,
66.95157004392873
],
[
23.7843836068018,
66.996929396033
],
[
24.158750140379368,
67.00952261469143
],
[
24.870206405872707,
66.93787714071286
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Perho",
"parent": "Keski-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.77292096719699,
63.35868411607549
],
[
24.80360264332187,
63.27593050755667
],
[
24.754167639378114,
63.26591867876157
],
[
24.772883156821724,
63.13336361155502
],
[
24.530751179348353,
63.15748059186713
],
[
24.359007626177622,
63.11642950932766
],
[
24.170771051147174,
63.14799834173961
],
[
24.234480906675866,
63.17069882594221
],
[
24.052027816966365,
63.258144962333596
],
[
24.16462873342756,
63.331917658426825
],
[
24.369249746890617,
63.33700690192254
],
[
24.40568559446781,
63.372141153945876
],
[
24.48618066727618,
63.375204489680044
],
[
24.57275793823593,
63.39223265196013
],
[
24.77292096719699,
63.35868411607549
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pertunmaa",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.55929317784442,
61.40371635881503
],
[
26.50617149951734,
61.33983224233344
],
[
26.42953368652383,
61.37376549566785
],
[
26.318238062097517,
61.370904708869915
],
[
26.264849337341406,
61.42583080249349
],
[
26.277894557721545,
61.53715385114917
],
[
26.315039150183576,
61.608449415103195
],
[
26.37718876362281,
61.657805244607815
],
[
26.515458036200826,
61.627056458618966
],
[
26.60468283188428,
61.57224807662552
],
[
26.648394477618385,
61.496316844147536
],
[
26.55763776951527,
61.46338878701803
],
[
26.55929317784442,
61.40371635881503
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Petäjävesi",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.285410892037767,
62.389180684493205
],
[
25.299929903725804,
62.35580184494647
],
[
25.408210587986723,
62.34043784772776
],
[
25.469887648978624,
62.324485484088946
],
[
25.28521259874794,
62.15236215544774
],
[
25.118260964067236,
62.16379167361145
],
[
24.968808154789652,
62.21080123649752
],
[
25.071853945740802,
62.23802538575506
],
[
25.068965728197682,
62.33205985422405
],
[
25.030050005894264,
62.36720417211227
],
[
25.124827489332947,
62.42702205838909
],
[
25.285410892037767,
62.389180684493205
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pieksämäki",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.408508822240503,
62.503886123961415
],
[
27.691911101734537,
62.37475948510638
],
[
27.631887058689124,
62.282963078717124
],
[
27.5316048153009,
62.26812749423525
],
[
27.54890814589102,
62.20986900048772
],
[
27.566164121925986,
62.1476423547138
],
[
27.630933907070393,
62.15020687186361
],
[
27.653080489687532,
62.02776518212456
],
[
27.464363792346234,
62.03486090023533
],
[
27.39246175512771,
62.00586209483991
],
[
27.135460371721017,
62.199156384190566
],
[
26.987118827461995,
62.18189875834205
],
[
26.944226068945124,
62.14248478653505
],
[
26.852738039496327,
62.128900947031546
],
[
26.69786131091693,
62.21244346950788
],
[
26.71858018526519,
62.257034480919124
],
[
26.68316055557062,
62.30772635258236
],
[
26.66904420308034,
62.34186156569248
],
[
26.776124783540777,
62.35411024155361
],
[
26.680533003448943,
62.40382287180549
],
[
26.709125304677194,
62.452947916678944
],
[
26.789853989415406,
62.44880916567216
],
[
26.879478014184865,
62.485512647546294
],
[
26.94917379857771,
62.47642595510093
],
[
27.053049251302056,
62.479858594082785
],
[
27.116139922576956,
62.48497056877821
],
[
27.190200210387694,
62.46085499002581
],
[
27.224906049259037,
62.480036460873194
],
[
27.34270478845563,
62.503482523570604
],
[
27.408508822240503,
62.503886123961415
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pielavesi",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.01977996331529,
63.32962793347624
],
[
27.136988520460413,
63.3212241021394
],
[
27.123779539089586,
63.2551550052416
],
[
27.04555111584327,
63.23977258860491
],
[
27.049162336856437,
63.19318233005483
],
[
27.021238378646654,
63.1427701501197
],
[
26.9566165505212,
63.11769253707038
],
[
26.87645328063614,
63.08003698599288
],
[
26.606840318940815,
63.04207093817929
],
[
26.493426492708736,
63.112126518375376
],
[
26.41925001399074,
63.26038788286246
],
[
26.176711920224694,
63.43886160812046
],
[
26.167025076190175,
63.45533089806085
],
[
26.165383150807433,
63.480861929333216
],
[
26.361651225484767,
63.47778727784759
],
[
26.462370240205384,
63.44342515640159
],
[
26.56261272222826,
63.450422196216415
],
[
26.69350492451615,
63.44351073024701
],
[
26.770814039884577,
63.46170358036997
],
[
26.824552515136386,
63.51640784167903
],
[
27.01977996331529,
63.32962793347624
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pietarsaari",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.786237866041777,
63.69506654190963
],
[
22.733460306177864,
63.6663465604999
],
[
22.539402609692054,
63.610761188799906
],
[
21.978740136770117,
63.75994958467427
],
[
22.09650393416145,
63.832994246616714
],
[
22.786237866041777,
63.69506654190963
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pihtipudas",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.8928132017976,
63.43965123563871
],
[
25.994589831484948,
63.429120372800575
],
[
26.167025076190175,
63.45533089806085
],
[
26.176711920224694,
63.43886160812046
],
[
26.07054060654935,
63.3547797419207
],
[
26.128811456201806,
63.330200742646305
],
[
26.14189094724279,
63.274704395740855
],
[
26.02350876578243,
63.289830672387104
],
[
25.869347200821874,
63.274454604731964
],
[
25.69729368293309,
63.28123438253682
],
[
25.64728943194094,
63.24563081187802
],
[
25.333469424015604,
63.28431229966047
],
[
25.081871553936566,
63.46716818617796
],
[
25.14011176102627,
63.57431457054309
],
[
25.245179886087065,
63.61027606166918
],
[
25.34804418259938,
63.58148010237853
],
[
25.482407713228948,
63.53258061576059
],
[
25.77450278447079,
63.5056845868831
],
[
25.8928132017976,
63.43965123563871
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pirkkala",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.741124412264558,
61.43216156176925
],
[
23.591514238264033,
61.40386125838897
],
[
23.548336625540976,
61.35829870428967
],
[
23.47762142851193,
61.39682548722414
],
[
23.5462014500308,
61.46954837980839
],
[
23.613138048522448,
61.47779202423211
],
[
23.725645111569165,
61.48409204120566
],
[
23.741124412264558,
61.43216156176925
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Polvijärvi",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.474182747504916,
62.722347046868215
],
[
29.398842054235107,
62.68085356590779
],
[
29.303956762757064,
62.71795605290296
],
[
29.244641892037613,
62.79688470193371
],
[
29.097602163511812,
62.845589545324984
],
[
28.97322664331757,
62.91080545897496
],
[
28.971774147027407,
62.958758829610616
],
[
29.06483865500969,
62.98657331123877
],
[
29.127455807597656,
62.99000120183355
],
[
29.14870411808239,
63.0298971170034
],
[
29.355171495720434,
63.05456390808935
],
[
29.41611244889776,
63.10698721872728
],
[
29.49762653888714,
63.0618273833164
],
[
29.526720817607515,
63.00895521658052
],
[
29.60567231089693,
62.96848722885659
],
[
29.667767462745108,
62.90447858372912
],
[
29.663291800540936,
62.865748851578466
],
[
29.723254707093812,
62.8470240675225
],
[
29.647924078467632,
62.8067611787647
],
[
29.563226547265565,
62.793229707081174
],
[
29.584799067002294,
62.721465506752
],
[
29.474182747504916,
62.722347046868215
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pomarkku",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.163665879225135,
61.772257058201696
],
[
22.19171265295253,
61.74081779925222
],
[
22.298418178786175,
61.75678167003111
],
[
22.382677395321963,
61.70936337013331
],
[
22.33388282890945,
61.70466381911311
],
[
22.232937847189472,
61.694467872201656
],
[
22.217013514298202,
61.65184921967222
],
[
22.034339200957927,
61.615010289602466
],
[
21.85151689080887,
61.681576939574526
],
[
21.72805210385736,
61.74792023989012
],
[
21.97611436026529,
61.76708540022329
],
[
22.039920321751865,
61.74669260335217
],
[
22.0875205791881,
61.78265935529447
],
[
22.163665879225135,
61.772257058201696
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pori",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.85151689080887,
61.681576939574526
],
[
22.034339200957927,
61.615010289602466
],
[
22.217013514298202,
61.65184921967222
],
[
22.232937847189472,
61.694467872201656
],
[
22.33388282890945,
61.70466381911311
],
[
22.382677395321963,
61.70936337013331
],
[
22.556169269923092,
61.68606674207458
],
[
22.647174002892154,
61.69650126502768
],
[
22.68952436291612,
61.67493684175992
],
[
22.724929966486012,
61.644961304083616
],
[
22.704272560613997,
61.62387409391858
],
[
22.696052060787043,
61.599764320161256
],
[
22.58248245116566,
61.54830606393078
],
[
22.434161862464983,
61.48892267202585
],
[
22.241986789370916,
61.57218243504768
],
[
22.097050725052746,
61.57325050813366
],
[
21.93552316563361,
61.535330722455086
],
[
21.884117785562275,
61.50381573842905
],
[
21.803713057835346,
61.38514566782163
],
[
21.71324758999653,
61.389872734571306
],
[
21.658125334280207,
61.4236261467887
],
[
21.58227082678724,
61.41747338156919
],
[
21.400397043818394,
61.49967718941109
],
[
20.874559106225444,
61.53018317197746
],
[
20.903696363016508,
61.64652397055543
],
[
20.88888532684414,
61.699927812336355
],
[
21.72805210385736,
61.74792023989012
],
[
21.85151689080887,
61.681576939574526
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pornainen",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.461157529971604,
60.419540515717316
],
[
25.363440796203584,
60.406097895447544
],
[
25.22418758575319,
60.50163109281483
],
[
25.204086670483505,
60.524854117754
],
[
25.24147877757544,
60.53799550171536
],
[
25.39338872883377,
60.55120649601049
],
[
25.415492397094226,
60.541544172332664
],
[
25.431476075858495,
60.48294091643315
],
[
25.499318364757855,
60.45385315605867
],
[
25.510196246947178,
60.43979401273309
],
[
25.461157529971604,
60.419540515717316
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Porvoo",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.80100235338895,
60.4869039408695
],
[
25.946791013936416,
60.408079277211186
],
[
25.92574506076938,
60.32178784213445
],
[
25.930340667465863,
60.23970299132314
],
[
25.93034069702489,
60.23970208460883
],
[
25.930343584317672,
60.239650636075815
],
[
26.055446626247633,
60.26019546698711
],
[
26.05544738173894,
60.26019558909488
],
[
26.055499741397924,
60.26020415983388
],
[
26.27125609612447,
60.04473391959834
],
[
26.27125692252034,
60.04473308007437
],
[
26.27129713136787,
60.044692633251486
],
[
26.188556989533435,
60.038220293561764
],
[
26.075061451295305,
60.01405631799766
],
[
26.01730365319468,
59.976789718271945
],
[
25.582679279285554,
59.92819718663559
],
[
25.32928517245979,
59.93710337467555
],
[
25.388121512245558,
60.16934465537129
],
[
25.526917961683107,
60.26525814277761
],
[
25.4659110497041,
60.29441920322183
],
[
25.36516877240461,
60.375547373093845
],
[
25.363440796203584,
60.406097895447544
],
[
25.461157529971604,
60.419540515717316
],
[
25.510196246947178,
60.43979401273309
],
[
25.499318364757855,
60.45385315605867
],
[
25.431476075858495,
60.48294091643315
],
[
25.557422635933577,
60.48853994598986
],
[
25.607212987014385,
60.469910910834706
],
[
25.652605004336767,
60.50172505418636
],
[
25.72177765072338,
60.48099176778927
],
[
25.736765195770253,
60.49930366150261
],
[
25.75755147446155,
60.541982463163414
],
[
25.82310956355571,
60.55098140919702
],
[
25.82310992649505,
60.55098145729179
],
[
25.82322708236016,
60.55099751201204
],
[
25.80100235338895,
60.4869039408695
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Posio",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.695312032581324,
66.48585324172434
],
[
28.538087470803234,
66.33261019166024
],
[
28.592998096746168,
66.26788377069155
],
[
28.749659454162465,
66.25448293084146
],
[
28.715761749116133,
66.13590787360437
],
[
28.604163409963913,
66.12816250390854
],
[
28.6248053435983,
66.07090453221068
],
[
28.76423983670993,
66.04334480801933
],
[
28.74726399890935,
66.00180794676656
],
[
28.651970996481122,
65.98689030173668
],
[
28.544104758718273,
66.00895517958301
],
[
28.390259248595047,
65.9962958364826
],
[
28.372170971760916,
65.96021883960108
],
[
28.508768205519964,
65.8897805629578
],
[
28.51319568641343,
65.84620753414578
],
[
28.223498660235762,
65.80059489729202
],
[
27.76109953621122,
65.8273180608805
],
[
27.65487404021862,
65.96035961087286
],
[
27.52610587450759,
65.92161334213782
],
[
27.407421691197623,
65.93840390867841
],
[
27.45765886398524,
65.9699605235849
],
[
27.469198266831775,
66.10377402498156
],
[
27.27278661569835,
66.14283451487013
],
[
27.260037143380075,
66.19825551722583
],
[
27.26118131784211,
66.25648596994051
],
[
27.24984879607299,
66.33199293711307
],
[
27.414663220564194,
66.28906765570898
],
[
27.59596356527379,
66.40094267183709
],
[
27.792954315603232,
66.43218343706529
],
[
27.981952494621304,
66.41940300356546
],
[
28.13861959337652,
66.43186351929599
],
[
28.2239721139888,
66.41785981479154
],
[
28.396406746547147,
66.49225416364993
],
[
28.695312032581324,
66.48585324172434
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pudasjärvi",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.65487404021862,
65.96035961087286
],
[
27.76109953621122,
65.8273180608805
],
[
27.71254001197218,
65.78077010038245
],
[
27.824123684020666,
65.65358521183758
],
[
27.776988183899,
65.50735203600743
],
[
27.86599728248431,
65.40849544063141
],
[
27.98262659810839,
65.40324132283364
],
[
28.1394306895663,
65.33700399462947
],
[
28.162380222985302,
65.25034867687616
],
[
27.995641939577816,
65.22119730022723
],
[
27.894273850498376,
65.0914689805329
],
[
27.66700640121429,
65.12131417162496
],
[
27.54401689269816,
65.08937109717768
],
[
27.32988377601853,
65.09066018350923
],
[
27.00469434054063,
65.10682408864365
],
[
26.62861583971937,
65.09704847284878
],
[
26.316457609014936,
65.20120296075271
],
[
26.23368732155154,
65.27424471227071
],
[
26.426655169404192,
65.34719518188783
],
[
26.15331905680124,
65.41907723239032
],
[
26.15564524250188,
65.55521146146656
],
[
26.158233713787187,
65.72555548273235
],
[
26.82470418414016,
65.70114506039535
],
[
27.071978624620648,
65.72977106087836
],
[
27.407421691197623,
65.93840390867841
],
[
27.52610587450759,
65.92161334213782
],
[
27.65487404021862,
65.96035961087286
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pukkila",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.7467504797663,
60.70806144885568
],
[
25.73421334661164,
60.65743086839674
],
[
25.65964655260983,
60.61387522573641
],
[
25.659644177327916,
60.61387522887481
],
[
25.575644581089307,
60.61380650777964
],
[
25.516227783774877,
60.579859896993376
],
[
25.442349224533558,
60.63672868780038
],
[
25.42528858973978,
60.663196225245464
],
[
25.471161519940676,
60.69230221342839
],
[
25.519284242910665,
60.70389455197448
],
[
25.610868507914358,
60.67147625647465
],
[
25.74674790498569,
60.708060751325206
],
[
25.7467504797663,
60.70806144885568
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Punkalaidun",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.272881390617584,
61.221125339925585
],
[
23.25775616067182,
61.18255211499284
],
[
23.38336016247538,
61.13076564818584
],
[
23.25267469312058,
61.10460500801165
],
[
23.288112427939947,
61.057582273649096
],
[
23.25998476936507,
61.01855397534714
],
[
23.195365933783123,
61.00121980619564
],
[
23.148076391157893,
61.031411272873385
],
[
22.96850459112584,
61.04325435929721
],
[
22.993958190170343,
61.078652543912966
],
[
22.92418106714482,
61.141993462565765
],
[
22.934220209138495,
61.20497634041384
],
[
23.005476626647045,
61.18555397712418
],
[
23.272881390617584,
61.221125339925585
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Puolanka",
"parent": "Kainuu"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.22006389441708,
65.15751437200943
],
[
28.128863195612478,
65.07704891304446
],
[
28.260889269351654,
65.00673833065031
],
[
28.294301348803234,
64.89837490872456
],
[
28.14797194439845,
64.80820725166964
],
[
28.05601396041358,
64.8085734509567
],
[
28.074326976874026,
64.63287704896294
],
[
27.870479751579538,
64.57730365033461
],
[
27.7554941471506,
64.52935298798694
],
[
27.534724810346773,
64.5025904669916
],
[
27.396980797669062,
64.57188462691126
],
[
27.308024233840428,
64.61603450993921
],
[
27.239627670995155,
64.70034657040478
],
[
27.25356659621627,
64.73559044912037
],
[
27.148091528013087,
64.83528737663715
],
[
27.35435638813982,
64.81198893409018
],
[
27.40263960354522,
64.85524603476681
],
[
27.38575153652437,
64.95901457514518
],
[
27.262503917569866,
65.0273398602175
],
[
27.32988377601853,
65.09066018350923
],
[
27.54401689269816,
65.08937109717768
],
[
27.66700640121429,
65.12131417162496
],
[
27.894273850498376,
65.0914689805329
],
[
27.995641939577816,
65.22119730022723
],
[
28.19854217976145,
65.20466051777916
],
[
28.22006389441708,
65.15751437200943
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Puumala",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.392314097494967,
61.66895920166562
],
[
28.458303758661774,
61.61101794264427
],
[
28.571902375858233,
61.59978834197076
],
[
28.811777685914087,
61.535776930040655
],
[
28.791440521735044,
61.47775766633663
],
[
28.684190075441943,
61.47674246336338
],
[
28.543325832116942,
61.47601139469549
],
[
28.440056707510678,
61.51155016435536
],
[
28.42662029043397,
61.4568440396524
],
[
28.252197920457956,
61.37968654612345
],
[
27.93115528309688,
61.35039289959395
],
[
27.79260651091915,
61.362078407515675
],
[
27.749400149401257,
61.36956723694685
],
[
27.678792070506304,
61.40608350316439
],
[
27.759699143301514,
61.435158760730914
],
[
27.740914128044512,
61.46817458472504
],
[
27.810532870828048,
61.4997084386491
],
[
27.900382419289237,
61.54559553325935
],
[
27.969343494950184,
61.60455632702678
],
[
27.98077603817275,
61.65594061283398
],
[
28.120439140335996,
61.61892142638295
],
[
28.124158156187423,
61.66787079182006
],
[
28.176055089452117,
61.71694120114094
],
[
28.234875292188512,
61.681660103091446
],
[
28.392314097494967,
61.66895920166562
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pyhtää",
"parent": "Kymenlaakso"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.839680469480655,
60.47485933621289
],
[
26.875334064624905,
60.2003359585126
],
[
26.764651483126897,
60.20018817102837
],
[
26.741518124179255,
60.189237105028575
],
[
26.656395043049717,
60.17132754163508
],
[
26.58379033869661,
60.27157644052291
],
[
26.559009538862984,
60.36432994232763
],
[
26.498632899583306,
60.39017672820919
],
[
26.485672136885192,
60.44761560388524
],
[
26.44783951990371,
60.492418977589494
],
[
26.511203000903574,
60.52731405382789
],
[
26.50061376433346,
60.54544127831461
],
[
26.54429215419041,
60.55490654039253
],
[
26.54178379622185,
60.57500645546376
],
[
26.597278764294444,
60.64141045439376
],
[
26.682763889321166,
60.64929362822725
],
[
26.753882629017703,
60.57570973161675
],
[
26.839680469480655,
60.47485933621289
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pyhäjoki",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.700802406673713,
64.48145715367912
],
[
24.877921502038316,
64.39178520483763
],
[
24.797150268141312,
64.3775303773528
],
[
24.68520822981414,
64.37475050617284
],
[
24.469980939139734,
64.38578071260321
],
[
24.371450897225547,
64.36149949805117
],
[
24.264593123138543,
64.31210613128678
],
[
23.984469053964762,
64.37701512055027
],
[
23.140053933743303,
64.48346646468895
],
[
23.2351850475829,
64.51107095176864
],
[
23.690708647541427,
64.62873956242532
],
[
24.700802406673713,
64.48145715367912
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pyhäjärvi",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.167025076190175,
63.45533089806085
],
[
25.994589831484948,
63.429120372800575
],
[
25.8928132017976,
63.43965123563871
],
[
25.77450278447079,
63.5056845868831
],
[
25.482407713228948,
63.53258061576059
],
[
25.34804418259938,
63.58148010237853
],
[
25.408285938113128,
63.620177864822026
],
[
25.561452743579697,
63.645082054289716
],
[
25.661957745039526,
63.79977186288133
],
[
26.25085285125394,
63.926376385199255
],
[
26.24343828592651,
63.84103548005324
],
[
26.29180374485319,
63.58994769144543
],
[
26.195212388391383,
63.56930275428687
],
[
26.165383150807433,
63.480861929333216
],
[
26.167025076190175,
63.45533089806085
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pyhäntä",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.77087094547036,
64.21602350653131
],
[
26.781108999649764,
64.05710016383861
],
[
26.870402194524914,
64.03697383279663
],
[
26.559394743141567,
63.96368806767338
],
[
26.24343828592651,
63.84103548005324
],
[
26.25085285125394,
63.926376385199255
],
[
26.188824130674572,
63.99510810963146
],
[
26.226985629515575,
64.09063942362484
],
[
26.1422742710847,
64.13559096016314
],
[
26.292369944597343,
64.16065625517197
],
[
26.321923510189116,
64.20063638773696
],
[
26.397395441502244,
64.22889666217833
],
[
26.77087094547036,
64.21602350653131
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pyhäranta",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.316031428999214,
61.10356214814156
],
[
21.461032259952738,
61.01660384398027
],
[
21.552067852753012,
61.020342295055855
],
[
21.621163997607283,
61.05178976134238
],
[
21.66559235142651,
60.99633223547109
],
[
21.591764810028643,
60.95055907605147
],
[
21.512703253172113,
60.96434455486463
],
[
21.505549695699298,
60.88351030012882
],
[
21.43381827630249,
60.878998188902074
],
[
21.403036404922535,
60.92245976845245
],
[
21.417250031286773,
60.958302471293905
],
[
21.231845185936763,
61.0520878946848
],
[
20.771447322299593,
61.12690828293262
],
[
20.77313066402161,
61.13348200934683
],
[
21.316031428999214,
61.10356214814156
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pälkäne",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.85995270335879,
61.475977759282216
],
[
24.913942605529876,
61.324881259957166
],
[
24.82575021610387,
61.27592518313528
],
[
24.731737449954004,
61.31745587133353
],
[
24.70832038524796,
61.272398926726034
],
[
24.573676705979434,
61.30393742213433
],
[
24.30238524657783,
61.233216077362
],
[
24.0883984592838,
61.29113084438519
],
[
24.079139117954103,
61.33048362797323
],
[
24.286852594481132,
61.40008734307105
],
[
24.28197906510681,
61.43813152867347
],
[
24.449114007262587,
61.41443592444401
],
[
24.729095877344793,
61.445853764408945
],
[
24.781801392842308,
61.49100671745091
],
[
24.85995270335879,
61.475977759282216
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Pöytyä",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.60237842622934,
60.92688994877894
],
[
22.55246267945852,
60.87357073456236
],
[
22.61862023134512,
60.83607418941478
],
[
22.757723689164372,
60.81532837206671
],
[
22.93844512654594,
60.71567377920744
],
[
22.85468395944387,
60.62926345793749
],
[
22.682117153438526,
60.639559732786765
],
[
22.56121993179163,
60.66669967393439
],
[
22.415003582834892,
60.73729360055229
],
[
22.222081281274896,
60.80793822142038
],
[
22.160313629897413,
60.87200574225194
],
[
22.263631915099023,
60.926863484051886
],
[
22.586239536387065,
60.938790284221206
],
[
22.60237842622934,
60.92688994877894
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Raahe",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.462926651381874,
64.36257844219206
],
[
25.20017311681156,
64.32093969415712
],
[
24.97780479798896,
64.34560368882525
],
[
24.877921502038316,
64.39178520483763
],
[
24.700802406673713,
64.48145715367912
],
[
23.690708647541427,
64.62873956242532
],
[
23.835800228600682,
64.66547423967808
],
[
23.878820672374466,
64.74971281267388
],
[
23.94340975386951,
64.85477845867632
],
[
24.620246214902167,
64.78533780561571
],
[
24.808981335204404,
64.66254525939003
],
[
24.736356953584135,
64.58690047854154
],
[
24.838085804266033,
64.56663027362012
],
[
25.420951722473013,
64.41580558036506
],
[
25.462926651381874,
64.36257844219206
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Raasepori",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.620482993614967,
60.19413309712222
],
[
23.622395098955092,
60.16641609543189
],
[
23.825840732070514,
60.19753585992334
],
[
23.898992775320302,
60.20600126568937
],
[
23.942377708606152,
60.12949255559913
],
[
23.81502335630176,
60.12441123093632
],
[
23.87455168985584,
60.047688091815445
],
[
23.759067382224075,
60.03762149198219
],
[
23.773635145982407,
60.00321101204122
],
[
23.83863116336517,
59.981016338576154
],
[
23.800638087754166,
59.92051919251274
],
[
23.98637170065384,
59.75169493879565
],
[
23.35806042807723,
59.657091180624754
],
[
23.21534713414351,
59.651187557134584
],
[
23.218803650225304,
59.757941810966635
],
[
23.295166517340334,
59.902006766870336
],
[
23.218893846843585,
59.93230665668949
],
[
23.16071277766133,
59.902666307213025
],
[
23.090649777052615,
59.93558385302922
],
[
23.010038648458295,
59.88220454889591
],
[
22.814285694377972,
59.87758190842406
],
[
22.801316717314513,
60.0253749161876
],
[
22.853264417082812,
60.0130474595162
],
[
22.953525948175866,
59.99946160381127
],
[
22.987352378149616,
60.095538656752204
],
[
23.148649723585198,
60.10044064610653
],
[
23.30591070885994,
60.18866010057657
],
[
23.362937527008217,
60.1498987832029
],
[
23.553615733139758,
60.20220453366641
],
[
23.620482993614967,
60.19413309712222
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Raisio",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.245861257465975,
60.505020150689326
],
[
22.19865087700757,
60.46200814420451
],
[
22.107843033932156,
60.447939571772686
],
[
22.074759841289712,
60.47143476257349
],
[
22.085079420475783,
60.51496134944838
],
[
22.143837239002444,
60.52972346856505
],
[
22.245861257465975,
60.505020150689326
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Rantasalmi",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.389078598677578,
62.21438065087288
],
[
28.41861887499369,
62.11800571852856
],
[
28.503352454029343,
62.12114104081654
],
[
28.59331334068299,
62.102277451851506
],
[
28.655842472556657,
62.00591324536204
],
[
28.71559365294891,
61.96752037312631
],
[
28.66255380310854,
61.93514261494671
],
[
28.559318744168376,
61.943761749809326
],
[
28.452875800236196,
61.915348140172455
],
[
28.370692102535827,
61.92464468548657
],
[
28.221653617659776,
61.93757417619655
],
[
28.227784858228787,
61.95769757888552
],
[
28.132210312876392,
61.977261022088996
],
[
28.07497678897726,
61.94924725861606
],
[
27.871848743683604,
62.006461803552696
],
[
27.866773620074905,
62.04043151705415
],
[
27.94472326412317,
62.05863411079929
],
[
27.926983917998882,
62.08235133485993
],
[
28.08008765743461,
62.116437821253044
],
[
28.02684516848171,
62.17037818106208
],
[
28.059655397474412,
62.20496128193318
],
[
28.04892181713235,
62.23529266826224
],
[
28.389078598677578,
62.21438065087288
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ranua",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.260037143380075,
66.19825551722583
],
[
27.27278661569835,
66.14283451487013
],
[
27.469198266831775,
66.10377402498156
],
[
27.45765886398524,
65.9699605235849
],
[
27.407421691197623,
65.93840390867841
],
[
27.071978624620648,
65.72977106087836
],
[
26.82470418414016,
65.70114506039535
],
[
26.158233713787187,
65.72555548273235
],
[
26.160110816913246,
65.82233496749187
],
[
25.93919091455563,
65.77399249201358
],
[
25.68100412889068,
65.89195570996729
],
[
25.84659365167464,
66.01513286706671
],
[
25.763868191315996,
66.08904369991846
],
[
26.067324370513738,
66.15912732227922
],
[
26.367925005979473,
66.22294331677658
],
[
26.469329690911536,
66.187772809804
],
[
26.619015723586777,
66.21690830181302
],
[
26.579609054765267,
66.28501090325166
],
[
26.72737313669161,
66.29864002963026
],
[
26.90046290005492,
66.301893631821
],
[
27.002434564041433,
66.24786866085545
],
[
27.097022661475982,
66.20135002342715
],
[
27.260037143380075,
66.19825551722583
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Rauma",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.049528873544986,
61.08029242625965
],
[
22.070715361386327,
61.04242077509147
],
[
21.844109882599177,
61.00940228698549
],
[
21.775752187513167,
61.03411218223962
],
[
21.66559235142651,
60.99633223547109
],
[
21.621163997607283,
61.05178976134238
],
[
21.552067852753012,
61.020342295055855
],
[
21.461032259952738,
61.01660384398027
],
[
21.316031428999214,
61.10356214814156
],
[
20.77313066402161,
61.13348200934683
],
[
20.812072383169568,
61.28487571704425
],
[
21.4114576650771,
61.24508955556688
],
[
21.646979502703374,
61.14984612690329
],
[
21.867478513022416,
61.14566324523323
],
[
22.049528873544986,
61.08029242625965
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Rautalampi",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.84214083394352,
62.80459095034711
],
[
26.950648730756065,
62.62410529793357
],
[
26.88935867662706,
62.58579735777063
],
[
26.91226589228374,
62.55639665532825
],
[
26.879478014184865,
62.485512647546294
],
[
26.789853989415406,
62.44880916567216
],
[
26.709125304677194,
62.452947916678944
],
[
26.633113429681593,
62.4507694393915
],
[
26.483215272611602,
62.53236422842547
],
[
26.598386281160533,
62.61077257947533
],
[
26.446560232981774,
62.78917312534236
],
[
26.53832157877884,
62.82009586046658
],
[
26.63458534257775,
62.81009895935193
],
[
26.667202065266085,
62.849158716992754
],
[
26.84214083394352,
62.80459095034711
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Rautavaara",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.359590185126176,
63.75475262137381
],
[
28.461227319714382,
63.69860800446877
],
[
28.550900085726564,
63.700626129396156
],
[
28.593723580778757,
63.669814393035665
],
[
28.606748839610976,
63.575441675394906
],
[
28.668509050991887,
63.56120520454729
],
[
28.603458533141197,
63.52745557606171
],
[
28.641107172946768,
63.47636370038974
],
[
28.666111147505344,
63.423194116909016
],
[
28.75952582328101,
63.38780885401111
],
[
28.736763922478662,
63.311357421163656
],
[
28.610804126705016,
63.20383531983483
],
[
28.549098899184138,
63.229345089631025
],
[
28.467468050401152,
63.246820420749245
],
[
28.448258150670977,
63.2726742037143
],
[
28.438887358951092,
63.35130930074883
],
[
28.358932785598192,
63.37425895612106
],
[
28.34042744770475,
63.32503512254138
],
[
28.269042163816817,
63.32873226177171
],
[
28.259382110625793,
63.385307269829916
],
[
28.165735933859303,
63.37977983427879
],
[
28.088413282867506,
63.403310726003085
],
[
28.126743634830525,
63.48828047581767
],
[
28.041811389483136,
63.55011725706941
],
[
28.043812440208598,
63.6191793403927
],
[
28.168816139778322,
63.71480063551439
],
[
28.273915024058216,
63.66881147622884
],
[
28.359590185126176,
63.75475262137381
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Rautjärvi",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.24482908691861,
61.270689942893725
],
[
29.08426413919056,
61.21043472112194
],
[
29.02296154575684,
61.24406150181686
],
[
29.075462253504444,
61.37005205237308
],
[
29.15609932186623,
61.429159504922765
],
[
29.06461303486923,
61.46048957574593
],
[
29.140726395862803,
61.48561268059961
],
[
29.215020775325797,
61.48510216742708
],
[
29.236422970256793,
61.52021337132583
],
[
29.364553266785926,
61.490655477438885
],
[
29.44430525022875,
61.424473719725945
],
[
29.32200959389062,
61.346633569158065
],
[
29.24482908691861,
61.270689942893725
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Reisjärvi",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.092765663905467,
63.74784514090767
],
[
25.245179886087065,
63.61027606166918
],
[
25.14011176102627,
63.57431457054309
],
[
25.081871553936566,
63.46716818617796
],
[
25.036315554646627,
63.45807317068062
],
[
24.820169511543167,
63.58660503262268
],
[
24.618713972942537,
63.65088801439577
],
[
24.73702012993126,
63.709091853883095
],
[
24.92362199887547,
63.67031133747386
],
[
24.95561456341682,
63.757488989525115
],
[
25.092765663905467,
63.74784514090767
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Riihimäki",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.835072390467623,
60.666275324683625
],
[
24.739880309973124,
60.647496423399396
],
[
24.615911178660863,
60.66756880298995
],
[
24.605615954984103,
60.69275358722805
],
[
24.670629160210353,
60.72287638471641
],
[
24.690949829294112,
60.75148881006861
],
[
24.714607765624805,
60.796462241050904
],
[
24.83643516097875,
60.77607935638761
],
[
24.835072390467623,
60.666275324683625
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ristijärvi",
"parent": "Kainuu"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.246019662203597,
64.63678023222835
],
[
28.321246660967763,
64.58967060216102
],
[
28.431112028724897,
64.59672498076246
],
[
28.859837309382307,
64.49343277222424
],
[
28.83249565656044,
64.44626805994211
],
[
28.813443736390266,
64.34150413414086
],
[
28.751945844500508,
64.3102361088784
],
[
28.586295374951828,
64.33603351597922
],
[
28.463041202594056,
64.37524853858756
],
[
28.079059004945634,
64.46978338859337
],
[
28.026143139309003,
64.55242374676922
],
[
27.870479751579538,
64.57730365033461
],
[
28.074326976874026,
64.63287704896294
],
[
28.246019662203597,
64.63678023222835
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Rovaniemi",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.24984879607299,
66.33199293711307
],
[
27.26118131784211,
66.25648596994051
],
[
27.260037143380075,
66.19825551722583
],
[
27.097022661475982,
66.20135002342715
],
[
27.002434564041433,
66.24786866085545
],
[
26.90046290005492,
66.301893631821
],
[
26.72737313669161,
66.29864002963026
],
[
26.579609054765267,
66.28501090325166
],
[
26.619015723586777,
66.21690830181302
],
[
26.469329690911536,
66.187772809804
],
[
26.367925005979473,
66.22294331677658
],
[
26.067324370513738,
66.15912732227922
],
[
25.774632230137573,
66.21379099934474
],
[
25.33932594851951,
66.20981658049105
],
[
24.791824681842527,
66.33223570759816
],
[
25.050410740599457,
66.47584860021075
],
[
24.988052006498464,
66.75437741706818
],
[
24.870206405872707,
66.93787714071286
],
[
24.736798652812862,
67.15191696854377
],
[
24.861994293491573,
67.17711906044086
],
[
25.350017390823425,
67.15128862116994
],
[
25.611073166620585,
67.1367044803519
],
[
25.904471556493537,
67.11993325911558
],
[
26.305865807496765,
66.99209141311167
],
[
26.372630225521682,
66.9538217945835
],
[
26.517973570018743,
66.94292424980955
],
[
26.655724601167634,
66.82203699267963
],
[
26.6975452099436,
66.57459397653854
],
[
27.123526705910212,
66.3668348755905
],
[
27.24984879607299,
66.33199293711307
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ruokolahti",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.140726395862803,
61.48561268059961
],
[
29.06461303486923,
61.46048957574593
],
[
29.15609932186623,
61.429159504922765
],
[
29.075462253504444,
61.37005205237308
],
[
29.02296154575684,
61.24406150181686
],
[
29.08426413919056,
61.21043472112194
],
[
29.021965868535457,
61.188489395604385
],
[
28.927280720253236,
61.2275864823915
],
[
28.918882714974572,
61.275743420164254
],
[
28.845641124358874,
61.277634702283166
],
[
28.848907675844476,
61.249787271049186
],
[
28.811471207576194,
61.24029185868146
],
[
28.74560367897104,
61.24298142721606
],
[
28.701680111029237,
61.231561630379446
],
[
28.598181346959322,
61.19978088821277
],
[
28.397944570503554,
61.284686929479726
],
[
28.252197920457956,
61.37968654612345
],
[
28.42662029043397,
61.4568440396524
],
[
28.440056707510678,
61.51155016435536
],
[
28.543325832116942,
61.47601139469549
],
[
28.684190075441943,
61.47674246336338
],
[
28.791440521735044,
61.47775766633663
],
[
28.811777685914087,
61.535776930040655
],
[
28.956050178933054,
61.540664166868936
],
[
29.26156800676476,
61.55776948966646
],
[
29.236422970256793,
61.52021337132583
],
[
29.215020775325797,
61.48510216742708
],
[
29.140726395862803,
61.48561268059961
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ruovesi",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.03551018113136,
62.12095571937357
],
[
24.140740073434987,
62.08132718731286
],
[
24.28484282872805,
62.077647912566036
],
[
24.311223683649704,
62.04529705611278
],
[
24.281702501867674,
62.01240312522025
],
[
24.438634490343645,
61.91056619994726
],
[
24.410989836671078,
61.85936473372981
],
[
24.227415504177547,
61.82480644080009
],
[
24.090787718748203,
61.792849795652394
],
[
23.999885850041736,
61.78716094944178
],
[
23.85551795154476,
61.83661390029927
],
[
23.844340452317947,
61.94949555938567
],
[
23.697642589374965,
62.031303117293774
],
[
23.680622357840154,
62.08443695404137
],
[
23.786120645713044,
62.08883955123869
],
[
23.86594621337978,
62.12883996420263
],
[
23.855426661104545,
62.17094609197768
],
[
24.03551018113136,
62.12095571937357
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Rusko",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.388022610611856,
60.630480491989005
],
[
22.264917797834027,
60.51755287034186
],
[
22.245861257465975,
60.505020150689326
],
[
22.143837239002444,
60.52972346856505
],
[
22.210045330704425,
60.59567845344566
],
[
22.415003582834892,
60.73729360055229
],
[
22.388022610611856,
60.630480491989005
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Rääkkylä",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.949640908595665,
62.37025335980482
],
[
30.01165921016049,
62.34147585252176
],
[
30.015979143854256,
62.30810673729896
],
[
29.96339273322939,
62.28338901192938
],
[
30.005086545851793,
62.24430449895214
],
[
29.877744741183577,
62.21183651124385
],
[
29.951388615510336,
62.14611679898643
],
[
29.784169959963755,
62.1954108878952
],
[
29.61296840274265,
62.17526779203335
],
[
29.43008176329975,
62.236528971301276
],
[
29.32191279203706,
62.31312134426563
],
[
29.29596533462261,
62.3867277702124
],
[
29.5385214269183,
62.407143282732896
],
[
29.645518482786382,
62.35974842085642
],
[
29.763220867645924,
62.407439052530115
],
[
29.949640908595665,
62.37025335980482
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Saarijärvi",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.53452201354562,
62.90604022893137
],
[
25.57111871182723,
62.85926780156143
],
[
25.69660111883179,
62.78236471543197
],
[
25.492051413364116,
62.726068876023405
],
[
25.483862806383907,
62.54705339971766
],
[
25.40607119357976,
62.520826206173716
],
[
25.251913085760126,
62.53765059555227
],
[
25.183785131071406,
62.58228324907576
],
[
24.95529329208448,
62.57221133180382
],
[
24.899756610672274,
62.60208011810733
],
[
24.714105419168565,
62.53152634592202
],
[
24.582168743659775,
62.664786460810895
],
[
24.519591928794178,
62.68597828298199
],
[
24.504238561717493,
62.71043046399901
],
[
24.822516783052762,
62.79027735453163
],
[
24.90022251870819,
62.74321220452121
],
[
24.947916073767264,
62.78576435851505
],
[
24.931239946516314,
62.81858072038899
],
[
25.036633625473463,
62.86230245998095
],
[
25.17294000290965,
62.79869041418783
],
[
25.300406461035305,
62.8184639410972
],
[
25.467251332706045,
62.90849061231115
],
[
25.53452201354562,
62.90604022893137
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Salla",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.472055550868756,
66.54390093546593
],
[
29.57292981738239,
66.43285320432079
],
[
29.25797325676395,
66.43289263570108
],
[
29.258521601774095,
66.40814694260453
],
[
28.695312032581324,
66.48585324172434
],
[
28.396406746547147,
66.49225416364993
],
[
28.2239721139888,
66.41785981479154
],
[
28.13861959337652,
66.43186351929599
],
[
28.075159055014062,
66.50141134504831
],
[
28.19192026983768,
66.62676934952064
],
[
28.15613630296618,
66.69771702607858
],
[
28.064575052880002,
66.70354348192451
],
[
27.942776676725426,
66.77626432078314
],
[
27.88160214883602,
66.8859098467001
],
[
27.956478473714032,
67.02954333070689
],
[
28.084537534131712,
67.03917239567176
],
[
28.35982838865922,
67.10811302589732
],
[
28.67746457976704,
67.13943524608932
],
[
28.811096531496492,
67.24082024523003
],
[
28.934901910047934,
67.35089575968979
],
[
28.940192934725648,
67.38427206574964
],
[
29.21234693673838,
67.53797329200529
],
[
29.27788050570626,
67.60726503176278
],
[
29.482830045667217,
67.68397432779676
],
[
29.659405083905074,
67.80295924518579
],
[
30.01704362112452,
67.67355325951303
],
[
29.93022450357709,
67.52252423858879
],
[
29.69816049531923,
67.38773833597055
],
[
29.621527368455883,
67.35156755252636
],
[
29.64394520738715,
67.33575430168771
],
[
29.522554827947943,
67.30990403285816
],
[
29.491138180653614,
67.25916392668971
],
[
29.18469903971464,
67.06529095710178
],
[
29.073260237105305,
66.99616219557979
],
[
29.033637176330174,
66.94213226596905
],
[
29.06584392538688,
66.85142926738504
],
[
29.12951199044882,
66.78917053289254
],
[
29.36114134014715,
66.63885975718449
],
[
29.399866288268665,
66.59756111559673
],
[
29.472055550868756,
66.54390093546593
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Salo",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.497597562415624,
60.53455744890406
],
[
23.586111578428312,
60.48373064030603
],
[
23.642631922085453,
60.46732629673653
],
[
23.7374861102945,
60.49036945268051
],
[
23.739210778375156,
60.457028060895645
],
[
23.784140396284556,
60.4501860171273
],
[
23.79048727613774,
60.387825226449294
],
[
23.72317244702929,
60.368755864053185
],
[
23.728880254761616,
60.32899281758085
],
[
23.586321575780698,
60.25884047401348
],
[
23.620482993614967,
60.19413309712222
],
[
23.553615733139758,
60.20220453366641
],
[
23.362937527008217,
60.1498987832029
],
[
23.30591070885994,
60.18866010057657
],
[
23.148649723585198,
60.10044064610653
],
[
22.987352378149616,
60.095538656752204
],
[
22.953525948175866,
59.99946160381127
],
[
22.853264417082812,
60.0130474595162
],
[
22.801316717314513,
60.0253749161876
],
[
22.833204581856602,
60.05420640559556
],
[
22.900520272362115,
60.13289967585295
],
[
22.85888479415244,
60.175301883853614
],
[
22.920419711426163,
60.250896538887645
],
[
22.854959564598023,
60.2614429676086
],
[
22.880317930322494,
60.305078330681866
],
[
22.8189317634202,
60.37292142528093
],
[
22.875913678831346,
60.44526910689882
],
[
22.846004877356663,
60.510882941868395
],
[
23.10071716949097,
60.57352904821074
],
[
23.20777017619082,
60.585697706259126
],
[
23.39643051006366,
60.54610931865064
],
[
23.515790815712524,
60.595676850617984
],
[
23.497597562415624,
60.53455744890406
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Saltvik",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.375321656097686,
60.46604089743253
],
[
20.310363681034918,
60.42920288672136
],
[
20.23966673483721,
60.4269026854602
],
[
20.288121640232383,
60.37063876819015
],
[
20.262827708875406,
60.34105641874506
],
[
20.02399585894116,
60.23057647641206
],
[
19.94729613806743,
60.2974260614252
],
[
20.01369984506093,
60.35963880344169
],
[
19.94608318337467,
60.37632469548971
],
[
19.99421444152942,
60.41872722665611
],
[
19.889138781362114,
60.45527097425158
],
[
19.7978434922093,
60.7083454501912
],
[
20.025162007217787,
60.727557755344186
],
[
20.106102451522965,
60.762003678067046
],
[
20.373731284894337,
60.61179627619836
],
[
20.375321656097686,
60.46604089743253
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sastamala",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.852729738600093,
61.62470491336703
],
[
22.939183546849577,
61.58702007164985
],
[
23.026593283813813,
61.600657662484984
],
[
23.074274339292895,
61.54424648915126
],
[
23.193788260022153,
61.537756034794754
],
[
23.203350256953055,
61.474441750290936
],
[
23.171146358830168,
61.436132715978296
],
[
23.202292860410477,
61.37673222909744
],
[
23.220749138913416,
61.328405047392835
],
[
23.287330989947673,
61.28955141487329
],
[
23.279278967813696,
61.23825384344857
],
[
23.272881390617584,
61.221125339925585
],
[
23.005476626647045,
61.18555397712418
],
[
22.934220209138495,
61.20497634041384
],
[
22.856060971242794,
61.235842657982325
],
[
22.645436053613146,
61.246620376870396
],
[
22.599107829572574,
61.301979667313184
],
[
22.559454252558393,
61.33091528450157
],
[
22.57423113820478,
61.39687892443938
],
[
22.434161862464983,
61.48892267202585
],
[
22.58248245116566,
61.54830606393078
],
[
22.696052060787043,
61.599764320161256
],
[
22.704272560613997,
61.62387409391858
],
[
22.724929966486012,
61.644961304083616
],
[
22.68952436291612,
61.67493684175992
],
[
22.647174002892154,
61.69650126502768
],
[
22.691008642728388,
61.702547178880614
],
[
22.76383093671394,
61.694365527055886
],
[
22.82406852486029,
61.67513930660755
],
[
22.852729738600093,
61.62470491336703
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sauvo",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.8189317634202,
60.37292142528093
],
[
22.880317930322494,
60.305078330681866
],
[
22.854959564598023,
60.2614429676086
],
[
22.54466094678686,
60.21005941871707
],
[
22.446140328935403,
60.246971145846175
],
[
22.54299913670399,
60.34672375394998
],
[
22.607480327837038,
60.38184337031898
],
[
22.8189317634202,
60.37292142528093
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Savitaipale",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.93115528309688,
61.35039289959395
],
[
27.842397662049834,
61.299242452824544
],
[
27.844026743485053,
61.25393774246909
],
[
27.753922808921658,
61.26421237340259
],
[
27.75418906511721,
61.240687428176855
],
[
27.80866467586758,
61.21376009731748
],
[
27.784236449561565,
61.16367630114178
],
[
27.694708206801224,
61.15081551631438
],
[
27.708709129631558,
61.10288130947597
],
[
27.61718368110556,
61.06411862434599
],
[
27.57278865616132,
61.01769167235932
],
[
27.424372861580366,
61.031010869135415
],
[
27.364384634363418,
61.101392542850185
],
[
27.228489977819578,
61.090202259791674
],
[
27.205820105829734,
61.16247138726633
],
[
27.355504044920842,
61.17354610326644
],
[
27.378517821162987,
61.214238734396
],
[
27.4302994779757,
61.27164307610183
],
[
27.57704879048882,
61.26320080274515
],
[
27.592085977518366,
61.3108362118608
],
[
27.64673370488626,
61.34388944266262
],
[
27.754461486821885,
61.32905028259313
],
[
27.79260651091915,
61.362078407515675
],
[
27.93115528309688,
61.35039289959395
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Savonlinna",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.32191279203706,
62.31312134426563
],
[
29.43008176329975,
62.236528971301276
],
[
29.42714621527863,
62.15838457706865
],
[
29.482333141387652,
62.05668658331433
],
[
29.66037252809042,
61.97689972833175
],
[
29.614863461535997,
61.913329084922076
],
[
29.696825626730423,
61.86439818578074
],
[
29.6758615463624,
61.79173975709584
],
[
29.55927163880038,
61.7220728044556
],
[
29.538346869884656,
61.68389441085799
],
[
29.40419875088417,
61.653868037293
],
[
29.311391988873947,
61.60876795556757
],
[
29.26156800676476,
61.55776948966646
],
[
28.956050178933054,
61.540664166868936
],
[
28.8340502382314,
61.570073663426896
],
[
28.859026070598176,
61.605377381241546
],
[
28.619481182866384,
61.64320620643577
],
[
28.625528808361885,
61.684196426148645
],
[
28.559402262272407,
61.729515007407784
],
[
28.602838831757772,
61.751579402466035
],
[
28.5938394485261,
61.80450850020016
],
[
28.499466668226365,
61.83788975783419
],
[
28.413908936089253,
61.87794182227583
],
[
28.370692102535827,
61.92464468548657
],
[
28.452875800236196,
61.915348140172455
],
[
28.559318744168376,
61.943761749809326
],
[
28.66255380310854,
61.93514261494671
],
[
28.71559365294891,
61.96752037312631
],
[
28.655842472556657,
62.00591324536204
],
[
28.59331334068299,
62.102277451851506
],
[
28.503352454029343,
62.12114104081654
],
[
28.41861887499369,
62.11800571852856
],
[
28.389078598677578,
62.21438065087288
],
[
28.50447510811111,
62.20152295742167
],
[
28.59747639916173,
62.14962008396271
],
[
28.652808235808152,
62.231323003658524
],
[
28.769765277680644,
62.21221606988403
],
[
28.752835390958623,
62.286760479702494
],
[
28.932052171919537,
62.261216978573835
],
[
29.00510026361068,
62.32743022085896
],
[
29.168239971569655,
62.3320501362585
],
[
29.16644885870124,
62.38633756072567
],
[
29.23080859359112,
62.41775699448758
],
[
29.29596533462261,
62.3867277702124
],
[
29.32191279203706,
62.31312134426563
]
],
[
[
28.917994832988438,
62.24349834441478
],
[
28.789017530832975,
62.264728726184664
],
[
28.80537333612602,
62.20421988867432
],
[
28.774288607176768,
62.19220712257912
],
[
28.677422257792603,
62.208043641019124
],
[
28.651022221893797,
62.14185883896364
],
[
28.763648250993576,
62.11916555478944
],
[
28.77963912623135,
62.08352302476037
],
[
28.83692695550838,
62.065919347405256
],
[
28.72631045066016,
62.0539810530569
],
[
28.78899594960943,
62.019749063698384
],
[
28.878703950703557,
62.002193304596354
],
[
28.97870923448112,
62.00099352882676
],
[
29.087310429994737,
62.03087939846074
],
[
29.125848481126784,
62.097590924662015
],
[
29.095539931338433,
62.12640072912523
],
[
29.01389601600369,
62.15742871596823
],
[
28.99128832424196,
62.197972363480574
],
[
28.911619213567967,
62.20275065035009
],
[
28.917994832988438,
62.24349834441478
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Savukoski",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.67746457976704,
67.13943524608932
],
[
28.35982838865922,
67.10811302589732
],
[
28.040696319139002,
67.17196918385562
],
[
27.87576162054677,
67.17544460153796
],
[
27.769901975690335,
67.30438690461997
],
[
27.221898834654485,
67.42530012226032
],
[
27.398243554632767,
67.57279513184227
],
[
27.804020294690414,
67.64905876702436
],
[
28.64615259922816,
68.19630355239951
],
[
29.32708931393299,
68.07454148349787
],
[
29.659405083905074,
67.80295924518579
],
[
29.482830045667217,
67.68397432779676
],
[
29.27788050570626,
67.60726503176278
],
[
29.21234693673838,
67.53797329200529
],
[
28.940192934725648,
67.38427206574964
],
[
28.934901910047934,
67.35089575968979
],
[
28.811096531496492,
67.24082024523003
],
[
28.67746457976704,
67.13943524608932
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Seinäjoki",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.78411600313601,
63.03792380752572
],
[
22.817791484286047,
62.87099666791849
],
[
23.04499547922856,
62.861133317944116
],
[
23.09150182704147,
62.816778470401864
],
[
23.18961547280172,
62.81649116484711
],
[
23.27892155417038,
62.774709386234555
],
[
23.27125520529793,
62.73573592732067
],
[
23.20273000735421,
62.72410035108296
],
[
23.161226231318402,
62.655453037585865
],
[
23.307794909266107,
62.57480119595269
],
[
23.246716066675795,
62.537388629542384
],
[
23.33776361985788,
62.42508342346796
],
[
23.217823352546738,
62.334166699292666
],
[
23.14451822758734,
62.319197947176455
],
[
23.119171193217102,
62.409635392903986
],
[
22.857674720217126,
62.6342006243459
],
[
22.877519819460918,
62.68199484081602
],
[
22.687000513714434,
62.775202449445935
],
[
22.736946182763397,
62.8713026853918
],
[
22.302619662362204,
62.795106004363106
],
[
22.40900278537526,
62.8643552464172
],
[
22.41735760967872,
62.95216472653947
],
[
22.53281946272991,
63.06473704150646
],
[
22.6762298874263,
63.08386002723173
],
[
22.78411600313601,
63.03792380752572
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sievi",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.639092815416387,
63.94676254914173
],
[
24.91582559284698,
63.850865952996934
],
[
24.967383887218645,
63.80059856139146
],
[
24.95561456341682,
63.757488989525115
],
[
24.92362199887547,
63.67031133747386
],
[
24.73702012993126,
63.709091853883095
],
[
24.618713972942537,
63.65088801439577
],
[
24.425522528325583,
63.840073163274845
],
[
24.247452259357917,
63.87694948301354
],
[
24.127078414766828,
63.982785362329125
],
[
24.306638460495336,
64.02212085314284
],
[
24.639092815416387,
63.94676254914173
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Siikainen",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.974686370636505,
61.97975958442847
],
[
22.0096572180205,
61.93440429769241
],
[
22.138185065474573,
61.89626875016006
],
[
22.175435158001505,
61.87883899289541
],
[
22.03485512383449,
61.80434151806233
],
[
22.0875205791881,
61.78265935529447
],
[
22.039920321751865,
61.74669260335217
],
[
21.97611436026529,
61.76708540022329
],
[
21.72805210385736,
61.74792023989012
],
[
21.678973363109062,
61.815890848370266
],
[
21.749405169782108,
62.01586179294563
],
[
21.974686370636505,
61.97975958442847
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Siikajoki",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.0385990841975,
65.00794882176848
],
[
24.754000112884903,
64.89846424704375
],
[
24.99104448213112,
64.96644535659608
],
[
24.99552161679078,
64.88244946032111
],
[
24.953439675868715,
64.81198941677093
],
[
25.1682357040171,
64.73418318356565
],
[
25.52026946015472,
64.62894252074422
],
[
25.379547989672425,
64.56150311356012
],
[
25.476886422065185,
64.50079892233741
],
[
25.48288520779101,
64.42801709636703
],
[
25.420951722473013,
64.41580558036506
],
[
24.838085804266033,
64.56663027362012
],
[
24.736356953584135,
64.58690047854154
],
[
24.808981335204404,
64.66254525939003
],
[
24.620246214902167,
64.78533780561571
],
[
23.94340975386951,
64.85477845867632
],
[
24.0385990841975,
65.00794882176848
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Siikalatva",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.52026946015472,
64.62894252074422
],
[
25.739934658857784,
64.51768299974633
],
[
25.910699556649604,
64.54353980128288
],
[
26.216671606417513,
64.46268228441323
],
[
26.291105954354357,
64.47906385912782
],
[
26.48501470410908,
64.39933933039882
],
[
26.545866482380184,
64.32001284030407
],
[
26.68797763252447,
64.30889222682767
],
[
26.767499642680935,
64.26516554083855
],
[
26.77087094547036,
64.21602350653131
],
[
26.397395441502244,
64.22889666217833
],
[
26.321923510189116,
64.20063638773696
],
[
26.292369944597343,
64.16065625517197
],
[
26.1422742710847,
64.13559096016314
],
[
26.226985629515575,
64.09063942362484
],
[
26.188824130674572,
63.99510810963146
],
[
25.77730091762208,
64.11064400261549
],
[
25.547200549449354,
64.24877605876448
],
[
25.462926651381874,
64.36257844219206
],
[
25.420951722473013,
64.41580558036506
],
[
25.48288520779101,
64.42801709636703
],
[
25.476886422065185,
64.50079892233741
],
[
25.379547989672425,
64.56150311356012
],
[
25.52026946015472,
64.62894252074422
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Siilinjärvi",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.943250032808194,
63.00655602844113
],
[
27.909773310581883,
62.98158091988017
],
[
27.82400360732334,
62.993452044876996
],
[
27.83192954934296,
62.951872235393076
],
[
27.690486244462345,
62.97614790922302
],
[
27.528977095367182,
62.96624565090513
],
[
27.420223831641742,
62.99357980199535
],
[
27.35246306311625,
63.04901608519037
],
[
27.470012608795997,
63.06329431939671
],
[
27.51717994316519,
63.104150576530344
],
[
27.461775539052375,
63.119979506423164
],
[
27.52663204107277,
63.162166921793066
],
[
27.56908021283324,
63.190403215266535
],
[
27.61480701884914,
63.224548760521046
],
[
27.699954654083925,
63.25001373522911
],
[
27.817027181430284,
63.20668216898715
],
[
27.804363553806784,
63.14966183574114
],
[
27.886107308064677,
63.0821897727662
],
[
27.80268514923399,
63.05930275509772
],
[
27.83042179685474,
63.02233271043667
],
[
27.943250032808194,
63.00655602844113
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Simo",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.93919091455563,
65.77399249201358
],
[
25.79023536814487,
65.74071168755202
],
[
25.4245049549777,
65.74256854916105
],
[
25.129337125279374,
65.60733322656337
],
[
24.597813071297395,
65.37220596420475
],
[
24.15450767085386,
65.29248053475472
],
[
24.15016469660224,
65.33728790379293
],
[
24.472268768654487,
65.45627691226606
],
[
24.650934032892213,
65.64406840049992
],
[
24.7474121200751,
65.69503725290205
],
[
24.834890245656272,
65.7425076566352
],
[
24.91328985942939,
65.74851688662214
],
[
24.96627245045685,
65.82571044225901
],
[
25.166241655902354,
65.90403363496296
],
[
25.225674784290337,
65.9615313663275
],
[
25.449618133468096,
66.08791222740955
],
[
25.544903704569876,
66.11623893046966
],
[
25.763868191315996,
66.08904369991846
],
[
25.84659365167464,
66.01513286706671
],
[
25.68100412889068,
65.89195570996729
],
[
25.93919091455563,
65.77399249201358
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sipoo",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.36516877240461,
60.375547373093845
],
[
25.4659110497041,
60.29441920322183
],
[
25.526917961683107,
60.26525814277761
],
[
25.388121512245558,
60.16934465537129
],
[
25.32928517245979,
59.93710337467555
],
[
25.158560614202514,
59.94245341398969
],
[
25.19096620146765,
60.13717330645637
],
[
25.221618391771287,
60.20019116450268
],
[
25.204388595432434,
60.229895113968496
],
[
25.24091403134075,
60.246318316492655
],
[
25.250902429532,
60.273519181687774
],
[
25.271647357286597,
60.29808012290824
],
[
25.19024994569274,
60.28568133849804
],
[
25.169614232971533,
60.31148623771622
],
[
25.116818579795094,
60.328382647724375
],
[
25.17283853693059,
60.35661064929543
],
[
25.176826043484365,
60.4410857413326
],
[
25.180708619355336,
60.460857264245284
],
[
25.169302162733377,
60.50623127538346
],
[
25.22418758575319,
60.50163109281483
],
[
25.363440796203584,
60.406097895447544
],
[
25.36516877240461,
60.375547373093845
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Siuntio",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.34248577093407,
60.24619821297415
],
[
24.29280690604569,
60.18979051919383
],
[
24.361533769629183,
60.07935718477356
],
[
24.31628209448747,
60.022494931942205
],
[
24.20170971496062,
60.12828109397549
],
[
24.136231509568297,
60.111402646621244
],
[
24.045805674541594,
60.15011723954438
],
[
24.00826287587033,
60.18250206412559
],
[
24.07696599883724,
60.22748994718397
],
[
24.1620505020416,
60.22812774726178
],
[
24.305695635051205,
60.29464546893561
],
[
24.34248577093407,
60.24619821297415
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sodankylä",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.760869252935976,
67.05232741340019
],
[
26.517973570018743,
66.94292424980955
],
[
26.372630225521682,
66.9538217945835
],
[
26.305865807496765,
66.99209141311167
],
[
25.904471556493537,
67.11993325911558
],
[
25.611073166620585,
67.1367044803519
],
[
25.350017390823425,
67.15128862116994
],
[
25.48561575909667,
67.30379951569662
],
[
25.76072945108226,
67.43416024037185
],
[
25.737833645229497,
67.54138010051291
],
[
26.00783951950857,
67.93879640590691
],
[
25.878393259663156,
68.0973641415427
],
[
25.97561956554279,
68.27757167763335
],
[
26.19526556546335,
68.31420320387348
],
[
27.502126840192282,
68.34361326517978
],
[
28.26423693686048,
68.4616492394239
],
[
28.47898209494701,
68.46619066940093
],
[
28.64615259922816,
68.19630355239951
],
[
27.804020294690414,
67.64905876702436
],
[
27.398243554632767,
67.57279513184227
],
[
27.221898834654485,
67.42530012226032
],
[
27.25269086123019,
67.36318802291454
],
[
27.086475298680025,
67.3377112957944
],
[
27.019580660024694,
67.16709309410025
],
[
26.760869252935976,
67.05232741340019
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Soini",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.300936607207376,
62.98835315272764
],
[
24.348219727984038,
62.96369854426831
],
[
24.342973518828288,
62.91771610577935
],
[
24.433996365323214,
62.90784414028393
],
[
24.448430222846895,
62.87098972297024
],
[
24.341976292488166,
62.8592589364602
],
[
24.504238561717493,
62.71043046399901
],
[
24.519591928794178,
62.68597828298199
],
[
24.373726324311118,
62.70150881578575
],
[
24.272518040880396,
62.754814001011496
],
[
24.25356807843771,
62.724504525086445
],
[
24.230120376952517,
62.68577617395236
],
[
24.119276178080106,
62.69550705860655
],
[
24.03952144927872,
62.736484197242774
],
[
24.143433221378135,
62.831217447599435
],
[
23.99196412955444,
62.860918645418366
],
[
24.02894013892568,
62.971858203572296
],
[
24.09285257624639,
62.96355243641139
],
[
24.182296437870832,
63.01327363137843
],
[
24.300936607207376,
62.98835315272764
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Somero",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.277278877002022,
60.711075392739424
],
[
23.40862398072131,
60.7397738005781
],
[
23.502136897836547,
60.74398925753994
],
[
23.684147331160307,
60.65724127344988
],
[
23.900506809095063,
60.64975684248594
],
[
23.92054909127961,
60.606087320826994
],
[
23.844492481484675,
60.55642346082885
],
[
23.871849839006135,
60.50793431776386
],
[
23.7374861102945,
60.49036945268051
],
[
23.642631922085453,
60.46732629673653
],
[
23.586111578428312,
60.48373064030603
],
[
23.497597562415624,
60.53455744890406
],
[
23.515790815712524,
60.595676850617984
],
[
23.39643051006366,
60.54610931865064
],
[
23.20777017619082,
60.585697706259126
],
[
23.25769555054539,
60.627865114769
],
[
23.154615351559784,
60.77416823699695
],
[
23.277278877002022,
60.711075392739424
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sonkajärvi",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.44949428981902,
63.944381160526355
],
[
27.540596774381534,
63.95643279918476
],
[
27.92632096669212,
63.84457009113704
],
[
28.168816139778322,
63.71480063551439
],
[
28.043812440208598,
63.6191793403927
],
[
28.041811389483136,
63.55011725706941
],
[
27.942810737765836,
63.51891673701335
],
[
27.880454219662983,
63.53505983020149
],
[
27.625181488850654,
63.502469777957465
],
[
27.542174998575437,
63.585781395423766
],
[
27.368379550993556,
63.62141982187353
],
[
27.26095863843197,
63.6888390696109
],
[
27.20998192198801,
63.724653458662644
],
[
27.34946853333782,
63.78826761877862
],
[
27.35757926549384,
63.82742667910778
],
[
27.256118178901133,
63.88700180395941
],
[
27.250700789642398,
63.91506975406401
],
[
27.16121819292152,
63.938798726668736
],
[
27.119271141807904,
63.99077938048499
],
[
27.44949428981902,
63.944381160526355
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sotkamo",
"parent": "Kainuu"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.211042315802306,
63.96473993179493
],
[
29.158309434997552,
63.84732694312728
],
[
29.11189029783794,
63.84635279871127
],
[
28.88513705592673,
63.835836978254484
],
[
28.500770861384684,
63.88241466808727
],
[
28.359590185126176,
63.75475262137381
],
[
28.273915024058216,
63.66881147622884
],
[
28.168816139778322,
63.71480063551439
],
[
27.92632096669212,
63.84457009113704
],
[
28.06543448443938,
63.903522137678884
],
[
27.83145873623581,
64.04426883251054
],
[
27.796785506925335,
64.16240601450018
],
[
28.13283889017708,
64.31714503827646
],
[
28.463041202594056,
64.37524853858756
],
[
28.586295374951828,
64.33603351597922
],
[
28.751945844500508,
64.3102361088784
],
[
28.855774712168905,
64.22566193366397
],
[
28.89062831170348,
64.0985230986485
],
[
29.0493682350917,
64.0021982726862
],
[
29.211042315802306,
63.96473993179493
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sottunga",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.58745185404184,
60.208378687330594
],
[
20.812021768022117,
60.10748803200694
],
[
20.87609063587344,
60.11418479604205
],
[
20.902167795698197,
60.165348048398215
],
[
21.023829963645476,
60.12393293027619
],
[
21.063007023387595,
60.103968100260246
],
[
20.889992469109597,
60.04423894779268
],
[
20.797639454760297,
60.04429294285361
],
[
20.761738411855198,
59.99003939259175
],
[
20.771623047577368,
59.90978761325692
],
[
20.655436668543366,
59.98969663254517
],
[
20.663224542633454,
60.05117735207811
],
[
20.618803294711434,
60.12032787879972
],
[
20.520575392232846,
60.14721782977171
],
[
20.48168842005031,
60.18899199545966
],
[
20.541326100927897,
60.22626314064524
],
[
20.58745185404184,
60.208378687330594
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sulkava",
"parent": "Etelä-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.956050178933054,
61.540664166868936
],
[
28.811777685914087,
61.535776930040655
],
[
28.571902375858233,
61.59978834197076
],
[
28.458303758661774,
61.61101794264427
],
[
28.392314097494967,
61.66895920166562
],
[
28.234875292188512,
61.681660103091446
],
[
28.176055089452117,
61.71694120114094
],
[
28.112230103832434,
61.7344550537743
],
[
28.187962281365508,
61.76300895137353
],
[
28.116985388531443,
61.80934271036337
],
[
28.125785750848287,
61.8520645344655
],
[
28.088783295052135,
61.88528108674878
],
[
28.156927041731098,
61.92014046564797
],
[
28.221653617659776,
61.93757417619655
],
[
28.370692102535827,
61.92464468548657
],
[
28.413908936089253,
61.87794182227583
],
[
28.499466668226365,
61.83788975783419
],
[
28.5938394485261,
61.80450850020016
],
[
28.602838831757772,
61.751579402466035
],
[
28.559402262272407,
61.729515007407784
],
[
28.625528808361885,
61.684196426148645
],
[
28.619481182866384,
61.64320620643577
],
[
28.859026070598176,
61.605377381241546
],
[
28.8340502382314,
61.570073663426896
],
[
28.956050178933054,
61.540664166868936
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sund",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.287419634697947,
60.22016338336545
],
[
20.231989511852873,
60.17669722456789
],
[
20.13347758235016,
60.143239443881704
],
[
20.026785301747566,
60.19890098939285
],
[
20.02399585894116,
60.23057647641206
],
[
20.262827708875406,
60.34105641874506
],
[
20.287419634697947,
60.22016338336545
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Suomussalmi",
"parent": "Kainuu"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.213217516567607,
65.51847740483255
],
[
29.396165458924624,
65.50340207800387
],
[
29.548355111487897,
65.50593999715605
],
[
29.754713953508038,
65.4973656893719
],
[
29.73442582555853,
65.46609892942979
],
[
29.728501840663046,
65.38186905074434
],
[
29.746581025047274,
65.34740164197221
],
[
29.60178687466724,
65.25993240548756
],
[
29.634001768567725,
65.23158511757018
],
[
29.76410211068619,
65.22889210934139
],
[
29.859457433254747,
65.21515985313323
],
[
29.89359096557099,
65.19297157834644
],
[
29.819333813623828,
65.14427888803058
],
[
29.89685933050524,
65.10514028457493
],
[
29.830938249119725,
65.09192235492948
],
[
29.732668226858284,
65.0912942402571
],
[
29.62697636278198,
65.0605966778966
],
[
29.614433391960723,
65.01279017065809
],
[
29.599332594563894,
64.99505575093247
],
[
29.61918549156017,
64.95965870870668
],
[
29.61099456374508,
64.92731119349534
],
[
29.64490620942846,
64.86649316119906
],
[
29.699703453379225,
64.83722386134875
],
[
29.687501788350904,
64.81880992451966
],
[
29.739628423214228,
64.78978383708275
],
[
30.045784676868234,
64.79561379186194
],
[
30.086510733699445,
64.77398809076344
],
[
30.091069072954234,
64.76495262547543
],
[
30.041396831307537,
64.74119300179488
],
[
30.05365855237822,
64.7130280701796
],
[
30.13583881026677,
64.64899977657484
],
[
30.118990745855374,
64.62591438933705
],
[
30.054328539450044,
64.6152668971752
],
[
29.98977175796118,
64.58714462423423
],
[
29.622286542871596,
64.63536361826218
],
[
29.50643682005986,
64.61572646943513
],
[
29.45945575510929,
64.56629124383322
],
[
29.116987151299593,
64.67224816510696
],
[
28.80796894695653,
64.70495235408656
],
[
28.294301348803234,
64.89837490872456
],
[
28.260889269351654,
65.00673833065031
],
[
28.128863195612478,
65.07704891304446
],
[
28.22006389441708,
65.15751437200943
],
[
28.19854217976145,
65.20466051777916
],
[
27.995641939577816,
65.22119730022723
],
[
28.162380222985302,
65.25034867687616
],
[
28.608570676894264,
65.28667838397315
],
[
28.64691686752026,
65.38933800811432
],
[
28.9555281378772,
65.44737907213512
],
[
29.1161092070798,
65.4475666354601
],
[
29.213217516567607,
65.51847740483255
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Suonenjoki",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.90894654473224,
62.84994578428038
],
[
27.01197634552196,
62.75605258347252
],
[
27.11706001949149,
62.76327791605469
],
[
27.2757480457075,
62.7024402840462
],
[
27.482517654388023,
62.70579132755944
],
[
27.529794630958303,
62.62675404316713
],
[
27.449879648771688,
62.614145590981664
],
[
27.460179630181795,
62.55332905509284
],
[
27.408508822240503,
62.503886123961415
],
[
27.34270478845563,
62.503482523570604
],
[
27.224906049259037,
62.480036460873194
],
[
27.190200210387694,
62.46085499002581
],
[
27.116139922576956,
62.48497056877821
],
[
27.053049251302056,
62.479858594082785
],
[
26.94917379857771,
62.47642595510093
],
[
26.879478014184865,
62.485512647546294
],
[
26.91226589228374,
62.55639665532825
],
[
26.88935867662706,
62.58579735777063
],
[
26.950648730756065,
62.62410529793357
],
[
26.84214083394352,
62.80459095034711
],
[
26.90894654473224,
62.84994578428038
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Sysmä",
"parent": "Päijät-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.87004773812469,
61.47847979301763
],
[
25.975901111540512,
61.43082134143531
],
[
26.049631246183598,
61.477967547519086
],
[
26.172951343561973,
61.392893745923665
],
[
25.903405697350756,
61.37399992109871
],
[
25.807465137943495,
61.313399669464886
],
[
25.741788527372712,
61.36462751791115
],
[
25.545158601786248,
61.32917586844251
],
[
25.471203909297728,
61.40464090245407
],
[
25.490604550837034,
61.4382769585955
],
[
25.437427145203436,
61.48690614807831
],
[
25.49944506590699,
61.61850608236782
],
[
25.501333310993584,
61.67685863090883
],
[
25.60842421788129,
61.68069229320239
],
[
25.69012670481643,
61.7141257252313
],
[
25.771178593285796,
61.68506674876036
],
[
25.88322160390516,
61.6394677366945
],
[
25.857745855516345,
61.575179673483575
],
[
25.961888054418978,
61.5425716527233
],
[
25.87004773812469,
61.47847979301763
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Säkylä",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.586239536387065,
60.938790284221206
],
[
22.263631915099023,
60.926863484051886
],
[
22.236133242631407,
61.108552382048536
],
[
22.21758559940263,
61.15507414582851
],
[
22.141903574444886,
61.2112128213237
],
[
22.17620484291836,
61.251940624451116
],
[
22.27781934996161,
61.19399819857958
],
[
22.48034135448138,
61.170623258526724
],
[
22.55906445993522,
61.1037271583092
],
[
22.597561567357072,
61.015413157437784
],
[
22.70154448335616,
60.98693552139922
],
[
22.5224658599489,
60.9764011486595
],
[
22.586239536387065,
60.938790284221206
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Taipalsaari",
"parent": "Etelä-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.397944570503554,
61.284686929479726
],
[
28.302200757050763,
61.240580432540774
],
[
28.31569463620447,
61.208489271206204
],
[
28.409193090222352,
61.17620677615536
],
[
28.331154042213015,
61.1294119113076
],
[
28.195237298636055,
61.10137903295831
],
[
28.069049362375132,
61.11255183224232
],
[
28.052501430185284,
61.083289612348125
],
[
27.991111360808315,
61.06152819436725
],
[
27.93447534892668,
61.130703384761105
],
[
27.861427865172868,
61.15485190931484
],
[
27.784236449561565,
61.16367630114178
],
[
27.80866467586758,
61.21376009731748
],
[
27.75418906511721,
61.240687428176855
],
[
27.753922808921658,
61.26421237340259
],
[
27.844026743485053,
61.25393774246909
],
[
27.842397662049834,
61.299242452824544
],
[
27.93115528309688,
61.35039289959395
],
[
28.252197920457956,
61.37968654612345
],
[
28.397944570503554,
61.284686929479726
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Taivalkoski",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.51319568641343,
65.84620753414578
],
[
28.6443345788703,
65.74081717604018
],
[
28.66680338427165,
65.62128720812079
],
[
28.84957384458,
65.59946670659738
],
[
28.931897304315967,
65.64673045219942
],
[
29.063406157751587,
65.56775850245715
],
[
29.213217516567607,
65.51847740483255
],
[
29.1161092070798,
65.4475666354601
],
[
28.9555281378772,
65.44737907213512
],
[
28.64691686752026,
65.38933800811432
],
[
28.608570676894264,
65.28667838397315
],
[
28.162380222985302,
65.25034867687616
],
[
28.1394306895663,
65.33700399462947
],
[
27.98262659810839,
65.40324132283364
],
[
27.86599728248431,
65.40849544063141
],
[
27.776988183899,
65.50735203600743
],
[
27.824123684020666,
65.65358521183758
],
[
27.71254001197218,
65.78077010038245
],
[
27.76109953621122,
65.8273180608805
],
[
28.223498660235762,
65.80059489729202
],
[
28.51319568641343,
65.84620753414578
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Taivassalo",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.588737428378025,
60.62131176718636
],
[
21.674952107084284,
60.620680075680646
],
[
21.776647802647958,
60.56367398572864
],
[
21.70381804160894,
60.553228725406946
],
[
21.69025966693232,
60.487663125212585
],
[
21.53535306768109,
60.466410681078806
],
[
21.49717110433533,
60.558797517151895
],
[
21.3656174486445,
60.62417731654377
],
[
21.588737428378025,
60.62131176718636
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tammela",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.021798498533855,
60.92840354318346
],
[
23.988765148775254,
60.87963502491954
],
[
24.063243377282255,
60.79345534460807
],
[
24.046748246518096,
60.64232451140095
],
[
23.9713267300057,
60.63820101408995
],
[
23.900506809095063,
60.64975684248594
],
[
23.684147331160307,
60.65724127344988
],
[
23.502136897836547,
60.74398925753994
],
[
23.55046486766413,
60.788933137416805
],
[
23.634543604059193,
60.779526834423706
],
[
23.702009986101558,
60.805265501156995
],
[
23.647707680528065,
60.87636177539189
],
[
23.755475170056428,
60.93813885936524
],
[
23.83937006460241,
60.93970582597338
],
[
23.856574594914235,
60.97153622223972
],
[
24.021798498533855,
60.92840354318346
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tampere",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.999885850041736,
61.78716094944178
],
[
24.090787718748203,
61.792849795652394
],
[
24.11851674326715,
61.62719129079597
],
[
23.890192527315477,
61.427368437483956
],
[
23.741124412264558,
61.43216156176925
],
[
23.725645111569165,
61.48409204120566
],
[
23.613138048522448,
61.47779202423211
],
[
23.542299896592542,
61.53333868000808
],
[
23.645937377644216,
61.53083288185159
],
[
23.763238464719105,
61.53988315913349
],
[
23.72132860234463,
61.67101539138996
],
[
23.85551795154476,
61.83661390029927
],
[
23.999885850041736,
61.78716094944178
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tervo",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.90894654473224,
62.84994578428038
],
[
26.84214083394352,
62.80459095034711
],
[
26.667202065266085,
62.849158716992754
],
[
26.68134602043208,
62.898177843206824
],
[
26.543630671842223,
62.99881354260843
],
[
26.622740793498956,
63.02031845867719
],
[
26.606840318940815,
63.04207093817929
],
[
26.87645328063614,
63.08003698599288
],
[
26.9566165505212,
63.11769253707038
],
[
27.12556030674744,
63.00550355939072
],
[
26.895500491490804,
62.98903278506686
],
[
26.940105920752387,
62.915803504559136
],
[
26.90894654473224,
62.84994578428038
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tervola",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.067324370513738,
66.15912732227922
],
[
25.763868191315996,
66.08904369991846
],
[
25.544903704569876,
66.11623893046966
],
[
25.449618133468096,
66.08791222740955
],
[
25.225674784290337,
65.9615313663275
],
[
25.040046836041554,
65.9746975989419
],
[
24.71416211967168,
65.9624177231139
],
[
24.50955570400758,
66.03044288250152
],
[
24.494078330213554,
66.18576354025943
],
[
24.791824681842527,
66.33223570759816
],
[
25.33932594851951,
66.20981658049105
],
[
25.774632230137573,
66.21379099934474
],
[
26.067324370513738,
66.15912732227922
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Teuva",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.79939859419432,
62.594268409677554
],
[
21.935965292566546,
62.586808508737555
],
[
21.969522010572916,
62.62330183962525
],
[
22.099622254681258,
62.605416383833095
],
[
22.041523988817293,
62.541444594812795
],
[
21.875631099174928,
62.36189663017597
],
[
21.5541301104659,
62.42429873837683
],
[
21.6033384263414,
62.53089023808478
],
[
21.591769426233185,
62.60543813384248
],
[
21.662244560342923,
62.64004504085153
],
[
21.780108117270508,
62.62847221595821
],
[
21.79939859419432,
62.594268409677554
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tohmajärvi",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
30.240734258293777,
62.416349278645974
],
[
30.277005290243256,
62.35000433211083
],
[
30.35703720897073,
62.359527895034766
],
[
30.407135372561463,
62.33718376294222
],
[
30.569993384671687,
62.372566433707426
],
[
30.72296593898377,
62.329609375787584
],
[
30.789182002558377,
62.250802842682425
],
[
30.720301465211517,
62.208876249941696
],
[
30.657049443758613,
62.208903811573066
],
[
30.602859487050925,
62.14177172033929
],
[
30.483086874010986,
62.063843942730095
],
[
30.40461144637006,
62.07051732616291
],
[
30.3011828369835,
62.128805733045205
],
[
30.20899932503205,
62.15667047659446
],
[
30.188092316926777,
62.23568249827303
],
[
30.005086545851793,
62.24430449895214
],
[
29.96339273322939,
62.28338901192938
],
[
30.015979143854256,
62.30810673729896
],
[
30.01165921016049,
62.34147585252176
],
[
29.949640908595665,
62.37025335980482
],
[
30.240734258293777,
62.416349278645974
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Toholampi",
"parent": "Keski-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.425522528325583,
63.840073163274845
],
[
24.618713972942537,
63.65088801439577
],
[
24.408546737368308,
63.56600473181805
],
[
24.330819338667663,
63.60109374278579
],
[
24.22769725170087,
63.64736733860811
],
[
23.98521393999945,
63.75625525331907
],
[
24.016525502281898,
63.8317601356087
],
[
24.110831256702077,
63.87126211180433
],
[
24.247452259357917,
63.87694948301354
],
[
24.425522528325583,
63.840073163274845
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Toivakka",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.220722544400918,
62.11856169379799
],
[
26.331673524660186,
62.03678926031897
],
[
26.163312948090702,
62.03848033731555
],
[
26.116097830301644,
61.99659637585955
],
[
26.050724025489156,
62.033351626927846
],
[
25.976455836740925,
62.03582731961098
],
[
25.951446644059295,
61.997468177990974
],
[
25.767989107303237,
62.06355418986611
],
[
25.795206628010455,
62.094439421332176
],
[
25.839612454398328,
62.12776934125573
],
[
25.960900123688056,
62.074654561689336
],
[
25.96032086272981,
62.15841897578133
],
[
26.048622298360204,
62.18127851817093
],
[
26.134205119942486,
62.235863876646384
],
[
26.315948111866824,
62.20047067851031
],
[
26.220722544400918,
62.11856169379799
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tornio",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.43619311099154,
65.7671634447421
],
[
24.159751002143988,
65.6128100204238
],
[
24.17255946717707,
65.69982377065203
],
[
24.123592392583145,
65.78906587789108
],
[
24.150530092763024,
65.81281196771963
],
[
24.15959832275044,
65.85273604936555
],
[
24.118975691042536,
65.8963145896231
],
[
24.116584921670594,
65.9290498408638
],
[
24.07974923691492,
65.93825787930389
],
[
24.039945979625816,
65.96493657264604
],
[
24.050572254179194,
65.99511994528686
],
[
23.99686520573916,
66.03505847617792
],
[
23.946680914219968,
66.06979716047177
],
[
23.942696235121957,
66.10215138424473
],
[
23.92164154837217,
66.13164789743476
],
[
23.92754890376316,
66.1518592147533
],
[
23.89186203112646,
66.16767019258731
],
[
23.91656751732929,
66.20596791049267
],
[
24.088420569810147,
66.2281258394686
],
[
24.791824681842527,
66.33223570759816
],
[
24.494078330213554,
66.18576354025943
],
[
24.50955570400758,
66.03044288250152
],
[
24.525151636611188,
65.8614215313055
],
[
24.43619311099154,
65.7671634447421
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Turku",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.4457115801018,
60.640907194027314
],
[
22.365284915856165,
60.47831297539132
],
[
22.36299512446281,
60.43006002595974
],
[
22.27421596913925,
60.40261757684261
],
[
22.31122339702153,
60.362114909532835
],
[
22.212039337807703,
60.3339952220964
],
[
22.07301407904579,
60.34155830274907
],
[
22.107843033932156,
60.447939571772686
],
[
22.19865087700757,
60.46200814420451
],
[
22.245861257465975,
60.505020150689326
],
[
22.264917797834027,
60.51755287034186
],
[
22.388022610611856,
60.630480491989005
],
[
22.415003582834892,
60.73729360055229
],
[
22.4457115801018,
60.640907194027314
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tuusniemi",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.611987793101225,
62.59456626262985
],
[
28.4669730201514,
62.58316265766578
],
[
28.360788522831232,
62.61241983317558
],
[
28.312090518926205,
62.651528852001455
],
[
28.371299945336585,
62.702152564112616
],
[
28.2937522685979,
62.761267022286894
],
[
28.335099645330402,
62.81584208506152
],
[
28.230623194864542,
62.82375644286112
],
[
28.16669263429741,
62.87649902045923
],
[
28.299759827732284,
62.8976789315567
],
[
28.248952012411262,
62.94630883829409
],
[
28.33927169805317,
62.94599090754355
],
[
28.385947343170464,
62.96386093945374
],
[
28.658105479560287,
62.885199860221704
],
[
28.74441184985887,
62.81237694965378
],
[
28.717012210986507,
62.77332519666832
],
[
28.632706426384264,
62.74397733489813
],
[
28.70287954004013,
62.69426109953391
],
[
28.655149547575327,
62.657021681055895
],
[
28.611987793101225,
62.59456626262985
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tuusula",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.030989625318096,
60.51208377481427
],
[
25.04445940463107,
60.44756105503335
],
[
25.180708619355336,
60.460857264245284
],
[
25.176826043484365,
60.4410857413326
],
[
25.051492427750603,
60.425932930389585
],
[
25.056011590944298,
60.37590646298717
],
[
25.037645441984925,
60.34230326726392
],
[
24.954591484798147,
60.332448919911535
],
[
24.86893914794676,
60.40125486342687
],
[
24.974392016436276,
60.52089805810907
],
[
24.912163088553147,
60.555624788523495
],
[
25.045343265498154,
60.57686325339518
],
[
25.128145904173874,
60.528528653021695
],
[
25.030989625318096,
60.51208377481427
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Tyrnävä",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.750454476848684,
64.88899822128852
],
[
25.994105951437753,
64.7178783562642
],
[
25.99807511560431,
64.67702075203601
],
[
25.929262589232383,
64.64655519649735
],
[
26.075053244488554,
64.58163108986987
],
[
25.974498897245866,
64.56622010783624
],
[
25.75590304972106,
64.662310759122
],
[
25.707298901445732,
64.6394266982014
],
[
25.771300492127267,
64.60463314838873
],
[
25.725799972832096,
64.58259812330131
],
[
25.604465839230418,
64.648130067965
],
[
25.501053443339178,
64.70685159217159
],
[
25.60798040621025,
64.72647742171621
],
[
25.52783174861798,
64.80676502541468
],
[
25.555334113719823,
64.84887300672708
],
[
25.65533911359413,
64.84684728876171
],
[
25.728301485724675,
64.90445548018992
],
[
25.750454476848684,
64.88899822128852
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ulvila",
"parent": "Satakunta"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.434161862464983,
61.48892267202585
],
[
22.288593881460308,
61.419210601199886
],
[
22.205018623992856,
61.407397651110884
],
[
22.16612587285928,
61.40546109442364
],
[
22.028275781697477,
61.420750669191285
],
[
21.803713057835346,
61.38514566782163
],
[
21.884117785562275,
61.50381573842905
],
[
21.93552316563361,
61.535330722455086
],
[
22.097050725052746,
61.57325050813366
],
[
22.241986789370916,
61.57218243504768
],
[
22.434161862464983,
61.48892267202585
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Urjala",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.387804213143454,
61.23299876889603
],
[
23.418782437630227,
61.20004582404375
],
[
23.542116331793647,
61.20530155040527
],
[
23.494138605640035,
61.1490518392508
],
[
23.650319542323878,
61.1199804674629
],
[
23.68831493361444,
61.07610925649672
],
[
23.756756711938184,
61.05735515180874
],
[
23.792614649824138,
61.02517586894721
],
[
23.815408055486376,
61.000660775632525
],
[
23.856574594914235,
60.97153622223972
],
[
23.83937006460241,
60.93970582597338
],
[
23.712336950013,
61.00903353162332
],
[
23.55051202495081,
60.99146734976936
],
[
23.474091075909925,
60.96346793145917
],
[
23.362461609167617,
61.01451637246428
],
[
23.25998476936507,
61.01855397534714
],
[
23.288112427939947,
61.057582273649096
],
[
23.25267469312058,
61.10460500801165
],
[
23.38336016247538,
61.13076564818584
],
[
23.25775616067182,
61.18255211499284
],
[
23.272881390617584,
61.221125339925585
],
[
23.279278967813696,
61.23825384344857
],
[
23.387804213143454,
61.23299876889603
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Utajärvi",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.38575153652437,
64.95901457514518
],
[
27.40263960354522,
64.85524603476681
],
[
27.35435638813982,
64.81198893409018
],
[
27.148091528013087,
64.83528737663715
],
[
26.90828265275384,
64.75908934013873
],
[
26.840530658952428,
64.66187845027682
],
[
26.65325951476201,
64.63057266634648
],
[
26.57962847899192,
64.56914016343161
],
[
26.461583101060132,
64.56505242962632
],
[
26.455144920219272,
64.62195407362324
],
[
26.315765506365263,
64.5950807248593
],
[
26.238989019136582,
64.6390938840049
],
[
26.38828108471073,
64.65925033167954
],
[
26.291510256875387,
64.74923352535923
],
[
26.183312193589003,
64.81790331201951
],
[
26.19524492365147,
64.83941114186226
],
[
26.37323146511338,
64.79396354983287
],
[
26.394312752498077,
64.84441584745775
],
[
26.499712657037644,
64.85947065930706
],
[
26.560452279694793,
64.90694029005235
],
[
26.661558341697674,
64.89163549085208
],
[
26.76842418089874,
64.95275971453599
],
[
26.61057509740945,
65.05396967755563
],
[
26.62861583971937,
65.09704847284878
],
[
27.00469434054063,
65.10682408864365
],
[
27.32988377601853,
65.09066018350923
],
[
27.262503917569866,
65.0273398602175
],
[
27.38575153652437,
64.95901457514518
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Utsjoki",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.95938141431094,
70.0920997296961
],
[
27.984285246603964,
70.01397066402383
],
[
28.160712769567553,
69.92099368348225
],
[
28.345268047270853,
69.88083211996444
],
[
28.33047611756854,
69.84919253825251
],
[
27.88678116227457,
69.56532318771013
],
[
27.315452340648637,
69.48597017599377
],
[
25.738374212965972,
69.14758010041825
],
[
25.694595383401857,
69.19504007868625
],
[
25.702039898176377,
69.25366230139531
],
[
25.732913880425983,
69.26538549109424
],
[
25.737764898350573,
69.3105771832575
],
[
25.758701803957102,
69.33082353141019
],
[
25.84664763379625,
69.39383511270312
],
[
25.80338404909943,
69.41938885294996
],
[
25.84856757742988,
69.47171605466399
],
[
25.850423569777224,
69.49719907435177
],
[
25.875746571022397,
69.52222354864772
],
[
25.844249563610628,
69.55018253027417
],
[
25.928600752559973,
69.57182168800804
],
[
25.976576539200426,
69.61024288361662
],
[
25.958606455066167,
69.64124914803342
],
[
25.89187015499966,
69.66484525216048
],
[
26.000455126028665,
69.7196834091296
],
[
26.10729437093451,
69.73032016912057
],
[
26.230977751229645,
69.79200332325144
],
[
26.24161026872,
69.81239780121628
],
[
26.385022383611574,
69.85486916259909
],
[
26.414218345896053,
69.8790731253921
],
[
26.40753836900224,
69.9014819794083
],
[
26.45509269605305,
69.91869914221607
],
[
26.47161657656432,
69.94047807010158
],
[
26.55355412892829,
69.94810394015991
],
[
26.678685770327764,
69.96477209502298
],
[
26.71829113168815,
69.94526028354507
],
[
26.79387914032311,
69.95878708888537
],
[
26.84867230621755,
69.96019553570227
],
[
26.878707992109227,
69.93333786253311
],
[
26.96977204635665,
69.93847549320121
],
[
27.04181320973626,
69.91082181842256
],
[
27.137529224024814,
69.93261460407744
],
[
27.300665426448685,
69.95473261340808
],
[
27.27680973151391,
69.97838295688125
],
[
27.305997286718814,
69.98890443194284
],
[
27.351621518439817,
69.99056920334516
],
[
27.415190314770626,
70.01645621995675
],
[
27.52598679173085,
70.02346379580379
],
[
27.554296224725082,
70.05898374378215
],
[
27.61245539230867,
70.07456025184892
],
[
27.68125694996443,
70.07722098089904
],
[
27.743789331690824,
70.0641612409887
],
[
27.80741164908185,
70.07703976601984
],
[
27.95938141431094,
70.0920997296961
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Uurainen",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.69515068574923,
62.491503958382616
],
[
25.579133273671573,
62.4287455718501
],
[
25.489850511213746,
62.397620927072516
],
[
25.285410892037767,
62.389180684493205
],
[
25.124827489332947,
62.42702205838909
],
[
25.194984248461832,
62.534619276850435
],
[
25.251913085760126,
62.53765059555227
],
[
25.40607119357976,
62.520826206173716
],
[
25.483862806383907,
62.54705339971766
],
[
25.626866024928493,
62.554738964960045
],
[
25.69515068574923,
62.491503958382616
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Uusikaarlepyy",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.539402609692054,
63.610761188799906
],
[
22.842825548480942,
63.506052054272864
],
[
22.833946877425678,
63.473738711260616
],
[
22.87721943041745,
63.391709194778755
],
[
22.971599682451753,
63.37226563556848
],
[
22.94525978297841,
63.32827661831768
],
[
22.735608380316545,
63.35895933838053
],
[
22.61655978901095,
63.2820480393565
],
[
22.540383021736993,
63.33615133829191
],
[
22.275903588799654,
63.350464708548415
],
[
22.07010228728334,
63.41819620486122
],
[
21.599475211130894,
63.67023678327522
],
[
21.88458736505107,
63.7012124784773
],
[
21.978740136770117,
63.75994958467427
],
[
22.539402609692054,
63.610761188799906
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Uusikaupunki",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.403036404922535,
60.92245976845245
],
[
21.43381827630249,
60.878998188902074
],
[
21.505549695699298,
60.88351030012882
],
[
21.561426623355793,
60.84055879709926
],
[
21.70342799985576,
60.81704663056282
],
[
21.732009139046806,
60.7592913386679
],
[
21.55865849299756,
60.73995831607403
],
[
21.523897845799958,
60.667381979346565
],
[
21.588737428378025,
60.62131176718636
],
[
21.3656174486445,
60.62417731654377
],
[
21.22914699286842,
60.70516236332403
],
[
20.437558533647664,
60.901808985861635
],
[
20.771447322299593,
61.12690828293262
],
[
21.231845185936763,
61.0520878946848
],
[
21.417250031286773,
60.958302471293905
],
[
21.403036404922535,
60.92245976845245
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vaala",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.251233684887143,
64.39904561700908
],
[
27.187766414503624,
64.31032381408755
],
[
27.040635951973382,
64.29209373265546
],
[
26.941675378784453,
64.32706501498394
],
[
26.817625699320566,
64.29878170737322
],
[
26.767499642680935,
64.26516554083855
],
[
26.68797763252447,
64.30889222682767
],
[
26.545866482380184,
64.32001284030407
],
[
26.48501470410908,
64.39933933039882
],
[
26.291105954354357,
64.47906385912782
],
[
26.461583101060132,
64.56505242962632
],
[
26.57962847899192,
64.56914016343161
],
[
26.65325951476201,
64.63057266634648
],
[
26.840530658952428,
64.66187845027682
],
[
26.90828265275384,
64.75908934013873
],
[
27.148091528013087,
64.83528737663715
],
[
27.25356659621627,
64.73559044912037
],
[
27.239627670995155,
64.70034657040478
],
[
27.308024233840428,
64.61603450993921
],
[
27.396980797669062,
64.57188462691126
],
[
27.185076639378963,
64.45589011886247
],
[
27.251233684887143,
64.39904561700908
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vaasa",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
21.814374181408247,
63.11152600552635
],
[
21.82889435320374,
63.06167357959209
],
[
21.772322525779433,
63.037706670262175
],
[
21.637478845965802,
63.063327564136046
],
[
21.563075414223746,
62.98482834534634
],
[
21.02762730755335,
63.10829922320163
],
[
21.41159171837697,
63.136282968500396
],
[
21.47204011132372,
63.17885398237219
],
[
21.65365991303294,
63.14769491383269
],
[
21.69765295471848,
63.11615901537627
],
[
21.754977735303985,
63.11725168514362
],
[
21.814374181408247,
63.11152600552635
]
]
],
[
[
[
22.242322571074443,
63.06372647668732
],
[
22.14397311370223,
62.96310731572087
],
[
21.91210575190337,
63.04876461042721
],
[
22.05067696981737,
63.13698094146481
],
[
22.242322571074443,
63.06372647668732
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Valkeakoski",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.079139117954103,
61.33048362797323
],
[
24.0883984592838,
61.29113084438519
],
[
24.30238524657783,
61.233216077362
],
[
24.297273137601078,
61.191581114683636
],
[
24.235499603131785,
61.15143135152052
],
[
23.958283897569146,
61.1019294578469
],
[
23.921086026078026,
61.13088430625006
],
[
23.959014087641815,
61.184141436515375
],
[
23.811447606754097,
61.23071174205022
],
[
23.957771294730385,
61.33134860479687
],
[
24.079139117954103,
61.33048362797323
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Valtimo",
"parent": "Pohjois-Karjala"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
28.500770861384684,
63.88241466808727
],
[
28.88513705592673,
63.835836978254484
],
[
29.11189029783794,
63.84635279871127
],
[
29.12764214722784,
63.804002766106436
],
[
29.191967069962693,
63.75703484144456
],
[
28.98360129645912,
63.726127939539104
],
[
28.939401063041586,
63.6566719965239
],
[
28.99894937344934,
63.6115453034476
],
[
28.851462709097984,
63.565421617323345
],
[
28.76954521054619,
63.58966093635234
],
[
28.668509050991887,
63.56120520454729
],
[
28.606748839610976,
63.575441675394906
],
[
28.593723580778757,
63.669814393035665
],
[
28.550900085726564,
63.700626129396156
],
[
28.461227319714382,
63.69860800446877
],
[
28.359590185126176,
63.75475262137381
],
[
28.500770861384684,
63.88241466808727
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vantaa",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.86893914794676,
60.40125486342687
],
[
24.954591484798147,
60.332448919911535
],
[
25.037645441984925,
60.34230326726392
],
[
25.056011590944298,
60.37590646298717
],
[
25.17283853693059,
60.35661064929543
],
[
25.116818579795094,
60.328382647724375
],
[
25.169614232971533,
60.31148623771622
],
[
25.19024994569274,
60.28568133849804
],
[
25.142534947515742,
60.26977888214257
],
[
25.159883043149094,
60.248817273737565
],
[
25.135844043571428,
60.237228219952286
],
[
25.082918122117707,
60.24280819140188
],
[
25.090690411701868,
60.26421749023604
],
[
25.020906415585284,
60.289317838838244
],
[
24.831403063881027,
60.254055152162
],
[
24.784754108863698,
60.24150497791208
],
[
24.749283198085372,
60.34178329414992
],
[
24.86893914794676,
60.40125486342687
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Varkaus",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.912520740890667,
62.38050636195069
],
[
28.03169664866176,
62.29548442279128
],
[
28.224374613675973,
62.34932555969115
],
[
28.315004237355065,
62.35455262551124
],
[
28.437760850425306,
62.346336414559644
],
[
28.437926464228138,
62.31684346969173
],
[
28.5624586861384,
62.29436994950805
],
[
28.652808235808152,
62.231323003658524
],
[
28.59747639916173,
62.14962008396271
],
[
28.50447510811111,
62.20152295742167
],
[
28.389078598677578,
62.21438065087288
],
[
28.04892181713235,
62.23529266826224
],
[
27.89187440224255,
62.290022166799204
],
[
27.83305745564122,
62.278197135618136
],
[
27.740369180644684,
62.323131635334704
],
[
27.757958702634102,
62.36739435417161
],
[
27.826309602857176,
62.35313552224809
],
[
27.912520740890667,
62.38050636195069
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vehmaa",
"parent": "Varsinais-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.798820582389634,
60.73846267181518
],
[
21.776647802647958,
60.56367398572864
],
[
21.674952107084284,
60.620680075680646
],
[
21.588737428378025,
60.62131176718636
],
[
21.523897845799958,
60.667381979346565
],
[
21.55865849299756,
60.73995831607403
],
[
21.732009139046806,
60.7592913386679
],
[
21.798820582389634,
60.73846267181518
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vesanto",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
26.543630671842223,
62.99881354260843
],
[
26.68134602043208,
62.898177843206824
],
[
26.667202065266085,
62.849158716992754
],
[
26.63458534257775,
62.81009895935193
],
[
26.53832157877884,
62.82009586046658
],
[
26.446560232981774,
62.78917312534236
],
[
26.356160937667056,
62.74740990463624
],
[
26.151774059576045,
62.84684100925587
],
[
26.165399730699313,
62.87252660835389
],
[
26.06824223798795,
62.889408049751744
],
[
26.039837790745626,
62.93611053192062
],
[
26.12431343335198,
62.95294517200385
],
[
26.22212302076471,
62.95440004825992
],
[
26.272666856944483,
62.92506037108658
],
[
26.332551449713385,
62.983569391642575
],
[
26.22257320157653,
63.02587393014165
],
[
26.33427411387749,
63.03508948476569
],
[
26.543630671842223,
62.99881354260843
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vesilahti",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.548336625540976,
61.35829870428967
],
[
23.672733535759143,
61.31291751682526
],
[
23.737132566842387,
61.25897918229805
],
[
23.690076978421487,
61.21461447675386
],
[
23.542116331793647,
61.20530155040527
],
[
23.418782437630227,
61.20004582404375
],
[
23.387804213143454,
61.23299876889603
],
[
23.279278967813696,
61.23825384344857
],
[
23.287330989947673,
61.28955141487329
],
[
23.220749138913416,
61.328405047392835
],
[
23.27129463379031,
61.34587817887742
],
[
23.343086992131294,
61.34070830466133
],
[
23.393168822764725,
61.360741191424474
],
[
23.47762142851193,
61.39682548722414
],
[
23.548336625540976,
61.35829870428967
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Veteli",
"parent": "Keski-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.94297191654395,
63.497870501596196
],
[
24.040818042479273,
63.52154144491374
],
[
24.091527612153232,
63.495331187388935
],
[
24.10305676967954,
63.41259537901687
],
[
24.16462873342756,
63.331917658426825
],
[
24.052027816966365,
63.258144962333596
],
[
23.86202124117601,
63.2775844465823
],
[
23.69698894002367,
63.380320683201724
],
[
23.65776813388026,
63.48297283571017
],
[
23.859069969540744,
63.53157104382945
],
[
23.94297191654395,
63.497870501596196
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vieremä",
"parent": "Pohjois-Savo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.35757926549384,
63.82742667910778
],
[
27.34946853333782,
63.78826761877862
],
[
27.20998192198801,
63.724653458662644
],
[
27.26095863843197,
63.6888390696109
],
[
27.20894314555352,
63.651321793784135
],
[
27.07243964067696,
63.660713027653095
],
[
27.015326252210237,
63.616477604254406
],
[
26.915245603186598,
63.62909419693373
],
[
26.82880660814769,
63.66681695887366
],
[
26.894741640193562,
63.695333596911055
],
[
26.826196256645417,
63.76771731030052
],
[
26.835611297142027,
63.81536857570769
],
[
26.73017899977908,
63.815210171139285
],
[
26.73363018797846,
63.848491801980394
],
[
26.758669214506345,
63.88515872234528
],
[
26.559394743141567,
63.96368806767338
],
[
26.870402194524914,
64.03697383279663
],
[
27.119271141807904,
63.99077938048499
],
[
27.16121819292152,
63.938798726668736
],
[
27.250700789642398,
63.91506975406401
],
[
27.256118178901133,
63.88700180395941
],
[
27.35757926549384,
63.82742667910778
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vihti",
"parent": "Uusimaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.648835852297154,
60.51665902999964
],
[
24.524838676913795,
60.47678612789196
],
[
24.62769391815298,
60.359241407243374
],
[
24.562671778167118,
60.314084869302796
],
[
24.524207484113777,
60.31341242815312
],
[
24.515568815751305,
60.28129151887541
],
[
24.417777472528112,
60.294140602078514
],
[
24.34248577093407,
60.24619821297415
],
[
24.305695635051205,
60.29464546893561
],
[
24.208132079542644,
60.29870025918789
],
[
24.204039004782278,
60.362918302348106
],
[
24.13396334812912,
60.391843586818105
],
[
24.171254162864063,
60.48473818331299
],
[
24.2880674073535,
60.4754655743215
],
[
24.46490446861622,
60.504066319156316
],
[
24.423680353450436,
60.55249148066438
],
[
24.548952137860752,
60.559839790761394
],
[
24.577250305962746,
60.58580118883246
],
[
24.648835852297154,
60.51665902999964
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Viitasaari",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.333469424015604,
63.28431229966047
],
[
25.64728943194094,
63.24563081187802
],
[
25.69729368293309,
63.28123438253682
],
[
25.869347200821874,
63.274454604731964
],
[
26.02350876578243,
63.289830672387104
],
[
26.14189094724279,
63.274704395740855
],
[
26.16351306177785,
63.14704119499248
],
[
26.218936319665005,
63.089625662889524
],
[
26.33427411387749,
63.03508948476569
],
[
26.22257320157653,
63.02587393014165
],
[
26.332551449713385,
62.983569391642575
],
[
26.272666856944483,
62.92506037108658
],
[
26.22212302076471,
62.95440004825992
],
[
26.12431343335198,
62.95294517200385
],
[
26.039837790745626,
62.93611053192062
],
[
26.06824223798795,
62.889408049751744
],
[
25.922396846351972,
62.87625294309303
],
[
25.707689806892965,
62.92074287156468
],
[
25.68306104125845,
62.95458949849035
],
[
25.586666318109565,
62.95982849459594
],
[
25.519467077921153,
62.98743294699637
],
[
25.530450450815444,
63.033459455177116
],
[
25.375094856512824,
63.09926922331081
],
[
25.315859344640575,
63.24247386884396
],
[
25.309317624084755,
63.27865420656208
],
[
25.333469424015604,
63.28431229966047
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vimpeli",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.052027816966365,
63.258144962333596
],
[
24.234480906675866,
63.17069882594221
],
[
24.170771051147174,
63.14799834173961
],
[
23.75038702636477,
63.075485361217616
],
[
23.715638349442255,
63.11190118452717
],
[
23.69794611225794,
63.175325491506875
],
[
23.860307651537184,
63.21772788911991
],
[
23.86202124117601,
63.2775844465823
],
[
24.052027816966365,
63.258144962333596
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Virolahti",
"parent": "Kymenlaakso"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
27.592299856299075,
60.6601868955362
],
[
27.6962538797953,
60.621021533138695
],
[
27.754105589058096,
60.62455503756847
],
[
27.820038295984478,
60.65451285967096
],
[
27.854273647549782,
60.61633993389188
],
[
27.888741681371428,
60.61294234693036
],
[
27.844600824236736,
60.58074008242547
],
[
27.847302716398765,
60.56143660395072
],
[
27.774409842347293,
60.53357325222878
],
[
27.768186159003335,
60.48905795009723
],
[
27.74794980856351,
60.45117089402906
],
[
27.68692037231969,
60.43357236971757
],
[
27.725823127336053,
60.391627563884285
],
[
27.649530636965775,
60.344922149473724
],
[
27.55696832886672,
60.38743640061775
],
[
27.525955903267448,
60.4172924391129
],
[
27.534725121388302,
60.439899947251696
],
[
27.39804214451003,
60.4747759465602
],
[
27.397832114635364,
60.5176125293332
],
[
27.35656950324875,
60.55877349305756
],
[
27.388185349048836,
60.60218266440525
],
[
27.45467885232189,
60.641097002999544
],
[
27.48797943168171,
60.61637954296263
],
[
27.5398579747777,
60.618190011061614
],
[
27.533010650368844,
60.65638532561159
],
[
27.592299856299075,
60.6601868955362
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Virrat",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.887245443545837,
62.45971263146134
],
[
23.924218722138107,
62.390621696707676
],
[
24.01300320898738,
62.3633263711646
],
[
24.080775274560754,
62.27640519264514
],
[
24.21129189782857,
62.25232617496253
],
[
24.03551018113136,
62.12095571937357
],
[
23.855426661104545,
62.17094609197768
],
[
23.86594621337978,
62.12883996420263
],
[
23.786120645713044,
62.08883955123869
],
[
23.680622357840154,
62.08443695404137
],
[
23.5806010766516,
62.09606713314643
],
[
23.424002088599636,
62.15811033354085
],
[
23.217823352546738,
62.334166699292666
],
[
23.33776361985788,
62.42508342346796
],
[
23.46466605141908,
62.38655605680976
],
[
23.503407314718576,
62.41464018601937
],
[
23.663713288747058,
62.40863801880631
],
[
23.835230179589697,
62.49433630611401
],
[
23.887245443545837,
62.45971263146134
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vårdö",
"parent": "Ahvenanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
20.45511505844724,
60.46648072989623
],
[
20.596339505659422,
60.371765167766604
],
[
20.63576313762484,
60.30778773511598
],
[
20.58745185404184,
60.208378687330594
],
[
20.541326100927897,
60.22626314064524
],
[
20.48168842005031,
60.18899199545966
],
[
20.520575392232846,
60.14721782977171
],
[
20.511039327290824,
60.128365594569736
],
[
20.409600624117555,
60.15079405807741
],
[
20.407469585223986,
60.10615924656429
],
[
20.324685565767194,
60.111716141889865
],
[
20.31381246901638,
60.14590939864892
],
[
20.231989511852873,
60.17669722456789
],
[
20.287419634697947,
60.22016338336545
],
[
20.262827708875406,
60.34105641874506
],
[
20.288121640232383,
60.37063876819015
],
[
20.23966673483721,
60.4269026854602
],
[
20.310363681034918,
60.42920288672136
],
[
20.375321656097686,
60.46604089743253
],
[
20.45511505844724,
60.46648072989623
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Vöyri",
"parent": "Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.07010228728334,
63.41819620486122
],
[
22.275903588799654,
63.350464708548415
],
[
22.540383021736993,
63.33615133829191
],
[
22.61655978901095,
63.2820480393565
],
[
22.574634526803333,
63.25581443582326
],
[
22.597178539724645,
63.21315730030376
],
[
22.60662731196059,
63.17731906856764
],
[
22.650473871540793,
63.15331134979266
],
[
22.63165211057555,
63.10191750538556
],
[
22.242322571074443,
63.06372647668732
],
[
22.05067696981737,
63.13698094146481
],
[
21.95852367848491,
63.26271922495292
],
[
21.746905947813683,
63.389968086599886
],
[
21.670372791034538,
63.396492932081145
],
[
21.683602633007062,
63.44056181512535
],
[
21.360587550865755,
63.62898533245183
],
[
21.506568340270373,
63.66611261891117
],
[
21.599475211130894,
63.67023678327522
],
[
22.07010228728334,
63.41819620486122
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ylitornio",
"parent": "Lappi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.988052006498464,
66.75437741706818
],
[
25.050410740599457,
66.47584860021075
],
[
24.791824681842527,
66.33223570759816
],
[
24.088420569810147,
66.2281258394686
],
[
23.91656751732929,
66.20596791049267
],
[
23.89186203112646,
66.16767019258731
],
[
23.823005880050488,
66.17281401578288
],
[
23.72760604666612,
66.19537983883775
],
[
23.649791001631655,
66.31044675509548
],
[
23.677452899417524,
66.37201941721548
],
[
23.670851398607866,
66.39833657232441
],
[
23.644371550967563,
66.42305582654025
],
[
23.641840785689137,
66.45684485530985
],
[
23.704987222846356,
66.47359723890364
],
[
23.71894454157164,
66.49531852280596
],
[
23.797080098711664,
66.52111685019243
],
[
23.94538036615488,
66.46542107496226
],
[
24.096910003272725,
66.49919415094533
],
[
24.185888868806146,
66.5125435086305
],
[
24.227047864486067,
66.53416501720743
],
[
24.299814551372123,
66.55001770014508
],
[
24.323164446488327,
66.59791778682052
],
[
24.526666043277757,
66.62811435848577
],
[
24.65821308656043,
66.71017178534835
],
[
24.739615538824335,
66.75355980456068
],
[
24.84607091550848,
66.76571339137553
],
[
24.988052006498464,
66.75437741706818
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ylivieska",
"parent": "Pohjois-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.906373771497304,
64.10945083311623
],
[
25.021245459303245,
64.0679382879068
],
[
24.913041626977627,
63.98321357053855
],
[
24.745392781496403,
63.993688111350316
],
[
24.639092815416387,
63.94676254914173
],
[
24.306638460495336,
64.02212085314284
],
[
24.346336184809278,
64.0415162968083
],
[
24.381911778335912,
64.14736550318997
],
[
24.58205390948476,
64.18645318767184
],
[
24.906373771497304,
64.10945083311623
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ylöjärvi",
"parent": "Pirkanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.5806010766516,
62.09606713314643
],
[
23.680622357840154,
62.08443695404137
],
[
23.697642589374965,
62.031303117293774
],
[
23.844340452317947,
61.94949555938567
],
[
23.85551795154476,
61.83661390029927
],
[
23.72132860234463,
61.67101539138996
],
[
23.763238464719105,
61.53988315913349
],
[
23.645937377644216,
61.53083288185159
],
[
23.542299896592542,
61.53333868000808
],
[
23.442162492358307,
61.57222748774658
],
[
23.492755817486575,
61.58587195458141
],
[
23.50047659443665,
61.69791181092487
],
[
23.335439363421365,
61.63706850518665
],
[
23.309104262154857,
61.66612860806623
],
[
23.20830134796825,
61.655283732326026
],
[
23.21025924429434,
61.73440412256075
],
[
23.351281018700785,
61.760248687695935
],
[
23.335234605295316,
61.784623920928766
],
[
23.41802337305155,
61.811204443898184
],
[
23.59387529150075,
61.819351880328135
],
[
23.592160170150525,
61.855998087030265
],
[
23.448384426155926,
61.87358519848629
],
[
23.447628548717176,
61.91465794651289
],
[
23.310840309854246,
61.949515512319245
],
[
23.365385256883993,
62.07129007201177
],
[
23.29520839535918,
62.08294407625678
],
[
23.35918707690713,
62.14311263199709
],
[
23.424002088599636,
62.15811033354085
],
[
23.5806010766516,
62.09606713314643
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ypäjä",
"parent": "Kanta-Häme"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.40862398072131,
60.7397738005781
],
[
23.277278877002022,
60.711075392739424
],
[
23.154615351559784,
60.77416823699695
],
[
23.230069679852406,
60.825406772085906
],
[
23.142581854509448,
60.8375029516263
],
[
23.135638115865078,
60.88351844325512
],
[
23.266664800142745,
60.88910949732437
],
[
23.27633462386964,
60.88218432333941
],
[
23.372150778895694,
60.81411531924126
],
[
23.40862398072131,
60.7397738005781
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Ähtäri",
"parent": "Etelä-Pohjanmaa"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.03952144927872,
62.736484197242774
],
[
24.119276178080106,
62.69550705860655
],
[
24.230120376952517,
62.68577617395236
],
[
24.25356807843771,
62.724504525086445
],
[
24.272518040880396,
62.754814001011496
],
[
24.373726324311118,
62.70150881578575
],
[
24.519591928794178,
62.68597828298199
],
[
24.582168743659775,
62.664786460810895
],
[
24.528773072749107,
62.62728306096284
],
[
24.561073130563184,
62.58622657612328
],
[
24.5305679210293,
62.528407842952014
],
[
24.44345008692607,
62.484225927444726
],
[
24.330883234245256,
62.49116716617071
],
[
24.28449508318794,
62.451250365976385
],
[
24.201285133339336,
62.4826581442583
],
[
24.01300320898738,
62.3633263711646
],
[
23.924218722138107,
62.390621696707676
],
[
23.887245443545837,
62.45971263146134
],
[
23.835230179589697,
62.49433630611401
],
[
23.993574326076395,
62.579072618109954
],
[
23.931593904759605,
62.750925813600006
],
[
24.03952144927872,
62.736484197242774
]
]
]
}
},
{
"type": "Feature",
"properties": {
"name": "Äänekoski",
"parent": "Keski-Suomi"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
25.707689806892965,
62.92074287156468
],
[
25.922396846351972,
62.87625294309303
],
[
26.06824223798795,
62.889408049751744
],
[
26.165399730699313,
62.87252660835389
],
[
26.151774059576045,
62.84684100925587
],
[
26.024797321459157,
62.825363068634836
],
[
26.066600568685782,
62.77907125146926
],
[
26.134756838817765,
62.76025858419112
],
[
26.136065472669657,
62.711404842566054
],
[
26.233764236135777,
62.678368478351395
],
[
26.110477091588965,
62.60561077272148
],
[
26.0359597397263,
62.583585821635694
],
[
25.935676340549833,
62.52477845294776
],
[
25.838689032725668,
62.52176422422617
],
[
25.69515068574923,
62.491503958382616
],
[
25.626866024928493,
62.554738964960045
],
[
25.483862806383907,
62.54705339971766
],
[
25.492051413364116,
62.726068876023405
],
[
25.69660111883179,
62.78236471543197
],
[
25.57111871182723,
62.85926780156143
],
[
25.707689806892965,
62.92074287156468
]
]
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment