Creating a London Population Map with D3po

R-bloggers 2025-11-15

[This article was first published on pacha.dev/blog, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

If this post is useful to you I kindly ask a minimal donation on Buy Me a Coffee. It shall be used to continue my Open Source efforts.

You can send me questions for the blog using this form and subscribe to receive an email when there is a new post.

I got this badly worded question for the blog: “Please clarify. This two are not working. From which package is po_tooltip. Thanks.”

I appreciate the thanks, but remember the help me to help you rule: “Please provide a minimal, reproducible example when asking for help.” Or at least explain what your question is about.

Based on the question, it is from the Gini Index post.

I will try to explain by creating a population map of London using the D3po package.

All the po_*() functions are part of the D3po package, including po_tooltip().

Load these R packages to import and manipulate the data:

library(d3po)
library(dplyr)
library(sf)
library(rvest)
library(janitor)

There is a better resolution map of London boroughs provided by TfL. This map looks better compared to D3po provideds subnational map (low resolution).

Download the GeoJSON file to show that D3po can work with any spatial data in sf format.

url <- "https://hub.arcgis.com/api/v3/datasets/0a92a355a8094e0eb20a7a66cf4ca7cf_10/downloads/data?format=geojson&spatialRefId=4326&where=1%3D1"
finp <- "~/Documents/blog-materials/2025/11/14/london-population/london_boroughs.geojson"

if (!file.exists(finp)) {
  download.file(url, destfile = finp, mode = "wb")
}

Read the GeoJSON file using st_read() from the sf package and clean the column names with clean_names() from the janitor package:

boroughs <- st_read(finp) %>%
  clean_names()
Reading layer `London_Boroughs' from data source 
  `/home/pacha/Documents/blog-materials/2025/11/14/london-population/london_boroughs.geojson' 
  using driver `GeoJSON'
Simple feature collection with 33 features and 13 fields
Geometry type: POLYGON
Dimension:     XY
Bounding box:  xmin: -0.5103558 ymin: 51.28676 xmax: 0.3340441 ymax: 51.69188
Geodetic CRS:  WGS 84
boroughs
Simple feature collection with 33 features and 13 fields
Geometry type: POLYGON
Dimension:     XY
Bounding box:  xmin: -0.5103558 ymin: 51.28676 xmax: 0.3340441 ymax: 51.69188
Geodetic CRS:  WGS 84
First 10 features:
          borough number code   hectares                 descript0      x
1         Bromley     19 00AF 15014.5152 CIVIL ADMINISTRATION AREA 542896
2        Lewisham     07 00AZ  3532.3405 CIVIL ADMINISTRATION AREA 537667
3      Wandsworth     10 00BJ  3522.0032 CIVIL ADMINISTRATION AREA 526129
4          Merton     22 00BA  3760.9196 CIVIL ADMINISTRATION AREA 525475
5       Redbridge     14 00BC  5645.0083 CIVIL ADMINISTRATION AREA 543914
6          Barnet     30 00AC  8673.7261 CIVIL ADMINISTRATION AREA 524028
7  City of London     00 00AA   315.2813 CIVIL ADMINISTRATION AREA 532464
8          Sutton     21 00BF  4385.0950 CIVIL ADMINISTRATION AREA 526976
9       Southwark     08 00BE  2989.7206 CIVIL ADMINISTRATION AREA 533855
10         Ealing     27 00AJ  5552.7807 CIVIL ADMINISTRATION AREA 515888
        y area objectid                file_name shape_area shape_length
1  165656    0        1 GREATER_LONDON_AUTHORITY  150145152    75909.143
2  174002    0        2 GREATER_LONDON_AUTHORITY   35323405    40992.749
3  174114    0        3 GREATER_LONDON_AUTHORITY   35220032    37353.847
4  169422    0        4 GREATER_LONDON_AUTHORITY   37609196    32293.920
5  189463    0        5 GREATER_LONDON_AUTHORITY   56450083    45688.184
6  192316    0        6 GREATER_LONDON_AUTHORITY   86737261    50866.472
7  181220    0        7 GREATER_LONDON_AUTHORITY    3152813     9651.891
8  164132    0        8 GREATER_LONDON_AUTHORITY   43850950    39753.841
9  176787    0        9 GREATER_LONDON_AUTHORITY   29897206    33664.416
10 181715    0       10 GREATER_LONDON_AUTHORITY   55527807    47268.052
                              global_id                       geometry
1  86b54395-dc20-4e52-bc8c-7b79188f035f POLYGON ((0.01215857 51.299...
2  84f88d72-30c1-47b6-bc71-163246413f0d POLYGON ((-0.04613459 51.45...
3  617038fb-5459-4133-96ae-1743ba48321c POLYGON ((-0.2540111 51.437...
4  6362d58b-7052-4655-a812-3487752e770e POLYGON ((-0.2181117 51.380...
5  3d6ac4f8-be2c-4a89-a684-e50e11c602e9 POLYGON ((0.02036894 51.556...
6  e424d66c-44fe-4e0e-b58b-d1851cfe71b1 POLYGON ((-0.1998716 51.670...
7  417f3ab6-bfb7-4770-827f-80526d360a25 POLYGON ((-0.1115267 51.515...
8  6dfcbe71-9609-488c-8852-df930b685ada POLYGON ((-0.1442461 51.339...
9  161208ac-2edc-471f-81dc-ec7e494032e5 POLYGON ((-0.07829781 51.42...
10 4d06499b-5d29-43e8-a4fa-c32be7b23119 POLYGON ((-0.3354244 51.496...

Extract the borough names:

names1 <- pull(boroughs, borough)

names1
 [1] "Bromley"              "Lewisham"             "Wandsworth"          
 [4] "Merton"               "Redbridge"            "Barnet"              
 [7] "City of London"       "Sutton"               "Southwark"           
[10] "Ealing"               "Brent"                "Croydon"             
[13] "Richmond upon Thames" "Hillingdon"           "Haringey"            
[16] "Kensington & Chelsea" "Kingston upon Thames" "Waltham Forest"      
[19] "Barking & Dagenham"   "Newham"               "Enfield"             
[22] "Hammersmith & Fulham" "Havering"             "Greenwich"           
[25] "Hackney"              "Westminster"          "Camden"              
[28] "Tower Hamlets"        "Hounslow"             "Harrow"              
[31] "Bexley"               "Islington"            "Lambeth"             

Now we need the population for the 33 boroughs. CityPopulation.DE has a table we can read using rvest:

url_pop <- "https://www.citypopulation.de/en/uk/greaterlondon/"
finp2 <- "~/Documents/blog-materials/2025/11/14/london-population/london_population.rds"

if (file.exists(finp2)) {
  pop_table <- readRDS(finp2)
} else {
  page <- read_html(url_pop)

  tables <- page %>% html_nodes("table")

  pop_table <- tables[[1]] %>%
    html_table() %>%
    clean_names()

  pop_table <- pop_table %>%
    select(name, pop = population_estimate2024_06_30)

  pop_table <- pop_table %>%
    mutate(pop = as.numeric(gsub(",", "", pop)))

  names2 <- pull(pop_table, name)

  names2

  # names that do not match
  setdiff(names1, names2)
  setdiff(names2, names1)

  # replace the " and " with " & " in boroughs
  # replace "City of Westminster" with "Westminster"
  pop_table <- pop_table %>%
    mutate(borough = case_when(
      name == "City of Westminster" ~ "Westminster",
      grepl(" and ", name) ~ gsub(" and ", " & ", name),
      TRUE ~ name
    )) %>%
    select(-name)

  saveRDS(pop_table, finp2)
}

Up to this point we can show two maps:

  1. Inhabitants per borough
  2. Inhabitants per square km
boroughs <- boroughs %>%
  left_join(pop_table, by = "borough") %>%
  mutate(
    area_km2 = hectares / 100,
    pop_per_km2 = pop / area_km2
  )

Define a color gradient for the maps a and create the maps using d3po:

my_gradient <- c("#b2d8d8", "#66b2b2", "#008080", "#006666", "#004c4c")

d3po(boroughs, width = 800, height = 600) %>%
  po_geomap(daes(group = borough, size = pop, color = my_gradient, gradient = T, tooltip = borough)) %>%
  po_labels(
    title = "Population in London Boroughs (2024)",
    subtitle = "Source: CityPopulation.DE & TFL London Boroughs"
  )
{"x":{"data":[{"borough":"Bromley","pop":335319},{"borough":"Lewisham","pop":301255},{"borough":"Wandsworth","pop":337655},{"borough":"Merton","pop":218539},{"borough":"Redbridge","pop":321231},{"borough":"Barnet","pop":405050},{"borough":"City of London","pop":15111},{"borough":"Sutton","pop":214525},{"borough":"Southwark","pop":314786},{"borough":"Ealing","pop":385985},{"borough":"Brent","pop":352976},{"borough":"Croydon","pop":409342},{"borough":"Richmond upon Thames","pop":196678},{"borough":"Hillingdon","pop":329185},{"borough":"Haringey","pop":263850},{"borough":"Kensington & Chelsea","pop":144518},{"borough":"Kingston upon Thames","pop":172692},{"borough":"Waltham Forest","pop":279737},{"borough":"Barking & Dagenham","pop":232747},{"borough":"Newham","pop":374523},{"borough":"Enfield","pop":327434},{"borough":"Hammersmith & Fulham","pop":188687},{"borough":"Havering","pop":276274},{"borough":"Greenwich","pop":299528},{"borough":"Hackney","pop":266758},{"borough":"Westminster","pop":209996},{"borough":"Camden","pop":216943},{"borough":"Tower Hamlets","pop":331886},{"borough":"Hounslow","pop":299424},{"borough":"Harrow","pop":270724},{"borough":"Bexley","pop":256434},{"borough":"Islington","pop":223024},{"borough":"Lambeth","pop":316920}],"geomap_data":{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"borough":"Bromley","number":"19","code":"00AF","hectares":15014.51524945,"descript0":"CIVIL ADMINISTRATION AREA","x":542896,"y":165656,"area":0,"objectid":1,"file_name":"GREATER_LONDON_AUTHORITY","shape_area":150145152.4944382,"shape_length":75909.14274489478,"global_id":"86b54395-dc20-4e52-bc8c-7b79188f035f","pop":335319,"area_km2":150.1451524945,"pop_per_km2":2233.298873983182},"geometry":{"type":"Polygon","coordinates":[[[0.012158566601799,51.2995983456122],[0.011989267221103,51.299794649108],[0.01190983064936,51.2999470607274],[0.011830593661011,51.3001013565784],[0.011777157263582,51.3002587155609],[0.011709307128117,51.3004110178622],[0.011646062406532,51.3005415731166],[0.011567138205073,51.3007030564129],[0.011517206639868,51.300872942319],[0.011443122242773,51.301082893415],[0.011350951013239,51.301336311075],[0.011275995126069,51.3015912306882],[0.011213888723056,51.3017451419026],[0.011126483436007,51.3019777988745],[0.011063638323098,51.3024419978744],[0.011098895418995,51.3024935388587],[0.011080728665003,51.302570363436],[0.011099681611097,51.3029711197129],[0.010977967681373,51.3030739080464],[0.010941084983644,51.3031176974333],[0.01090148420376,51.3031966879128],[0.010828895828327,51.3037654380649],[0.010866158248911,51.303862797671],[0.010860796067981,51.3039051471951],[0.010807352063302,51.3040598086765],[0.010649168209149,51.3043808918436],[0.010530671580219,51.3045898062173],[0.010513096278931,51.3046152824318],[0.010478616443532,51.3046464431887],[0.010454499500929,51.3046873160576],[0.010453120354667,51.3047206963635],[0.010461862650727,51.3047556107168],[0.010493851495364,51.3047973179217],[0.010529967247102,51.3049360562857],[0.010437629762471,51.3051535120458],[0.010296217098003,51.3055282519266],[0.010288127060257,51.3056380791598],[0.010185664776587,51.3058215434032],[0.010119140488427,51.3059395668269],[0.010028619639047,51.3061012479705],[0.009967296065446,51.3062083926],[0.009905270357993001,51.3062994555135],[0.009817784585453,51.3063980584538],[0.009704883492588001,51.3065078869989],[0.009616846921823,51.3065939120392],[0.009596511940418001,51.3066536905225],[0.009620534845808999,51.3067431872433],[0.009571941998622,51.3068141493254],[0.009481304497706001,51.3069056140522],[0.009451230955204001,51.3070051190226],[0.009463748099773,51.3070966110282],[0.00944934908083,51.3072245287955],[0.009384740851857001,51.3074540948702],[0.009222118259095999,51.3078040219563],[0.009040011497919999,51.3082982273261],[0.009013942399235,51.3084569138956],[0.009110957979929,51.308741248038],[0.008482431224366,51.3100515681798],[0.008429492860137999,51.3101856310283],[0.008391281217418001,51.3103616077704],[0.008389096087627,51.3105091849573],[0.008381348611068,51.3106621618707],[0.008426719252212,51.3108448870771],[0.008523870097666,51.311032118264],[0.008684489868933,51.3112936937057],[0.008948470171022,51.3116219156261],[0.009093528084889,51.311919810331],[0.009147563574444999,51.3121707167462],[0.009179598780872,51.3125083131608],[0.009237406890431,51.3128454663863],[0.009489408197539,51.3136218168756],[0.009589403301754999,51.3138089084265],[0.009614503645954999,51.313858016946],[0.00956334090693,51.3139353165942],[0.009625199901698999,51.3140349523568],[0.009727554817558,51.3143084057106],[0.009964468954029001,51.314804409698],[0.010122562066559,51.3153349421898],[0.010348658653209,51.316140505386],[0.010109871677059,51.3161266235067],[0.009521991052363,51.316073778406],[0.009357336901726999,51.3160478332949],[0.009259441719912,51.3160414218405],[0.009110194592219,51.3160403863533],[0.008412482543735,51.3159353851012],[0.008196403962857,51.3158860454113],[0.008093114484645,51.3158536518091],[0.007915108373444,51.3157847778918],[0.007503637214913,51.3156964401943],[0.007502217592791,51.3156964645337],[0.007175673794755,51.315645420381],[0.007001444339861,51.3156331226298],[0.006585979066397,51.3156483355288],[0.006580656568367,51.3156565181097],[0.006578355509343,51.3157365763849],[0.006487272765625,51.3162139316299],[0.006154676273893,51.3171081943456],[0.006031169259464,51.3174691345387],[0.005654527099504,51.3181761518735],[0.005545656579113,51.3184442356828],[0.005471421091547,51.3187494867647],[0.005452428870149,51.3189053528904],[0.00543781590028,51.3190639319598],[0.005405937964031,51.3196157957512],[0.005349244463282,51.3198946725911],[0.005265984133116,51.3201586310378],[0.005178086081666,51.3203787028063],[0.005132834423214,51.3205917515486],[0.005087578410632,51.3208047095051],[0.004915769370714,51.3219327628941],[0.00487033005352,51.3220764953948],[0.004481964461391,51.3228116701673],[0.004076202829929,51.3238753055558],[0.003879582917696,51.3242374941153],[0.003753658441758,51.3245085648004],[0.003725112287677,51.3248741704839],[0.003604563575935,51.325235955222],[0.003515171443537,51.3256881032137],[0.003400461367875,51.3261513797285],[0.003281951404061,51.326527601131],[0.003184540922307,51.32699417768],[0.002936096249625,51.327517371593],[0.002757645864617,51.328066249633],[0.002505314529299,51.3286335630782],[0.002370773382963,51.3289056745443],[0.002294783032983,51.3291390238339],[0.002284798835097,51.3291733591107],[0.002252391667044,51.3293177652122],[0.002225859874972,51.3294666547333],[0.002210439501092,51.3297726927057],[0.002344903929211,51.3299250345151],[0.002848315354983,51.3302788427008],[0.002892857939258,51.3303123364917],[0.002915675696881,51.3303416151794],[0.00292434035088,51.330374733194],[0.002920211559755,51.3304781969435],[0.00287515252058,51.3309268844535],[0.002870827855863,51.3310231596026],[0.002911435722372,51.3311645178424],[0.002914368023911,51.3312643552555],[0.003114640376274,51.3314137725282],[0.003241650188036,51.3316283667255],[0.003310702224481,51.3321559301575],[0.002973761472168,51.332232808028],[0.00263696531273,51.3323428586335],[0.002298854430049,51.3324906916607],[0.00196423166507,51.3327185707326],[0.001699801807565,51.3330090836172],[0.001353755186861,51.3333036871628],[0.000988490644514,51.3335212980998],[0.000869558707844,51.3335925577983],[0.000952963434803,51.3336594623459],[0.000939461538319,51.3337136372761],[0.000859430320941,51.3339524458477],[0.000574766881685,51.33453737236],[0.000584970532395,51.3349023010553],[0.00042111458917,51.3354590902631],[0.000157576487144,51.3361326588094],[7.8915333061e-05,51.336468536665],[-2.6953924775e-05,51.3368075757129],[-0.000362949149831,51.3378294990224],[-0.000530625256769,51.3381003651025],[-0.000750550456261,51.3385906792224],[-0.000862070749537,51.3390314043296],[-0.000988205149413,51.3394328208223],[-0.001065605658636,51.3397327130813],[-0.001271698526393,51.3402093042367],[-0.001379803945602,51.3403639843363],[-0.001456934318995,51.3404741739441],[-0.001417429240796,51.3404896824633],[-0.001369251020264,51.3405086403068],[-0.001395648864911,51.3407591146578],[-0.00145475569277,51.3407529296943],[-0.001551478551713,51.3407419919361],[-0.001736339533507,51.3414106074066],[-0.001623168377251,51.3414374528313],[-0.001689131697996,51.3417038820148],[-0.001826183142079,51.3421189612986],[-0.001951305087322,51.3423783010568],[-0.002117035271315,51.3427956596913],[-0.002429821971211,51.3436598172232],[-0.002536412385334,51.3439152440588],[-0.002571033203056,51.3442764332638],[-0.002631931132945,51.3446596445824],[-0.002702113007411,51.344894674651],[-0.002662293352494,51.3450180635188],[-0.002857662792193,51.3454458141467],[-0.002820977930274,51.345529789374],[-0.002816248665238,51.3455404977533],[-0.002914467770764,51.3456590402631],[-0.003046429749235,51.3459274840673],[-0.003394704957653,51.3468695579619],[-0.003726115516158,51.3477367253342],[-0.003867298850636,51.3482210912757],[-0.003911351507704,51.3483000546814],[-0.004189487961717,51.3488048169007],[-0.004278838283455,51.3490950116997],[-0.004440226567378,51.3494143000676],[-0.004569827813846,51.3497375432475],[-0.00462913250993,51.3499589009389],[-0.004641375121507,51.3505031106688],[-0.00467511542325,51.3509830438249],[-0.004895512200774,51.3517295588172],[-0.005037873257414,51.3520889788515],[-0.004920493066778,51.3521140464817],[-0.005012147241066,51.3522504561032],[-0.005141493382203,51.3523479488199],[-0.005270876477896,51.3524446327279],[-0.005448190500884,51.35262924547],[-0.005323125746806,51.3526648817029],[-0.005314369906403,51.3526674300243],[-0.005304155566003,51.3526708528699],[-0.005293978826673,51.3526733770699],[-0.005288221467875,51.3526750779044],[-0.005349331900237,51.3527894824422],[-0.005415730809561,51.3528148829786],[-0.005448240068791,51.3528271218789],[-0.005501833065755,51.3528828725465],[-0.005512780555461,51.35292800904],[-0.005516806225893,51.352933472171],[-0.005872894631627,51.3532992159077],[-0.005909145599352,51.3533916219666],[-0.006052946936847,51.3535190269676],[-0.006632854409387,51.3539586922073],[-0.006962164791545,51.3543140915855],[-0.007403434001511,51.3547694740642],[-0.007983291011375,51.3553090171395],[-0.008657427873092999,51.3558266930708],[-0.008909608727643001,51.3559731056897],[-0.009316161907435999,51.3561373280863],[-0.010082239600773,51.3565234996905],[-0.011090422900773,51.3569911751802],[-0.011963945624851,51.357319821929],[-0.011995486027184,51.3572861915972],[-0.012246939691826,51.3570206463788],[-0.012519918447112,51.3570864018948],[-0.01279359759467,51.3571332879322],[-0.012993225062672,51.3571672340113],[-0.013176743233185,51.3572422624321],[-0.013614208309456,51.3575545289203],[-0.013977527996422,51.357823284879],[-0.014405465960844,51.3580904368548],[-0.015020201707413,51.3584911064482],[-0.015622583785659,51.3588763720974],[-0.016110844033827,51.3593459170849],[-0.016508921998755,51.3598058464405],[-0.017298250871158,51.3605881253139],[-0.017643725088242,51.3607692723874],[-0.017826804273577,51.3609864249619],[-0.018127989891156,51.3611318514279],[-0.018260630573216,51.3612527636811],[-0.018372707699174,51.3613535475713],[-0.018138412713298,51.361422415691],[-0.018181650467061,51.361485269967],[-0.018254748563583,51.3615889941376],[-0.018327809958051,51.3616936155561],[-0.018342503875573,51.3617181371277],[-0.018399926923886,51.3619187821418],[-0.018466744987337,51.3620692385962],[-0.018603143224463,51.362303490133],[-0.01874057200531,51.3625468399416],[-0.018882334173768,51.3627228335916],[-0.018970319431531,51.3627836543036],[-0.019073464008579,51.3628555175575],[-0.01920502269606,51.3629359515856],[-0.019382730216721,51.3631134507746],[-0.019602891356619,51.3633365265095],[-0.019832568191777,51.3635751356036],[-0.019842188018822,51.3636184521265],[-0.019856399940085,51.363687108093],[-0.01985889322414,51.3636979380372],[-0.019889070416309,51.363797341014],[-0.020002637961988,51.3639269176676],[-0.02011672455624,51.3640143386779],[-0.020349488862863,51.3641459234561],[-0.020640188641957,51.3643019490233],[-0.020834155257212,51.3645668361568],[-0.021157993961972,51.3649185094828],[-0.021394701309344,51.3651949932949],[-0.021641639850188,51.3653305003169],[-0.021873564114644,51.3654845447661],[-0.02211531323747,51.3657404344939],[-0.022219762179651,51.3658509756451],[-0.023554682312953,51.3652457314851],[-0.023596413695972,51.3652778997032],[-0.023768669814952,51.3654148429458],[-0.023702404109395,51.36568532743],[-0.024438807274295,51.3664342004944],[-0.024448144631522,51.3667509076029],[-0.02401491567907,51.3667678974257],[-0.024000713754775,51.3669655362529],[-0.023289995151845,51.3670524753354],[-0.02325242339594,51.3669925070226],[-0.023128248565413,51.3673725941066],[-0.02312820991388,51.3673734918278],[-0.023326274668703,51.367912816709],[-0.023436598421026,51.3681871637826],[-0.023524482588684,51.3683801323872],[-0.023600496742996,51.3685846781856],[-0.023642901994708,51.3688021440571],[-0.023666725356702,51.3690165104785],[-0.023642301324028,51.3692481350948],[-0.023653343365149,51.3694264163091],[-0.023642128434879,51.3695520897023],[-0.023500798593917,51.3695658938701],[-0.02338539104179,51.3695774362943],[-0.023402761597769,51.3697738039307],[-0.023525120640016,51.3697686707449],[-0.023674744623078,51.3697630978515],[-0.023637409180539,51.3700304652004],[-0.023623130235089,51.3701282176577],[-0.023646889765838,51.3705449515832],[-0.023669791606879,51.3709788417984],[-0.023651754397049,51.3711996952147],[-0.023710927211405,51.3712258636044],[-0.023621569995772,51.3712981690832],[-0.023772533448179,51.3713303779436],[-0.023815276361565,51.3713391881014],[-0.023660060579762,51.371639633752],[-0.02362871609315,51.3718999101729],[-0.023588038562908,51.3721788187786],[-0.023837598244531,51.372422246997],[-0.024151611500499,51.3727701475541],[-0.024266199006592,51.3729456764695],[-0.02431632618832,51.3730499069502],[-0.024352015116505,51.3731565913393],[-0.024373758515108,51.3732514439789],[-0.024420632591055,51.3735633824957],[-0.024436680154017,51.3737272736395],[-0.024958926545606,51.374511286926],[-0.024988757010376,51.3745531430507],[-0.025033782763324,51.3746411062567],[-0.025079820543194,51.3748073899869],[-0.025110636958727,51.3748924162361],[-0.025172705672196,51.3750193234625],[-0.025376036175993,51.3752691668374],[-0.025447440192109,51.3753801386517],[-0.025659718027482,51.3756893733718],[-0.025795625250283,51.375939874175],[-0.025839457056133,51.3760557741858],[-0.025888773426235,51.3760440179833],[-0.026125661344427,51.3764508456912],[-0.025910298753237,51.3764804848462],[-0.025945477023729,51.3768308779005],[-0.025985038450731,51.3769799686389],[-0.026025010234276,51.3772215728537],[-0.026078419750928,51.3772827945415],[-0.026124521844236,51.3774148239715],[-0.026183672390563,51.3774086268775],[-0.026393049629008,51.3778851136058],[-0.026503115963262,51.3783015838748],[-0.02660728950677,51.3786180762372],[-0.02666793243314,51.378847441983],[-0.026742810473826,51.3791095013316],[-0.026794762596194,51.3793729726501],[-0.026794685388609,51.3793747698658],[-0.028013996189093,51.3793584123593],[-0.027980635299779,51.3790646881662],[-0.027973689246282,51.3790250148567],[-0.027968163350647,51.3789853663184],[-0.027964139727133,51.3789466413908],[-0.027961573400228,51.3789070426011],[-0.027961775003611,51.3788665011553],[-0.027962050518559,51.3788269492359],[-0.0279651692263,51.3787874460082],[-0.027969825895896,51.3787479677331],[-0.027977206560881,51.3787085361452],[-0.027984704962841,51.3786691065354],[-0.027995006597295,51.3786306224032],[-0.028006647745958,51.3785912624268],[-0.028014989200595,51.3785653313554],[-0.028031015352892,51.3785259542575],[-0.02804707964655,51.3784884662392],[-0.028065867904545,51.3784510249029],[-0.028086194090536,51.3784136085132],[-0.028109362018018,51.3783762398833],[-0.028133911537742,51.378339792828],[-0.028159844006929,51.3783042691677],[-0.028185815053391,51.3782678459917],[-0.028214672240899,51.3782331808059],[-0.028244866558753,51.3781977278533],[-0.028276561604488,51.3781631993717],[-0.028308218030701,51.3781295694893],[-0.028342754744236,51.378095088745],[-0.028377212826679,51.3780624051838],[-0.028411593122963,51.3780288210459],[-0.028447590492893,51.3779961624304],[-0.02848489162086,51.377963526611],[-0.028507249274577,51.3779450232963],[-0.02855784325521,51.3779035301208],[-0.028608434690365,51.3778621277035],[-0.028661947000502,51.3778216727006],[-0.028716840807516,51.3777821401419],[-0.028773117585809,51.377743529151],[-0.028830737296588,51.3777067392106],[-0.028891198654563,51.3776699969823],[-0.028951582798053,51.3776350519399],[-0.029014891666562,51.3776009644327],[-0.029079460430666,51.3775678872387],[-0.02914691293931,51.377536656068],[-0.029158667421329,51.3775305605178],[-0.029218744940085,51.3775054993231],[-0.029280086277399,51.3774813576843],[-0.029341390474735,51.3774581137474],[-0.029404155397033,51.3774366928293],[-0.029468341804518,51.3774152966506],[-0.029533752090411,51.3773957177097],[-0.029599204407974,51.3773779379542],[-0.029666078255393,51.3773601820345],[-0.02973291207203,51.3773433246619],[-0.029801132766322,51.3773272989737],[-0.029869310979197,51.3773122626151],[-0.029937450684825,51.3772981230295],[-0.030006971910001,51.3772849067591],[-0.030076493098762,51.3772716904457],[-0.030146133472092,51.3772584751921],[-0.030211157979931,51.3772478801747],[-0.030309603519314,51.3772315532073],[-0.03040939210125,51.3772170463212],[-0.030507683462401,51.3772043118336],[-0.030608739421302,51.3771934221876],[-0.030708296707004,51.377184305816],[-0.030809235605251,51.3771761109084],[-0.030910098895535,51.3771697122633],[-0.031010923599659,51.3771642130416],[-0.031113052931048,51.3771614316062],[-0.031213722161451,51.3771595248389],[-0.031315735922169,51.3771594390651],[-0.03132141933833,51.3771595344333],[-0.032615652329506,51.3771048290736],[-0.033359524418811,51.377047987504],[-0.034717627340777,51.3769430868021],[-0.035697225206006,51.3768848761121],[-0.036179575513457,51.3768983454926],[-0.036529026683716,51.3769248715776],[-0.03662593410523,51.3769444742476],[-0.036622477131263,51.3770253266228],[-0.036736708324225,51.377041622099],[-0.036764515627805,51.3769953393058],[-0.036924916320168,51.3770097103588],[-0.036325224621183,51.3790031961173],[-0.036902123135927,51.3789535181713],[-0.037140575335655,51.3798639750414],[-0.037660336215024,51.3815894128232],[-0.03782990046968,51.3825652429307],[-0.037871815655206,51.3832313885881],[-0.037443301959066,51.3848509639407],[-0.03712690214252,51.3860318100583],[-0.036695577754579,51.3875830064751],[-0.036509121714508,51.3884125381256],[-0.036498397908599,51.3884609948668],[-0.037088740105597,51.3885733664853],[-0.037773398254214,51.3886945062327],[-0.038215638300159,51.3887396656645],[-0.038644660304641,51.3888251481477],[-0.039103343683444,51.3888543972541],[-0.039249758604645,51.3888586438274],[-0.039537243427743,51.3888562595136],[-0.039850635033562,51.388957693895],[-0.040450016541637,51.3890917764294],[-0.041016356091348,51.3891921310403],[-0.041252751976159,51.3892428302171],[-0.041656702857725,51.3893439737807],[-0.041748134341235,51.3892897630504],[-0.041811520956723,51.3892512660118],[-0.042251237770528,51.3893224390687],[-0.042745977523736,51.3894511675644],[-0.04315273949312,51.3896198699131],[-0.043685221409422,51.3898724779735],[-0.044683260351489,51.3905024334638],[-0.045236572222481,51.3909091132955],[-0.045685651217828,51.3912978717219],[-0.045986768151321,51.3916185345924],[-0.046118932142222,51.3918240036231],[-0.046209407383799,51.3919954247174],[-0.046471742326191,51.3919773220789],[-0.046796800130759,51.3918388980718],[-0.046805058821401,51.3918453287724],[-0.046995204701253,51.3920390871857],[-0.047184010120548,51.3922643791062],[-0.047598797744087,51.3928522368911],[-0.047737570778347,51.3930362402684],[-0.048039597276537,51.3931689312316],[-0.048418839722701,51.3932417743287],[-0.048742973420013,51.3932588581193],[-0.04911332800338,51.3932704181419],[-0.049668636509573,51.3932275164321],[-0.050313994734052,51.3932966906202],[-0.050468148503899,51.3933199319581],[-0.051362013616918,51.393495811565],[-0.051527534050448,51.3936253246238],[-0.051536027356713,51.3936290620317],[-0.051691935359539,51.3935804137771],[-0.051693926733627,51.3937009149998],[-0.051698695176316,51.3939959626834],[-0.052025778031578,51.3940806135359],[-0.052271964822629,51.3942393442662],[-0.052429085473022,51.3943993785019],[-0.052510578562797,51.3945122130733],[-0.053213507550148,51.3947811228351],[-0.053299559832651,51.3947196235067],[-0.05355485827174,51.3948677142069],[-0.053253524113759,51.3950920397324],[-0.053401177300263,51.3951709125968],[-0.051785464341027,51.3964533497509],[-0.050951846919742,51.3971256150317],[-0.050798067987505,51.3975979197422],[-0.050321411868458,51.3979892459518],[-0.050445809072712,51.3980380641496],[-0.050833298064293,51.3977171768889],[-0.051365316991781,51.3979167053041],[-0.052104210616499,51.398291397255],[-0.050628203772511,51.3995635873609],[-0.05111479984389,51.3998198988858],[-0.051468304581794,51.3999920950658],[-0.051907287086694,51.4004877481977],[-0.052450931755493,51.4009923410567],[-0.052964332505922,51.4014612757041],[-0.053206930214489,51.4013034869901],[-0.053540514740197,51.4012334274494],[-0.053931170496558,51.4011760930984],[-0.054640498961702,51.4010620226768],[-0.055234311805055,51.4009576266247],[-0.055697802197053,51.4008430607721],[-0.056080660356413,51.4006982950132],[-0.056827912777982,51.4005030311291],[-0.057438767664406,51.4002703487805],[-0.058192406474349,51.3999240602355],[-0.05883145198552,51.3996019380559],[-0.059239598623096,51.399332621247],[-0.059386780390956,51.3992523527686],[-0.060298515819867,51.3992449941787],[-0.060559581139116,51.3991233706996],[-0.060700781674239,51.3992516616095],[-0.060688569150603,51.3992685408231],[-0.06015212718423,51.3995474224733],[-0.06068829319978,51.4000904121782],[-0.062159888128663,51.4015329868599],[-0.062907463114831,51.4015345751644],[-0.063427387096961,51.4015485734373],[-0.06375308756690801,51.4015638516987],[-0.063773186790914,51.4015650825986],[-0.063914200636962,51.4016645098506],[-0.064476084207907,51.4017376330136],[-0.064430550436906,51.401827770205],[-0.06437738304129501,51.4019302774125],[-0.06444276014295,51.402015865839],[-0.064908093136162,51.4021297346864],[-0.06509581479545599,51.4021786875647],[-0.06528054038431801,51.4022311867714],[-0.065463613829425,51.4022863561614],[-0.065645308746883,51.4023433000941],[-0.065679325728613,51.4023546499286],[-0.065857906921655,51.4024151382155],[-0.066036410406382,51.4024775124818],[-0.066210576581669,51.4025415233951],[-0.066383170686056,51.402609103323],[-0.066552728288438,51.4026784313414],[-0.066719253560537,51.402752203538],[-0.066881396078878,51.4028286908094],[-0.066929373521652,51.4028519576923],[-0.06705315853539601,51.4029160343779],[-0.067172565918793,51.4029827346263],[-0.067290437532544,51.4030521071744],[-0.06740530664301,51.4031224183013],[-0.067520297690586,51.4031926413793],[-0.067635133362724,51.4032637610235],[-0.06773320932657199,51.4033247146282],[-0.067982756958476,51.4034763612432],[-0.068061903351712,51.4034408084356],[-0.068178317085379,51.4035110542324],[-0.068113391840964,51.4035495396307],[-0.068270403386643,51.4036438300663],[-0.068507003636087,51.403796161193],[-0.068571288682512,51.4038403753074],[-0.068662026176324,51.4039039042474],[-0.068632221904986,51.4039303822355],[-0.068886468331485,51.4042097651188],[-0.068952521976097,51.4043808576826],[-0.068954658696466,51.4045355216625],[-0.068947898293077,51.4046621705866],[-0.06915215923620099,51.4048984740506],[-0.069186049926834,51.4050141958336],[-0.06918101088845099,51.405066255699],[-0.069379365823725,51.4053077650693],[-0.06948949007352501,51.4054571088569],[-0.069591127517541,51.4056053233323],[-0.06959531761721401,51.4056747059943],[-0.06959799834613301,51.4057152054459],[-0.07017344332012999,51.406286755005],[-0.07054915866545999,51.4066184806168],[-0.070822644509362,51.4068863977332],[-0.07136151267414501,51.4072685459959],[-0.071821104788567,51.4075908605128],[-0.07213526765028699,51.4078108983412],[-0.072482664297844,51.4081682207898],[-0.072798082139811,51.4085304991663],[-0.073180155004579,51.4090897707669],[-0.073413139665034,51.4095999329734],[-0.073499213731548,51.4100851111912],[-0.07351744510668499,51.4104721688324],[-0.073486457647917,51.4108313563569],[-0.07340794283622901,51.4112634806955],[-0.073267026924628,51.411572311673],[-0.07326545317117,51.4115758819738],[-0.07306057802093199,51.4120015209672],[-0.072877431407728,51.4123896696143],[-0.07277488992172799,51.4126739594112],[-0.07357882001249,51.4128085573581],[-0.073707377350613,51.4128304512459],[-0.07365755337105399,51.4129213305226],[-0.073634247607408,51.4129623919366],[-0.073613863635972,51.4130016138442],[-0.073733922839174,51.4130197707508],[-0.073952472079164,51.4130530342281],[-0.074329360136083,51.4131895915882],[-0.075085377853744,51.4135392439701],[-0.07499845404367,51.4136242107539],[-0.075228745744266,51.4137223935063],[-0.07540164556015,51.4138178338425],[-0.075493946600649,51.4138786859348],[-0.075599795847025,51.4139614276958],[-0.076294932148604,51.4142902928399],[-0.076498757841182,51.4144033210952],[-0.076617599259897,51.4143827978105],[-0.076729993556958,51.4143774516342],[-0.07685263758109299,51.4144019415664],[-0.077292572712826,51.4145764731595],[-0.07764902109133601,51.4147513400479],[-0.077929747103339,51.414882709654],[-0.079010706769888,51.4151675449063],[-0.079376996585177,51.4152464625516],[-0.079699114744745,51.4153155756006],[-0.08010677458230001,51.4154373332678],[-0.080312233006401,51.4155117241015],[-0.080332075071574,51.4155192417324],[-0.08035176168059301,51.4155276551801],[-0.08037014479294,51.4155360472555],[-0.08038995066239001,51.4155444635504],[-0.08040829613603601,51.4155537542702],[-0.080419523289936,51.4155603213198],[-0.080436328139371,51.4155695867794],[-0.080453176977268,51.4155806514933],[-0.080469944189566,51.4155908155984],[-0.08048537172763399,51.4156018561093],[-0.080499257160425,51.4156128722387],[-0.080514527777847,51.4156248094407],[-0.08051449012772,51.4156257080914],[-0.080528419596581,51.4156385225751],[-0.080540846083651,51.4156504131524],[-0.080553197278011,51.4156641010296],[-0.080564164773496,51.4156768669565],[-0.080573673307825,51.4156905073363],[-0.08058318037270799,51.4157041485903],[-0.08059268744296801,51.4157177898432],[-0.080606235647524,51.4157368911419],[-0.08062240076371099,51.4157614291402],[-0.080637262385549,51.4157859457702],[-0.080650584777773,51.4158104380679],[-0.080662446776362,51.4158358047953],[-0.08067430878727599,51.4158611715209],[-0.080683322885559,51.4158865814936],[-0.080692342232678,51.415911900725],[-0.080699901104147,51.4159380961849],[-0.08070611247640801,51.415962471023],[-0.080850205719857,51.4161940810898],[-0.08094071915781,51.4164365887848],[-0.080984843675456,51.4166882254415],[-0.081046531649234,51.4169338567726],[-0.08108015520975601,51.4170908352537],[-0.081086255425714,51.4171179060305],[-0.08109314448744701,51.4171261096175],[-0.081099915662791,51.4171343121718],[-0.081105341924696,51.4171434809833],[-0.081110691742453,51.417151659348],[-0.081114700372395,51.417160715004],[-0.081118589715412,51.4171697687052],[-0.081122479022243,51.4171788233048],[-0.08112502722684301,51.417188753417],[-0.08112607383555499,51.4171977616015],[-0.081128540446728,51.4172067921539],[-0.08112812662438899,51.4172166747928],[-0.081129323756057,51.41722208831],[-0.08112890993366,51.4172319709489],[-0.08112711090161399,51.4172409316073],[-0.081123891903045,51.417249868999],[-0.081120633835309,51.417259705034],[-0.08111729554545501,51.417268640471],[-0.081112652264741,51.4172775545251],[-0.08110943326072299,51.4172864919165],[-0.081104672125123,51.4172954040393],[-0.081101414049948,51.4173052400738],[-0.08109987978950001,51.417307911885],[-0.08107855990109999,51.4173695960148],[-0.08105638435251,51.4174177795678],[-0.081045752990904,51.4174337879689],[-0.08103500377001201,51.417449794438],[-0.081022827931704,51.417465867458],[-0.081010655848246,51.4174818506101],[-0.080996982127329,51.4174969098715],[-0.080982003401567,51.4175119477472],[-0.080967026103337,51.4175269856447],[-0.08095054429148101,51.4175410996031],[-0.080932760309312,51.4175551931204],[-0.08091485706464301,51.4175692837816],[-0.08089711069637701,51.4175824786269],[-0.08087786125113799,51.417594749555],[-0.080857151308815,51.41760789583],[-0.08083801969500901,51.4176201686831],[-0.080815963589978,51.4176314943241],[-0.080793907474333,51.4176428199611],[-0.080771888948324,51.4176532478259],[-0.080748449034988,51.4176636514935],[-0.080741069278519,51.4176671267867],[-0.080340322362426,51.4180337441865],[-0.080032980904566,51.4184010832392],[-0.080020884978996,51.4184152689836],[-0.07970650251674,51.4187779064229],[-0.079543092333155,51.4189703158323],[-0.079321798762976,51.4191375922496],[-0.07900046932935301,51.4193913313008],[-0.078708208315047,51.4196050012807],[-0.078508070979116,51.419748348983],[-0.07863872588969099,51.4198197175711],[-0.07864438184877701,51.4198234065953],[-0.078648573834894,51.4198252730341],[-0.07864853615346,51.4198261717004],[-0.07865419211408101,51.4198298607241],[-0.07865826962011201,51.4198344231376],[-0.078662504140812,51.4198380879431],[-0.078666581648352,51.4198426503563],[-0.07867065915666401,51.4198472127694],[-0.078673470762432,51.4198508542319],[-0.078676089111272,51.4198562919921],[-0.078677361342479,51.4198599091008],[-0.07867859449334599,51.4198644239535],[-0.078679827606757,51.4198689397049],[-0.07867963927763499,51.4198734312387],[-0.078679413229871,51.4198788223375],[-0.078679224900642,51.4198833138713],[-0.078677615052811,51.4198877829849],[-0.078676005242342,51.4198922511999],[-0.07867297247543199,51.419896696971],[-0.078671361226892,51.4199011651623],[-0.078668172919867,51.4199065076661],[-0.07866514018894299,51.4199109525383],[-0.07866210741975301,51.4199153983092],[-0.07865592405934101,51.4199242870185],[-0.078654314207785,51.4199287561318],[-0.078652774513448,51.4199315177558],[-0.078646672762753,51.4199413070879],[-0.078640451751815,51.419951093564],[-0.078632807780198,51.4199608575955],[-0.07862389929947999,51.4199697015979],[-0.07862243869675301,51.419970576921],[-0.078616443657215,51.4199749740947],[-0.078610567949617,51.4199793723264],[-0.078603149986823,51.4199837461561],[-0.078597192626417,51.4199872446625],[-0.07858993163931299,51.4199907217823],[-0.07858255283070401,51.4199941960695],[-0.078575210191415,51.4199967734637],[-0.078441080120683,51.4200422206133],[-0.07838488952829201,51.4202481656153],[-0.07829780687305,51.4205092523639],[-0.07757714280691,51.4217105736477],[-0.076572736538485,51.4231950108339],[-0.07563877862103301,51.4246779021546],[-0.075430428403437,51.4249793397336],[-0.075428967621331,51.4249802141201],[-0.075016987489933,51.425577772338],[-0.07500746717480899,51.4255982932894],[-0.074995103510306,51.4256187684153],[-0.07498273843494099,51.4256392426175],[-0.074970373310663,51.4256597177167],[-0.074955083358445,51.4256792445606],[-0.074939912665054,51.4256987742615],[-0.07492331886674999,51.4257182805741],[-0.074906644944743,51.4257368862767],[-0.074887244132899,51.4257554471643],[-0.074867725432961,51.4257740061112],[-0.074860230696983,51.4257801761812],[-0.074840867612203,51.4257978383902],[-0.074818579614643,51.4258145541357],[-0.07479486998084101,51.4258312456139],[-0.074771194281127,51.4258471291825],[-0.074747558670273,51.4258620241853],[-0.074720960415728,51.4258768704921],[-0.07469590455136101,51.4258917421425],[-0.074668040205724,51.4259056692372],[-0.07464147966878899,51.4259196168551],[-0.074613654496272,51.4259326452899],[-0.074585709997859,51.4259456717568],[-0.074556460295379,51.4259586758649],[-0.07452851576528199,51.4259717023178],[-0.074506529662347,51.425981230438],[-0.074459676369919,51.4260011377006],[-0.074411398461336,51.4260210224264],[-0.074363159760507,51.4260400075867],[-0.07431499649424,51.4260571971841],[-0.07426386915246801,51.4260743371363],[-0.074212936599537,51.426089682586],[-0.074161923917773,51.4261041274054],[-0.0741154088118,51.4261159491707],[-0.074068969203815,51.4261259744763],[-0.074022605137086,51.4261342024238],[-0.073976237276154,51.4261425202197],[-0.073928371419342,51.4261498241476],[-0.073909612158576,51.4261531119739],[-0.07388062194593301,51.4261571308688],[-0.073832911717403,51.4261635380258],[-0.07378666089087101,51.4261690707687],[-0.073737566718723,51.4261745567391],[-0.073694198392613,51.4261792384522],[-0.073607461790898,51.4261886000326],[-0.073520762908252,51.4261970637776],[-0.07343425745294301,51.4262037320578],[-0.073346287982333,51.4262085785133],[-0.073258392610637,51.426211628439],[-0.07317195813197799,51.4262138030371],[-0.073082716671797,51.4262150321083],[-0.073061145839768,51.4262146772869],[-0.07220137535077201,51.4262742527505],[-0.071826652271021,51.4262896621868],[-0.07166015761118801,51.4262806283677],[-0.071243999127886,51.4262575944249],[-0.071172213264761,51.4262555131764],[-0.071100345898023,51.42625253215],[-0.07102867353018801,51.4262477557084],[-0.070956921145185,51.4262420786141],[-0.070922545183793,51.4262388155595],[-0.070850948505106,51.4262322425725],[-0.070779427535182,51.4262238722062],[-0.070709246754928,51.4262146254764],[-0.07063930029094601,51.4262026846903],[-0.070633530726053,51.4262016903748],[-0.070587922727347,51.426191948991],[-0.07054519736404299,51.4261813557773],[-0.070501086729598,51.4261698413392],[-0.070458594229333,51.4261565549552],[-0.07041740410707401,51.4261432900081],[-0.070374792345401,51.426130001629],[-0.070333603708915,51.4261167366768],[-0.07031802958115201,51.4261119845741],[-0.070290991996417,51.4261034482678],[-0.070248460327846,51.4260910604528],[-0.069580614285284,51.4258938667999],[-0.069203021881707,51.4257410117185],[-0.068847700839306,51.4256056936265],[-0.06876990640912101,51.4257095976467],[-0.068709416321126,51.4258813047932],[-0.06868948276501,51.4259124423606],[-0.06863701182072,51.4259951879895],[-0.06787146261422899,51.42590165033],[-0.06795659799940799,51.4257924739824],[-0.067796683392953,51.4257287017937],[-0.067035664867465,51.4254238715924],[-0.06666151587232,51.4252908437338],[-0.066036551739884,51.4250701546113],[-0.065788678075285,51.4252836282904],[-0.065509576891327,51.4252844137239],[-0.06542333747889199,51.4252847881875],[-0.065067896839499,51.4252537450333],[-0.06481298431815,51.4251928953356],[-0.06461132046026501,51.4250619016152],[-0.064497976456763,51.4249880157156],[-0.064473973638329,51.4250452474165],[-0.064363464622964,51.4253113333762],[-0.06346344490933301,51.4253018528953],[-0.063450884164309,51.4252566933699],[-0.06278718967805801,51.4252034661179],[-0.062301269644946,51.4251280019077],[-0.062010320395723,51.4250359831705],[-0.061652142328869,51.4248987088176],[-0.061371140119064,51.4247762853108],[-0.061425777509535,51.4247070655509],[-0.061399579225054,51.4245105526815],[-0.059683140535594,51.4238400466208],[-0.058084272830289,51.4233180071304],[-0.058128687919904,51.423252214796],[-0.058168650036925,51.4231935411543],[-0.057721747164962,51.4231160076241],[-0.056934951059873,51.4229797033839],[-0.056648050909544,51.422960559322],[-0.056404682005953,51.4229664113321],[-0.056388919823108,51.4229661498205],[-0.05583554607501,51.4229551697257],[-0.055759771274355,51.4230807651285],[-0.055135550325035,51.4229786130185],[-0.054805300202905,51.4237097069152],[-0.051838723712867,51.4235893871655],[-0.051782468153826,51.4229850206128],[-0.051757373889462,51.4225933436075],[-0.051751082143944,51.4225042352971],[-0.051036594302622,51.4225283151587],[-0.050508538738025,51.4225662819418],[-0.049897417000903,51.42269735258],[-0.049344027327893,51.4227564701],[-0.048739388549885,51.4228354081964],[-0.048527509740652,51.422845366021],[-0.047215579201972,51.4228154220278],[-0.047219833722736,51.4227489643561],[-0.045969392033079,51.4227622850075],[-0.045959848466056,51.4224437782244],[-0.043619990624316,51.422907480084],[-0.043775460756195,51.4232077445988],[-0.043405450936077,51.4232824812854],[-0.042998808791083,51.4234096469586],[-0.042931638342798,51.4234328888118],[-0.042805170935709,51.4232284052609],[-0.041536355933034,51.4236352368492],[-0.04165340019607,51.4238908102464],[-0.041321299931944,51.4241577564723],[-0.04120580650922,51.4242349410786],[-0.041130833053325,51.424271447267],[-0.041050362295396,51.4243033659706],[-0.040957166959359,51.4243305772635],[-0.040839510907787,51.4243556718141],[-0.040726705089891,51.4243699677378],[-0.040627434340942,51.4243728035918],[-0.040353104956899,51.4243619234655],[-0.039992038645294,51.4243630778161],[-0.039883344136167,51.4243145103626],[-0.039842400396759,51.4242957543406],[-0.039784343052772,51.4242417405176],[-0.039280786052306,51.4241083515745],[-0.038649010213086,51.4239809055705],[-0.038443667201061,51.4239072540997],[-0.038315129828934,51.4240535328638],[-0.037465352803888,51.4250204182131],[-0.035933713830778,51.4249794754569],[-0.034369608973104,51.4250899091454],[-0.034235421993008,51.4250993477421],[-0.034216311106716,51.4247734878188],[-0.033655854208524,51.4247281300988],[-0.033566353278989,51.4246690909747],[-0.033347392211789,51.4246420436398],[-0.033119897499663,51.4246148536551],[-0.032936414971996,51.424667515511],[-0.031853698493059,51.4247230686518],[-0.032007794349742,51.4254568362848],[-0.032027081952274,51.4255434673516],[-0.030851241996918,51.4256900479958],[-0.030346512851246,51.4257193302892],[-0.029649254207344,51.4254433009812],[-0.029443494254638,51.4253795182322],[-0.028708311112463,51.4250479148626],[-0.028071366929362,51.4247377388069],[-0.027702377096447,51.4245894859988],[-0.027739145978638,51.4245370617426],[-0.027799030992832,51.4244490646434],[-0.02751858883476,51.4243129993361],[-0.026916996500583,51.4240222903982],[-0.026008441044626,51.4236086386868],[-0.025959177607845,51.4236509625936],[-0.025821690708656,51.4237701075895],[-0.025601570987712,51.4235361594508],[-0.025517626368614,51.4234475402185],[-0.025124391029846,51.4233284485957],[-0.024707047069025,51.4231991508911],[-0.024342803852855,51.4230733534175],[-0.024098519884706,51.4229352820776],[-0.023825956822078,51.4227516918996],[-0.023479411183429,51.4224824351885],[-0.022832697352971,51.4219687943951],[-0.022638516121496,51.4217361772871],[-0.022548515263716,51.4216204823296],[-0.022525808331707,51.4215805424093],[-0.022180685928962,51.4217788017115],[-0.020933304447579,51.4209196790901],[-0.021616765048717,51.4204824152553],[-0.021306167820106,51.4202793877207],[-0.021171648579633,51.4201979128798],[-0.020768637392997,51.4199051293218],[-0.020979034862076,51.4197288749062],[-0.021096722669115,51.4196014004217],[-0.021166587042938,51.4194829183222],[-0.021189174502232,51.4193250696835],[-0.021239466552652,51.4188276756404],[-0.021282264314823,51.4185999542573],[-0.021358071146106,51.4184124367882],[-0.021452651054969,51.4182844820641],[-0.021608529991818,51.4181073056546],[-0.021945961173454,51.4178530885241],[-0.022528981712826,51.4175409784376],[-0.021709948604183,51.4172906288918],[-0.022200673812456,51.4167485188611],[-0.022001939675012,51.4166219989538],[-0.021810823258105,51.4164866170058],[-0.021495099867522,51.4163040904503],[-0.021103778514203,51.4161725216298],[-0.021001893042713,51.4160358572789],[-0.02069719808601,51.4159632865701],[-0.020436085756169,51.4160155178828],[-0.017820306812731,51.4157428836216],[-0.017962581309216,51.4150798242454],[-0.017483593960802,51.4150483500506],[-0.016992920629022,51.4150211717713],[-0.01643621112975,51.4149937734317],[-0.015819972271352,51.4150103169626],[-0.015197460351204,51.4150375380817],[-0.014280812252543,51.4151183029789],[-0.014188883009472,51.4149494349706],[-0.014307983729723,51.4149208853322],[-0.014543451397475,51.4139006014105],[-0.014398326248142,51.4138648785461],[-0.014406315643612,51.4138145778793],[-0.014217827450824,51.413783515165],[-0.014236231128047,51.4136570633491],[-0.012764189705771,51.4135772771515],[-0.010519004523318,51.4135508827552],[-0.009206591377485,51.4139044913733],[-0.009154316325356999,51.4140132863832],[-0.009087490758934001,51.4140967510739],[-0.008934817017354,51.4141993453123],[-0.008754422446626,51.4143149552794],[-0.008534245039081,51.4144155930646],[-0.008528441434591,51.414418192368],[-0.008272371876895,51.414452500209],[-0.00768227372984,51.4145305791621],[-0.0066220867739,51.4146699790481],[-0.006666679495166,51.4149341561855],[-0.006677139313468,51.4151897518718],[-0.006655430039869,51.4154897520133],[-0.006538621310151,51.4159914089693],[-0.0062629716804,51.4159822269682],[-0.006051991762537,51.4160047104707],[-0.005779170761257,51.4158624270462],[-0.005606530273701,51.4157641915915],[-0.005579025143853,51.4156360600932],[-0.005545674988662,51.4153126470691],[-0.005463565549223,51.4152158615021],[-0.00525155459094,51.415033345034],[-0.005124332039059,51.4148153205235],[-0.004972007535744,51.4146482033683],[-0.003377817917307,51.4150607849593],[-0.003648357795336,51.4156850128321],[-0.0008249667022919999,51.4158905188982],[-0.000853341112408,51.416063619165],[-0.000701893521723,51.4161402420021],[-0.00067689609149,51.4161506045384],[-0.000653437814753,51.4161609924232],[-0.000631402209586,51.4161714054692],[-0.000609288180279,51.4161836148752],[-0.00058721336529,51.4161949256448],[-0.000566600648991,51.4162080599517],[-0.000545909306103,51.4162202936126],[-0.000526598573061,51.416233450121],[-0.000507369354839,51.4162475064177],[-0.000489442132883,51.4162615849211],[-0.000487940949917,51.4162633579144],[-0.000450588348403,51.4162959849583],[-0.000414500057234,51.4163322307591],[-0.000402457070278,51.4163446119257],[-0.000390453307526,51.4163560944592],[-0.000378450975425,51.4163675770157],[-0.000367868491345,51.4163790837929],[-0.000357287399424,51.416390591492],[-0.000346667108838,51.4164029969226],[-0.000337507337207,51.4164145279678],[-0.000328265172143,51.4164279461378],[-0.000323646878939,51.4164359583565],[-0.000317291885787,51.4164484365502],[-0.000311015498247,51.416461815385],[-0.000306042598208,51.4164752155579],[-0.000301188935317,51.416488618664],[-0.000297756564883,51.4165020460176],[-0.000294324192197,51.416515473371],[-0.0002921967475,51.4165289220876],[-0.00029018566763,51.4165423736886],[-0.000291020055342,51.4165558738347],[-0.000253640908645,51.417050788461],[-0.00020013762278,51.417352853018],[-0.000199584840781,51.417365520086],[-0.000197614654991,51.4173780730409],[-0.000197105008933,51.4173897516173],[-0.000195134821136,51.4174023045722],[-0.000194625173957,51.4174139831486],[-0.000194076310685,51.4174265603535],[-0.000192104682952,51.4174391132837],[-0.000188750942542,51.4174507433351],[-0.000185398598181,51.4174623743096],[-0.000180504243649,51.4174739780754],[-0.000174267187022,51.4174864582297],[-0.000172728249002,51.4174891289663],[-0.000161951091867,51.4175051279489],[-0.000149790376787,51.4175202040269],[-0.000137668870251,51.4175343814752],[-0.00012258537315,51.4175485092837],[-0.000106198419994,51.4175626139511],[-8.973278959799999e-05,51.4175758188758],[-7.1963662986e-05,51.4175890015572],[-5.4075282155e-05,51.4176021813022],[-3.6343916079e-05,51.4176144653253],[-1.853531196e-05,51.4176258496297],[5.78186952e-07,51.4176372107667],[2.1271532666e-05,51.4176494442409],[4.1885050171e-05,51.4176598813778],[6.392523179900001e-05,51.4176703831976],[8.596154103e-05,51.4176807960491],[0.000544449428275,51.417937289609],[0.000512442633105,51.4179945653951],[0.001755245659474,51.4185578140524],[0.003240019187924,51.4175836883797],[0.003519861957381,51.4174044915566],[0.005346125311424,51.4183202224706],[0.00560208729388,51.4184489008298],[0.005466838197544,51.4184826814636],[0.005357265986308,51.4185097293435],[0.005355124843716,51.4189864390947],[0.005399791054446,51.4190207368379],[0.005541293231029,51.4191324945916],[0.005254499430017,51.419315501278],[0.005533409461052,51.4197054998297],[0.005645927048963,51.4198133477371],[0.005751408583794,51.4199230237135],[0.005870234180793,51.4200747266788],[0.005927850777414,51.4201745234999],[0.005983444210043,51.4202958418991],[0.006032515288936,51.4204632135458],[0.006050146894963,51.4206031621725],[0.006079836180447,51.420688063324],[0.006150611822886,51.4207606639461],[0.006324210308517,51.4210148189748],[0.00676236301572,51.4209353956252],[0.006897298631234,51.4211920993953],[0.006749046837051,51.4212243062281],[0.006812585690881,51.4213617611236],[0.00687450133212,51.4214946582473],[0.006996958752755,51.4214664892059],[0.007375825041433,51.4213790883613],[0.007528442032765,51.4217766393724],[0.007799290056199,51.4224770300604],[0.008095559167756,51.4224422874696],[0.0085063481189,51.4223633266045],[0.008594755318257,51.4223456289336],[0.00954768523183,51.4220028545185],[0.010174206656128,51.4226782630087],[0.010716652034835,51.4232697020951],[0.011012514997787,51.4234903771778],[0.011288158841399,51.4236097170527],[0.011644666879392,51.4237015961771],[0.011839838380115,51.424051661176],[0.012251223945179,51.424183143658],[0.012252686400036,51.4241840178585],[0.013371264482081,51.4246954295274],[0.013539512471602,51.4250855129852],[0.01442195911472,51.4252321824765],[0.014286982428773,51.4256311596298],[0.014133939487661,51.4261751024175],[0.015926679155445,51.4262163014277],[0.016222018343415,51.4262570736659],[0.016912664854663,51.4266210821918],[0.017141366568172,51.4267187391966],[0.017398714471645,51.4268150934145],[0.017473142700868,51.4268380864265],[0.017667829343417,51.4268823850872],[0.018166904983915,51.4269439187028],[0.018430334820262,51.4270140044499],[0.019581363534428,51.4269860878153],[0.020089665587318,51.4268667467626],[0.020931913459507,51.4268189651115],[0.020939104007562,51.4268179418431],[0.021079662348326,51.426810124499],[0.021502984055796,51.4269502685449],[0.021497948613274,51.4270619274125],[0.021496809785103,51.4271033024006],[0.022486164783781,51.4276149663692],[0.023017253703246,51.4278504327404],[0.023479066023501,51.4281446319079],[0.024058177534211,51.4284224198109],[0.024275479134344,51.4284896920592],[0.025147918607941,51.4289926547423],[0.025490510750688,51.4289318946016],[0.026087606101483,51.4287389798557],[0.026935914702125,51.4282405375786],[0.027240497612879,51.428071553948],[0.028469321421465,51.4271671610486],[0.029147214168808,51.4267534636213],[0.02970173484665,51.4263796583314],[0.030013277070345,51.4260738902952],[0.030110936394306,51.4259733039303],[0.030248618529944,51.42589800617],[0.030806931131285,51.4256770576361],[0.031043793890608,51.4255676753256],[0.031494886618954,51.4253602702295],[0.032187946686617,51.4249318214662],[0.032923256336349,51.4244856431633],[0.03373754520959,51.4241010242447],[0.034292432689426,51.4236066345309],[0.034592309395703,51.4233946504044],[0.034986910538058,51.4231153025],[0.036212089216653,51.4223655373093],[0.03857015430053,51.4246384984502],[0.038847179578255,51.42469121819],[0.038941381024116,51.4247372287855],[0.038991085565227,51.4248838960739],[0.0390292245849,51.4253858839339],[0.039033650637136,51.4255171559884],[0.039083267362381,51.4257284693219],[0.039047162137229,51.4260789184859],[0.038883021012632,51.4260763787677],[0.038730533845595,51.4260745363306],[0.038688398462699,51.4265186812657],[0.038590145158671,51.4265096011047],[0.038448535532635,51.4271730464617],[0.038433911243776,51.4275878530953],[0.037905757856463,51.4275826513863],[0.037862287024239,51.42777050013],[0.037857478808772,51.427790363107],[0.038294937198763,51.4279562729654],[0.038224039969262,51.4289800865147],[0.038295160894741,51.4289950328456],[0.038247836697286,51.4292242143455],[0.038116837843564,51.4294495466398],[0.038222888129355,51.4294710783322],[0.038053449955873,51.4300612842481],[0.037898843728615,51.4304012064487],[0.037764144897249,51.4307353873978],[0.037686111960191,51.4310182362646],[0.037589425210316,51.4313670408054],[0.037629576169819,51.431461642481],[0.037560012176646,51.4317749114779],[0.037525176550991,51.4320902746765],[0.037701976296563,51.4333786868963],[0.03588633688614,51.4326026193458],[0.034672421654157,51.432093977075],[0.03380075584615,51.4317404036139],[0.033301708557534,51.4322634977217],[0.032478166346929,51.4318928974994],[0.032260994928196,51.4321205266729],[0.032185396299896,51.4323628724484],[0.031650447789147,51.4325960989241],[0.031192867444441,51.4320734071392],[0.031073279494593,51.4322013459498],[0.031391655258378,51.4325996837975],[0.030194093096186,51.4331383690457],[0.029746817483041,51.433433898296],[0.028608903095109,51.4340534359321],[0.028942912954193,51.4342212605024],[0.029011007256084,51.4343926977376],[0.029020573715243,51.4346434549483],[0.028994154128996,51.4349227040821],[0.028964370161278,51.4355491310114],[0.028666488475501,51.4364248249204],[0.028019232820416,51.4364944582297],[0.027674636271276,51.4365112063945],[0.027680027050077,51.4365686510402],[0.027283388444468,51.4365782060773],[0.026297924016323,51.4361923810655],[0.025771112621161,51.4359919170846],[0.025526616539013,51.4357344314988],[0.025402335989637,51.4356898284203],[0.025366953590683,51.4359305720454],[0.025061928042348,51.4368099746278],[0.025055371674591,51.4368226743832],[0.024867531736371,51.4371973106483],[0.024801422671523,51.4375239932232],[0.024697754627331,51.4379457240561],[0.024698253802124,51.4382173140462],[0.024817200946653,51.4382377363433],[0.025994500709578,51.4384404535394],[0.026015622801,51.4383654687131],[0.028714860252992,51.4387513304271],[0.028743820140251,51.4393407785771],[0.028771539974983,51.4395112066834],[0.028625319070313,51.4398473696618],[0.028508481774112,51.4401344756406],[0.02846449457773,51.4403761785674],[0.028516576282593,51.4406091180478],[0.028667081901947,51.4409212682515],[0.028973577788825,51.4413746556102],[0.028921454900006,51.4416281866971],[0.029529726882549,51.4417481130565],[0.030004648087536,51.4432758920162],[0.030337036512514,51.4443447500017],[0.030514238260402,51.4443192063272],[0.0307849609976,51.4442246162435],[0.031254139892067,51.4441931161101],[0.031710220388103,51.4440295943725],[0.032002583280103,51.4440002535591],[0.032311631657078,51.4438951030005],[0.03265989942931,51.443831527346],[0.032997619873327,51.4436907264565],[0.033355311219057,51.4435802349334],[0.0335428775518,51.4434942702383],[0.033934554294826,51.4433048819091],[0.034022845141427,51.4432197404923],[0.034239997123969,51.4431187873091],[0.034868804357282,51.4427949208645],[0.035173050396073,51.4426781599602],[0.035496857173109,51.442483651527],[0.035853923316153,51.4424235090565],[0.036073772873977,51.4423513647181],[0.036199978131302,51.4423105140726],[0.036888532296995,51.4420341454274],[0.037612212460604,51.4418380750821],[0.038238109963903,51.4415457938079],[0.038675980988366,51.4414248104614],[0.039058940715079,51.4413336400031],[0.039570555544961,51.4411556302033],[0.039828379889242,51.4410333692625],[0.039929835259083,51.4409857530587],[0.040346063313088,51.4407015143907],[0.041343667454619,51.4400986911177],[0.041842176050765,51.4397896386174],[0.042310569462351,51.4394838065093],[0.042505806317702,51.4392168957711],[0.042527137514483,51.4389531049245],[0.042532621104996,51.4388818945808],[0.042622519211909,51.4385754629303],[0.042768352197524,51.4382969158728],[0.042969890497301,51.4380730482309],[0.043020170867735,51.4380380084308],[0.043388516815851,51.4377797661857],[0.043661093523532,51.4376644319605],[0.044423470637954,51.4371762636436],[0.044903013254137,51.4368315671527],[0.045209321419867,51.4366031707216],[0.04514953078335,51.4364226074525],[0.045099716928594,51.4362741459707],[0.04582860988831,51.4356507966253],[0.046413695611756,51.4350272562316],[0.046439754585473,51.4349998303661],[0.046458940959213,51.4349779184846],[0.048009865480633,51.4336252791035],[0.049278496117736,51.4327181685697],[0.050407518584706,51.4319394438288],[0.051173155819099,51.4313666582386],[0.051865662605411,51.4307690760117],[0.05248027641919,51.4301674603839],[0.052953238454429,51.4296475295012],[0.053401036047874,51.4290137687527],[0.053913027738828,51.4284337241565],[0.054462931738808,51.4278979650039],[0.054786985134005,51.4275865191704],[0.054853254872585,51.4275224242575],[0.055978565249133,51.4265710125245],[0.056531732990432,51.4261089102014],[0.057817115928969,51.4251979246185],[0.058225770715198,51.4248831923933],[0.05865127540946,51.4245555773912],[0.058822459993305,51.4246514648591],[0.058900521443506,51.4246941463872],[0.059178511139671,51.4247018504129],[0.059280134527317,51.4247225412686],[0.059862451687333,51.4248751251559],[0.060670484097933,51.4250596104938],[0.060926012501362,51.4250793922646],[0.061363504426085,51.4240627213039],[0.06173418916147,51.4237351599171],[0.062966558413367,51.4241091431212],[0.06322829168662999,51.4242035206343],[0.06328998895827601,51.4242330015192],[0.063368131185926,51.4242747793342],[0.06341426997148,51.4243090295066],[0.063506136339299,51.4244000128633],[0.063555118992052,51.4244657679342],[0.064029997723034,51.4247892399542],[0.064463252417704,51.4250496117271],[0.064220245729165,51.4253704380618],[0.064805063122922,51.4255147723198],[0.064740553548664,51.425617499148],[0.066605543377559,51.4260154425259],[0.06643021132390101,51.426337783862],[0.066961142080744,51.4267222872731],[0.06856772338349,51.4276076287372],[0.069955047441283,51.4284770418294],[0.07015137675281501,51.4285877514871],[0.071257026550305,51.4292103046435],[0.07166278382140299,51.4294351739061],[0.071969095783429,51.4296537075453],[0.072263961570703,51.4299389726999],[0.073497750317379,51.4312597698835],[0.073061413562828,51.4313789707247],[0.073354151971948,51.4317739533144],[0.074048573758311,51.4315728655908],[0.07433107267271601,51.4314905470112],[0.074862234215615,51.4308309582555],[0.075346927281361,51.4320318504898],[0.076566572771403,51.431738733122],[0.080705568386073,51.4308199420581],[0.08160463015083801,51.4305656384287],[0.08270318890624501,51.4302043929608],[0.082988974209498,51.4300671552798],[0.083154360251148,51.4299715238489],[0.083273119359175,51.4298938932055],[0.083359465194764,51.4298312238727],[0.083680826113466,51.4295584051536],[0.08385333748606499,51.429397915432],[0.083941379508254,51.4293100414312],[0.084246501578031,51.4289646873588],[0.084383430604409,51.4288121121628],[0.084384811292417,51.4288111883048],[0.084874992610512,51.4282035272289],[0.085016332543638,51.428022912614],[0.085110167634336,51.4279034680777],[0.085393018266917,51.4275746897051],[0.087289345397344,51.4256577903855],[0.087549462025609,51.4254319029846],[0.087958518020997,51.425096375305],[0.08896289495915601,51.4242528852634],[0.089147017738718,51.4240644001502],[0.089337257271526,51.4238514418231],[0.089766640196067,51.4235200389405],[0.090337503760875,51.4231366616058],[0.091129286235569,51.4226801118847],[0.091762466941829,51.4222775439025],[0.092212062704882,51.4219790330129],[0.092899563812728,51.4214757825984],[0.093260071970223,51.421244489552],[0.093619360863182,51.4210177116471],[0.09421902477985999,51.4206688599029],[0.09488415206319201,51.4202424133374],[0.09568620262444399,51.4197892387696],[0.096556151809886,51.419345540137],[0.097428580404492,51.4188605238404],[0.098611825572458,51.4182205988779],[0.099536967785331,51.4176967784781],[0.101099485850478,51.4169871101088],[0.102301408406218,51.4163818964231],[0.102680859644103,51.4161259639644],[0.102869804618272,51.4159823234925],[0.103013376763514,51.4158835489863],[0.103241508119892,51.4157463069256],[0.10336796178103,51.4156802047655],[0.103539932468359,51.4156033956094],[0.103754658972556,51.4155203353578],[0.104043821361347,51.4154288342278],[0.104537675748633,51.4152527420611],[0.105714777836183,51.4147980728386],[0.106430346765151,51.4145649428603],[0.106939343037487,51.4144064586534],[0.107145962861999,51.4143020494793],[0.107622329385488,51.4141225712095],[0.10835164591639,51.4139386288147],[0.108905160966485,51.4138099001654],[0.110375046219402,51.413529806013],[0.111332832878761,51.4133740919992],[0.111843086010427,51.4133361234043],[0.111991326003069,51.4133082771775],[0.112359814233628,51.4132225158653],[0.112520087250048,51.4131727849914],[0.112573586849008,51.4131475460297],[0.112683896863808,51.4130763297129],[0.112745147404423,51.4130006042264],[0.113102720867089,51.4129276238909],[0.113504254526324,51.4130597314337],[0.113680260417748,51.4130709396324],[0.113859025772202,51.4130803000577],[0.114800564456425,51.413071395184],[0.11617434934069,51.4131743423655],[0.117171193161445,51.4131797073834],[0.117879361561902,51.4131911829116],[0.118378216625768,51.4132199241764],[0.118881280927557,51.4132755584132],[0.119096608821829,51.4132986350784],[0.120013443323252,51.4134403719239],[0.12075556394594,51.4135653951418],[0.12181205304024,51.4137729182823],[0.122041788670116,51.4138253979802],[0.122475279070241,51.4139326244829],[0.123098981853707,51.4141093164016],[0.124626076868163,51.4146023685845],[0.124962461587648,51.4146915677407],[0.125289575274437,51.4147674489261],[0.125498928522418,51.4148148978453],[0.125729564647964,51.4148584538509],[0.125918449449077,51.4148685129486],[0.126111646402551,51.4148488241737],[0.126218751682438,51.4148315967203],[0.126373788848907,51.4147945291243],[0.126759307529243,51.4146724518751],[0.126871297327015,51.4147630225177],[0.126936480792541,51.4148031961138],[0.127076180456629,51.4148699766655],[0.127200624104502,51.4149171663429],[0.127311485505458,51.4149502170314],[0.127443702780678,51.4149783841745],[0.12757842883473,51.4149993128833],[0.127691050020333,51.41500895623],[0.127806224383675,51.4150122587836],[0.127926910589311,51.4150091677002],[0.128864128151203,51.4149705654268],[0.129585664308196,51.4148990146591],[0.130326084812826,51.4147389170491],[0.131801487020987,51.4145187837366],[0.131949840052669,51.4144936080647],[0.132347502059569,51.414416245337],[0.132771361681578,51.4143158386877],[0.132904835147483,51.4142792450385],[0.133534960752037,51.4140681814791],[0.133896546303487,51.4139877848629],[0.134045307186855,51.4139383246162],[0.134202431322041,51.4138851154758],[0.137249121215368,51.4125129976543],[0.138024268296239,51.4121760024928],[0.138520821831001,51.4119672596714],[0.138928658602921,51.411709785592],[0.140264913931311,51.4113463494176],[0.140963535086398,51.411125902969],[0.14212331151716,51.4106783706031],[0.14400990837495,51.4100314233294],[0.145235892857336,51.4095557656434],[0.145912779316714,51.4093634681439],[0.146619122738444,51.4091851025571],[0.147374136281828,51.4090030537402],[0.14799058746125,51.4088092454315],[0.148627247123754,51.4085862063089],[0.148829245472368,51.4085096790104],[0.1488138602791,51.4084874847635],[0.148769029529924,51.4082670512373],[0.148982937999488,51.4081992955615],[0.149163563246358,51.4080942998795],[0.149372058544161,51.4079718011313],[0.149716232658171,51.4077694039691],[0.15001439721234,51.4075643443997],[0.150134014680137,51.4074478797096],[0.150359978376954,51.4072378506197],[0.150390131170331,51.4072058304214],[0.150443544361668,51.4071490192351],[0.150499846916955,51.4070931433272],[0.15055768949011,51.4070372400185],[0.150571474086949,51.4070252986905],[0.150615623297202,51.4069858297459],[0.150659814528408,51.4069472584194],[0.150705426552348,51.4069086609926],[0.150751199841972,51.4068709589939],[0.150799781273224,51.4068350040435],[0.150848477695303,51.4067989579267],[0.150899944281844,51.4067638492731],[0.150920870889068,51.4067499790651],[0.150964144927913,51.4067222125524],[0.151008883403521,51.4066953193446],[0.151053739588061,51.4066684230568],[0.151099940923681,51.4066424013625],[0.1511476066538,51.4066172520707],[0.151195272286339,51.4065921018594],[0.151244560879911,51.4065687213458],[0.151295313786287,51.4065462114334],[0.151345948875619,51.4065237045592],[0.151348748476527,51.4065227547432],[0.151402424524101,51.4065018997938],[0.151457567750317,51.4064820071168],[0.151512753085272,51.4064630129481],[0.151569520587586,51.4064448881073],[0.151626170278099,51.4064267662998],[0.151682944889481,51.4064113382999],[0.151742564081426,51.4063958589285],[0.151800803064389,51.4063813032843],[0.151860666435683,51.4063685163956],[0.151921873506063,51.4063566032062],[0.151981821102459,51.4063456124268],[0.151998869838606,51.4063426022534],[0.152055856451465,51.4063316658203],[0.152084430474763,51.4063266462151],[0.152113003012433,51.4063216257306],[0.152141499910354,51.4063175059387],[0.152170073913833,51.4063124863121],[0.152198570799937,51.406308366506],[0.152228649946604,51.4063051169378],[0.152257306802386,51.4063018934889],[0.152285845806036,51.4062986712984],[0.152314546265716,51.4062963463446],[0.152344632640525,51.4062957936456],[0.152373375229938,51.4062943663145],[0.152402200736536,51.4062947360744],[0.152432371423461,51.4062959795258],[0.15244106081245,51.4062967192009],[0.152469972073928,51.4062988850907],[0.152498806275935,51.4063019517001],[0.152527758287307,51.4063050161381],[0.152556634678257,51.4063089812692],[0.152585672456066,51.4063138418398],[0.152613170148299,51.4063187306992],[0.152709442714765,51.4063466310276],[0.152822430988041,51.4062735291849],[0.152811983385198,51.4062656300543],[0.152801449977168,51.4062559338776],[0.152791079438456,51.4062471340185],[0.152781968323173,51.4062374117066],[0.152774320244155,51.4062285618229],[0.152765166951249,51.406217940974],[0.15276060776325,51.4062117313672],[0.152756048576588,51.4062055217603],[0.152751328006519,51.4061984167069],[0.15274676882263,51.4061922070997],[0.152742048213396,51.4061851011474],[0.152738911313936,51.4061788654069],[0.15273573079405,51.4061717311568],[0.152733966943497,51.406164481845],[0.1527322087065,51.4061573214618],[0.152731871314182,51.4061501349721],[0.152731365268161,51.4061393561359],[0.152732280023642,51.4061285502947],[0.152734617058401,51.4061177183203],[0.152738374976896,51.4061068611377],[0.152740831250694,51.4060960269722],[0.152743377726526,51.4060896868047],[0.152744715677944,51.4060878644983],[0.152748473549341,51.4060770064167],[0.152753813686621,51.4060670185728],[0.152760533956303,51.4060561069579],[0.153214116382247,51.4056116408285],[0.153232831346613,51.405611296871],[0.153260033381257,51.4056098976148],[0.153287311022283,51.4056075976512],[0.153314428703095,51.4056044022088],[0.153340124117585,51.4056012329009],[0.153348729029732,51.4056001763321],[0.15336155561538,51.4055981419578],[0.153374424396813,51.405597006118],[0.153387368825945,51.4055949704741],[0.153400196886944,51.4055929369675],[0.153412981270073,51.4055900040514],[0.153425765693649,51.4055870720324],[0.153438550115446,51.4055841400119],[0.153448449250829,51.4055803617119],[0.153461149313691,51.4055756335154],[0.153473849331574,51.4055709044188],[0.153486626429605,51.4055652754916],[0.153497863460277,51.405559674871],[0.153509056851662,51.4055531757396],[0.153520251676326,51.4055466765806],[0.153524388983479,51.4055439025961],[0.153534162980207,51.4055374295524],[0.153543893379175,51.4055300588966],[0.153786549367091,51.4053403031036],[0.153997076359062,51.4051682189694],[0.154299622788939,51.404936094015],[0.154653289873754,51.4045986482885],[0.155148387159316,51.4040292494003],[0.155249291885564,51.4039716517832],[0.155141163488034,51.4038755538359],[0.154967170193307,51.4036593851566],[0.155127793459358,51.4036213669496],[0.155129215654878,51.4036213407854],[0.155301737363339,51.4035893068952],[0.155513882275348,51.4035755137884],[0.155964882595699,51.4030142044342],[0.156215889176604,51.4026975214021],[0.156434983987646,51.4024938080107],[0.156503533603927,51.402393649285],[0.156536071634527,51.4023192380875],[0.156626109706902,51.4020937148424],[0.156754391664082,51.4018269398917],[0.156934502925306,51.4016212459896],[0.157098020513794,51.4013979654406],[0.157222245419438,51.4011357592315],[0.157301264102633,51.4009508066034],[0.157360955788754,51.4007833814095],[0.157372688066818,51.4005439257168],[0.15742239920317,51.4003181697298],[0.15752543294042,51.4000617664612],[0.157664110251157,51.3995880487925],[0.157786515053782,51.3992270058292],[0.157707096574656,51.3990054280748],[0.15770461224339,51.3986781495322],[0.157718115460295,51.398413506179],[0.157728572213138,51.3981471213272],[0.157921897208793,51.3979179116476],[0.15798513754869,51.3977656254883],[0.158030808207547,51.3975750068066],[0.158085439770612,51.3974211715164],[0.158221486700466,51.3971965228051],[0.158463206574207,51.396804513077],[0.158650190390411,51.3964710466103],[0.158797636089155,51.3961814600234],[0.1589049404181,51.3959582395693],[0.158980385904027,51.3958211007771],[0.15909384466381,51.3956958481995],[0.159278621426497,51.3954667042585],[0.159361873523649,51.3954651697712],[0.159516129624851,51.3952599632177],[0.159459970858561,51.395227735066],[0.15966026613986,51.3949632445166],[0.159917087483432,51.3946482670796],[0.16028309537883,51.3942710430904],[0.160486114437559,51.3940343698071],[0.160725813858672,51.393811494086],[0.160840273298536,51.3937077064939],[0.160990515895579,51.3935709855489],[0.161288498398687,51.3933073875531],[0.161621521760715,51.3930530314416],[0.161915934608622,51.3928345377618],[0.162185586359241,51.3926388845239],[0.16238421879548,51.3924904806248],[0.161686045889944,51.3924079815411],[0.161313287299685,51.3923699084654],[0.161209318401082,51.3923592404174],[0.160703827141912,51.3923388973983],[0.160230822992885,51.3923062656189],[0.159582946684958,51.3922849459047],[0.159010636405631,51.3922802106873],[0.158274155970752,51.3922397499627],[0.157416407109762,51.3923095773334],[0.156380573623819,51.3923502221918],[0.155531782309281,51.3923964076692],[0.154849314030516,51.3924359311269],[0.154604690415048,51.3924611065489],[0.15460326856868,51.3924611326965],[0.153760937747606,51.392491004525],[0.153132993479393,51.3924953539162],[0.152616788810099,51.3925219206233],[0.152173679955425,51.3925453438685],[0.151405411433805,51.3925927164294],[0.150676856413392,51.3926276682533],[0.15000226623423,51.3926508377999],[0.148911952171279,51.3926951135599],[0.14806296111429,51.3927701069262],[0.147924727484812,51.3926098327062],[0.147534080494457,51.3921566166135],[0.147986933917586,51.391820087072],[0.14862401368592,51.3913659144447],[0.149419533385773,51.3910734388106],[0.149731659650554,51.3909562354316],[0.149835584106756,51.3908725187503],[0.149745197940391,51.3907545195984],[0.149678284432281,51.390644270282],[0.149619051589543,51.3905158111096],[0.149541589315026,51.3903347342045],[0.149523333753414,51.3900994397106],[0.149484571893482,51.3899778862317],[0.149429563025406,51.3898763184413],[0.149329950598267,51.3897459922882],[0.149056989761998,51.3894722190189],[0.148905825705546,51.3893140701073],[0.148833362544432,51.3892092271229],[0.148740316377898,51.3890014661189],[0.148662646746658,51.3888158074622],[0.148654325798035,51.3886685233393],[0.14875811505731,51.3885541539907],[0.149080602903419,51.3881651711648],[0.149416737279358,51.3878550493251],[0.14890184559132,51.3875722307437],[0.149020745804239,51.3874414904657],[0.14934408621254,51.3871316032363],[0.149706264589609,51.3867022432997],[0.149925893867922,51.3865741481425],[0.149937042522322,51.3865667511565],[0.150113034761176,51.3864583367215],[0.150125561487646,51.3864500151474],[0.150143847723083,51.3864406894603],[0.150160713712529,51.3864313898462],[0.150178835854266,51.3864210779744],[0.150195701830249,51.3864117783545],[0.150213870283065,51.386402454817],[0.150230734809883,51.3863931552177],[0.150246019223044,51.3863829853635],[0.150261380747581,51.3863719157255],[0.150276623032323,51.3863608473751],[0.150297245851372,51.3863406902758],[0.150316404907909,51.3863196616835],[0.150334101596782,51.386297760674],[0.150348838610877,51.3862759140071],[0.1503650729193,51.3862531405784],[0.150374303083243,51.3862376880816],[0.150387779658942,51.3862167629175],[0.150399674725722,51.3861949684263],[0.150410149550907,51.3861732000129],[0.150420580813244,51.3861505331327],[0.1504296353902,51.3861287907961],[0.150435981498323,51.3861124919865],[0.150441063033701,51.3860970257365],[0.150444567241073,51.3860807791124],[0.150449652982563,51.3860654027108],[0.150453199303363,51.3860500545778],[0.150456822693776,51.3860338057642],[0.150458948783621,51.3860184837112],[0.150459611091703,51.3860022892732],[0.150460316953812,51.3859869933005],[0.150459559036012,51.3859708249429],[0.150458843237074,51.385955555077],[0.150457295263782,51.3859528866074],[0.150457084715139,51.3859483950476],[0.150456874208665,51.3859439043862],[0.150456663660125,51.3859394128264],[0.150456453111638,51.3859349212665],[0.150457622147383,51.3859295060065],[0.150457411640998,51.3859250153452],[0.150457201092545,51.3859205237853],[0.150456990544145,51.3859160322254],[0.150456780037915,51.385911541564],[0.150456569489617,51.3859070500042],[0.150454937324103,51.3859025854498],[0.15045472677604,51.3858980938899],[0.150453096047051,51.3858936293091],[0.150451463840221,51.3858891638562],[0.150448454964772,51.3858856229491],[0.150445325464174,51.3858820842571],[0.150442274513962,51.3858776457568],[0.150437884663016,51.3858750294744],[0.150431914718916,51.3858715429429],[0.150427526305088,51.3858689266338],[0.15042155636247,51.3858654401019],[0.150415746291477,51.385862849899],[0.150409860542622,51.3858611594514],[0.150404051908765,51.3858585692216],[0.150396744544835,51.3858569057782],[0.150389438575278,51.3858552414096],[0.15038367062383,51.3858535496969],[0.150376406771736,51.3858527838192],[0.150369260673349,51.3858520157786],[0.150361995427772,51.3858512508249],[0.150354731576322,51.3858504849458],[0.149992140260006,51.3858409603596],[0.149943545067327,51.3856637595182],[0.149889586035871,51.3853392191535],[0.149800079338305,51.3848705921401],[0.14982900415959,51.3845066827111],[0.149826492811044,51.3842684911762],[0.149811962978814,51.383837054641],[0.149787012061376,51.3836711926622],[0.149877751259271,51.3836452529774],[0.150063819393892,51.3835977837111],[0.150466296361083,51.3834473557685],[0.150474313504718,51.3827889396908],[0.150461789435772,51.3822459754145],[0.15045053250843,51.3816364604047],[0.1504460253461,51.3816338462475],[0.150423889133653,51.3816216665056],[0.150401795028238,51.3816103852738],[0.150398911298661,51.3816095389648],[0.150391521848245,51.3816060784705],[0.150384250184222,51.3816026167112],[0.150376901353403,51.3816000538573],[0.150360860763721,51.3815940553311],[0.150353513413371,51.3815914933481],[0.150346122532989,51.3815880328777],[0.150338850874864,51.3815845711161],[0.150331461432441,51.3815811106186],[0.150325567737749,51.3815767233563],[0.150322482121416,51.3815740830807],[0.150316546376141,51.3815687982033],[0.150311956474634,51.3815643869891],[0.150307440829177,51.3815590760235],[0.150302926620597,51.3815537650313],[0.150299714724948,51.3815484292157],[0.150296620615244,51.3815430921355],[0.150293484412362,51.3815368565421],[0.150291811836685,51.3815314933476],[0.150290139219302,51.3815261292547],[0.150289844646975,51.3815198414591],[0.150289592168518,51.3815144521769],[0.150289297596383,51.3815081643814],[0.150289045118088,51.3815027750991],[0.150290170641791,51.3814964612157],[0.150291338258993,51.3814910458454],[0.150373289139328,51.3810929782877],[0.149608639608714,51.3810898521012],[0.149583698111029,51.3809266870025],[0.149606889628035,51.3807463662335],[0.14965567811498,51.3803156440799],[0.149613463969304,51.3800897743271],[0.149964111294925,51.3799970269721],[0.150244833176372,51.3799469178153],[0.151133497143538,51.3798964236827],[0.151117325693416,51.3796449022369],[0.150974756272312,51.3790854488667],[0.15165748234279,51.3788733128016],[0.152353071518984,51.378690513228],[0.152189909307189,51.3783365077251],[0.152427895291047,51.3782647031244],[0.152559197485796,51.3782146387551],[0.15275788878768,51.3781614467634],[0.153030157024534,51.3781132828074],[0.153236398206212,51.3780366665089],[0.15320203989006,51.3779482940398],[0.153133813232688,51.3776581726187],[0.153075443022054,51.3774847436405],[0.152857157718687,51.3771200670211],[0.152760906597953,51.3769068786709],[0.152748968714011,51.3768064064591],[0.152637973140972,51.3765844992092],[0.152575057571643,51.3763140592066],[0.152589397185836,51.3760386904217],[0.15263109984131,51.3758238628778],[0.152628943130388,51.3756565929763],[0.152598146470997,51.3753964369177],[0.152537158664709,51.375230245156],[0.151952786718369,51.3753632687584],[0.151736328550587,51.3754365678724],[0.15158596926851,51.3753250637459],[0.151329720357045,51.3750978215111],[0.15109937701761,51.3749050756471],[0.150798219027295,51.3745814698667],[0.150563179404645,51.3743186830698],[0.150445782014339,51.3742354322683],[0.150184220620405,51.374051349885],[0.149902236303252,51.373858651979],[0.149815824998652,51.3737919116416],[0.149753260415393,51.3737157434574],[0.14968382791608,51.3736118309782],[0.149918804794166,51.3734761598021],[0.150217776474217,51.3733232193949],[0.15058139980715,51.3731114598272],[0.150891046106773,51.3729133692434],[0.1508358603916,51.3727165025917],[0.150822273827286,51.3725782083173],[0.150819225063976,51.37245239693],[0.150842074759889,51.3723584754438],[0.150985611486757,51.3722613451719],[0.15098297238564,51.3721139490818],[0.150736194796491,51.3715698848008],[0.150280660255974,51.3705243020838],[0.150127018618233,51.3701575257938],[0.150871419619422,51.3699774225029],[0.152057807519665,51.3696938815163],[0.15183275220501,51.3689687102018],[0.151640344887932,51.3684497210321],[0.151640302795453,51.3684488224954],[0.151639797812165,51.3684380427499],[0.151637913830273,51.3684281885881],[0.151636031242643,51.3684183335013],[0.151632727523085,51.3684085045628],[0.15162930609504,51.3683986777901],[0.151624582681738,51.3683888749733],[0.15161985783507,51.3683790721828],[0.151613595584469,51.3683692976796],[0.151607494573667,51.3683604195207],[0.151601232328418,51.368350645017],[0.15159359104657,51.3683417951976],[0.151586068913017,51.3683329431855],[0.151578513212712,51.3683258895138],[0.151570998170201,51.3683197344048],[0.15156502340489,51.3683135509557],[0.151558971586659,51.3683082682352],[0.151551574259475,51.3683021109593],[0.151545522444374,51.3682968282381],[0.151538168646602,51.3682915694717],[0.15152927596968,51.3682863381193],[0.151521804465847,51.3682810815177],[0.151512953924653,51.3682767495994],[0.151504222488186,51.3682724145898],[0.151495371908277,51.3682680817717],[0.151485142332814,51.3682646745349],[0.15147637732748,51.368262137864],[0.151461845152205,51.3682579104751],[0.151447355025854,51.3682545807227],[0.15143136958742,51.3682521777905],[0.151415501860205,51.3682497726906],[0.151399558470346,51.3682482673924],[0.151383732833161,51.368246760825],[0.151366529549145,51.3682461780126],[0.151343407769808,51.3682457040821],[0.151314807666245,51.3682471295544],[0.151284710808065,51.3682494818661],[0.151256278953906,51.3682544996742],[0.151227770032154,51.3682604182039],[0.151199304621683,51.368267235237],[0.151172418688642,51.368274922518],[0.151143995342767,51.3682826380742],[0.15111715143066,51.3682912229806],[0.151090307550318,51.3682998087792],[0.15107899626083,51.3683036131953],[0.151052075258959,51.3683130988148],[0.151025274826464,51.36832258221],[0.150999774932829,51.3683320416762],[0.15097589798584,51.3683432690062],[0.150950559294086,51.3683536248066],[0.150719237090142,51.3684756559078],[0.15024219691078,51.3687209696565],[0.149519048019824,51.3691092585509],[0.149359314761787,51.3689512639374],[0.149194382354858,51.368742928709],[0.149105368308945,51.3685899274415],[0.149029041313262,51.3684321082882],[0.148992303744947,51.368292530701],[0.148975859305847,51.368186655019],[0.148920515396167,51.3680797854972],[0.148845134086929,51.3680029532874],[0.148715726522362,51.3679081437505],[0.148523112410618,51.3677840178347],[0.148153669071218,51.3675641519495],[0.147663679163504,51.367253895263],[0.147411275379843,51.3670796155133],[0.147336818752257,51.3669945830698],[0.147294470530268,51.3669477100938],[0.147795386621738,51.366691273453],[0.148347833238558,51.3663717622928],[0.147912812222261,51.3658841889495],[0.147349775615043,51.3652425274126],[0.146557056318961,51.3643874175531],[0.145797872523993,51.3636055006268],[0.145224889482335,51.363026049548],[0.145217335584528,51.3630189953751],[0.145048650200139,51.3628511788684],[0.1452608197126,51.3626566865599],[0.145391515895445,51.3625031583701],[0.145349881534558,51.362440987993],[0.145305287696519,51.3623788718914],[0.145259354167511,51.3623184881513],[0.145247204794624,51.3623043264532],[0.145195636675519,51.3622450352941],[0.145139774929371,51.3621876206018],[0.145082492424422,51.3621302328469],[0.145025210062912,51.3620728450677],[0.144972264910973,51.3620144775061],[0.144953975891941,51.3619931457353],[0.14490211633751,51.3619275673167],[0.144851632992508,51.3618610634281],[0.144805411151873,51.3617944813715],[0.144760568459336,51.3617269755946],[0.144720057349727,51.3616584011244],[0.144691749698297,51.3616076745855],[0.144658756039016,51.3615453455804],[0.1446284417955,51.3614820681196],[0.144601085733151,51.3614187364076],[0.144575103123064,51.3613543911593],[0.144553386052403,51.3612900567204],[0.14453458521746,51.3612247703879],[0.144520547606441,51.3611701857883],[0.144510771283771,51.3611155221479],[0.144501150434337,51.3610616650396],[0.14449421314653,51.3610069502376],[0.144488814431445,51.3609522063229],[0.144487718999768,51.3608982837109],[0.144490959105133,51.3608433813815],[0.144492792931743,51.3608217704935],[0.144498089718884,51.3607830136181],[0.144499334732844,51.3607766973823],[0.144503259032907,51.3607694326997],[0.144507179178569,51.3607620790609],[0.144511222602105,51.3607548121935],[0.144512474300985,51.3607511928801],[0.144519190361578,51.3607402815411],[0.144527206714368,51.3607293454575],[0.144535384141343,51.3607193057343],[0.144542224571621,51.360711089158],[0.144551822889609,51.3607010233768],[0.144562839230074,51.3606909315903],[0.144575319850629,51.360681712265],[0.14458779903099,51.3606724929644],[0.144601739578718,51.3606641452783],[0.144615799288998,51.3606557963043],[0.144629741303846,51.3606474494868],[0.144645144686022,51.3606399742829],[0.14466062379908,51.3606315983728],[0.144674607753208,51.360624150095],[0.144706951631884,51.3606091714815],[0.14472235503068,51.3606016971652],[0.14473645661401,51.3605942458224],[0.144751818004943,51.3605858720578],[0.144760247054003,51.3605812226915],[0.144866626477865,51.3605208323306],[0.144975973283671,51.3604630853771],[0.145043372378378,51.3604302921402],[0.145100927182665,51.3604022650457],[0.145158565802329,51.3603760341136],[0.145201052866877,51.3603626679133],[0.145219539940401,51.3603578331041],[0.145236531834762,51.3603539250355],[0.145255060908454,51.3603499896647],[0.145273631860881,51.3603469510395],[0.14529208516324,51.3603439154689],[0.145312117569654,51.360341750242],[0.145330730481771,51.3603396101533],[0.145349267711893,51.360338371665],[0.145369385441715,51.3603380025949],[0.145389501735877,51.3603376335476],[0.145370975574232,51.3601869315526],[0.14534936447522,51.3600919376072],[0.145304312932595,51.3600199402155],[0.145263519848305,51.3599478646907],[0.145230484752536,51.3598846381954],[0.145195449675779,51.3598115577106],[0.14516462689195,51.3597374115998],[0.145135348394534,51.3596633270876],[0.14510465052474,51.3595892677096],[0.145093416523623,51.3595643001466],[0.145048396875303,51.3594625437598],[0.145046306298799,51.3594481975574],[0.145045635104632,51.3594338244188],[0.145046425335499,51.359420324687],[0.14504575414196,51.3594059515484],[0.145046545765795,51.3593924508916],[0.145044789354664,51.3593852912848],[0.145038600046005,51.359344047998],[0.145035752978001,51.3593135324899],[0.145037964022762,51.3593000057954],[0.145040217026129,51.3592873776467],[0.14504396660854,51.3592738227292],[0.145049058444328,51.3592611425046],[0.145059362664962,51.3592357798431],[0.145064531696339,51.3592221997851],[0.145068204105248,51.3592095455973],[0.145070582935445,51.3591996121863],[0.145076497416719,51.3591715430693],[0.145079456660648,51.3591436171958],[0.145081407855217,51.3591220041237],[0.145081821949278,51.3591004192487],[0.145080815196129,51.3590788604382],[0.145079850404433,51.3590582001735],[0.145075884233845,51.3590366947526],[0.145073835632131,51.3590232470959],[0.145069736913499,51.3589963500116],[0.145062839949414,51.3589704044744],[0.145055825265545,51.3589444601972],[0.14505265085769,51.3589373257037],[0.144959187200441,51.3587213776332],[0.144918724115835,51.3586537915174],[0.144904273887436,51.3586207917241],[0.144896007537329,51.358598466711],[0.144884397571309,51.3585654148157],[0.144874320464434,51.358532243971],[0.144868851013576,51.3585089692342],[0.144848253432123,51.3584356236944],[0.145374968253195,51.3583351560583],[0.146023576183325,51.3581972955555],[0.145654057847511,51.3572058500596],[0.145280539956298,51.3561893022014],[0.145114198342419,51.3557643118767],[0.14486715079451,51.3555206132416],[0.144287046687721,51.3549080239501],[0.144266597293249,51.3549012062226],[0.14424472718806,51.3548944145454],[0.144224479371555,51.35488939175],[0.144202651222821,51.3548834986136],[0.144188090091293,51.3548810685828],[0.14416488317873,51.3548761000412],[0.144143138888753,51.3548720030926],[0.144120017264565,51.3548688307147],[0.144098356866943,51.3548665308552],[0.144075275755413,51.3548642570436],[0.144052196081143,51.3548619832011],[0.144046516087511,51.3548620873544],[0.144011554862268,51.3547295772174],[0.143994218427727,51.3546651631029],[0.143853595162094,51.3540220357719],[0.143770967725409,51.353667433421],[0.143760988774001,51.3536388463003],[0.143752548184952,51.3536102309735],[0.143746828417118,51.3535815657609],[0.14374118167927,51.3535519108585],[0.143737000273375,51.3535232174401],[0.143734239546727,51.3534944979741],[0.14373419761349,51.3534935994249],[0.143732814237203,51.3534639562869],[0.143732891990993,51.3534351847785],[0.143734390415888,51.3534063872226],[0.143737266141039,51.3533766650962],[0.143766672090663,51.3532988070782],[0.143631478360852,51.3530179915797],[0.143140325156653,51.3530494718824],[0.143125505140066,51.3530389544082],[0.143004862173866,51.3528846393761],[0.142945875761837,51.3527904206673],[0.142876534284197,51.3526595295689],[0.142831351719549,51.3525514808129],[0.142812395741584,51.3524852975757],[0.142791250406885,51.3523391385431],[0.142784485386067,51.3521027194122],[0.142720032098842,51.3518277991952],[0.142711118473892,51.3516975992061],[0.14271075909771,51.3515680509344],[0.14277321907458,51.3513051894117],[0.142784696251239,51.3510892047763],[0.142740615445325,51.3510377766424],[0.142731224377571,51.3510217664182],[0.142717658131998,51.3510076295471],[0.142706889784978,51.3509925429804],[0.142694658940809,51.3509765838968],[0.142685267860558,51.35096057277],[0.142676037795875,51.3509454580098],[0.14266806588808,51.3509294208738],[0.142661472713502,51.3509124600519],[0.142655039075347,51.3508963947247],[0.142648487776664,51.3508803315535],[0.142646901029924,51.3508767642588],[0.142640174133039,51.3508544108768],[0.142633329619886,51.3508320605491],[0.142629442482794,51.3508096551257],[0.142625556784802,51.3507872496758],[0.142621550556156,51.3507648464346],[0.142620498982563,51.3507422991153],[0.14262016381027,51.3507351125111],[0.142611478478097,51.3507316762013],[0.141798505098677,51.3504228194979],[0.141121999532444,51.3501429247273],[0.141436679775835,51.3498089131353],[0.141342922927029,51.3496443036247],[0.141031498846269,51.349433242641],[0.140819997204503,51.3493031553203],[0.140635333673124,51.3492534917443],[0.140525832241581,51.3492159371761],[0.140423249968701,51.3491718733555],[0.140321793215662,51.3491188873599],[0.139965473483962,51.3488996547803],[0.13985847651272,51.3488242939382],[0.139757225641482,51.3487452305506],[0.139679228086102,51.3486747329447],[0.139532657639258,51.3485199889534],[0.139255571754834,51.3481509584442],[0.138713741289683,51.3475250532495],[0.138646879961998,51.347413892531],[0.139493150956975,51.3473003229486],[0.139441074892701,51.3469829169586],[0.13923841227496,51.3470117988976],[0.139135720652972,51.3470262646237],[0.139035825214225,51.347039779784],[0.138935850282506,51.3470515885021],[0.138858655303912,51.3470592941053],[0.138576742899638,51.3470797347526],[0.138549616511987,51.3470820295497],[0.138522372423886,51.347084325594],[0.138495287807542,51.3470875180368],[0.138476638152302,51.3470887584568],[0.138468001936352,51.3470889164104],[0.138440876929942,51.3470912102579],[0.138413591054467,51.3470926086189],[0.138386339199133,51.3470922077081],[0.138377702982011,51.3470923656551],[0.13835045116871,51.3470919656345],[0.138323039842565,51.3470906683038],[0.138295705835119,51.3470884711304],[0.138268210925105,51.3470853775715],[0.138218424965177,51.3466923185977],[0.138209747010715,51.3466915779732],[0.138177910239969,51.3466867660478],[0.138146030229474,51.3466810555826],[0.138115570691605,51.3466753191331],[0.138085188440479,51.3466686819406],[0.138073545609888,51.3466652984566],[0.138043002514386,51.3466577657719],[0.138012417578298,51.3466493336231],[0.137983329047299,51.3466399765806],[0.137954122831831,51.3466306207834],[0.13792499247584,51.34662036427],[0.137895743085425,51.346610110825],[0.137867991412458,51.3465989297665],[0.137857684073927,51.3465937240978],[0.137823926845902,51.3465781580258],[0.1377930076945,51.3465625400531],[0.137763465828811,51.3465459984679],[0.137734001270787,51.3465285561398],[0.137704377278774,51.3465102173972],[0.137677709014308,51.3464918246079],[0.137649623182293,51.346473457729],[0.137618369840943,51.3464506530426],[0.137604973758008,51.3464401087884],[0.137590035431506,51.346429503695],[0.137576639361497,51.3464189594372],[0.137561822882625,51.3464084420446],[0.137548385026331,51.3463969992255],[0.13753640803901,51.346386429919],[0.137524390693481,51.3463749620271],[0.1375123718775,51.3463634932615],[0.13750177356469,51.3463519994253],[0.137491132024594,51.3463396070565],[0.137481910944857,51.3463271887191],[0.137474227978118,51.3463147422626],[0.137466427361943,51.3463022979564],[0.137464881557999,51.3462996291488],[0.137461422989908,51.3462889032098],[0.13745670489801,51.3462791005171],[0.137451944969387,51.3462683983678],[0.137448484972163,51.3462576724545],[0.137445187338523,51.3462478437942],[0.137441846432985,51.3462371157036],[0.137439924545646,51.3462263616722],[0.137438045932565,51.3462165070709],[0.137436125481945,51.3462057530132],[0.13743562404786,51.3461949730148],[0.137436541671093,51.3461841679744],[0.137437459252181,51.3461733620355],[0.137438420064304,51.3461634546282],[0.137442177149697,51.3461525976804],[0.137444674627702,51.3461426621817],[0.137445969727995,51.3461399414399],[0.137449768564763,51.3461299821513],[0.137455101321478,51.346119904889],[0.137460320602332,51.3461099196332],[0.137467076546701,51.3460999062855],[0.137473714876727,51.3460898959869],[0.137481933017487,51.3460807543306],[0.137490151196759,51.3460716135724],[0.137498369372732,51.3460624728137],[0.137196587789995,51.34587199381],[0.137181070451749,51.3458794693214],[0.137150110270788,51.3458935214531],[0.137119151505265,51.345907573551],[0.13708673048902,51.3459207530452],[0.137059982117287,51.3459311317829],[0.137043120199421,51.3459377334291],[0.137026142058548,51.345944337197],[0.137007742034788,51.3459509669503],[0.136990881536546,51.345957568563],[0.136972441149852,51.3459632997265],[0.136954000758418,51.3459690308872],[0.136935636270602,51.345973862235],[0.136917112339881,51.345977797172],[0.136897167919924,51.3459817571677],[0.136887196467769,51.3459837380497],[0.136874385519133,51.3459857699257],[0.136861574611091,51.345987802699],[0.136850182669731,51.345989808639],[0.136837329974967,51.3459909428512],[0.136824519021895,51.3459929747219],[0.136811666325492,51.3459941089313],[0.136798694540633,51.3459952453157],[0.136785800059468,51.3459954809639],[0.136772905578125,51.3459957166107],[0.136760011096594,51.3459959522561],[0.136747073397477,51.3459952893677],[0.136734095392902,51.3459937287918],[0.136720999694408,51.345992169466],[0.136709440701358,51.3459905829555],[0.136696420917688,51.3459881238168],[0.136684820103321,51.3459856378468],[0.136673179027396,51.345982255088],[0.136661536476615,51.3459788714556],[0.136651314371746,51.345975461865],[0.136639671824303,51.3459720782303],[0.136629407942327,51.3459677700791],[0.136619142669269,51.3459634628516],[0.136608954706041,51.3459582548885],[0.136602991070883,51.3459547674761],[0.136592685416792,51.3459495607628],[0.136583798815324,51.3459443290171],[0.136576408532745,51.3459381706059],[0.136567480156435,51.3459320403002],[0.136559972225275,51.3459258840378],[0.13655400095672,51.3459196996954],[0.136546451250936,51.3459126448733],[0.136200077222376,51.3459369556019],[0.136196736636422,51.3459262274667],[0.136190104902394,51.3459083675812],[0.136186388504363,51.3458895551101],[0.136181253103105,51.3458707685639],[0.136178957153046,51.345851930141],[0.136176537940632,51.3458330040378],[0.136175660999704,51.3458141396897],[0.136176322151228,51.3457952472408],[0.136176864215189,51.3457763569676],[0.136180245719697,51.3457574148182],[0.136182249990229,51.3457393971528],[0.136187169579113,51.3457204269026],[0.136191971511822,51.3457014588017],[0.136195762972435,51.3456888026186],[0.136199479943108,51.3456770462192],[0.136203313171092,51.3456652885949],[0.136208449179517,51.3456535071686],[0.136212206480923,51.3456426493541],[0.136217460136712,51.3456308657779],[0.136224134223246,51.3456190562501],[0.136230730949568,51.3456081465581],[0.136237445366544,51.3455972356148],[0.136245580170927,51.3455862978208],[0.13625359731949,51.3455753621759],[0.136263192927149,51.3455652979127],[0.136279796606215,51.345550608996],[0.136388528346614,51.3454802037124],[0.136392619706232,51.3454765325673],[0.136496929795612,51.3454027015187],[0.136513666308816,51.3453934051761],[0.136551548033677,51.3453729332796],[0.136587851346165,51.345351591791],[0.13662269385601,51.3453293776632],[0.136657653941062,51.3453071604775],[0.136691034221254,51.3452840746275],[0.136722953657688,51.3452601152428],[0.136751956349209,51.3452371084743],[0.13679334582897,51.3452003899954],[0.136833270255009,51.3451627081229],[0.136870156824161,51.3451233748425],[0.136905743392181,51.3450840644102],[0.136939748655809,51.3450438844448],[0.136972334839344,51.3450037295063],[0.136981764459321,51.3449900709308],[0.137011678324509,51.344953562111],[0.137026576414116,51.3449353087737],[0.137040012294453,51.3449161828374],[0.137053608993761,51.344897952383],[0.137067046286688,51.3448788264178],[0.137079058980932,51.3448596365568],[0.137089656870577,51.3448405624858],[0.137100253316721,51.3448214884403],[0.137109390470498,51.3448015426434],[0.137115686762128,51.3447816478708],[0.137118317240838,51.3447771040803],[0.137124446455994,51.344753616871],[0.137128997257273,51.3447292591891],[0.137132246692773,51.3447049243938],[0.137133958114317,51.3446806186091],[0.137134249132089,51.3446563387862],[0.13713312114135,51.3446320840002],[0.137130616016107,51.3446087546065],[0.137126648705665,51.3445845526159],[0.137126314485,51.3445773659459],[0.137122559530034,51.3445602620209],[0.137120554267588,51.3445477117592],[0.137115168005437,51.344523535703],[0.137106865093031,51.3445003122778],[0.13709863944416,51.3444761872181],[0.137088917588407,51.3444529897259],[0.137079197135909,51.3444297913078],[0.137066635946454,51.3444066457087],[0.137017477490781,51.3442762800031],[0.136958176904844,51.3441747808173],[0.136682799016938,51.344274305147],[0.13655140907048,51.3443207602776],[0.136271558072001,51.3444157797442],[0.135988540128013,51.3445063615908],[0.135982903167996,51.3445073638889],[0.135770360565626,51.3445705846006],[0.135554976019612,51.3446312497011],[0.135337880252443,51.344688259338],[0.135319356698635,51.3446921940126],[0.134829536946765,51.3448422913894],[0.134761564972501,51.3448624127887],[0.134680907412811,51.3448872614623],[0.134529239801415,51.3449305780978],[0.134427135380679,51.3449576158674],[0.134273834075097,51.3449963763521],[0.134119031537945,51.3450333662927],[0.13396268175323,51.3450676872004],[0.133904312562286,51.3450804409654],[0.13366409049133,51.3451315761289],[0.133420742548699,51.3451791714473],...
To leave a comment for the author, please follow the link and comment on their blog: pacha.dev/blog.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Continue reading: Creating a London Population Map with D3po