Skip to content

Instantly share code, notes, and snippets.

@ebritanica
Last active May 21, 2018 18:41
Show Gist options
  • Save ebritanica/8320dd3d6fe2120e7bcfa45cc0398b45 to your computer and use it in GitHub Desktop.
Save ebritanica/8320dd3d6fe2120e7bcfa45cc0398b45 to your computer and use it in GitHub Desktop.
Point in Polygon 01
<?php
//https://github.com/davidkonrad
//https://stackoverflow.com/questions/14818567/point-in-polygon-algorithm-giving-wrong-results-sometimes?answertab=active#tab-top
//Modified function pointInPolygon to use with arrays as arguments
//You can sumply convert to class this mod to class version
//More points in poligon - more result precision
// Polygon points for Saint-Pieterburg and Moscow circle road
// All points wat taken from maps.yandex.ru source page code, i.e. js code.
// Here is little manual to get points:
// https://gist.github.com/ebritanica/c8628975c2df68e72d1e4623e293e723
$polygon_kad_points['Москва'] = array([55.774558,37.842762],[55.76522,37.842789],[55.755723,37.842627],[55.747399,37.841828],[55.739103,37.841217],[55.730482,37.840175],[55.721939,37.83916],[55.712203,37.837121],[55.703048,37.83262],[55.694287,37.829512],[55.68529,37.831353],[55.675945,37.834605],[55.667752,37.837597],[55.658667,37.839348],[55.650053,37.833842],[55.643713,37.824787],[55.637347,37.814564],[55.62913,37.802473],[55.623758,37.794235],[55.617713,37.781928],[55.611755,37.771139],[55.604956,37.758725],[55.599677,37.747945],[55.594143,37.734785],[55.589234,37.723062],[55.583983,37.709425],[55.578834,37.696256],[55.574019,37.683167],[55.571999,37.668911],[55.573093,37.647765],[55.573928,37.633419],[55.574732,37.616719],[55.575816,37.60107],[55.5778,37.586536],[55.581271,37.571938],[55.585143,37.555732],[55.587509,37.545132],[55.5922,37.526366],[55.594728,37.516108],[55.60249,37.502274],[55.609685,37.49391],[55.617424,37.484846],[55.625801,37.474668],[55.630207,37.469925],[55.641041,37.456864],[55.648794,37.448195],[55.654675,37.441125],[55.660424,37.434424],[55.670701,37.42598],[55.67994,37.418712],[55.686873,37.414868],[55.695697,37.407528],[55.702805,37.397952],[55.709657,37.388969],[55.718273,37.383283],[55.728581,37.378369],[55.735201,37.374991],[55.744789,37.370248],[55.75435,37.369188],[55.762936,37.369053],[55.771444,37.369619],[55.779722,37.369853],[55.789542,37.372943],[55.79723,37.379824],[55.805796,37.386876],[55.814629,37.390397],[55.823606,37.393236],[55.83251,37.395275],[55.840376,37.394709],[55.850141,37.393056],[55.858801,37.397314],[55.867051,37.405588],[55.872703,37.416601],[55.877041,37.429429],[55.881091,37.443596],[55.882828,37.459065],[55.884625,37.473096],[55.888897,37.48861],[55.894232,37.5016],[55.899578,37.513206],[55.90526,37.527597],[55.907687,37.543443],[55.909388,37.559577],[55.910907,37.575531],[55.909257,37.590344],[55.905472,37.604637],[55.901637,37.619603],[55.898533,37.635961],[55.896973,37.647648],[55.895449,37.667878],[55.894868,37.681721],[55.893884,37.698807],[55.889094,37.712363],[55.883555,37.723636],[55.877501,37.735791],[55.874698,37.741261],[55.862464,37.764519],[55.861979,37.765992],[55.850257,37.788216],[55.850383,37.788522],[55.844167,37.800586],[55.832707,37.822819],[55.828789,37.829754],[55.821072,37.837148],[55.811599,37.838926],[55.802781,37.840004],[55.793991,37.840965],[55.785017,37.841576],[55.774558,37.842762]);
$polygon_kad_points['Санкт-Петербург'] = array([59.908456,29.659262],[59.905894,29.659723],[59.905293,29.659839],[59.904766,29.659926],[59.903862,29.660083],[59.903123,29.660207],[59.902343,29.660334],[59.901598,29.660484],[59.900626,29.660775],[59.899732,29.661114],[59.899362,29.661283],[59.89862,29.661638],[59.897921,29.662026],[59.897444,29.662333],[59.896872,29.66272],[59.896398,29.66305],[59.896042,29.663332],[59.895619,29.663662],[59.895001,29.66421],[59.894362,29.664813],[59.893615,29.665624],[59.89327,29.666024],[59.892639,29.66676],[59.891885,29.667728],[59.891011,29.668968],[59.890278,29.670077],[59.88992,29.670673],[59.889275,29.671771],[59.888952,29.672345],[59.888597,29.673015],[59.888531,29.673147],[59.887685,29.67492],[59.887186,29.675988],[59.886609,29.677327],[59.886045,29.678779],[59.885888,29.679213],[59.885659,29.679844],[59.885324,29.680875],[59.884895,29.682255],[59.884594,29.683271],[59.884321,29.684244],[59.884102,29.685045],[59.883879,29.685957],[59.88381,29.686238],[59.883511,29.687501],[59.88318,29.688829],[59.882753,29.690476],[59.882381,29.692015],[59.881106,29.697247],[59.880247,29.700835],[59.879633,29.703403],[59.878709,29.707208],[59.878076,29.709757],[59.877113,29.713735],[59.876263,29.717249],[59.875717,29.719543],[59.874616,29.72403],[59.873716,29.727765],[59.872565,29.732565],[59.872069,29.734614],[59.871886,29.735386],[59.871782,29.735796],[59.87143,29.737262],[59.871077,29.738825],[59.870879,29.739818],[59.870719,29.740725],[59.870578,29.741542],[59.870441,29.74237],[59.870236,29.743797],[59.870082,29.744994],[59.869938,29.74622],[59.869735,29.748304],[59.86965,29.749326],[59.869585,29.750246],[59.869507,29.751739],[59.869469,29.752747],[59.869296,29.757688],[59.869199,29.760572],[59.869137,29.762354],[59.869097,29.763803],[59.869047,29.765359],[59.868986,29.766865],[59.868977,29.767015],[59.868935,29.767857],[59.868904,29.768547],[59.868846,29.769822],[59.868791,29.770664],[59.868718,29.77173],[59.868581,29.773324],[59.868492,29.774191],[59.8684,29.774998],[59.868165,29.776983],[59.867979,29.778246],[59.867799,29.779379],[59.8676,29.780464],[59.867407,29.781474],[59.867145,29.78263],[59.866879,29.78381],[59.866617,29.78492],[59.866209,29.786427],[59.865949,29.787336],[59.865635,29.7884],[59.86504,29.790184],[59.86455,29.791607],[59.864249,29.792354],[59.863651,29.793783],[59.862861,29.795532],[59.862361,29.796543],[59.862133,29.79699],[59.861922,29.797384],[59.861475,29.798181],[59.860968,29.799062],[59.860215,29.800228],[59.859973,29.800578],[59.859534,29.801224],[59.859427,29.801377],[59.858866,29.802146],[59.857754,29.803488],[59.856681,29.804625],[59.856087,29.805203],[59.855869,29.805401],[59.853894,29.806943],[59.852841,29.807588],[59.852109,29.807982],[59.850111,29.809059],[59.848738,29.809756],[59.845853,29.811203],[59.843056,29.812595],[59.839881,29.814148],[59.836644,29.815776],[59.835787,29.816228],[59.834675,29.816879],[59.833698,29.817518],[59.832932,29.818104],[59.832258,29.818659],[59.831007,29.819775],[59.8304,29.820381],[59.82957,29.821273],[59.82858,29.822494],[59.826952,29.824663],[59.826761,29.824958],[59.825472,29.826915],[59.823436,29.830521],[59.820554,29.835692],[59.819916,29.836838],[59.818524,29.839256],[59.817453,29.841237],[59.817053,29.842051],[59.816746,29.842704],[59.816287,29.843816],[59.81584,29.844985],[59.815418,29.846286],[59.815086,29.847409],[59.81471,29.84881],[59.814458,29.84992],[59.814269,29.850879],[59.814216,29.851168],[59.814131,29.851639],[59.814009,29.852344],[59.813871,29.853303],[59.813752,29.854219],[59.813644,29.855136],[59.813543,29.856295],[59.813485,29.85709],[59.813447,29.857783],[59.81342,29.858425],[59.813365,29.86019],[59.813336,29.861278],[59.813328,29.861801],[59.813299,29.862865],[59.813151,29.868096],[59.813037,29.872017],[59.81283,29.879256],[59.812688,29.884036],[59.812631,29.88605],[59.812481,29.891431],[59.812282,29.898194],[59.812195,29.901618],[59.812182,29.903723],[59.812183,29.905075],[59.812205,29.906027],[59.812258,29.907854],[59.81235,29.909947],[59.812435,29.911217],[59.812557,29.912615],[59.812809,29.915131],[59.812934,29.916294],[59.813097,29.917527],[59.813385,29.919559],[59.813534,29.920486],[59.813686,29.921349],[59.813901,29.922442],[59.814513,29.925507],[59.814849,29.927189],[59.814882,29.927368],[59.815022,29.928144],[59.815442,29.930343],[59.816749,29.936982],[59.817014,29.938315],[59.818026,29.943509],[59.818962,29.948294],[59.820177,29.95444],[59.820248,29.954799],[59.821033,29.958806],[59.821297,29.960186],[59.821469,29.961281],[59.82162,29.962246],[59.82182,29.963644],[59.821948,29.964683],[59.822095,29.96603],[59.822211,29.967316],[59.822341,29.969097],[59.822416,29.97056],[59.822495,29.972022],[59.822526,29.973493],[59.822542,29.97494],[59.82252,29.976234],[59.822495,29.977488],[59.822441,29.97901],[59.822368,29.980293],[59.82229,29.98155],[59.822191,29.982689],[59.822057,29.98408],[59.821886,29.98552],[59.821737,29.986665],[59.821446,29.988619],[59.821325,29.98933],[59.821125,29.990442],[59.820589,29.993006],[59.820158,29.994847],[59.82002,29.995385],[59.819918,29.995775],[59.819763,29.996348],[59.819027,29.998893],[59.818874,29.999437],[59.8184,30.001298],[59.81809,30.002616],[59.817873,30.003624],[59.81765,30.004728],[59.817524,30.00531],[59.817198,30.007254],[59.817112,30.00782],[59.817029,30.008439],[59.816947,30.009038],[59.816798,30.010174],[59.816563,30.012207],[59.816373,30.014213],[59.816335,30.014721],[59.816297,30.015314],[59.816203,30.016558],[59.816119,30.018088],[59.81609,30.018887],[59.816066,30.019847],[59.816046,30.021164],[59.816044,30.021988],[59.816055,30.023322],[59.816086,30.026449],[59.816126,30.030083],[59.816153,30.033265],[59.816196,30.03551],[59.816228,30.037548],[59.816269,30.040667],[59.816311,30.04485],[59.816344,30.047417],[59.816386,30.052295],[59.816388,30.052682],[59.816394,30.053233],[59.816404,30.054511],[59.816433,30.056949],[59.816444,30.05837],[59.816448,30.06009],[59.816455,30.062556],[59.81637,30.065961],[59.816327,30.06724],[59.816289,30.068218],[59.816181,30.07062],[59.816081,30.072738],[59.81601,30.07428],[59.815973,30.074982],[59.815963,30.075179],[59.815913,30.076178],[59.815755,30.079327],[59.815689,30.080635],[59.815411,30.0859],[59.815252,30.088799],[59.815069,30.092434],[59.815006,30.093725],[59.814772,30.098133],[59.814642,30.100681],[59.814634,30.100843],[59.814585,30.101749],[59.814529,30.102931],[59.814474,30.10386],[59.814424,30.104757],[59.814368,30.105471],[59.814234,30.106908],[59.814054,30.108469],[59.813848,30.109945],[59.813671,30.11108],[59.813548,30.111818],[59.81336,30.112836],[59.813291,30.113193],[59.813201,30.113624],[59.812815,30.115287],[59.812667,30.115878],[59.812111,30.117965],[59.811603,30.11956],[59.811278,30.120521],[59.810211,30.123512],[59.809234,30.126257],[59.805611,30.136421],[59.80259,30.144977],[59.80234,30.145671],[59.802071,30.146465],[59.801577,30.147802],[59.801366,30.148366],[59.801048,30.149373],[59.800788,30.15018],[59.800492,30.151177],[59.80034,30.151766],[59.800209,30.152291],[59.800026,30.153181],[59.799907,30.153854],[59.799866,30.154084],[59.799712,30.155085],[59.799643,30.155651],[59.799573,30.156305],[59.799543,30.156636],[59.799511,30.157018],[59.799486,30.15734],[59.799443,30.158001],[59.799427,30.158615],[59.799419,30.159204],[59.799432,30.160471],[59.79948,30.161659],[59.799535,30.162464],[59.799613,30.163265],[59.799693,30.163972],[59.799783,30.164622],[59.799896,30.165334],[59.800013,30.16597],[59.800181,30.166804],[59.800377,30.167649],[59.80055,30.168292],[59.800844,30.169303],[59.80119,30.170336],[59.801275,30.170552],[59.801473,30.171058],[59.801835,30.171868],[59.802309,30.172773],[59.802641,30.173356],[59.80288,30.173745],[59.803131,30.174113],[59.803407,30.174499],[59.803731,30.174907],[59.804066,30.175298],[59.80438,30.175636],[59.80552,30.176755],[59.805862,30.177103],[59.80615,30.177409],[59.806455,30.177763],[59.80684,30.17823],[59.807207,30.178758],[59.807492,30.179185],[59.807789,30.1797],[59.80812,30.180314],[59.808424,30.180939],[59.808693,30.181548],[59.808994,30.182304],[59.809267,30.183074],[59.809441,30.18361],[59.809705,30.184506],[59.809878,30.185193],[59.810071,30.186065],[59.810324,30.187382],[59.810523,30.188593],[59.810722,30.189966],[59.810875,30.190981],[59.810889,30.19108],[59.810933,30.191372],[59.811061,30.192165],[59.811444,30.194594],[59.811661,30.195873],[59.81186,30.196946],[59.812086,30.198],[59.812262,30.198768],[59.812455,30.199561],[59.812815,30.20098],[59.813078,30.20189],[59.813289,30.20259],[59.813582,30.203528],[59.813836,30.204255],[59.814076,30.204902],[59.814489,30.205983],[59.815087,30.207495],[59.815378,30.208102],[59.81563,30.208643],[59.816538,30.210398],[59.816924,30.211087],[59.817031,30.211258],[59.817101,30.211377],[59.817413,30.211901],[59.818653,30.213954],[59.819118,30.214762],[59.81924,30.214973],[59.819648,30.215722],[59.820081,30.216553],[59.8206,30.217583],[59.821187,30.218814],[59.821765,30.220104],[59.822091,30.220894],[59.822454,30.221824],[59.822965,30.223165],[59.823439,30.224498],[59.823793,30.225547],[59.823972,30.226102],[59.824534,30.227888],[59.824802,30.228824],[59.825116,30.229966],[59.825391,30.231068],[59.825935,30.233399],[59.826481,30.235767],[59.827622,30.2406],[59.827907,30.241806],[59.83068,30.253603],[59.831444,30.256913],[59.831659,30.257818],[59.832193,30.260144],[59.832744,30.262509],[59.833066,30.263902],[59.833374,30.265247],[59.833782,30.266963],[59.834033,30.26813],[59.834168,30.268804],[59.83419,30.268934],[59.834277,30.269547],[59.834312,30.269762],[59.834357,30.270118],[59.834426,30.270802],[59.834502,30.271771],[59.834546,30.27266],[59.834565,30.273285],[59.834566,30.273862],[59.834553,30.274516],[59.834508,30.275353],[59.834457,30.27601],[59.834371,30.276724],[59.834263,30.277417],[59.834134,30.278136],[59.834062,30.278539],[59.833964,30.279093],[59.833902,30.279358],[59.833713,30.280093],[59.833539,30.280731],[59.833409,30.281203],[59.833165,30.281853],[59.832972,30.282357],[59.832771,30.282834],[59.832325,30.283746],[59.832142,30.284096],[59.831958,30.284442],[59.831826,30.28465],[59.831416,30.285197],[59.830975,30.285758],[59.830254,30.286515],[59.829549,30.287254],[59.829254,30.287579],[59.82871,30.28815],[59.828039,30.288971],[59.827488,30.289695],[59.826683,30.290875],[59.826632,30.29095],[59.82614,30.291702],[59.825762,30.292361],[59.82537,30.293048],[59.824938,30.29389],[59.824031,30.295709],[59.822418,30.298984],[59.821442,30.300951],[59.821189,30.301459],[59.821018,30.301809],[59.818361,30.307229],[59.817304,30.309369],[59.815632,30.312751],[59.814651,30.314726],[59.813269,30.317528],[59.813168,30.31774],[59.812817,30.318474],[59.812446,30.319291],[59.812348,30.319512],[59.812214,30.319813],[59.811781,30.320943],[59.811577,30.321556],[59.811503,30.321777],[59.811327,30.322347],[59.811232,30.322629],[59.811037,30.323318],[59.810887,30.323928],[59.810817,30.324228],[59.810717,30.324724],[59.810575,30.325505],[59.810485,30.326019],[59.81037,30.326776],[59.810265,30.327582],[59.810189,30.328173],[59.810143,30.328711],[59.810071,30.329607],[59.81006,30.329748],[59.810042,30.329974],[59.809981,30.331354],[59.809967,30.33212],[59.809969,30.332942],[59.809984,30.333543],[59.81004,30.334804],[59.810051,30.334948],[59.810121,30.335869],[59.810213,30.336714],[59.81034,30.337719],[59.810466,30.338533],[59.81066,30.339576],[59.810866,30.340518],[59.811025,30.341167],[59.811268,30.342052],[59.811447,30.342637],[59.81163,30.343211],[59.811782,30.343651],[59.811893,30.34396],[59.813146,30.347414],[59.813369,30.348035],[59.813538,30.348578],[59.81381,30.349549],[59.814133,30.35089],[59.81429,30.351635],[59.814424,30.352367],[59.814735,30.354393],[59.814825,30.35513],[59.81492,30.355951],[59.814985,30.356826],[59.815078,30.358027],[59.815105,30.358993],[59.815113,30.359567],[59.815115,30.360063],[59.815109,30.360519],[59.815096,30.36097],[59.815043,30.362802],[59.815013,30.363365],[59.814946,30.364797],[59.814922,30.365489],[59.814905,30.366524],[59.814908,30.367528],[59.814952,30.369378],[59.815009,30.370702],[59.815103,30.372068],[59.815191,30.373032],[59.815209,30.373204],[59.815243,30.373516],[59.815267,30.373762],[59.815395,30.374988],[59.815651,30.377343],[59.815747,30.378285],[59.816016,30.380928],[59.81604,30.381157],[59.816143,30.382322],[59.816175,30.382629],[59.816185,30.382722],[59.816294,30.383789],[59.81653,30.386095],[59.81664,30.387164],[59.816711,30.387901],[59.817188,30.392636],[59.817425,30.394934],[59.817776,30.398423],[59.818069,30.400999],[59.818186,30.401803],[59.818372,30.403068],[59.8186,30.404463],[59.818701,30.405091],[59.818863,30.406006],[59.819193,30.40764],[59.819594,30.40952],[59.820066,30.411593],[59.820404,30.41313],[59.821058,30.415992],[59.821701,30.418822],[59.822337,30.421581],[59.822952,30.424254],[59.823163,30.425259],[59.823538,30.426981],[59.823853,30.428393],[59.824512,30.431183],[59.82468,30.431804],[59.825027,30.43305],[59.825176,30.433513],[59.825382,30.434079],[59.825582,30.43461],[59.825793,30.435141],[59.825962,30.435533],[59.826075,30.435787],[59.826447,30.436604],[59.826573,30.43683],[59.826737,30.437148],[59.826962,30.437538],[59.827402,30.438231],[59.82782,30.438802],[59.828113,30.439238],[59.83006,30.441918],[59.83036,30.442333],[59.830591,30.442652],[59.830744,30.442862],[59.830839,30.442995],[59.833019,30.445936],[59.833957,30.447207],[59.834251,30.447649],[59.835134,30.448814],[59.836361,30.450397],[59.837266,30.45151],[59.837813,30.452157],[59.838113,30.452483],[59.838464,30.452872],[59.839112,30.453556],[59.839749,30.45416],[59.840243,30.454618],[59.840674,30.454986],[59.841129,30.455345],[59.841542,30.455673],[59.842125,30.456104],[59.84282,30.456571],[59.843634,30.457121],[59.844148,30.457451],[59.844432,30.457633],[59.845107,30.458015],[59.845286,30.458134],[59.845649,30.458429],[59.845886,30.458644],[59.846327,30.459081],[59.846472,30.459245],[59.846799,30.45962],[59.847134,30.460065],[59.847582,30.460736],[59.847932,30.461283],[59.848267,30.461959],[59.848556,30.462587],[59.848652,30.462834],[59.848682,30.46291],[59.848807,30.46323],[59.849136,30.464201],[59.84977,30.466363],[59.850892,30.470281],[59.852444,30.47581],[59.852674,30.476657],[59.852858,30.477489],[59.852979,30.478117],[59.853118,30.478926],[59.853174,30.479334],[59.853215,30.479628],[59.853241,30.479859],[59.853325,30.480821],[59.853342,30.48117],[59.853346,30.481244],[59.853368,30.481694],[59.853417,30.482714],[59.853473,30.484217],[59.853508,30.485135],[59.853537,30.48619],[59.853556,30.486887],[59.853578,30.487691],[59.853644,30.489735],[59.853948,30.499096],[59.853989,30.500051],[59.854034,30.500936],[59.854086,30.501564],[59.854134,30.502175],[59.854188,30.502757],[59.854256,30.503275],[59.854422,30.50427],[59.854503,30.504664],[59.854539,30.504835],[59.85471,30.505583],[59.85479,30.50592],[59.854922,30.506413],[59.855206,30.507431],[59.855308,30.507731],[59.855622,30.508462],[59.855736,30.508731],[59.856071,30.509474],[59.85649,30.510288],[59.856547,30.510376],[59.859268,30.515964],[59.860415,30.518122],[59.860754,30.518816],[59.861153,30.519599],[59.861298,30.519883],[59.861545,30.520406],[59.862012,30.521374],[59.862046,30.521444],[59.86225,30.521845],[59.862378,30.522112],[59.863205,30.52374],[59.863669,30.524695],[59.864486,30.526288],[59.865128,30.527404],[59.86549,30.527925],[59.865857,30.528429],[59.86621,30.528885],[59.866715,30.529469],[59.867203,30.529952],[59.867603,30.530322],[59.867919,30.530639],[59.868597,30.531127],[59.869285,30.531529],[59.869712,30.531728],[59.869859,30.531791],[59.870782,30.532026],[59.871309,30.532095],[59.871667,30.532138],[59.872233,30.532117],[59.872593,30.532079],[59.873327,30.531945],[59.873793,30.531806],[59.874214,30.531604],[59.874636,30.531387],[59.87515,30.531122],[59.875937,30.530726],[59.877194,30.530054],[59.878327,30.529469],[59.881628,30.52771],[59.883246,30.526868],[59.884615,30.526109],[59.884901,30.525946],[59.885799,30.525505],[59.886173,30.525338],[59.886546,30.525197],[59.88704,30.52502],[59.887828,30.524748],[59.888745,30.524473],[59.889652,30.524301],[59.890161,30.524215],[59.890913,30.524108],[59.891674,30.524076],[59.891868,30.524065],[59.891985,30.524061],[59.89214,30.524073],[59.892409,30.524073],[59.892651,30.524074],[59.893601,30.524151],[59.893729,30.524166],[59.893943,30.524202],[59.894081,30.524212],[59.89435,30.524263],[59.895234,30.524435],[59.895649,30.524505],[59.896024,30.524596],[59.896335,30.524706],[59.896727,30.524825],[59.897149,30.524966],[59.897479,30.5251],[59.898022,30.525378],[59.89868,30.525615],[59.899529,30.525918],[59.900365,30.526149],[59.900803,30.526253],[59.901221,30.526337],[59.901954,30.526455],[59.902281,30.526503],[59.903078,30.526565],[59.903649,30.526581],[59.90422,30.526589],[59.904662,30.52657],[59.906339,30.526516],[59.908375,30.526355],[59.91036,30.526205],[59.911341,30.526119],[59.912926,30.526023],[59.913201,30.526004],[59.913632,30.525975],[59.914265,30.525921],[59.914723,30.525883],[59.915269,30.525851],[59.915703,30.525835],[59.915996,30.525832],[59.916301,30.52583],[59.916743,30.525857],[59.917158,30.525899],[59.917704,30.525991],[59.918122,30.526071],[59.918696,30.526219],[59.91914,30.526355],[59.919557,30.526522],[59.919961,30.526683],[59.920287,30.526817],[59.920794,30.527074],[59.921216,30.527316],[59.921782,30.52767],[59.92231,30.528018],[59.92287,30.528448],[59.923387,30.528882],[59.923912,30.52937],[59.924369,30.52981],[59.924787,30.530218],[59.925108,30.530566],[59.925402,30.530897],[59.92594,30.531554],[59.926382,30.532117],[59.926917,30.532787],[59.927389,30.533324],[59.927852,30.533823],[59.928328,30.534316],[59.928891,30.534853],[59.929578,30.535475],[59.93007,30.535867],[59.930593,30.536325],[59.931303,30.536754],[59.932025,30.537208],[59.932547,30.537513],[59.932905,30.53768],[59.933915,30.538136],[59.934486,30.53834],[59.934919,30.538468],[59.935382,30.538592],[59.935802,30.538677],[59.936454,30.53879],[59.937012,30.538868],[59.940303,30.539364],[59.940854,30.539447],[59.942019,30.539602],[59.942472,30.539691],[59.942891,30.539791],[59.94357,30.539994],[59.944024,30.54015],[59.944686,30.540434],[59.944941,30.540561],[59.945826,30.540996],[59.94599,30.541077],[59.946104,30.541147],[59.946188,30.541199],[59.9463,30.541273],[59.946438,30.54135],[59.946885,30.541625],[59.947044,30.541723],[59.947887,30.542301],[59.949187,30.543342],[59.949383,30.543517],[59.949761,30.543873],[59.950754,30.5449],[59.951418,30.545622],[59.951767,30.545989],[59.952438,30.546695],[59.953591,30.547896],[59.95411,30.548433],[59.956638,30.551072],[59.957219,30.55163],[59.95751,30.551898],[59.957896,30.552223],[59.958135,30.552397],[59.958447,30.55262],[59.958814,30.552864],[59.959363,30.553194],[59.959869,30.553454],[59.960505,30.553714],[59.960964,30.553864],[59.961395,30.553966],[59.961769,30.554033],[59.962248,30.554103],[59.962684,30.55413],[59.963163,30.554138],[59.963512,30.554114],[59.963971,30.554055],[59.964363,30.553966],[59.964486,30.553934],[59.964612,30.553903],[59.965005,30.553778],[59.965383,30.553652],[59.965688,30.553534],[59.96605,30.553376],[59.966409,30.553204],[59.966752,30.552995],[59.967294,30.552649],[59.9677,30.552394],[59.968168,30.552013],[59.968601,30.551627],[59.968999,30.551252],[59.969397,30.550823],[59.969752,30.550426],[59.970131,30.549964],[59.970615,30.549294],[59.97097,30.548779],[59.971176,30.548473],[59.971441,30.548054],[59.971734,30.547561],[59.972129,30.546885],[59.972457,30.546257],[59.972785,30.545565],[59.973062,30.544965],[59.973406,30.544142],[59.973775,30.543187],[59.974172,30.542069],[59.974538,30.540927],[59.975297,30.538451],[59.975584,30.537537],[59.975821,30.536786],[59.976055,30.536017],[59.976098,30.535878],[59.976136,30.535758],[59.97649,30.534625],[59.976577,30.53434],[59.976684,30.534002],[59.9772,30.532356],[59.977998,30.529785],[59.978555,30.527983],[59.978973,30.526647],[59.979217,30.525869],[59.979502,30.52493],[59.979769,30.524064],[59.979989,30.523262],[59.980156,30.52262],[59.980298,30.52206],[59.980548,30.521019],[59.980782,30.519947],[59.980962,30.519045],[59.981164,30.517897],[59.98132,30.516926],[59.981513,30.515585],[59.98166,30.514478],[59.981801,30.513145],[59.981842,30.512738],[59.981912,30.51201],[59.982148,30.509582],[59.982172,30.509337],[59.982433,30.506598],[59.982447,30.506439],[59.982484,30.506016],[59.982621,30.504725],[59.982642,30.504524],[59.982692,30.504091],[59.982744,30.503639],[59.982878,30.502588],[59.982989,30.501904],[59.983126,30.500967],[59.98325,30.500286],[59.983387,30.499605],[59.983543,30.49887],[59.983746,30.498079],[59.983893,30.497567],[59.983946,30.497384],[59.984142,30.496729],[59.984258,30.496359],[59.984462,30.495718],[59.984656,30.495152],[59.984946,30.494358],[59.98522,30.493645],[59.985604,30.492652],[59.985829,30.492112],[59.986341,30.490936],[59.986729,30.490086],[59.987411,30.48842],[59.987854,30.487529],[59.987992,30.487248],[59.988228,30.486805],[59.988523,30.48628],[59.988854,30.485743],[59.98934,30.484945],[59.989776,30.484268],[59.990033,30.483877],[59.990349,30.483449],[59.990425,30.483335],[59.991205,30.482245],[59.991705,30.481655],[59.992589,30.480717],[59.992976,30.480325],[59.99375,30.479628],[59.99398,30.479426],[59.994135,30.479311],[59.994417,30.479091],[59.994952,30.4787],[59.995363,30.478421],[59.99559,30.478273],[59.996091,30.477986],[59.997163,30.477439],[59.997999,30.477106],[59.998697,30.476881],[59.999108,30.47677],[59.999519,30.476672],[59.999815,30.476602],[60.000116,30.476551],[60.000543,30.476495],[60.000922,30.476463],[60.001336,30.476452],[60.001959,30.476457],[60.002828,30.476514],[60.003909,30.476575],[60.004399,30.476607],[60.004739,30.476618],[60.004973,30.476629],[60.005244,30.476624],[60.00568,30.476591],[60.005977,30.47657],[60.006266,30.476522],[60.006551,30.476468],[60.006825,30.476409],[60.007416,30.476221],[60.007854,30.47606],[60.008122,30.475937],[60.00823,30.475883],[60.008429,30.475787],[60.008695,30.475637],[60.009119,30.475384],[60.009385,30.475207],[60.00993,30.474805],[60.010325,30.474478],[60.010851,30.474022],[60.011351,30.473544],[60.011523,30.473359],[60.011996,30.472831],[60.012359,30.472386],[60.012592,30.472085],[60.012867,30.471708],[60.01296,30.471578],[60.013312,30.471077],[60.013529,30.470739],[60.01385,30.4702],[60.014179,30.469628],[60.014601,30.468834],[60.015197,30.467604],[60.015372,30.467156],[60.015677,30.466408],[60.015963,30.465657],[60.016165,30.465123],[60.016546,30.463959],[60.017242,30.461805],[60.017393,30.461301],[60.01752,30.460979],[60.017586,30.460775],[60.017699,30.460484],[60.017981,30.459799],[60.018117,30.459453],[60.01832,30.459015],[60.01849,30.458651],[60.018759,30.458104],[60.018925,30.457798],[60.019287,30.45716],[60.019466,30.456862],[60.01973,30.456444],[60.020021,30.456026],[60.02057,30.455308],[60.020803,30.455011],[60.021158,30.454604],[60.021532,30.454223],[60.023065,30.452676],[60.024652,30.451065],[60.024868,30.450867],[60.025186,30.450557],[60.026369,30.449374],[60.029067,30.446701],[60.032028,30.443758],[60.033147,30.442606],[60.033504,30.442263],[60.033884,30.441922],[60.034279,30.4416],[60.034705,30.441303],[60.035242,30.440935],[60.035672,30.440716],[60.035888,30.440608],[60.036253,30.440462],[60.036558,30.440348],[60.036907,30.440246],[60.037251,30.440154],[60.03766,30.440038],[60.03777,30.440006],[60.037871,30.43998],[60.038444,30.439792],[60.038869,30.439613],[60.039183,30.439468],[60.03949,30.439294],[60.039741,30.439141],[60.04001,30.438964],[60.040161,30.438862],[60.040371,30.438696],[60.04042,30.438657],[60.040526,30.438579],[60.040585,30.438531],[60.040687,30.438446],[60.040946,30.438205],[60.041084,30.438076],[60.041189,30.437971],[60.041471,30.43769],[60.041604,30.437535],[60.041923,30.437196],[60.042203,30.436864],[60.042416,30.436593],[60.042554,30.436409],[60.042785,30.436083],[60.04313,30.435573],[60.043388,30.435155],[60.043565,30.434855],[60.043801,30.434426],[60.044335,30.433422],[60.044825,30.432406],[60.045011,30.431998],[60.04538,30.431142],[60.045475,30.430914],[60.045532,30.430776],[60.045553,30.430726],[60.045666,30.430442],[60.045898,30.429927],[60.046031,30.429587],[60.046272,30.428948],[60.046743,30.427584],[60.046995,30.42678],[60.047231,30.426033],[60.047521,30.425027],[60.047854,30.423792],[60.04816,30.422487],[60.048403,30.42153],[60.048787,30.419814],[60.049224,30.418078],[60.050112,30.414332],[60.050624,30.412212],[60.050876,30.411136],[60.051625,30.408007],[60.05227,30.405332],[60.052483,30.404479],[60.052658,30.403819],[60.052916,30.402901],[60.053149,30.402099],[60.05344,30.401206],[60.053672,30.400546],[60.053862,30.400031],[60.054454,30.398414],[60.054753,30.397699],[60.054963,30.397218],[60.055373,30.396292],[60.056147,30.394769],[60.05666,30.393869],[60.057109,30.393123],[60.057466,30.392564],[60.057909,30.391846],[60.058273,30.391335],[60.058446,30.391113],[60.058731,30.390743],[60.058875,30.390559],[60.058982,30.390419],[60.059103,30.390269],[60.059479,30.389812],[60.060061,30.389171],[60.06055,30.388688],[60.061107,30.388179],[60.061145,30.388147],[60.061604,30.387761],[60.062051,30.387423],[60.062358,30.387193],[60.062624,30.38701],[60.063072,30.386722],[60.063589,30.38642],[60.064222,30.386087],[60.065785,30.385344],[60.066082,30.38521],[60.066851,30.384862],[60.068052,30.384298],[60.069244,30.383738],[60.070706,30.383083],[60.072006,30.382525],[60.073265,30.382051],[60.074114,30.381765],[60.074914,30.381501],[60.078172,30.380538],[60.080057,30.379973],[60.082349,30.379304],[60.082901,30.379116],[60.083275,30.378974],[60.083643,30.37881],[60.084158,30.378564],[60.08451,30.37836],[60.084928,30.378089],[60.085289,30.377839],[60.085593,30.377598],[60.085944,30.377308],[60.086332,30.376938],[60.086729,30.376539],[60.087094,30.376147],[60.087453,30.375739],[60.087796,30.375326],[60.087978,30.375088],[60.088179,30.374818],[60.088719,30.373996],[60.089005,30.373553],[60.089237,30.37318],[60.089426,30.372891],[60.089581,30.372605],[60.089758,30.372309],[60.090005,30.371837],[60.090189,30.371481],[60.09044,30.37097],[60.090648,30.370528],[60.09078,30.370254],[60.090901,30.369981],[60.091204,30.369309],[60.091325,30.369023],[60.091551,30.368454],[60.091635,30.368235],[60.091765,30.367838],[60.091859,30.367572],[60.09218,30.366555],[60.092459,30.36559],[60.092739,30.364557],[60.092971,30.363586],[60.093137,30.362827],[60.093284,30.362073],[60.093479,30.360953],[60.093638,30.35996],[60.093797,30.358788],[60.093915,30.357718],[60.094129,30.355629],[60.094317,30.35359],[60.094389,30.352688],[60.09451,30.351033],[60.094574,30.349888],[60.094636,30.34887],[60.094687,30.347799],[60.094778,30.344945],[60.094852,30.342092],[60.0949,30.34039],[60.095055,30.334766],[60.095103,30.333072],[60.095295,30.325718],[60.095347,30.324339],[60.095391,30.323246],[60.09545,30.322164],[60.095535,30.320627],[60.095648,30.318911],[60.095719,30.317966],[60.095805,30.316969],[60.09606,30.314319],[60.09621,30.312787],[60.096337,30.311683],[60.096488,30.310386],[60.096598,30.309485],[60.096721,30.308563],[60.096837,30.307724],[60.096948,30.306929],[60.097137,30.305615],[60.097761,30.301495],[60.098072,30.299454],[60.098384,30.297338],[60.098579,30.29596],[60.098724,30.29476],[60.098807,30.294014],[60.098882,30.293384],[60.098944,30.292791],[60.099027,30.291895],[60.099113,30.290881],[60.099193,30.289849],[60.099271,30.288634],[60.099336,30.287314],[60.099391,30.285992],[60.099419,30.284809],[60.099433,30.283859],[60.099437,30.282787],[60.099434,30.281854],[60.099429,30.280614],[60.099409,30.279664],[60.099381,30.278742],[60.099343,30.277873],[60.099235,30.275971],[60.099137,30.274504],[60.099039,30.273243],[60.098947,30.272149],[60.098825,30.271017],[60.098722,30.270118],[60.098527,30.268618],[60.098411,30.267753],[60.098394,30.26761],[60.098246,30.26664],[60.097838,30.264167],[60.097527,30.26253],[60.097235,30.261137],[60.097147,30.260739],[60.097045,30.260275],[60.096904,30.259655],[60.096745,30.259046],[60.096372,30.257638],[60.09611,30.256592],[60.0959,30.255811],[60.095691,30.255036],[60.095682,30.255002],[60.095638,30.254852],[60.095575,30.25465],[60.095238,30.253583],[60.095099,30.253133],[60.095004,30.252828],[60.094634,30.251674],[60.093605,30.24891],[60.093434,30.248474],[60.092997,30.247395],[60.092281,30.245746],[60.092126,30.245372],[60.092028,30.24515],[60.091901,30.244837],[60.091715,30.244392],[60.091275,30.243349],[60.090823,30.242282],[60.090186,30.24078],[60.089692,30.239622],[60.08943,30.239014],[60.089176,30.238391],[60.088954,30.237792],[60.088705,30.237087],[60.088359,30.236103],[60.088082,30.235251],[60.087858,30.23456],[60.087593,30.233694],[60.087252,30.232573],[60.087006,30.23176],[60.086802,30.231027],[60.086627,30.230344],[60.086462,30.229681],[60.086226,30.228668],[60.086054,30.227923],[60.085831,30.226905],[60.085553,30.225571],[60.085332,30.22447],[60.085236,30.223955],[60.085094,30.223091],[60.084925,30.222053],[60.084762,30.220954],[60.084669,30.220331],[60.084558,30.219504],[60.084396,30.218165],[60.084349,30.217759],[60.084209,30.216439],[60.084118,30.215541],[60.084021,30.214452],[60.083962,30.213706],[60.083874,30.212215],[60.083798,30.210667],[60.083763,30.2101],[60.083716,30.209519],[60.083665,30.20879],[60.083569,30.207518],[60.083501,30.206785],[60.083438,30.206156],[60.083227,30.204286],[60.082947,30.202234],[60.082723,30.200864],[60.082642,30.200447],[60.082476,30.19959],[60.082153,30.19798],[60.081966,30.197097],[60.081787,30.196344],[60.081509,30.195257],[60.081263,30.194314],[60.081043,30.193536],[60.080797,30.19275],[60.080512,30.191827],[60.080333,30.19127],[60.080065,30.190556],[60.079908,30.190089],[60.079714,30.189557],[60.079289,30.188456],[60.078892,30.18739],[60.078235,30.185972],[60.077905,30.185271],[60.077719,30.184901],[60.077523,30.184533],[60.077008,30.183574],[60.076598,30.182877],[60.07635,30.182448],[60.076121,30.182056],[60.075919,30.181728],[60.07527,30.180756],[60.075074,30.180478],[60.074988,30.18035],[60.074542,30.179744],[60.073914,30.178934],[60.073077,30.177871],[60.072271,30.176847],[60.070652,30.174702],[60.069344,30.172942],[60.068848,30.172223],[60.068236,30.171317],[60.067566,30.170254],[60.066998,30.169321],[60.066594,30.168591],[60.066247,30.167964],[60.065778,30.167052],[60.065145,30.165748],[60.06445,30.164241],[60.063957,30.16312],[60.063663,30.162406],[60.063336,30.161552],[60.062952,30.160531],[60.062398,30.15893],[60.061565,30.156382],[60.061146,30.15495],[60.060605,30.153059],[60.060246,30.151706],[60.059846,30.149894],[60.059651,30.148829],[60.059435,30.147724],[60.059178,30.146399],[60.059025,30.145501],[60.058877,30.144609],[60.058766,30.143825],[60.058719,30.143494],[60.058516,30.141828],[60.058272,30.139908],[60.058076,30.138434],[60.057684,30.135552],[60.057207,30.132049],[60.056996,30.130467],[60.056883,30.129591],[60.056431,30.126269],[60.055628,30.120129],[60.055019,30.115693],[60.054762,30.113641],[60.054702,30.113207],[60.054091,30.10859],[60.053533,30.104361],[60.052707,30.0982],[60.052399,30.095791],[60.051954,30.092385],[60.051169,30.086492],[60.050331,30.08031],[60.050088,30.078381],[60.049942,30.077279],[60.049751,30.075906],[60.049429,30.073559],[60.049126,30.071182],[60.049041,30.070552],[60.048913,30.069573],[60.048635,30.067446],[60.047908,30.061985],[60.047769,30.060952],[60.047268,30.057211],[60.046762,30.053461],[60.046407,30.050717],[60.045573,30.044505],[60.045449,30.043624],[60.045028,30.040597],[60.044617,30.037737],[60.04418,30.03479],[60.043762,30.032154],[60.043362,30.029419],[60.042935,30.026614],[60.04289,30.026332],[60.042158,30.021707],[60.041631,30.018421],[60.041304,30.016379],[60.040338,30.010586],[60.040159,30.009381],[60.039958,30.008027],[60.03969,30.005819],[60.039649,30.005424],[60.039472,30.003711],[60.039196,30.000182],[60.03915,29.999604],[60.039083,29.998594],[60.039028,29.997584],[60.039003,29.996904],[60.038867,29.993457],[60.03884,29.992033],[60.038833,29.991646],[60.038831,29.990531],[60.038853,29.988492],[60.03895,29.985435],[60.038984,29.984676],[60.039012,29.983917],[60.039056,29.982381],[60.039056,29.981942],[60.039068,29.980611],[60.039068,29.980532],[60.039066,29.980322],[60.039066,29.979799],[60.039063,29.979062],[60.039056,29.978612],[60.039051,29.978233],[60.039041,29.977679],[60.03903,29.977125],[60.039024,29.976825],[60.039013,29.976488],[60.03901,29.976382],[60.039002,29.976083],[60.038993,29.975897],[60.038954,29.975009],[60.038934,29.974561],[60.038848,29.972897],[60.038752,29.971766],[60.038678,29.970948],[60.03855,29.969629],[60.038421,29.968297],[60.037983,29.963369],[60.037323,29.956182],[60.036721,29.949687],[60.035709,29.938759],[60.03464,29.927171],[60.034066,29.920983],[60.03348,29.914725],[60.03295,29.908904],[60.032672,29.905931],[60.03244,29.90352],[60.032058,29.899297],[60.031687,29.895245],[60.030808,29.88581],[60.02995,29.87648],[60.029564,29.872379],[60.029167,29.868192],[60.028953,29.865704],[60.028679,29.862863],[60.028339,29.859169],[60.027681,29.851978],[60.02751,29.850377],[60.027438,29.849568],[60.027067,29.845379],[60.026839,29.843175],[60.02677,29.842475],[60.026006,29.834808],[60.02582,29.832707],[60.025736,29.831846],[60.025425,29.828365],[60.02512,29.824949],[60.025057,29.824301],[60.024955,29.823058],[60.024519,29.818147],[60.024317,29.815961],[60.024165,29.814579],[60.023828,29.810808],[60.023261,29.80472],[60.022603,29.797786],[60.02223,29.793836],[60.022039,29.791503],[60.021956,29.790555],[60.021934,29.790315],[60.02176,29.787153],[60.021717,29.786041],[60.021639,29.782955],[60.021606,29.779965],[60.021569,29.778048],[60.021395,29.770015],[60.02122,29.761852],[60.021025,29.751797],[60.020829,29.743286],[60.020797,29.741338],[60.020748,29.739765],[60.020679,29.738656],[60.020583,29.737543],[60.020453,29.736373],[60.020335,29.735483],[60.020198,29.734519],[60.019929,29.73297],[60.01973,29.731947],[60.019583,29.731277],[60.019409,29.730574],[60.018928,29.728872],[60.018667,29.728022],[60.018338,29.727042],[60.017966,29.726035],[60.017438,29.724764],[60.016177,29.722227],[60.015908,29.721777],[60.015581,29.721262],[60.01506,29.720483],[60.014699,29.720011],[60.014262,29.719448],[60.014233,29.719411],[60.014174,29.719323],[60.013567,29.718529],[60.013103,29.717922],[60.010916,29.715147],[60.009286,29.713109],[60.008238,29.711724],[60.005921,29.7088],[60.003807,29.706072],[60.003558,29.705758],[60.002313,29.704181],[60.001664,29.703428],[60.001353,29.703117],[60.001108,29.702873],[60.000938,29.702709],[59.999788,29.701648],[59.999711,29.701587],[59.99859,29.700691],[59.996154,29.699004],[59.996015,29.698905],[59.995646,29.698657],[59.993613,29.697292],[59.993318,29.697094],[59.988676,29.693945],[59.988547,29.693857],[59.98726,29.692982],[59.987193,29.692939],[59.985803,29.692043],[59.984697,29.691245],[59.984083,29.690828],[59.98362,29.690509],[59.982915,29.690068],[59.982546,29.689844],[59.981158,29.689001],[59.981002,29.688907],[59.980336,29.688569],[59.980008,29.688425],[59.979607,29.688262],[59.978959,29.687981],[59.978654,29.687864],[59.977473,29.687392],[59.975868,29.686774],[59.972378,29.685397],[59.967189,29.683352],[59.965394,29.68265],[59.963567,29.681927],[59.961008,29.680881],[59.95819,29.679763],[59.953468,29.677893],[59.951993,29.677306],[59.949378,29.676312],[59.945568,29.674793],[59.943022,29.673768],[59.940541,29.672808],[59.937583,29.671584],[59.936172,29.671013],[59.935745,29.670849],[59.934759,29.670427],[59.933204,29.669839],[59.932477,29.669555],[59.93237,29.669501],[59.931182,29.669026],[59.928374,29.667965],[59.927039,29.667446],[59.926961,29.667417],[59.926511,29.667227],[59.926462,29.667204],[59.926406,29.667183],[59.926372,29.667169],[59.926128,29.66706],[59.92555,29.66684],[59.925066,29.666651],[59.924266,29.666349],[59.923512,29.666033],[59.923034,29.665823],[59.922535,29.665562],[59.92184,29.665194],[59.921767,29.665156],[59.921616,29.665079],[59.920729,29.664581],[59.920577,29.664475],[59.92013,29.664172],[59.919826,29.663946],[59.919501,29.663687],[59.918375,29.662707],[59.917876,29.662263],[59.917387,29.661839],[59.916843,29.661408],[59.916564,29.661231],[59.915933,29.660855],[59.915208,29.66045],[59.914955,29.660314],[59.914664,29.660163],[59.914095,29.659933],[59.913727,29.659786],[59.913268,29.659625],[59.912595,29.659435],[59.911807,29.659268],[59.911239,29.659199],[59.910573,29.659144],[59.909314,29.659156],[59.908456,29.659262],[59.911789,29.659566],[59.912436,29.659706],[59.912831,29.659803],[59.913453,29.659987],[59.914068,29.660213],[59.914595,29.660434],[59.915166,29.660748],[59.915889,29.661134],[59.91652,29.661502],[59.916852,29.661736],[59.917386,29.662131],[59.917949,29.662642],[59.919806,29.664272],[59.920222,29.664561],[59.920581,29.664797],[59.920919,29.665011],[59.921746,29.665453],[59.921816,29.665498],[59.922516,29.665867],[59.923507,29.666332],[59.923781,29.666453],[59.925521,29.667115],[59.926118,29.667351],[59.926356,29.667444],[59.9264,29.667463],[59.926463,29.667486],[59.926512,29.667504],[59.92696,29.667697],[59.927032,29.667728],[59.928358,29.668231],[59.928743,29.668378],[59.931129,29.66932],[59.93205,29.669691],[59.934751,29.670756],[59.936153,29.671305],[59.937554,29.67186],[59.940518,29.673028],[59.942988,29.674023],[59.945545,29.675017],[59.949362,29.676525],[59.951273,29.67727],[59.953436,29.678148],[59.958173,29.68004],[59.960995,29.68117],[59.963507,29.682189],[59.965358,29.682891],[59.967155,29.683593],[59.969655,29.68459],[59.9725,29.685719],[59.975848,29.687058],[59.976084,29.68715],[59.977605,29.687746],[59.978625,29.688137],[59.978951,29.688292],[59.980665,29.689062],[59.982506,29.690093],[59.982821,29.690287],[59.983861,29.691027],[59.984036,29.691148],[59.98466,29.691596],[59.986006,29.692529],[59.987137,29.693277],[59.987223,29.693333],[59.988495,29.694199],[59.98864,29.694297],[59.993268,29.697387],[59.993572,29.697592],[59.995593,29.698953],[59.99596,29.6992],[59.996366,29.699481],[59.998455,29.700964],[59.999594,29.701774],[59.99966,29.701828],[60.000284,29.702333],[60.000899,29.702963],[60.001058,29.703126],[60.001227,29.703308],[60.001603,29.70372],[60.002209,29.704373],[60.002567,29.704796],[60.003745,29.706286],[60.004241,29.706985],[60.005913,29.709075],[60.008183,29.711979],[60.009208,29.713272],[60.009366,29.713493],[60.009721,29.713948],[60.011264,29.71599],[60.014071,29.719501],[60.014129,29.719582],[60.014156,29.719616],[60.014597,29.720171],[60.015068,29.720815],[60.015576,29.721575],[60.016084,29.72247],[60.016528,29.723279],[60.017338,29.724926],[60.017859,29.726195],[60.018266,29.727276],[60.018756,29.728749],[60.019055,29.729803],[60.019312,29.73072],[60.019541,29.731719],[60.019726,29.732589],[60.019945,29.733839],[60.020132,29.735013],[60.020325,29.736486],[60.020473,29.737829],[60.020555,29.738892],[60.020611,29.739802],[60.020672,29.741373],[60.020701,29.743308],[60.020885,29.75183],[60.02109,29.761876],[60.021267,29.770016],[60.021353,29.77394],[60.021444,29.778071],[60.021472,29.779988],[60.02152,29.782952],[60.021556,29.784795],[60.021622,29.787158],[60.021747,29.789382],[60.021834,29.790607],[60.022205,29.794953],[60.022474,29.797858],[60.022839,29.801612],[60.02314,29.804915],[60.023746,29.811351],[60.024041,29.814664],[60.024097,29.815315],[60.024372,29.818205],[60.024609,29.820736],[60.024788,29.822609],[60.024928,29.824322],[60.024988,29.825003],[60.025298,29.82842],[60.025612,29.831884],[60.025694,29.832746],[60.025873,29.834739],[60.026641,29.842526],[60.026709,29.843221],[60.026777,29.843926],[60.027154,29.847749],[60.027317,29.84962],[60.027414,29.850736],[60.027542,29.852049],[60.028209,29.859235],[60.028554,29.862932],[60.028803,29.865657],[60.029048,29.868228],[60.029449,29.872434],[60.029829,29.876574],[60.030406,29.882774],[60.030686,29.885861],[60.031565,29.895294],[60.031934,29.899356],[60.032313,29.903546],[60.032547,29.906045],[60.032822,29.908999],[60.03336,29.914819],[60.033942,29.921047],[60.034511,29.927206],[60.035582,29.938805],[60.036585,29.949729],[60.037191,29.956252],[60.037868,29.963403],[60.038013,29.965041],[60.038294,29.968215],[60.038398,29.96935],[60.038587,29.971561],[60.038716,29.973575],[60.038775,29.974642],[60.038799,29.975089],[60.038837,29.976006],[60.03884,29.976147],[60.038852,29.976449],[60.038856,29.976548],[60.038864,29.976876],[60.03887,29.977212],[60.038878,29.977733],[60.038884,29.978293],[60.038886,29.9786],[60.038886,29.979057],[60.03889,29.9798],[60.038893,29.980373],[60.038892,29.980656],[60.038892,29.980741],[60.038878,29.981933],[60.038864,29.98294],[60.038832,29.983935],[60.038749,29.985913],[60.038669,29.98853],[60.038666,29.989093],[60.038661,29.990866],[60.038664,29.991626],[60.038672,29.992215],[60.038693,29.993519],[60.038723,29.994718],[60.038812,29.996612],[60.038943,29.998699],[60.039056,30.000154],[60.039231,30.002107],[60.039451,30.004685],[60.039538,30.005487],[60.039592,30.005986],[60.039733,30.007123],[60.039908,30.008448],[60.04005,30.009456],[60.04013,30.009977],[60.040336,30.011256],[60.041178,30.016379],[60.041528,30.018506],[60.04267,30.025649],[60.042786,30.026404],[60.043232,30.029326],[60.043813,30.03317],[60.04408,30.034874],[60.044364,30.036717],[60.044611,30.038418],[60.044842,30.040055],[60.045352,30.043679],[60.045744,30.046565],[60.046091,30.049211],[60.046304,30.050769],[60.046662,30.053478],[60.047072,30.056552],[60.04767,30.060998],[60.047949,30.063191],[60.048428,30.066731],[60.048936,30.070623],[60.049428,30.074332],[60.049812,30.077194],[60.049985,30.078439],[60.050249,30.080434],[60.050613,30.083205],[60.051068,30.086606],[60.051247,30.087998],[60.05144,30.089481],[60.05188,30.092763],[60.052293,30.095856],[60.052664,30.098675],[60.053164,30.10243],[60.053722,30.106604],[60.054281,30.110785],[60.054604,30.113266],[60.055003,30.116246],[60.055523,30.120199],[60.056027,30.124035],[60.056289,30.126108],[60.056413,30.126932],[60.056482,30.127442],[60.056779,30.129674],[60.057053,30.131647],[60.057402,30.134227],[60.057745,30.136754],[60.058092,30.139425],[60.058598,30.143567],[60.058651,30.1439],[60.058884,30.145361],[60.059279,30.147684],[60.059358,30.148116],[60.059475,30.148734],[60.059753,30.150127],[60.060187,30.152127],[60.060516,30.153461],[60.060694,30.154169],[60.060848,30.154717],[60.061052,30.155457],[60.061468,30.15683],[60.061769,30.157809],[60.062255,30.159254],[60.062527,30.159968],[60.06283,30.160811],[60.063373,30.162268],[60.063477,30.162549],[60.063824,30.163394],[60.064513,30.164928],[60.064994,30.165947],[60.065544,30.16709],[60.066291,30.168511],[60.066868,30.169532],[60.06718,30.170064],[60.067587,30.170708],[60.06834,30.171875],[60.068678,30.172384],[60.069173,30.173117],[60.069775,30.173937],[60.070564,30.174987],[60.071367,30.176037],[60.072273,30.177217],[60.073422,30.178661],[60.073968,30.179361],[60.074833,30.180539],[60.074913,30.180661],[60.075162,30.181033],[60.075547,30.181576],[60.075817,30.182008],[60.076156,30.18256],[60.076363,30.182933],[60.076722,30.18355],[60.076975,30.184001],[60.077446,30.184857],[60.077778,30.185512],[60.077864,30.185685],[60.078226,30.186471],[60.078641,30.187426],[60.079145,30.188652],[60.079574,30.189765],[60.079731,30.19021],[60.079767,30.190311],[60.079973,30.19091],[60.080363,30.192029],[60.080497,30.192439],[60.080891,30.193697],[60.080962,30.193936],[60.081138,30.194559],[60.081454,30.195789],[60.081706,30.196833],[60.081831,30.197365],[60.08202,30.198262],[60.082172,30.198994],[60.082288,30.199585],[60.082491,30.200574],[60.082565,30.201014],[60.082653,30.201529],[60.082789,30.202412],[60.082903,30.203259],[60.083006,30.204046],[60.083076,30.204588],[60.083134,30.20507],[60.083203,30.205705],[60.083311,30.206698],[60.083401,30.207629],[60.083489,30.20886],[60.083552,30.209751],[60.083609,30.210611],[60.083688,30.212092],[60.083729,30.212824],[60.083785,30.213759],[60.083826,30.214307],[60.083911,30.2153],[60.084001,30.216249],[60.084118,30.217335],[60.084213,30.218238],[60.084252,30.218583],[60.084358,30.21943],[60.084477,30.220289],[60.084589,30.221095],[60.084678,30.221689],[60.08489,30.22303],[60.085052,30.223915],[60.085217,30.224862],[60.08541,30.22583],[60.08567,30.227048],[60.08603,30.228703],[60.08631,30.22988],[60.086458,30.230489],[60.086692,30.231382],[60.087079,30.232726],[60.087369,30.233708],[60.087698,30.234744],[60.087992,30.235639],[60.088204,30.23627],[60.088475,30.237034],[60.088632,30.237484],[60.088804,30.237941],[60.088991,30.238442],[60.089163,30.23888],[60.089264,30.239152],[60.089397,30.239477],[60.0907,30.24254],[60.091569,30.244602],[60.091748,30.245035],[60.091849,30.245281],[60.091975,30.245564],[60.092131,30.245934],[60.093293,30.248677],[60.093641,30.249551],[60.094156,30.250933],[60.094532,30.252078],[60.094836,30.252952],[60.095005,30.253457],[60.095159,30.253929],[60.095337,30.254487],[60.09542,30.254765],[60.09548,30.25497],[60.095523,30.255124],[60.095531,30.255157],[60.095922,30.256571],[60.096181,30.257551],[60.096424,30.258489],[60.096641,30.259374],[60.096869,30.260342],[60.097086,30.26134],[60.097354,30.262603],[60.09754,30.26359],[60.097676,30.26432],[60.097833,30.265226],[60.097977,30.266058],[60.098034,30.266438],[60.098133,30.267104],[60.09824,30.267886],[60.09826,30.26804],[60.098362,30.268775],[60.09847,30.269641],[60.098619,30.270862],[60.098723,30.271816],[60.098833,30.272943],[60.098903,30.273766],[60.098969,30.274654],[60.099054,30.275901],[60.099145,30.277799],[60.099178,30.27846],[60.099209,30.279734],[60.099228,30.280683],[60.099246,30.281828],[60.099258,30.282891],[60.099258,30.283469],[60.099248,30.284393],[60.099219,30.285478],[60.099158,30.287354],[60.099111,30.288307],[60.099037,30.289444],[60.098942,30.29079],[60.098861,30.291812],[60.098697,30.29344],[60.098567,30.294655],[60.098478,30.295358],[60.098364,30.296181],[60.098254,30.296975],[60.097944,30.299085],[60.097904,30.299349],[60.097709,30.300626],[60.097352,30.302961],[60.096978,30.305414],[60.096797,30.306666],[60.096657,30.307648],[60.096341,30.310105],[60.096237,30.310977],[60.096098,30.312159],[60.095992,30.313136],[60.095845,30.314707],[60.095742,30.315751],[60.095657,30.316617],[60.09563,30.316939],[60.095511,30.318377],[60.095438,30.319345],[60.095356,30.320614],[60.095303,30.321438],[60.095269,30.322155],[60.095211,30.323363],[60.095169,30.324369],[60.095107,30.325938],[60.094926,30.332859],[60.094868,30.334778],[60.094803,30.337193],[60.094672,30.342077],[60.094626,30.343692],[60.094573,30.345708],[60.094511,30.34767],[60.09446,30.348775],[60.094413,30.349709],[60.094364,30.35047],[60.094293,30.351508],[60.094202,30.352674],[60.094125,30.353609],[60.09396,30.355457],[60.093773,30.357358],[60.093672,30.358302],[60.093575,30.359083],[60.093461,30.359882],[60.093328,30.360716],[60.093056,30.36224],[60.092932,30.362842],[60.092828,30.363326],[60.092573,30.364426],[60.092297,30.365461],[60.091998,30.36647],[60.091684,30.367397],[60.091478,30.367979],[60.091393,30.368187],[60.091168,30.368767],[60.09083,30.369608],[60.090435,30.370469],[60.090039,30.3713],[60.089819,30.371718],[60.089626,30.372076],[60.089135,30.372899],[60.088979,30.37313],[60.088605,30.373701],[60.088066,30.374472],[60.087763,30.374881],[60.087295,30.375458],[60.087055,30.375742],[60.086783,30.376037],[60.08643,30.376383],[60.086192,30.37661],[60.085748,30.376992],[60.085273,30.377362],[60.084972,30.377597],[60.084705,30.377783],[60.08433,30.378014],[60.083718,30.378333],[60.083592,30.378391],[60.083277,30.378529],[60.083059,30.37862],[60.082841,30.378695],[60.081721,30.379041],[60.0809,30.379285],[60.080035,30.379537],[60.078193,30.380098],[60.07713,30.380407],[60.075118,30.381015],[60.074877,30.381096],[60.074288,30.381278],[60.073543,30.381525],[60.072799,30.381799],[60.07165,30.382247],[60.070515,30.382721],[60.068825,30.383494],[60.068005,30.383888],[60.067787,30.383993],[60.066457,30.384611],[60.066035,30.384802],[60.064494,30.385519],[60.064057,30.385745],[60.063662,30.385938],[60.063297,30.38613],[60.062959,30.38634],[60.062381,30.386728],[60.062082,30.386936],[60.061795,30.387147],[60.061404,30.38748],[60.060858,30.387992],[60.060365,30.388459],[60.059965,30.388864],[60.059391,30.389499],[60.059069,30.389866],[60.058952,30.390023],[60.058843,30.39017],[60.058707,30.390341],[60.058328,30.390824],[60.057952,30.391335],[60.057745,30.391658],[60.057172,30.392526],[60.056856,30.39306],[60.056064,30.394418],[60.055685,30.395164],[60.055334,30.395846],[60.054909,30.396747],[60.054593,30.397464],[60.05423,30.398373],[60.053627,30.399973],[60.053299,30.400919],[60.053055,30.401682],[60.052849,30.402355],[60.052662,30.403023],[60.052415,30.403935],[60.052098,30.405177],[60.051794,30.406451],[60.050461,30.412025],[60.049131,30.417579],[60.048223,30.421409],[60.047763,30.423303],[60.047617,30.423865],[60.047463,30.424456],[60.047198,30.425403],[60.046879,30.426447],[60.046701,30.427002],[60.04655,30.427461],[60.046028,30.428925],[60.045719,30.429754],[60.045507,30.430284],[60.045495,30.430312],[60.045397,30.430553],[60.045375,30.430604],[60.045216,30.430975],[60.044762,30.432012],[60.044357,30.432862],[60.043972,30.433622],[60.043669,30.434175],[60.043366,30.434721],[60.04309,30.43518],[60.042771,30.435665],[60.042438,30.436142],[60.042319,30.436293],[60.042036,30.436642],[60.041833,30.436879],[60.041701,30.437015],[60.041396,30.43735],[60.041327,30.437425],[60.041061,30.437694],[60.040939,30.437817],[60.040795,30.437946],[60.040571,30.438146],[60.040482,30.438219],[60.040375,30.438298],[60.040329,30.438347],[60.040163,30.438484],[60.039967,30.438627],[60.039751,30.438779],[60.039463,30.438965],[60.039343,30.43904],[60.039023,30.439198],[60.038603,30.439378],[60.038356,30.439481],[60.038162,30.439547],[60.037693,30.439669],[60.03759,30.439693],[60.03748,30.439719],[60.037306,30.439777],[60.03704,30.439842],[60.036847,30.439895],[60.036516,30.439997],[60.036082,30.440155],[60.03586,30.440249],[60.035135,30.440622],[60.034715,30.440882],[60.034651,30.440925],[60.034299,30.441199],[60.033896,30.441526],[60.033365,30.441998],[60.032187,30.443157],[60.031776,30.443573],[60.030689,30.444672],[60.028254,30.447089],[60.027592,30.447754],[60.026282,30.449058],[60.025204,30.450136],[60.024878,30.450456],[60.024655,30.450686],[60.023368,30.451982],[60.022026,30.453342],[60.021502,30.453858],[60.021037,30.454352],[60.020668,30.454757],[60.020409,30.455068],[60.020166,30.45539],[60.019778,30.455921],[60.019634,30.456144],[60.019475,30.456385],[60.019039,30.457143],[60.018805,30.457543],[60.018634,30.457864],[60.018572,30.457987],[60.018238,30.458676],[60.018014,30.459175],[60.017837,30.459569],[60.017663,30.459978],[60.017496,30.460404],[60.017421,30.460606],[60.017347,30.460803],[60.017277,30.460991],[60.016975,30.461901],[60.016847,30.462326],[60.016307,30.464035],[60.01604,30.464891],[60.015694,30.465824],[60.015449,30.466452],[60.015218,30.467009],[60.014789,30.46791],[60.01468,30.468165],[60.014455,30.468615],[60.014199,30.469109],[60.013949,30.469541],[60.01364,30.470085],[60.013421,30.470439],[60.013194,30.470793],[60.012972,30.471118],[60.012754,30.471437],[60.012484,30.471794],[60.012107,30.472268],[60.011752,30.472703],[60.011388,30.473116],[60.0111,30.4734],[60.010732,30.473749],[60.010106,30.474291],[60.00945,30.474784],[60.009029,30.475063],[60.008486,30.47538],[60.00818,30.475543],[60.007799,30.475729],[60.007374,30.475889],[60.006786,30.476056],[60.00638,30.476174],[60.005918,30.476217],[60.005639,30.476249],[60.005351,30.476262],[60.005084,30.476266],[60.004779,30.47626],[60.004398,30.476241],[60.004059,30.476211],[60.002631,30.47612],[60.002042,30.476093],[60.001666,30.47608],[60.001287,30.476083],[60.000943,30.476099],[60.000663,30.47612],[60.000303,30.476158],[59.999871,30.476233],[59.999449,30.476313],[59.99909,30.476397],[59.998638,30.476544],[59.998079,30.476716],[59.997515,30.476936],[59.99695,30.477172],[59.996528,30.477375],[59.995975,30.477681],[59.995526,30.477963],[59.995217,30.478159],[59.995125,30.478222],[59.994896,30.478381],[59.994604,30.478588],[59.994169,30.478926],[59.993968,30.479097],[59.993923,30.479134],[59.993812,30.479226],[59.993441,30.479548],[59.993122,30.479806],[59.992882,30.480031],[59.992326,30.480632],[59.991944,30.481037],[59.991455,30.481592],[59.990762,30.482461],[59.990408,30.482911],[59.990324,30.483021],[59.990307,30.483047],[59.990236,30.483148],[59.989566,30.484129],[59.989181,30.484735],[59.988657,30.485602],[59.988294,30.486221],[59.987872,30.486994],[59.987528,30.487687],[59.987098,30.488578],[59.986814,30.489184],[59.986343,30.490251],[59.986158,30.490685],[59.985661,30.491858],[59.985061,30.493341],[59.984687,30.494323],[59.984414,30.495098],[59.984283,30.495475],[59.984131,30.495938],[59.983965,30.496493],[59.983813,30.497],[59.983707,30.497373],[59.983598,30.497804],[59.983469,30.498341],[59.983303,30.49907],[59.983157,30.4998],[59.982967,30.500841],[59.982798,30.501878],[59.982684,30.502702],[59.982531,30.503888],[59.982451,30.504682],[59.982311,30.505954],[59.98227,30.506342],[59.98225,30.506528],[59.982025,30.508982],[59.982001,30.509248],[59.981746,30.51191],[59.981674,30.512652],[59.98159,30.513506],[59.981434,30.514858],[59.981252,30.516221],[59.981088,30.517277],[59.980998,30.517827],[59.980848,30.518618],[59.980631,30.519734],[59.980397,30.520791],[59.980084,30.522101],[59.979877,30.522931],[59.979671,30.523661],[59.979407,30.524551],[59.979073,30.525646],[59.978735,30.526719],[59.97745,30.530871],[59.976913,30.532584],[59.976509,30.53392],[59.9763,30.534575],[59.976216,30.53484],[59.975998,30.535532],[59.975952,30.535687],[59.975907,30.535841],[59.975307,30.537768],[59.974702,30.539727],[59.974267,30.541133],[59.973901,30.542249],[59.973667,30.542914],[59.973355,30.543713],[59.973097,30.544357],[59.972793,30.545049],[59.972457,30.545752],[59.972188,30.546288],[59.971863,30.546878],[59.971562,30.547425],[59.971228,30.547973],[59.970985,30.548359],[59.970459,30.549131],[59.969927,30.549823],[59.969427,30.550392],[59.968926,30.550918],[59.968636,30.551202],[59.968149,30.551647],[59.967627,30.552076],[59.967349,30.552288],[59.966958,30.552538],[59.966643,30.552736],[59.966226,30.552972],[59.965648,30.55324],[59.965142,30.553417],[59.964777,30.553525],[59.964536,30.553608],[59.964418,30.553634],[59.964289,30.553664],[59.963941,30.553731],[59.963436,30.553794],[59.963089,30.553828],[59.962672,30.553817],[59.962295,30.553794],[59.961722,30.55371],[59.961301,30.553635],[59.960679,30.553468],[59.960414,30.553372],[59.960141,30.553259],[59.959467,30.552929],[59.959176,30.552771],[59.958872,30.55259],[59.95875,30.552516],[59.958215,30.552154],[59.957806,30.551827],[59.957434,30.551508],[59.95659,30.5507],[59.9559,30.549979],[59.954864,30.548884],[59.95417,30.548174],[59.951818,30.545703],[59.951459,30.54525],[59.950922,30.544673],[59.950435,30.544153],[59.949932,30.543625],[59.949504,30.543242],[59.94924,30.543007],[59.948912,30.542723],[59.94855,30.542436],[59.948237,30.542187],[59.947899,30.541935],[59.947553,30.541675],[59.947312,30.541514],[59.947014,30.541323],[59.946551,30.54103],[59.946438,30.540966],[59.946297,30.540891],[59.946184,30.540827],[59.946094,30.540775],[59.94598,30.540709],[59.94583,30.540639],[59.945396,30.540413],[59.944617,30.540033],[59.943775,30.539695],[59.943037,30.539466],[59.94227,30.539285],[59.940956,30.539084],[59.940398,30.539017],[59.939234,30.538853],[59.938424,30.538719],[59.937452,30.538579],[59.937027,30.53851],[59.936591,30.538451],[59.936069,30.538359],[59.93567,30.53828],[59.93521,30.538188],[59.934739,30.538059],[59.933958,30.53778],[59.933619,30.537651],[59.932906,30.537313],[59.932456,30.537093],[59.932066,30.536868],[59.931348,30.536426],[59.93062,30.535999],[59.929949,30.535382],[59.929642,30.535119],[59.92926,30.534806],[59.928886,30.534449],[59.928404,30.533993],[59.927713,30.533263],[59.926985,30.532432],[59.925889,30.531048],[59.925448,30.53053],[59.925111,30.530141],[59.924615,30.529632],[59.924117,30.529138],[59.923853,30.528891],[59.9234,30.52848],[59.92291,30.528088],[59.922275,30.527611],[59.921316,30.526999],[59.920613,30.526608],[59.920315,30.526465],[59.919953,30.526302],[59.919207,30.526007],[59.918644,30.525835],[59.917917,30.525663],[59.917397,30.525583],[59.91692,30.525508],[59.91629,30.525486],[59.915931,30.525489],[59.915293,30.525497],[59.914706,30.525535],[59.913631,30.525618],[59.913277,30.525633],[59.913197,30.525637],[59.912915,30.52565],[59.912408,30.525701],[59.91184,30.525739],[59.911344,30.525781],[59.909528,30.525926],[59.909108,30.525942],[59.906342,30.526149],[59.905534,30.526149],[59.904944,30.526205],[59.903974,30.52624],[59.903651,30.526227],[59.90298,30.526196],[59.902337,30.526138],[59.901791,30.52606],[59.901188,30.525937],[59.90041,30.525768],[59.899582,30.525513],[59.898982,30.525296],[59.898178,30.524984],[59.897886,30.524891],[59.89742,30.524717],[59.897081,30.524607],[59.896593,30.524435],[59.896277,30.524344],[59.895835,30.52422],[59.895226,30.524076],[59.894121,30.523866],[59.893877,30.523832],[59.89372,30.523809],[59.893407,30.523781],[59.89273,30.523743],[59.89237,30.523743],[59.892059,30.523744],[59.89192,30.523737],[59.891546,30.523753],[59.891089,30.52379],[59.890383,30.52384],[59.889954,30.523888],[59.888989,30.524067],[59.888336,30.524228],[59.88741,30.524442],[59.886615,30.524726],[59.885844,30.525068],[59.88512,30.525446],[59.884865,30.525586],[59.88457,30.525739],[59.883399,30.526388],[59.882872,30.526691],[59.882038,30.527136],[59.881142,30.527585],[59.880255,30.528069],[59.879839,30.5283],[59.878055,30.529247],[59.877111,30.529747],[59.876919,30.52985],[59.875883,30.530377],[59.875676,30.530489],[59.874842,30.53095],[59.874217,30.531234],[59.873893,30.531368],[59.873257,30.531551],[59.87293,30.531631],[59.872601,30.53168],[59.872286,30.531706],[59.871962,30.531723],[59.871224,30.53168],[59.870994,30.531653],[59.87067,30.531594],[59.870465,30.531535],[59.869823,30.531331],[59.86941,30.531149],[59.86869,30.530752],[59.868348,30.530521],[59.867992,30.530258],[59.867687,30.530001],[59.867278,30.529638],[59.866894,30.52925],[59.866532,30.528853],[59.866171,30.528407],[59.865817,30.527957],[59.865623,30.527672],[59.865399,30.527372],[59.865159,30.526975],[59.864911,30.526546],[59.864002,30.524845],[59.863589,30.52403],[59.863324,30.523496],[59.862569,30.521975],[59.862432,30.5217],[59.862143,30.521113],[59.861707,30.520232],[59.860535,30.517876],[59.859871,30.516514],[59.859472,30.515694],[59.858629,30.513999],[59.85836,30.513451],[59.857955,30.512663],[59.857093,30.510918],[59.856678,30.51011],[59.856633,30.510018],[59.856358,30.509511],[59.856042,30.508851],[59.855766,30.50821],[59.855403,30.507179],[59.855303,30.506872],[59.855134,30.506268],[59.855009,30.505737],[59.854903,30.505207],[59.854773,30.504586],[59.854752,30.504474],[59.85469,30.504112],[59.854616,30.503653],[59.854526,30.503087],[59.854458,30.502562],[59.854367,30.501478],[59.854315,30.50063],[59.854273,30.499555],[59.85426,30.499145],[59.853961,30.489979],[59.853886,30.487676],[59.853871,30.487166],[59.853788,30.484597],[59.853781,30.484198],[59.853684,30.481924],[59.853664,30.481538],[59.853635,30.481162],[59.853629,30.481077],[59.853616,30.480927],[59.853586,30.480575],[59.853553,30.480231],[59.853518,30.479915],[59.853466,30.479511],[59.853413,30.479142],[59.85335,30.478753],[59.853285,30.478381],[59.853215,30.478011],[59.853139,30.477633],[59.85306,30.477272],[59.852968,30.476879],[59.852873,30.476505],[59.852723,30.475943],[59.851972,30.473369],[59.851024,30.470145],[59.849976,30.46609],[59.84922,30.463531],[59.848937,30.462737],[59.848841,30.462497],[59.848715,30.462184],[59.848281,30.461235],[59.847951,30.460618],[59.847652,30.46013],[59.847387,30.459749],[59.847085,30.459341],[59.846814,30.459001],[59.846658,30.458821],[59.846525,30.458668],[59.84616,30.458299],[59.846003,30.458161],[59.845735,30.45793],[59.845444,30.45768],[59.845386,30.457641],[59.84441,30.456995],[59.842685,30.456008],[59.841777,30.455356],[59.841376,30.455061],[59.84105,30.454787],[59.840283,30.454141],[59.839866,30.453763],[59.839503,30.453438],[59.839212,30.453142],[59.838562,30.452465],[59.838081,30.451944],[59.837939,30.451783],[59.837376,30.451132],[59.835221,30.448475],[59.833834,30.4466],[59.832915,30.445355],[59.831072,30.442848],[59.830976,30.442722],[59.830583,30.442193],[59.830169,30.441618],[59.829175,30.440244],[59.828664,30.439469],[59.828007,30.438632],[59.827789,30.438345],[59.827293,30.437624],[59.826872,30.436908],[59.826654,30.436487],[59.8266,30.436387],[59.826188,30.435529],[59.825784,30.434569],[59.825475,30.433686],[59.825128,30.432653],[59.824787,30.431477],[59.824442,30.430031],[59.824058,30.428323],[59.823878,30.42753],[59.823211,30.424467],[59.821364,30.416409],[59.820228,30.411462],[59.819723,30.409208],[59.819354,30.407518],[59.819051,30.405936],[59.818763,30.404315],[59.81869,30.40391],[59.818574,30.403165],[59.818309,30.401335],[59.817929,30.39817],[59.817585,30.394839],[59.817365,30.392559],[59.817007,30.389126],[59.816684,30.385795],[59.81666,30.385546],[59.816479,30.383671],[59.816431,30.383212],[59.816374,30.382638],[59.816364,30.382541],[59.816332,30.38224],[59.81623,30.381246],[59.816205,30.381002],[59.815922,30.37823],[59.815825,30.377276],[59.815621,30.375205],[59.815504,30.374037],[59.815421,30.373165],[59.81539,30.372856],[59.815309,30.371981],[59.815288,30.371739],[59.815232,30.370987],[59.815118,30.369191],[59.815083,30.368241],[59.815071,30.367562],[59.815078,30.366278],[59.815185,30.363699],[59.815198,30.363394],[59.81523,30.362834],[59.815264,30.362009],[59.81529,30.361173],[59.815305,30.360385],[59.815313,30.359551],[59.815272,30.358328],[59.815229,30.357416],[59.81517,30.356592],[59.81507,30.355517],[59.815007,30.35491],[59.814886,30.353966],[59.814749,30.353056],[59.814643,30.352437],[59.814563,30.352],[59.814257,30.35061],[59.813905,30.349165],[59.813716,30.34843],[59.813467,30.347631],[59.813127,30.346622],[59.8123,30.344482],[59.812032,30.343756],[59.811638,30.342599],[59.811389,30.341757],[59.811184,30.34099],[59.811011,30.340292],[59.810878,30.339684],[59.8108,30.339311],[59.81069,30.338705],[59.810587,30.338136],[59.810562,30.337972],[59.810471,30.337358],[59.810304,30.335998],[59.810207,30.33478],[59.810138,30.333531],[59.810117,30.332889],[59.810111,30.331913],[59.810128,30.331248],[59.810149,30.330604],[59.810176,30.329944],[59.810208,30.329527],[59.810222,30.329316],[59.810255,30.328931],[59.810368,30.327874],[59.810415,30.327533],[59.810518,30.326795],[59.81065,30.326025],[59.810756,30.325387],[59.810841,30.324966],[59.811008,30.324222],[59.811089,30.323928],[59.811253,30.323351],[59.811405,30.32275],[59.811614,30.322037],[59.811688,30.321827],[59.811923,30.321158],[59.812303,30.320138],[59.812371,30.319972],[59.812477,30.319716],[59.812692,30.319242],[59.813032,30.318528],[59.813189,30.318218],[59.813283,30.318033],[59.813735,30.31714],[59.81498,30.314575],[59.815766,30.312973],[59.816217,30.312063],[59.817458,30.30957],[59.8185,30.307443],[59.819821,30.304752],[59.821212,30.301899],[59.821359,30.301597],[59.821629,30.301054],[59.822533,30.299232],[59.823359,30.297559],[59.823845,30.296572],[59.824163,30.295929],[59.825033,30.294153],[59.825438,30.293402],[59.825848,30.292667],[59.826316,30.291873],[59.827012,30.290806],[59.827647,30.289904],[59.828106,30.28933],[59.829127,30.288155],[59.829349,30.287919],[59.829677,30.28759],[59.830597,30.286724],[59.831143,30.28617],[59.831588,30.285567],[59.831842,30.285158],[59.831978,30.28494],[59.832085,30.284766],[59.832401,30.284234],[59.832677,30.283679],[59.832883,30.283248],[59.833045,30.282861],[59.833292,30.282222],[59.83356,30.281471],[59.833845,30.280525],[59.834093,30.279557],[59.834151,30.279305],[59.834306,30.278516],[59.83443,30.277732],[59.83453,30.277054],[59.834626,30.276238],[59.834682,30.27556],[59.834742,30.274634],[59.834773,30.274117],[59.834776,30.273524],[59.834762,30.272556],[59.834732,30.271773],[59.834692,30.271182],[59.834622,30.270437],[59.834557,30.269927],[59.834479,30.269415],[59.834441,30.269214],[59.83435,30.268696],[59.834324,30.26855],[59.834141,30.267529],[59.833862,30.266217],[59.83341,30.264284],[59.833041,30.26273],[59.832433,30.260177],[59.832108,30.258825],[59.831831,30.257655],[59.830028,30.250011],[59.82806,30.241669],[59.825709,30.231584],[59.825372,30.230186],[59.825126,30.229266],[59.824864,30.228317],[59.824506,30.227118],[59.824124,30.225905],[59.823763,30.224798],[59.823292,30.22343],[59.822714,30.221914],[59.822144,30.220455],[59.821583,30.21916],[59.820872,30.217631],[59.820203,30.216281],[59.81951,30.21497],[59.818922,30.213921],[59.817569,30.211708],[59.817212,30.211105],[59.817157,30.211006],[59.817039,30.210807],[59.816867,30.210501],[59.816636,30.210086],[59.81593,30.208731],[59.815619,30.208083],[59.815487,30.207808],[59.815024,30.206757],[59.814677,30.205883],[59.814407,30.205199],[59.81398,30.204035],[59.813654,30.203077],[59.813364,30.202133],[59.813269,30.20181],[59.813083,30.20117],[59.812845,30.200299],[59.812621,30.199436],[59.812423,30.198606],[59.812133,30.197294],[59.811914,30.196219],[59.811638,30.194625],[59.811241,30.19213],[59.811106,30.19127],[59.811057,30.190965],[59.811044,30.19088],[59.810897,30.189929],[59.810637,30.188142],[59.810502,30.18734],[59.810373,30.186624],[59.81017,30.185624],[59.809946,30.184672],[59.809779,30.184041],[59.809563,30.183328],[59.809417,30.182891],[59.809104,30.182],[59.808832,30.181338],[59.808594,30.180785],[59.80827,30.180104],[59.807966,30.179547],[59.80782,30.17928],[59.807492,30.178741],[59.807149,30.178242],[59.806761,30.177719],[59.806339,30.17721],[59.805823,30.176652],[59.80541,30.176244],[59.804789,30.175635],[59.804419,30.175271],[59.804006,30.174812],[59.803657,30.174388],[59.803388,30.174045],[59.803042,30.17354],[59.802712,30.173007],[59.802433,30.172517],[59.802316,30.172293],[59.802041,30.171784],[59.801853,30.171381],[59.801606,30.170813],[59.801429,30.170373],[59.801026,30.169241],[59.800869,30.168731],[59.800738,30.168311],[59.800619,30.167868],[59.800487,30.16736],[59.80039,30.166982],[59.800151,30.16592],[59.800028,30.165226],[59.799922,30.164528],[59.799824,30.163842],[59.799721,30.162927],[59.799678,30.162415],[59.799645,30.161945],[59.799605,30.161205],[59.799574,30.160424],[59.799575,30.159751],[59.799597,30.158643],[59.799613,30.158204],[59.799628,30.157906],[59.799663,30.157389],[59.799715,30.15683],[59.799745,30.156507],[59.799875,30.155216],[59.799981,30.154331],[59.800107,30.153567],[59.800109,30.153554],[59.800243,30.152872],[59.800507,30.151756],[59.800739,30.150883],[59.800984,30.150071],[59.801151,30.149569],[59.80157,30.14836],[59.801894,30.147445],[59.802149,30.146736],[59.802191,30.14662],[59.802459,30.145834],[59.802728,30.145085],[59.805731,30.136584],[59.809353,30.126415],[59.810342,30.123656],[59.811913,30.119176],[59.812051,30.118727],[59.812244,30.118057],[59.81251,30.117095],[59.812721,30.116305],[59.812957,30.115365],[59.813198,30.114319],[59.813338,30.11371],[59.813539,30.1127],[59.813807,30.111174],[59.813908,30.110558],[59.814066,30.109502],[59.814251,30.108031],[59.814423,30.10648],[59.814552,30.105036],[59.814599,30.104316],[59.81477,30.101034],[59.814779,30.100878],[59.815153,30.093738],[59.815183,30.093159],[59.815438,30.08822],[59.81548,30.087439],[59.815643,30.084222],[59.815811,30.080873],[59.815869,30.079914],[59.816053,30.076195],[59.816109,30.075146],[59.816119,30.074954],[59.816268,30.072121],[59.816463,30.067675],[59.816508,30.066324],[59.816543,30.065097],[59.816585,30.063501],[59.816605,30.062505],[59.816626,30.059888],[59.81659,30.058345],[59.816572,30.056928],[59.816545,30.053218],[59.816538,30.052667],[59.816536,30.052298],[59.816482,30.047406],[59.816433,30.042616],[59.816412,30.040639],[59.816397,30.038329],[59.816289,30.033457],[59.816221,30.02635],[59.816188,30.022823],[59.816178,30.021264],[59.816194,30.020138],[59.816247,30.018386],[59.816328,30.016969],[59.816404,30.015802],[59.816483,30.014779],[59.816631,30.012962],[59.816758,30.011699],[59.817082,30.009137],[59.817163,30.00852],[59.817286,30.00767],[59.817413,30.006833],[59.817666,30.005431],[59.817837,30.004635],[59.818145,30.003136],[59.818428,30.001868],[59.818652,30.000945],[59.818906,29.999948],[59.819542,29.99767],[59.819889,29.996457],[59.820033,29.995959],[59.820142,29.995566],[59.82028,29.995024],[59.820509,29.994089],[59.820721,29.99315],[59.821215,29.990792],[59.821461,29.989401],[59.821755,29.98764],[59.822016,29.985694],[59.822268,29.983456],[59.822364,29.982424],[59.822449,29.981289],[59.822596,29.979102],[59.822668,29.976567],[59.82269,29.974886],[59.822668,29.973173],[59.822641,29.971985],[59.822521,29.969401],[59.822394,29.967711],[59.82228,29.966392],[59.822144,29.965041],[59.822013,29.963941],[59.82186,29.962847],[59.82173,29.961964],[59.821482,29.960431],[59.821244,29.959131],[59.820377,29.954659],[59.820267,29.954092],[59.820049,29.952982],[59.819414,29.949755],[59.817957,29.942283],[59.817164,29.938219],[59.816526,29.935038],[59.815415,29.929357],[59.815059,29.927471],[59.815025,29.927295],[59.814909,29.926741],[59.814037,29.92237],[59.813831,29.921194],[59.81344,29.918805],[59.813288,29.917769],[59.813101,29.916358],[59.813088,29.916255],[59.812911,29.914693],[59.812696,29.9125],[59.812512,29.910099],[59.812402,29.907771],[59.81235,29.905936],[59.812336,29.904997],[59.812321,29.903708],[59.812337,29.901533],[59.812424,29.898318],[59.812524,29.894849],[59.812628,29.891573],[59.812787,29.886057],[59.81285,29.883832],[59.813082,29.875766],[59.813157,29.87249],[59.81329,29.868092],[59.813438,29.862853],[59.813476,29.861673],[59.813491,29.861145],[59.813517,29.860145],[59.813559,29.858431],[59.813586,29.857773],[59.813636,29.856917],[59.813701,29.856067],[59.813792,29.855163],[59.813878,29.854386],[59.813969,29.853673],[59.814094,29.852804],[59.814252,29.851817],[59.814355,29.851249],[59.814433,29.850842],[59.814674,29.849673],[59.814844,29.848927],[59.815192,29.847586],[59.8156,29.846207],[59.816079,29.84481],[59.816549,29.843596],[59.816899,29.842793],[59.817286,29.841969],[59.817607,29.841347],[59.818096,29.840447],[59.819252,29.838391],[59.820009,29.837044],[59.820534,29.83611],[59.821947,29.833615],[59.823822,29.830246],[59.825573,29.827163],[59.82684,29.825189],[59.827158,29.824701],[59.82865,29.822711],[59.829663,29.821521],[59.830586,29.820542],[59.830958,29.820153],[59.831795,29.819374],[59.832616,29.818655],[59.833553,29.817951],[59.834164,29.817516],[59.834719,29.817148],[59.835686,29.816583],[59.836678,29.816063],[59.839932,29.814454],[59.8431,29.812866],[59.845921,29.811456],[59.848785,29.810023],[59.851233,29.808808],[59.852149,29.808341],[59.852626,29.808019],[59.85316,29.807734],[59.85379,29.807341],[59.854052,29.807186],[59.855746,29.805817],[59.856761,29.80488],[59.857193,29.804443],[59.857581,29.804029],[59.85886,29.802492],[59.859422,29.801759],[59.859531,29.801616],[59.859639,29.801466],[59.860115,29.800787],[59.860298,29.800484],[59.861094,29.799242],[59.861366,29.798782],[59.861633,29.798321],[59.861927,29.797792],[59.862819,29.796086],[59.863068,29.79556],[59.863324,29.795001],[59.863737,29.794056],[59.864665,29.791786],[59.865032,29.790788],[59.865404,29.789727],[59.865794,29.788538],[59.866104,29.787516],[59.866331,29.786733],[59.866553,29.785837],[59.867161,29.783316],[59.86741,29.782191],[59.867712,29.780679],[59.867927,29.779514],[59.868147,29.778128],[59.868343,29.776774],[59.868537,29.775184],[59.868679,29.773906],[59.868799,29.772626],[59.868862,29.771864],[59.868901,29.771295],[59.868942,29.770718],[59.868991,29.76986],[59.869036,29.769027],[59.869072,29.768231],[59.869131,29.766932],[59.86914,29.766761],[59.869172,29.765835],[59.869233,29.763689],[59.869376,29.759499],[59.869417,29.75821],[59.869474,29.756705],[59.869607,29.752804],[59.869693,29.750918],[59.86975,29.750023],[59.869824,29.749097],[59.869879,29.748322],[59.870018,29.746877],[59.8701,29.746087],[59.87024,29.744852],[59.870485,29.74308],[59.870694,29.741778],[59.870854,29.740829],[59.871122,29.739381],[59.871416,29.738008],[59.871919,29.735902],[59.872211,29.73468],[59.872707,29.732644],[59.873695,29.72851],[59.874746,29.724163],[59.875588,29.720704],[59.875864,29.719579],[59.87618,29.718256],[59.876638,29.716374],[59.877251,29.713844],[59.878362,29.709278],[59.878839,29.707355],[59.879344,29.705259],[59.879751,29.703526],[59.880451,29.700672],[59.881248,29.697364],[59.881648,29.695695],[59.882508,29.692188],[59.882862,29.690711],[59.883216,29.689342],[59.88337,29.688673],[59.883644,29.687585],[59.883945,29.686342],[59.884356,29.684728],[59.884657,29.683625],[59.884923,29.682722],[59.885044,29.682313],[59.88536,29.681276],[59.885657,29.680384],[59.885963,29.679519],[59.886735,29.677497],[59.887136,29.676553],[59.887295,29.676181],[59.888028,29.674618],[59.888658,29.673321],[59.888772,29.673092],[59.889427,29.671879],[59.889659,29.671486],[59.890049,29.670837],[59.890514,29.67008],[59.89118,29.669082],[59.892076,29.667824],[59.892739,29.666971],[59.893509,29.666062],[59.893903,29.665647],[59.894474,29.665047],[59.895025,29.664486],[59.896085,29.663592],[59.896465,29.66331],[59.897147,29.662837],[59.897765,29.66243],[59.897976,29.662289],[59.898901,29.6618],[59.899472,29.661521],[59.899888,29.661349],[59.900645,29.661076],[59.901515,29.660805],[59.902351,29.660623],[59.903154,29.66049],[59.903948,29.660356],[59.904778,29.66022],[59.905334,29.660127],[59.908462,29.659573],[59.909186,29.659491],[59.909474,29.65946],[59.910198,29.659425],[59.910827,29.659461],[59.911508,29.659526],[59.911789,29.659566]);
//the Point in Polygon function
function pointInPolygon($p, $polygon) {
//if you operates with (hundred)thousands of points
$p = $p[0];
$c = 0;
$p1 = $polygon[0];
$n = count($polygon);
$found = false;
for ($i=1; $i<=$n; $i++) {
$p2 = $polygon[$i % $n];
if ($p[1] > min($p1[1], $p2[1])
&& ($p[1] <= max($p1[1], $p2[1]))
&& ($p[0] <= max($p1[0], $p2[0]))
&& ($p1[1] != $p2[1])) {
$xinters = ($p[1] - $p1[1]) * ($p2[0] - $p1[0]) / ($p2[1] - $p1[1]) + $p1[0];
//var_dump($xinters);
if ($p1[0] == $p2[0] || $p[0] <= $xinters) {
$c++;
}
}
$p1 = $p2;
}
// if the number of edges we passed through is even, then it's not in the poly.
return $c==2;// here is modified code. before was: $c%2!=0; I do not know why, but now works fine!
}
//$point = array([59.821018, 30.411326]); //true
//$point = array([59.820629, 30.409953]); //true
$point = array([60.008744, 30.256487]); //true
//$point = array([59.863910, 29.765821]); //false
//$point = array([59.863910, 29.765821]); //false
//$point = array([59.820369, 30.418364]); //false
//$point = array([59.865852, 29.777384]); //false
$result = pointInPolygon($point, $polygon_kad_points['Санкт-Петербург']);
var_dump($result);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment