Skip to main content

Overview

Route Planner API helps you solve the Chinese postman problem: building the most efficient route to cover all road segments within an arbitrary polygon. Such routes can be useful in scenarios where you need not to reach a target point, but to drive along specific streets: for example, for street cleaning equipment or patrol services.

Route Planner API returns route geometry in WKT (Well-known text) format with information about maneuvers during detour, route length, and travel time.

Key features

Route Planner API builds routes for car detours and uses statistical traffic data to predict road conditions and route duration.

You can specify the following parameters for route building:

  • Detour area as one or more arbitrary polygons.

    The polygon can be of any shape, but must fit within a 5×5 km square.

  • Start time of movement. Specify this to use statistical traffic information for a particular date and time.

  • Starting point (can be located outside the detour polygon). If the point is not specified, the algorithm chooses the optimal starting point for detour.

  • Filtering criteria for roads in the detour route: length, road class, or other attributes.

See more information about parameters in examples and in the API Reference.

Example usage

Detour area on the map:

Detour polygon

Calculated route to cover roads inside the area:

Detour route

Getting started

1. Get an access key

To get an access key and work with the API, contact 2GIS sales department.

2. Send a request

To build a detour route, send a POST request to the /route_planner/2.0.0 endpoint. To do this:

  1. In the request URL, specify the API key value for the key parameter:

    https://routing.api.2gis.com/route_planner/2.0.0?key=API_KEY
  2. In the request body, pass the JSON with the necessary parameters. For example:

    {
    "geometry_objects": [
    {
    "type": "polygon",
    "area": {
    "points": [
    {
    "lat": 25.132541671698505,
    "lon": 55.18823146820069
    },
    {
    "lat": 25.136582259755453,
    "lon": 55.1880168914795
    },
    {
    "lat": 25.145906183442673,
    "lon": 55.19574165344239
    },
    {
    "lat": 25.140039964526505,
    "lon": 55.20445346832276
    },
    {
    "lat": 25.128034704234782,
    "lon": 55.195097923278816
    },
    {
    "lat": 25.132541671698505,
    "lon": 55.18823146820069
    }
    ]
    }
    }
    ],
    "locale": "en"
    }

Where:

  • geometry_objects - array of geometries for detour. For each geometry, you need to specify the following parameters:

    • type - geometry type: polygon.
    • area - array of points with coordinates (latitude and longitude). Specify at least three points.
  • locale - language of texts in the response.

Additionally, you can configure road filters, specify start point and movement time, and other parameters: see more details in examples.

Request example:

curl --request POST \
--url 'https://routing.api.2gis.com/route_planner/2.0.0?key=API_KEY' \
--header 'Content-Type: application/json' \
--data '
{
"geometry_objects": [
{
"type": "polygon",
"area": {
"points": [
{
"lat": 25.132541671698505,
"lon": 55.18823146820069
},
{
"lat": 25.136582259755453,
"lon": 55.1880168914795
},
{
"lat": 25.145906183442673,
"lon": 55.19574165344239
},
{
"lat": 25.140039964526505,
"lon": 55.20445346832276
},
{
"lat": 25.128034704234782,
"lon": 55.195097923278816
},
{
"lat": 25.132541671698505,
"lon": 55.18823146820069
}
]
}
}
],
"locale": "en"
}'

Response example:

response.json
{
"error_message": "",
"route": {
"algorithm": "with traffic jams",
"filter_road_types": [
"highway"
],
"id": "8803902110186140255",
"maneuvers": [
{
"comment": "start",
"icon": "start",
"id": "1037688770540507124",
"outcoming_path": {
"distance": 128,
"duration": 31,
"geometry": [
{
"color": "ignore",
"length": 128,
"selection": "LINESTRING(55.199331 25.143526, 55.199282 25.143468, 55.199192 25.143363, 55.199157 25.143351, 55.199117 25.143352, 55.199080 25.143363, 55.199053 25.143387, 55.199038 25.143422, 55.199028 25.143459, 55.199001 25.143491, 55.198958 25.143515, 55.198910 25.143529, 55.198788 25.143534, 55.198751 25.143542, 55.198732 25.143559, 55.198632 25.143709, 55.198619 25.143741, 55.198616 25.143774, 55.198628 25.143805, 55.198694 25.143883, 55.198741 25.143938)",
"style": "living_zone"
}
],
"names": [
"Al Thanya street"
]
},
"outcoming_path_comment": "150 m straight",
"type": "begin"
},
{
"comment": "U-turn on Al Thanya street",
"icon": "turn_over_right_hand",
"id": "7383713617323740150",
"outcoming_path": {
"distance": 128,
"duration": 31,
"geometry": [
{
"color": "ignore",
"length": 128,
"selection": "LINESTRING(55.198741 25.143938, 55.198694 25.143883, 55.198628 25.143805, 55.198616 25.143774, 55.198619 25.143741, 55.198632 25.143709, 55.198732 25.143559, 55.198751 25.143542, 55.198788 25.143534, 55.198910 25.143529, 55.198958 25.143515, 55.199001 25.143491, 55.199028 25.143459, 55.199038 25.143422, 55.199053 25.143387, 55.199080 25.143363, 55.199117 25.143352, 55.199157 25.143351, 55.199192 25.143363, 55.199282 25.143468, 55.199331 25.143526)",
"style": "living_zone"
}
],
"names": [
"Al Thanya street"
]
},
"outcoming_path_comment": "150 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Thanya street",
"icon": "crossroad_right",
"id": "7008006574018870298",
"outcoming_path": {
"distance": 272,
"duration": 62,
"geometry": [
{
"color": "ignore",
"length": 248,
"selection": "LINESTRING(55.199331 25.143526, 55.199483 25.143417, 55.199521 25.143378, 55.199579 25.143317, 55.199653 25.143249, 55.199859 25.143108, 55.199944 25.143071, 55.200006 25.143047, 55.200071 25.143014, 55.200082 25.143007, 55.200179 25.142938, 55.201060 25.142317, 55.201151 25.142253, 55.201202 25.142223, 55.201246 25.142207, 55.201325 25.142212)",
"style": "normal"
},
{
"color": "fast",
"length": 24,
"selection": "LINESTRING(55.201325 25.142212, 55.201470 25.142106, 55.201509 25.142075)",
"style": "normal"
}
],
"names": [
"Al Thanya street"
]
},
"outcoming_path_comment": "250 m straight",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Roundabout, exit 2 to Al Yazzi street",
"icon": "ringroad_forward",
"id": "17852769408286365351",
"outcoming_path": {
"distance": 191,
"duration": 22,
"geometry": [
{
"color": "free",
"length": 22,
"selection": "LINESTRING(55.201509 25.142075, 55.201537 25.142047, 55.201557 25.142021, 55.201574 25.141993, 55.201591 25.141956, 55.201600 25.141930, 55.201606 25.141894)",
"style": "normal"
},
{
"color": "free",
"length": 85,
"selection": "LINESTRING(55.201606 25.141894, 55.201608 25.141849, 55.201609 25.141820, 55.201607 25.141793, 55.201602 25.141773, 55.201565 25.141692, 55.201540 25.141661, 55.201368 25.141440, 55.201290 25.141342, 55.201200 25.141227)",
"style": "living_zone"
},
{
"color": "fast",
"length": 84,
"selection": "LINESTRING(55.201200 25.141227, 55.201290 25.141342, 55.201368 25.141440, 55.201540 25.141661, 55.201565 25.141692, 55.201628 25.141743, 55.201656 25.141761, 55.201689 25.141774, 55.201753 25.141791)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "200 m straight",
"ringroad_exit_number": 2,
"turn_angle": -6,
"type": "ringroad"
},
{
"comment": "Exit 2 to Al Thanya street Street",
"icon": "ringroad_exit",
"id": "12500984475341925860",
"outcoming_path": {
"distance": 2255,
"duration": 230,
"geometry": [
{
"color": "free",
"length": 260,
"selection": "LINESTRING(55.201753 25.141791, 55.201801 25.141789, 55.201842 25.141785, 55.201894 25.141770, 55.201969 25.141732, 55.202170 25.141602, 55.202446 25.141425, 55.202878 25.141126, 55.202965 25.141066, 55.203253 25.140871, 55.203383 25.140784, 55.203457 25.140732, 55.203697 25.140548, 55.203862 25.140422)",
"style": "normal"
},
{
"color": "fast",
"length": 1995,
"selection": "LINESTRING(55.203862 25.140422, 55.204055 25.140275, 55.204260 25.140141, 55.204349 25.140083, 55.204417 25.140039, 55.204479 25.140000, 55.204576 25.139935, 55.204962 25.139686, 55.205345 25.139435, 55.207171 25.138262, 55.207880 25.137806, 55.208090 25.137669, 55.208296 25.137521, 55.208668 25.137267, 55.208919 25.137099, 55.209216 25.136904, 55.209581 25.136669, 55.209939 25.136439, 55.210635 25.136019, 55.210791 25.135918, 55.210864 25.135871, 55.210918 25.135836, 55.211968 25.135154, 55.212680 25.134692, 55.212827 25.134597, 55.212997 25.134487, 55.213180 25.134369, 55.213255 25.134319, 55.213287 25.134300, 55.213460 25.134196, 55.213522 25.134145, 55.213561 25.134110, 55.213593 25.134070, 55.213610 25.134037, 55.213627 25.134015, 55.213643 25.134000, 55.213667 25.133990, 55.213701 25.133983, 55.213757 25.133969, 55.213804 25.133946, 55.213840 25.133913, 55.213853 25.133875, 55.213853 25.133836, 55.213836 25.133791, 55.213793 25.133730, 55.213731 25.133635, 55.213477 25.133246, 55.213416 25.133150, 55.212792 25.132132, 55.212669 25.131900, 55.212595 25.131698, 55.212173 25.131219, 55.211603 25.130587, 55.211008 25.129979, 55.210509 25.129490, 55.209902 25.128960, 55.209421 25.128585, 55.209267 25.128472)",
"style": "normal"
}
],
"names": [
"Al Thanya street"
]
},
"outcoming_path_comment": "2.3 km straight",
"type": "ringroad_exit"
},
{
"comment": "Keep right on Umm Suqeim street",
"icon": "crossroad_keep_right",
"id": "2148663715697529503",
"outcoming_path": {
"distance": 512,
"duration": 30,
"geometry": [
{
"color": "free",
"length": 512,
"selection": "LINESTRING(55.209267 25.128472, 55.208737 25.128167, 55.207893 25.127662, 55.207741 25.127566, 55.207017 25.127073, 55.206614 25.126799, 55.206456 25.126689, 55.205142 25.125762)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "500 m straight",
"turn_angle": 8,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "Keep right on Umm Suqeim street",
"icon": "crossroad_keep_right",
"id": "15880304978409273030",
"outcoming_path": {
"distance": 338,
"duration": 20,
"geometry": [
{
"color": "free",
"length": 338,
"selection": "LINESTRING(55.205142 25.125762, 55.204914 25.125642, 55.204704 25.125530, 55.203734 25.124959, 55.203509 25.124848, 55.203245 25.124752, 55.202949 25.124682, 55.202639 25.124631, 55.202108 25.124578)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "350 m straight",
"turn_angle": 8,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "Keep right on Umm Suqeim street",
"icon": "crossroad_keep_right",
"id": "14215709179964217388",
"outcoming_path": {
"distance": 773,
"duration": 54,
"geometry": [
{
"color": "free",
"length": 673,
"selection": "LINESTRING(55.202108 25.124578, 55.201829 25.124543, 55.200995 25.124434, 55.200811 25.124419, 55.200629 25.124425, 55.200443 25.124461, 55.200288 25.124508, 55.200139 25.124573, 55.199999 25.124656, 55.199553 25.124970, 55.199321 25.125122, 55.198590 25.125573, 55.198390 25.125688, 55.198190 25.125787, 55.196845 25.126733, 55.196360 25.127073)",
"style": "normal"
},
{
"color": "fast",
"length": 100,
"selection": "LINESTRING(55.196360 25.127073, 55.195574 25.127625)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "800 m straight",
"turn_angle": -2,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "Keep right on Al Wasl road",
"icon": "crossroad_keep_right",
"id": "10473419311135017438",
"outcoming_path": {
"distance": 300,
"duration": 28,
"geometry": [
{
"color": "free",
"length": 124,
"selection": "LINESTRING(55.195574 25.127625, 55.195472 25.127735, 55.195392 25.127855, 55.195389 25.127862, 55.195356 25.127949, 55.195331 25.128036, 55.195329 25.128058, 55.195325 25.128111, 55.195338 25.128202, 55.195366 25.128290, 55.195411 25.128393, 55.195548 25.128655)",
"style": "normal"
},
{
"color": "fast",
"length": 176,
"selection": "LINESTRING(55.195548 25.128655, 55.196568 25.129947)",
"style": "normal"
}
],
"names": [
"Al Wasl road"
]
},
"outcoming_path_comment": "300 m straight",
"turn_angle": 17,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "Keep right on Al Wasl road",
"icon": "crossroad_keep_right",
"id": "8048443820092298711",
"outcoming_path": {
"distance": 257,
"duration": 36,
"geometry": [
{
"color": "fast",
"length": 26,
"selection": "LINESTRING(55.196568 25.129947, 55.196793 25.130066)",
"style": "normal"
},
{
"color": "free",
"length": 221,
"selection": "LINESTRING(55.196793 25.130066, 55.197133 25.130498, 55.197366 25.130791, 55.197421 25.130851, 55.197504 25.130930, 55.197565 25.130993, 55.197917 25.131439, 55.197950 25.131488, 55.197972 25.131547, 55.197977 25.131612, 55.197972 25.131725)",
"style": "normal"
},
{
"color": "normal",
"length": 10,
"selection": "LINESTRING(55.197972 25.131725, 55.198034 25.131803)",
"style": "normal"
}
],
"names": [
"Al Wasl road"
]
},
"outcoming_path_comment": "250 m straight",
"turn_angle": 23,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "Keep right on 19a street",
"icon": "crossroad_keep_right",
"id": "2788298536781092657",
"outcoming_path": {
"distance": 60,
"duration": 11,
"geometry": [
{
"color": "fast",
"length": 31,
"selection": "LINESTRING(55.198034 25.131803, 55.198110 25.131840, 55.198183 25.131853, 55.198252 25.131849, 55.198331 25.131830)",
"style": "normal"
},
{
"color": "fast",
"length": 29,
"selection": "LINESTRING(55.198331 25.131830, 55.198357 25.131813, 55.198569 25.131676)",
"style": "living_zone"
}
],
"names": [
"19a street"
]
},
"outcoming_path_comment": "60 m straight",
"turn_angle": 41,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "U-turn on 19a street",
"icon": "turn_over_right_hand",
"id": "11983999429003982810",
"outcoming_path": {
"distance": 224,
"duration": 29,
"geometry": [
{
"color": "fast",
"length": 29,
"selection": "LINESTRING(55.198569 25.131676, 55.198357 25.131813, 55.198331 25.131830)",
"style": "living_zone"
},
{
"color": "fast",
"length": 29,
"selection": "LINESTRING(55.198331 25.131830, 55.198291 25.131896, 55.198269 25.131951, 55.198256 25.132008, 55.198257 25.132085)",
"style": "normal"
},
{
"color": "normal",
"length": 166,
"selection": "LINESTRING(55.198257 25.132085, 55.198319 25.132164, 55.198439 25.132316, 55.198532 25.132433, 55.198965 25.132981, 55.199046 25.133085, 55.199241 25.133332)",
"style": "normal"
}
],
"names": [
"19a street"
]
},
"outcoming_path_comment": "200 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "U-turn on Al Wasl road",
"icon": "turn_over_right_hand",
"id": "463014340714541713",
"outcoming_path": {
"distance": 836,
"duration": 84,
"geometry": [
{
"color": "fast",
"length": 86,
"selection": "LINESTRING(55.199241 25.133332, 55.199271 25.133403, 55.199298 25.133464, 55.199346 25.133535, 55.199604 25.133883, 55.199620 25.133904, 55.199637 25.133938, 55.199638 25.133965, 55.199639 25.133973, 55.199635 25.133996, 55.199623 25.134017)",
"style": "normal"
},
{
"color": "fluid",
"length": 35,
"selection": "LINESTRING(55.199623 25.134017, 55.199591 25.133976, 55.199547 25.133920, 55.199435 25.133777, 55.199412 25.133747)",
"style": "normal"
},
{
"color": "normal",
"length": 213,
"selection": "LINESTRING(55.199412 25.133747, 55.198610 25.132718, 55.198436 25.132494, 55.198178 25.132168)",
"style": "normal"
},
{
"color": "fast",
"length": 156,
"selection": "LINESTRING(55.198178 25.132168, 55.197936 25.131861, 55.197491 25.131299, 55.197265 25.131012)",
"style": "normal"
},
{
"color": "normal",
"length": 346,
"selection": "LINESTRING(55.197265 25.131012, 55.196444 25.129972, 55.195641 25.128956, 55.195418 25.128673, 55.195247 25.128456)",
"style": "normal"
}
],
"names": [
"Al Wasl road"
]
},
"outcoming_path_comment": "800 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Keep right on Umm Suqeim street",
"icon": "crossroad_keep_right",
"id": "6220133359407950555",
"outcoming_path": {
"distance": 872,
"duration": 78,
"geometry": [
{
"color": "fast",
"length": 210,
"selection": "LINESTRING(55.195247 25.128456, 55.195084 25.128362, 55.195051 25.128346, 55.194982 25.128315, 55.194908 25.128308, 55.194851 25.128303, 55.194709 25.128326, 55.194589 25.128378, 55.194466 25.128438, 55.194107 25.128720, 55.193822 25.128943, 55.193542 25.129152, 55.193512 25.129173)",
"style": "normal"
},
{
"color": "free",
"length": 587,
"selection": "LINESTRING(55.193512 25.129173, 55.192538 25.129855, 55.192249 25.130058, 55.191140 25.130835, 55.191041 25.130903, 55.190317 25.131391, 55.190124 25.131529, 55.189295 25.132103, 55.188855 25.132410)",
"style": "normal"
},
{
"color": "fast",
"length": 75,
"selection": "LINESTRING(55.188855 25.132410, 55.188403 25.132742, 55.188280 25.132854)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "900 m straight",
"turn_angle": 22,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "U-turn on Umm Suqeim street",
"icon": "turn_over_right_hand",
"id": "12611632776498747296",
"outcoming_path": {
"distance": 422,
"duration": 43,
"geometry": [
{
"color": "fast",
"length": 176,
"selection": "LINESTRING(55.188280 25.132854, 55.188197 25.132914, 55.188155 25.132767, 55.188241 25.132706, 55.188369 25.132613, 55.188783 25.132315, 55.188967 25.132165, 55.188975 25.132159, 55.189322 25.131916)",
"style": "normal"
},
{
"color": "free",
"length": 246,
"selection": "LINESTRING(55.189322 25.131916, 55.190836 25.130854, 55.191264 25.130554)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "400 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Keep right on Abdullah Omran Taryam street",
"icon": "crossroad_keep_right",
"id": "10638220663517065659",
"outcoming_path": {
"distance": 638,
"duration": 46,
"geometry": [
{
"color": "free",
"length": 449,
"selection": "LINESTRING(55.191264 25.130554, 55.191348 25.130426, 55.191384 25.130359, 55.191404 25.130301, 55.191406 25.130239, 55.191371 25.130175, 55.190561 25.129336, 55.188987 25.127705, 55.188719 25.127427)",
"style": "normal"
},
{
"color": "fast",
"length": 189,
"selection": "LINESTRING(55.188719 25.127427, 55.187779 25.126454, 55.187473 25.126136)",
"style": "normal"
}
],
"names": [
"Abdullah Omran Taryam street"
]
},
"outcoming_path_comment": "600 m straight",
"turn_angle": 25,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Taabea street",
"icon": "crossroad_right",
"id": "16802022234935142625",
"outcoming_path": {
"distance": 1598,
"duration": 165,
"geometry": [
{
"color": "fast",
"length": 35,
"selection": "LINESTRING(55.187473 25.126136, 55.187329 25.126093, 55.187281 25.126088, 55.187209 25.126094, 55.187138 25.126120)",
"style": "normal"
},
{
"color": "fast",
"length": 371,
"selection": "LINESTRING(55.187138 25.126120, 55.186527 25.126611, 55.186303 25.126790, 55.186060 25.126985, 55.185890 25.127120, 55.185077 25.127771, 55.184612 25.128142, 55.184557 25.128187, 55.184516 25.128243, 55.184494 25.128316, 55.184478 25.128423)",
"style": "living_zone"
},
{
"color": "normal",
"length": 16,
"selection": "LINESTRING(55.184478 25.128423, 55.184588 25.128537)",
"style": "normal"
},
{
"color": "fast",
"length": 700,
"selection": "LINESTRING(55.184588 25.128537, 55.185107 25.129074, 55.186139 25.130132, 55.186316 25.130315, 55.186866 25.130881, 55.187399 25.131431, 55.187660 25.131702, 55.187847 25.131898, 55.187918 25.132000, 55.188022 25.132166, 55.188118 25.132345, 55.188197 25.132532, 55.188241 25.132706, 55.188280 25.132854, 55.188301 25.132940, 55.188326 25.133115, 55.188330 25.133146, 55.188340 25.133354, 55.188330 25.133561, 55.188314 25.133709)",
"style": "normal"
},
{
"color": "normal",
"length": 55,
"selection": "LINESTRING(55.188314 25.133709, 55.188259 25.134207)",
"style": "normal"
},
{
"color": "free",
"length": 421,
"selection": "LINESTRING(55.188259 25.134207, 55.188075 25.135876, 55.188071 25.136033, 55.188074 25.136194, 55.188094 25.136359, 55.188127 25.136540, 55.188175 25.136709, 55.188247 25.136887, 55.188327 25.137065, 55.188421 25.137218, 55.188531 25.137359, 55.188869 25.137726, 55.188932 25.137795)",
"style": "normal"
}
],
"names": [
"Al Taabea street"
]
},
"outcoming_path_comment": "1.6 km straight",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "U-turn on Jumeirah road",
"icon": "turn_over_right_hand",
"id": "796607750387634225",
"outcoming_path": {
"distance": 533,
"duration": 58,
"geometry": [
{
"color": "free",
"length": 10,
"selection": "LINESTRING(55.188932 25.137795, 55.188998 25.137866)",
"style": "normal"
},
{
"color": "fast",
"length": 215,
"selection": "LINESTRING(55.188998 25.137866, 55.188876 25.137953, 55.188811 25.137884, 55.188749 25.137817, 55.188534 25.137583, 55.188410 25.137449, 55.188286 25.137292, 55.188180 25.137130, 55.188089 25.136949, 55.188016 25.136762, 55.187962 25.136575, 55.187931 25.136385)",
"style": "normal"
},
{
"color": "free",
"length": 58,
"selection": "LINESTRING(55.187931 25.136385, 55.187910 25.136207, 55.187906 25.136033, 55.187915 25.135861)",
"style": "normal"
},
{
"color": "fast",
"length": 250,
"selection": "LINESTRING(55.187915 25.135861, 55.187982 25.135116, 55.188034 25.134541, 55.188093 25.133873, 55.188119 25.133588)",
"style": "normal"
}
],
"names": [
"Jumeirah road"
]
},
"outcoming_path_comment": "500 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Keep left on Umm Suqeim street",
"icon": "crossroad_keep_left",
"id": "618260057203101304",
"outcoming_path": {
"distance": 75,
"duration": 9,
"geometry": [
{
"color": "fast",
"length": 75,
"selection": "LINESTRING(55.188119 25.133588, 55.188173 25.133454, 55.188194 25.133360, 55.188203 25.133272, 55.188202 25.133124, 55.188197 25.132914)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "80 m straight",
"turn_angle": -8,
"turn_direction": "keep_left",
"type": "crossroad"
},
{
"comment": "Left turn onto Umm Suqeim street",
"icon": "crossroad_left",
"id": "13127994556978972749",
"outcoming_path": {
"distance": 737,
"duration": 76,
"geometry": [
{
"color": "fast",
"length": 166,
"selection": "LINESTRING(55.188197 25.132914, 55.188155 25.132767, 55.188241 25.132706, 55.188369 25.132613, 55.188783 25.132315, 55.188967 25.132165, 55.188975 25.132159, 55.189322 25.131916)",
"style": "normal"
},
{
"color": "free",
"length": 246,
"selection": "LINESTRING(55.189322 25.131916, 55.190836 25.130854, 55.191264 25.130554)",
"style": "normal"
},
{
"color": "fast",
"length": 81,
"selection": "LINESTRING(55.191264 25.130554, 55.191905 25.130105)",
"style": "normal"
},
{
"color": "normal",
"length": 244,
"selection": "LINESTRING(55.191905 25.130105, 55.193344 25.129095, 55.193580 25.128920, 55.193809 25.128741)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "700 m straight",
"turn_angle": -53,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Keep left on Umm Suqeim street",
"icon": "crossroad_keep_left",
"id": "17756722779907489714",
"outcoming_path": {
"distance": 135,
"duration": 26,
"geometry": [
{
"color": "normal",
"length": 135,
"selection": "LINESTRING(55.193809 25.128741, 55.194024 25.128628, 55.194175 25.128527, 55.194438 25.128346, 55.194811 25.128085, 55.194903 25.128021)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "150 m straight",
"turn_angle": -8,
"turn_direction": "keep_left",
"type": "crossroad"
},
{
"comment": "U-turn on Umm Suqeim street",
"icon": "turn_over_right_hand",
"id": "15163196150774113197",
"outcoming_path": {
"distance": 747,
"duration": 59,
"geometry": [
{
"color": "normal",
"length": 17,
"selection": "LINESTRING(55.194903 25.128021, 55.194996 25.127955, 55.195035 25.128004)",
"style": "normal"
},
{
"color": "fast",
"length": 198,
"selection": "LINESTRING(55.195035 25.128004, 55.194941 25.128069, 55.194855 25.128133, 55.194466 25.128438, 55.194107 25.128720, 55.193822 25.128943, 55.193542 25.129152, 55.193512 25.129173)",
"style": "normal"
},
{
"color": "free",
"length": 532,
"selection": "LINESTRING(55.193512 25.129173, 55.192538 25.129855, 55.192249 25.130058, 55.191140 25.130835, 55.191041 25.130903, 55.190317 25.131391, 55.190124 25.131529, 55.189295 25.132103)",
"style": "normal"
}
],
"names": [
"Umm Suqeim street"
]
},
"outcoming_path_comment": "700 m straight",
"turn_angle": -179,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Keep right on Al Mashowa street",
"icon": "crossroad_keep_right",
"id": "14733364694112783843",
"outcoming_path": {
"distance": 56,
"duration": 10,
"geometry": [
{
"color": "fast",
"length": 56,
"selection": "LINESTRING(55.189295 25.132103, 55.189170 25.132339, 55.189162 25.132385, 55.189161 25.132433, 55.189173 25.132479, 55.189210 25.132531, 55.189225 25.132575)",
"style": "living_zone"
}
],
"names": [
"Al Mashowa street"
]
},
"outcoming_path_comment": "60 m straight",
"turn_angle": 30,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "11036021207563207233",
"outcoming_path": {
"distance": 11,
"duration": 3,
"geometry": [
{
"color": "ignore",
"length": 11,
"selection": "LINESTRING(55.189225 25.132575, 55.189302 25.132657)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 m straight",
"turn_angle": 49,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "3286145688015504727",
"outcoming_path": {
"distance": 257,
"duration": 62,
"geometry": [
{
"color": "ignore",
"length": 257,
"selection": "LINESTRING(55.189302 25.132657, 55.188793 25.133014, 55.188754 25.133052, 55.188733 25.133096, 55.188712 25.133166, 55.188693 25.133303, 55.188662 25.133538, 55.188569 25.134247, 55.188569 25.134300, 55.188577 25.134335, 55.188595 25.134365, 55.188620 25.134383, 55.188645 25.134395, 55.188827 25.134409, 55.188851 25.134414, 55.188869 25.134422, 55.188882 25.134435, 55.188932 25.134499)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "250 m straight",
"turn_angle": -93,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Sharp left turn",
"icon": "crossroad_sharply_left",
"id": "13389945650078294182",
"outcoming_path": {
"distance": 39,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 39,
"selection": "LINESTRING(55.188932 25.134499, 55.188909 25.134515, 55.188891 25.134522, 55.188877 25.134526, 55.188851 25.134527, 55.188613 25.134509, 55.188591 25.134510, 55.188583 25.134515, 55.188575 25.134525, 55.188569 25.134540)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "40 m straight",
"turn_angle": -135,
"turn_direction": "sharply_left",
"type": "crossroad"
},
{
"comment": "Slight right turn",
"icon": "crossroad_slightly_right",
"id": "6942985019841789117",
"outcoming_path": {
"distance": 90,
"duration": 22,
"geometry": [
{
"color": "ignore",
"length": 90,
"selection": "LINESTRING(55.188569 25.134540, 55.188558 25.134645, 55.188562 25.134661, 55.188567 25.134674, 55.188574 25.134681, 55.188582 25.134687, 55.188604 25.134693, 55.188898 25.134717, 55.188927 25.134714, 55.188944 25.134709, 55.188972 25.134696, 55.189238 25.134513)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "90 m straight",
"turn_angle": 37,
"turn_direction": "slightly_right",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "12521211153043478423",
"outcoming_path": {
"distance": 57,
"duration": 14,
"geometry": [
{
"color": "ignore",
"length": 57,
"selection": "LINESTRING(55.189238 25.134513, 55.189293 25.134578, 55.189320 25.134590, 55.189354 25.134582, 55.189622 25.134388, 55.189682 25.134345)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "60 m straight",
"turn_angle": -83,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "10739167265632369774",
"outcoming_path": {
"distance": 188,
"duration": 30,
"geometry": [
{
"color": "fast",
"length": 30,
"selection": "LINESTRING(55.189682 25.134345, 55.189766 25.134444, 55.189870 25.134566)",
"style": "normal"
},
{
"color": "free",
"length": 158,
"selection": "LINESTRING(55.189870 25.134566, 55.189969 25.134682, 55.190039 25.134764, 55.190072 25.134805, 55.190100 25.134826, 55.190120 25.134835, 55.190141 25.134840, 55.190162 25.134844, 55.190185 25.134842, 55.190204 25.134838, 55.190218 25.134834, 55.190244 25.134824, 55.190282 25.134798, 55.190518 25.134641, 55.190547 25.134622, 55.190610 25.134561, 55.190659 25.134471, 55.190690 25.134429, 55.190728 25.134401, 55.190766 25.134387, 55.190808 25.134384, 55.190852 25.134393, 55.190893 25.134416, 55.191012 25.134571)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "200 m straight",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Left turn onto Al Mashowa street",
"icon": "crossroad_left",
"id": "2162316694839342967",
"outcoming_path": {
"distance": 47,
"duration": 7,
"geometry": [
{
"color": "fast",
"length": 47,
"selection": "LINESTRING(55.191012 25.134571, 55.190640 25.134831)",
"style": "living_zone"
}
],
"names": [
"Al Mashowa street"
]
},
"outcoming_path_comment": "50 m straight",
"turn_angle": -97,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Jali street",
"icon": "crossroad_right",
"id": "12723334641571145597",
"outcoming_path": {
"distance": 242,
"duration": 33,
"geometry": [
{
"color": "fast",
"length": 242,
"selection": "LINESTRING(55.190640 25.134831, 55.190697 25.134901, 55.190768 25.134997, 55.191171 25.135476, 55.191475 25.135836, 55.191882 25.136320, 55.191990 25.136447, 55.192111 25.136592)",
"style": "living_zone"
}
],
"names": [
"Al Jali street"
]
},
"outcoming_path_comment": "250 m straight",
"turn_angle": 87,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Kait street",
"icon": "crossroad_right",
"id": "13198351543535647789",
"outcoming_path": {
"distance": 113,
"duration": 16,
"geometry": [
{
"color": "fast",
"length": 113,
"selection": "LINESTRING(55.192111 25.136592, 55.192229 25.136560, 55.192376 25.136457, 55.192927 25.136073, 55.193041 25.135993)",
"style": "living_zone"
}
],
"names": [
"Al Kait street"
]
},
"outcoming_path_comment": "100 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Left turn onto Al Baghla street",
"icon": "crossroad_left",
"id": "15790223468571823017",
"outcoming_path": {
"distance": 246,
"duration": 38,
"geometry": [
{
"color": "fast",
"length": 246,
"selection": "LINESTRING(55.193041 25.135993, 55.193115 25.135942, 55.193159 25.136068, 55.193237 25.136161, 55.193524 25.136501, 55.193573 25.136562, 55.193754 25.136794, 55.193931 25.137004, 55.194259 25.137393, 55.194308 25.137450, 55.194349 25.137497, 55.194507 25.137670, 55.194521 25.137685)",
"style": "living_zone"
}
],
"names": [
"Al Baghla street"
]
},
"outcoming_path_comment": "250 m straight",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "U-turn on Al Baghla street",
"icon": "turn_over_right_hand",
"id": "8016479549612530888",
"outcoming_path": {
"distance": 223,
"duration": 35,
"geometry": [
{
"color": "fast",
"length": 223,
"selection": "LINESTRING(55.194521 25.137685, 55.194507 25.137670, 55.194349 25.137497, 55.194308 25.137450, 55.194259 25.137393, 55.193931 25.137004, 55.193754 25.136794, 55.193573 25.136562, 55.193524 25.136501, 55.193237 25.136161, 55.193159 25.136068)",
"style": "living_zone"
}
],
"names": [
"Al Baghla street"
]
},
"outcoming_path_comment": "200 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "U-turn on Al Baghla street",
"icon": "turn_over_right_hand",
"id": "14036623712541755382",
"outcoming_path": {
"distance": 366,
"duration": 56,
"geometry": [
{
"color": "fast",
"length": 366,
"selection": "LINESTRING(55.193159 25.136068, 55.193041 25.135993, 55.193115 25.135942, 55.193159 25.136068, 55.193237 25.136161, 55.193524 25.136501, 55.193573 25.136562, 55.193754 25.136794, 55.193931 25.137004, 55.194259 25.137393, 55.194308 25.137450, 55.194349 25.137497, 55.194507 25.137670, 55.194521 25.137685, 55.194569 25.137741, 55.194670 25.137860, 55.194885 25.138116, 55.195083 25.138350, 55.195184 25.138470)",
"style": "living_zone"
}
],
"names": [
"Al Baghla street"
]
},
"outcoming_path_comment": "350 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Beeta street",
"icon": "crossroad_right",
"id": "7996492350166359998",
"outcoming_path": {
"distance": 198,
"duration": 29,
"geometry": [
{
"color": "fast",
"length": 198,
"selection": "LINESTRING(55.195184 25.138470, 55.195315 25.138424, 55.195428 25.138344, 55.196118 25.137859, 55.196259 25.137761, 55.196290 25.137735, 55.196328 25.137698, 55.196367 25.137666, 55.196373 25.137662, 55.196454 25.137605, 55.196775 25.137381)",
"style": "living_zone"
}
],
"names": [
"Al Beeta street"
]
},
"outcoming_path_comment": "200 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Faakh street",
"icon": "crossroad_right",
"id": "529220326595268338",
"outcoming_path": {
"distance": 29,
"duration": 5,
"geometry": [
{
"color": "fast",
"length": 29,
"selection": "LINESTRING(55.196775 25.137381, 55.196669 25.137257, 55.196591 25.137165)",
"style": "living_zone"
}
],
"names": [
"Al Faakh street"
]
},
"outcoming_path_comment": "30 m straight",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Sharp left turn",
"icon": "crossroad_sharply_left",
"id": "8674016640179304475",
"outcoming_path": {
"distance": 109,
"duration": 26,
"geometry": [
{
"color": "ignore",
"length": 109,
"selection": "LINESTRING(55.196591 25.137165, 55.196623 25.137152, 55.196643 25.137152, 55.196669 25.137164, 55.196706 25.137201, 55.196872 25.137402, 55.196887 25.137413, 55.196898 25.137416, 55.196917 25.137410, 55.196949 25.137390, 55.197427 25.137079)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "100 m straight",
"turn_angle": -112,
"turn_direction": "sharply_left",
"type": "crossroad"
},
{
"comment": "U-turn",
"icon": "turn_over_right_hand",
"id": "1497751002289893102",
"outcoming_path": {
"distance": 109,
"duration": 26,
"geometry": [
{
"color": "ignore",
"length": 109,
"selection": "LINESTRING(55.197427 25.137079, 55.196949 25.137390, 55.196917 25.137410, 55.196898 25.137416, 55.196887 25.137413, 55.196872 25.137402, 55.196706 25.137201, 55.196669 25.137164, 55.196643 25.137152, 55.196623 25.137152, 55.196591 25.137165)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "100 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Left turn onto Al Faakh street",
"icon": "crossroad_left",
"id": "7925944458114846602",
"outcoming_path": {
"distance": 32,
"duration": 5,
"geometry": [
{
"color": "fast",
"length": 32,
"selection": "LINESTRING(55.196591 25.137165, 55.196475 25.137028, 55.196396 25.136934)",
"style": "living_zone"
}
],
"names": [
"Al Faakh street"
]
},
"outcoming_path_comment": "30 m straight",
"turn_angle": -68,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "U-turn on Al Faakh street",
"icon": "turn_over_right_hand",
"id": "3430859399362563310",
"outcoming_path": {
"distance": 61,
"duration": 9,
"geometry": [
{
"color": "fast",
"length": 61,
"selection": "LINESTRING(55.196396 25.136934, 55.196475 25.137028, 55.196591 25.137165, 55.196669 25.137257, 55.196775 25.137381)",
"style": "living_zone"
}
],
"names": [
"Al Faakh street"
]
},
"outcoming_path_comment": "60 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "U-turn on Al Faakh street",
"icon": "turn_over_right_hand",
"id": "529220326595268338",
"outcoming_path": {
"distance": 29,
"duration": 5,
"geometry": [
{
"color": "fast",
"length": 29,
"selection": "LINESTRING(55.196775 25.137381, 55.196669 25.137257, 55.196591 25.137165)",
"style": "living_zone"
}
],
"names": [
"Al Faakh street"
]
},
"outcoming_path_comment": "30 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Sharp left turn",
"icon": "crossroad_sharply_left",
"id": "16636827201160325152",
"outcoming_path": {
"distance": 50,
"duration": 12,
"geometry": [
{
"color": "ignore",
"length": 50,
"selection": "LINESTRING(55.196591 25.137165, 55.196623 25.137152, 55.196643 25.137152, 55.196669 25.137164, 55.196706 25.137201, 55.196872 25.137402, 55.196887 25.137413, 55.196898 25.137416, 55.196917 25.137410, 55.196949 25.137390)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "50 m straight",
"turn_angle": -112,
"turn_direction": "sharply_left",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "17514547932675607628",
"outcoming_path": {
"distance": 18,
"duration": 4,
"geometry": [
{
"color": "ignore",
"length": 18,
"selection": "LINESTRING(55.196949 25.137390, 55.196894 25.137326, 55.196949 25.137390)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "20 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "7797299935949894175",
"outcoming_path": {
"distance": 74,
"duration": 18,
"geometry": [
{
"color": "ignore",
"length": 74,
"selection": "LINESTRING(55.196949 25.137390, 55.197427 25.137079, 55.197553 25.136997)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "70 m straight",
"turn_angle": 89,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "17715764754431891547",
"outcoming_path": {
"distance": 12,
"duration": 3,
"geometry": [
{
"color": "ignore",
"length": 12,
"selection": "LINESTRING(55.197553 25.136997, 55.197583 25.137035, 55.197629 25.137093)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 m straight",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "11939156056525010793",
"outcoming_path": {
"distance": 26,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 26,
"selection": "LINESTRING(55.197629 25.137093, 55.197845 25.136952)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Left turn onto Al Yazzi street",
"icon": "crossroad_left",
"id": "4624923998631411843",
"outcoming_path": {
"distance": 56,
"duration": 7,
"geometry": [
{
"color": "fast",
"length": 56,
"selection": "LINESTRING(55.197845 25.136952, 55.198086 25.137261, 55.198179 25.137378)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "60 m straight",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "U-turn on Al Yazzi street",
"icon": "turn_over_right_hand",
"id": "16830233269968179776",
"outcoming_path": {
"distance": 56,
"duration": 7,
"geometry": [
{
"color": "fast",
"length": 56,
"selection": "LINESTRING(55.198179 25.137378, 55.198086 25.137261, 55.197845 25.136952)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "60 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "7161226801646015088",
"outcoming_path": {
"distance": 26,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 26,
"selection": "LINESTRING(55.197845 25.136952, 55.197629 25.137093)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "8488564492954933085",
"outcoming_path": {
"distance": 12,
"duration": 3,
"geometry": [
{
"color": "ignore",
"length": 12,
"selection": "LINESTRING(55.197629 25.137093, 55.197583 25.137035, 55.197553 25.136997)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 m straight",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "1654926329427041955",
"outcoming_path": {
"distance": 15,
"duration": 4,
"geometry": [
{
"color": "ignore",
"length": 15,
"selection": "LINESTRING(55.197553 25.136997, 55.197427 25.137079)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "20 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "13969257281693476627",
"outcoming_path": {
"distance": 73,
"duration": 18,
"geometry": [
{
"color": "ignore",
"length": 73,
"selection": "LINESTRING(55.197427 25.137079, 55.197201 25.136813, 55.197130 25.136729, 55.197110 25.136688, 55.197104 25.136654, 55.197118 25.136611, 55.197139 25.136582, 55.197195 25.136540)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "70 m straight",
"turn_angle": -89,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Sharp left turn",
"icon": "crossroad_sharply_left",
"id": "8091317282077256670",
"outcoming_path": {
"distance": 62,
"duration": 15,
"geometry": [
{
"color": "ignore",
"length": 62,
"selection": "LINESTRING(55.197195 25.136540, 55.197553 25.136997)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "60 m straight",
"turn_angle": -109,
"turn_direction": "sharply_left",
"type": "crossroad"
},
{
"comment": "U-turn",
"icon": "turn_over_right_hand",
"id": "2110343142332956424",
"outcoming_path": {
"distance": 205,
"duration": 49,
"geometry": [
{
"color": "ignore",
"length": 205,
"selection": "LINESTRING(55.197553 25.136997, 55.197195 25.136540, 55.196899 25.136151, 55.196812 25.136038, 55.196768 25.135981, 55.196558 25.135714, 55.196363 25.135466)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "200 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "5565915765965699458",
"outcoming_path": {
"distance": 25,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 25,
"selection": "LINESTRING(55.196363 25.135466, 55.196572 25.135331)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 m straight",
"turn_angle": -89,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Left turn onto Al Yazzi street",
"icon": "crossroad_left",
"id": "6824945155275685852",
"outcoming_path": {
"distance": 214,
"duration": 28,
"geometry": [
{
"color": "fast",
"length": 214,
"selection": "LINESTRING(55.196572 25.135331, 55.196775 25.135590, 55.196865 25.135705, 55.196927 25.135784, 55.197018 25.135900, 55.197109 25.136016, 55.197280 25.136233, 55.197370 25.136348, 55.197443 25.136441, 55.197524 25.136544, 55.197633 25.136684, 55.197696 25.136765, 55.197845 25.136952)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "200 m straight",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "7161226801646015088",
"outcoming_path": {
"distance": 26,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 26,
"selection": "LINESTRING(55.197845 25.136952, 55.197629 25.137093)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 m straight",
"turn_angle": -89,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "6237814128620759071",
"outcoming_path": {
"distance": 74,
"duration": 18,
"geometry": [
{
"color": "ignore",
"length": 74,
"selection": "LINESTRING(55.197629 25.137093, 55.197583 25.137035, 55.197553 25.136997, 55.197195 25.136540)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "70 m straight",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "10016248894849211076",
"outcoming_path": {
"distance": 27,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 27,
"selection": "LINESTRING(55.197195 25.136540, 55.197269 25.136485, 55.197316 25.136434, 55.197370 25.136348)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 m straight",
"turn_angle": -75,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Left turn onto Al Yazzi street",
"icon": "crossroad_left",
"id": "17030337088674726014",
"outcoming_path": {
"distance": 45,
"duration": 6,
"geometry": [
{
"color": "fast",
"length": 45,
"selection": "LINESTRING(55.197370 25.136348, 55.197443 25.136441, 55.197524 25.136544, 55.197633 25.136684)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "50 m straight",
"turn_angle": -105,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "U-turn on Al Yazzi street",
"icon": "turn_over_right_hand",
"id": "6313416672302784486",
"outcoming_path": {
"distance": 33,
"duration": 4,
"geometry": [
{
"color": "fast",
"length": 33,
"selection": "LINESTRING(55.197633 25.136684, 55.197524 25.136544, 55.197443 25.136441)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "30 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "U-turn on Al Yazzi street",
"icon": "turn_over_right_hand",
"id": "15914350395473351308",
"outcoming_path": {
"distance": 33,
"duration": 4,
"geometry": [
{
"color": "fast",
"length": 33,
"selection": "LINESTRING(55.197443 25.136441, 55.197524 25.136544, 55.197633 25.136684)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "30 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "6383420535880574801",
"outcoming_path": {
"distance": 12,
"duration": 3,
"geometry": [
{
"color": "ignore",
"length": 12,
"selection": "LINESTRING(55.197633 25.136684, 55.197732 25.136620)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "13656079287696601291",
"outcoming_path": {
"distance": 213,
"duration": 51,
"geometry": [
{
"color": "ignore",
"length": 213,
"selection": "LINESTRING(55.197732 25.136620, 55.197607 25.136462, 55.197732 25.136620, 55.197968 25.136921, 55.198309 25.137354, 55.198646 25.137784, 55.198652 25.137814, 55.198648 25.137836, 55.198589 25.137901)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "200 m straight",
"turn_angle": 89,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Sharp left turn onto Al Yazzi street",
"icon": "crossroad_sharply_left",
"id": "5660797908150156595",
"outcoming_path": {
"distance": 31,
"duration": 3,
"geometry": [
{
"color": "fast",
"length": 31,
"selection": "LINESTRING(55.198589 25.137901, 55.198493 25.137779, 55.198404 25.137666)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "30 m straight",
"turn_angle": -112,
"turn_direction": "sharply_left",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Mail street",
"icon": "crossroad_right",
"id": "7289158828972136009",
"outcoming_path": {
"distance": 65,
"duration": 8,
"geometry": [
{
"color": "fast",
"length": 65,
"selection": "LINESTRING(55.198404 25.137666, 55.198299 25.137692, 55.198168 25.137784, 55.198085 25.137841, 55.197877 25.137987, 55.197850 25.138006)",
"style": "living_zone"
}
],
"names": [
"Al Mail street"
]
},
"outcoming_path_comment": "70 m straight",
"turn_angle": 93,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "16998100935179490618",
"outcoming_path": {
"distance": 11,
"duration": 3,
"geometry": [
{
"color": "ignore",
"length": 11,
"selection": "LINESTRING(55.197850 25.138006, 55.197921 25.138091)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 m straight",
"turn_angle": 89,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "10853582591599944144",
"outcoming_path": {
"distance": 62,
"duration": 15,
"geometry": [
{
"color": "ignore",
"length": 62,
"selection": "LINESTRING(55.197921 25.138091, 55.198005 25.138032, 55.197921 25.138091, 55.197701 25.138245, 55.197671 25.138255, 55.197643 25.138237, 55.197597 25.138183)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "60 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Mail street",
"icon": "crossroad_right",
"id": "1002378508530835525",
"outcoming_path": {
"distance": 113,
"duration": 14,
"geometry": [
{
"color": "fast",
"length": 113,
"selection": "LINESTRING(55.197597 25.138183, 55.197546 25.138219, 55.197464 25.138277, 55.197350 25.138356, 55.196929 25.138651, 55.196849 25.138707, 55.196689 25.138820)",
"style": "living_zone"
}
],
"names": [
"Al Mail street"
]
},
"outcoming_path_comment": "100 m straight",
"turn_angle": 85,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Right turn onto Yammlowa street",
"icon": "crossroad_right",
"id": "3876246849947980507",
"outcoming_path": {
"distance": 231,
"duration": 31,
"geometry": [
{
"color": "fast",
"length": 231,
"selection": "LINESTRING(55.196689 25.138820, 55.196722 25.138938, 55.196813 25.139046, 55.197261 25.139582, 55.197304 25.139632, 55.197385 25.139729, 55.197512 25.139881, 55.197981 25.140442, 55.198044 25.140517)",
"style": "living_zone"
}
],
"names": [
"Yammlowa street"
]
},
"outcoming_path_comment": "250 m straight",
"turn_angle": 89,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "U-turn on Yammlowa street",
"icon": "turn_over_right_hand",
"id": "4308525657811404600",
"outcoming_path": {
"distance": 264,
"duration": 33,
"geometry": [
{
"color": "fast",
"length": 264,
"selection": "LINESTRING(55.198044 25.140517, 55.198185 25.140615, 55.198098 25.140676, 55.198044 25.140517, 55.197981 25.140442, 55.197512 25.139881, 55.197385 25.139729, 55.197304 25.139632, 55.197261 25.139582, 55.196813 25.139046, 55.196722 25.138938)",
"style": "living_zone"
}
],
"names": [
"Yammlowa street"
]
},
"outcoming_path_comment": "250 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "U-turn on Yammlowa street",
"icon": "turn_over_right_hand",
"id": "7600167607742996731",
"outcoming_path": {
"distance": 132,
"duration": 17,
"geometry": [
{
"color": "fast",
"length": 132,
"selection": "LINESTRING(55.196722 25.138938, 55.196605 25.138879, 55.196689 25.138820, 55.196722 25.138938, 55.196813 25.139046, 55.197261 25.139582, 55.197304 25.139632)",
"style": "living_zone"
}
],
"names": [
"Yammlowa street"
]
},
"outcoming_path_comment": "150 m straight",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Right turn onto Al Fils street",
"icon": "crossroad_right",
"id": "2130716003994447779",
"outcoming_path": {
"distance": 205,
"duration": 32,
"geometry": [
{
"color": "fast",
"length": 205,
"selection": "LINESTRING(55.197304 25.139632, 55.197346 25.139639, 55.197387 25.139643, 55.197431 25.139642, 55.197465 25.139637, 55.197526 25.139621, 55.197835 25.139403, 55.198424 25.139018, 55.198885 25.138694, 55.198990 25.138620)",
"style": "living_zone"
}
],
"names": [
"Al Fils street"
]
},
"outcoming_path_comment": "200 m straight",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Left turn onto Al Yazzi street",
"icon": "crossroad_left",
"id": "12652447316849977219",
"outcoming_path": {
"distance": 440,
"duration": 49,
"geometry": [
{
"color": "fast",
"length": 137,
"selection": "LINESTRING(55.198990 25.138620, 55.199063 25.138504, 55.199126 25.138585, 55.199198 25.138677, 55.199266 25.138763, 55.199555 25.139131, 55.199701 25.139317, 55.199790 25.139430)",
"style": "living_zone"
},
{
"color": "normal",
"length": 10,
"selection": "LINESTRING(55.199790 25.139430, 55.199850 25.139508)",
"style": "living_zone"
},
{
"color": "fast",
"length": 293,
"selection": "LINESTRING(55.199850 25.139508, 55.199942 25.139625, 55.200143 25.139881, 55.201054 25.141041, 55.201149 25.141162, 55.201200 25.141227, 55.201290 25.141342, 55.201368 25.141440, 55.201540 25.141661, 55.201565 25.141692)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "450 m straight",
"turn_angle": -93,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Roundabout, exit 3 to Al Thanya street",
"icon": "ringroad_left_180",
"id": "11253588523080600101",
"outcoming_path": {
"distance": 86419,
"duration": 12660,
"geometry": [
{
"color": "fast",
"length": 22,
"selection": "LINESTRING(55.201565 25.141692, 55.201628 25.141743, 55.201656 25.141761, 55.201689 25.141774, 55.201753 25.141791)",
"style": "living_zone"
},
{
"color": "free",
"length": 260,
"selection": "LINESTRING(55.201753 25.141791, 55.201801 25.141789, 55.201842 25.141785, 55.201894 25.141770, 55.201969 25.141732, 55.202170 25.141602, 55.202446 25.141425, 55.202878 25.141126, 55.202965 25.141066, 55.203253 25.140871, 55.203383 25.140784, 55.203457 25.140732, 55.203697 25.140548, 55.203862 25.140422)",
"style": "normal"
},
{
"color": "fast",
"length": 365,
"selection": "LINESTRING(55.203862 25.140422, 55.203961 25.140308, 55.204024 25.140237, 55.204066 25.140169, 55.204094 25.140106, 55.204108 25.140042, 55.204111 25.139978, 55.204105 25.139917, 55.204086 25.139857, 55.203941 25.139557, 55.203492 25.138945, 55.203401 25.138821, 55.202463 25.137637)",
"style": "normal"
},
{
"color": "free",
"length": 171,
"selection": "LINESTRING(55.202463 25.137637, 55.202257 25.137510, 55.201849 25.136994, 55.201484 25.136516, 55.201488 25.136401)",
"style": "normal"
},
{
"color": "fluid",
"length": 296,
"selection": "LINESTRING(55.201488 25.136401, 55.200985 25.135763, 55.199782 25.134221)",
"style": "normal"
},
{
"color": "normal",
"length": 3,
"selection": "LINESTRING(55.199782 25.134221, 55.199762 25.134195)",
"style": "normal"
},
{
"color": "fluid",
"length": 59,
"selection": "LINESTRING(55.199762 25.134195, 55.199623 25.134017, 55.199591 25.133976, 55.199547 25.133920, 55.199435 25.133777, 55.199412 25.133747)",
"style": "normal"
},
{
"color": "normal",
"length": 213,
"selection": "LINESTRING(55.199412 25.133747, 55.198610 25.132718, 55.198436 25.132494, 55.198178 25.132168)",
"style": "normal"
},
{
"color": "fast",
"length": 156,
"selection": "LINESTRING(55.198178 25.132168, 55.197936 25.131861, 55.197491 25.131299, 55.197265 25.131012)",
"style": "normal"
},
{
"color": "normal",
"length": 346,
"selection": "LINESTRING(55.197265 25.131012, 55.196444 25.129972, 55.195641 25.128956, 55.195418 25.128673, 55.195247 25.128456)",
"style": "normal"
},
{
"color": "fast",
"length": 85,
"selection": "LINESTRING(55.195247 25.128456, 55.195084 25.128362, 55.195051 25.128346, 55.194982 25.128315, 55.194908 25.128308, 55.194851 25.128303, 55.194709 25.128326, 55.194589 25.128378, 55.194466 25.128438)",
"style": "normal"
},
{
"color": "normal",
"length": 47,
"selection": "LINESTRING(55.194466 25.128438, 55.194107 25.128720)",
"style": "normal"
},
{
"color": "fast",
"length": 717,
"selection": "LINESTRING(55.194107 25.128720, 55.193822 25.128943, 55.193542 25.129152, 55.193512 25.129173, 55.193282 25.129370, 55.192974 25.129625, 55.192617 25.129906, 55.192526 25.129985, 55.192473 25.130072, 55.192427 25.130175, 55.192420 25.130192, 55.192394 25.130259, 55.192346 25.130341, 55.192288 25.130404, 55.192184 25.130489, 55.191297 25.131108, 55.190283 25.131816, 55.189407 25.132427, 55.189384 25.132446, 55.189371 25.132468, 55.189370 25.132488, 55.189373 25.132519, 55.189828 25.133067)",
"style": "normal"
},
{
"color": "free",
"length": 21,
"selection": "LINESTRING(55.189828 25.133067, 55.189999 25.132945)",
"style": "normal"
},
{
"color": "ignore",
"length": 96,
"selection": "LINESTRING(55.189999 25.132945, 55.189982 25.132906, 55.189983 25.132864, 55.190017 25.132811, 55.190235 25.132598, 55.190017 25.132811, 55.189983 25.132864, 55.189982 25.132906, 55.189999 25.132945)",
"style": "normal"
},
{
"color": "fast",
"length": 21,
"selection": "LINESTRING(55.189999 25.132945, 55.189828 25.133067)",
"style": "normal"
},
{
"color": "free",
"length": 81,
"selection": "LINESTRING(55.189828 25.133067, 55.189999 25.132945, 55.190170 25.133134, 55.190194 25.133172, 55.190197 25.133219, 55.190181 25.133251, 55.190141 25.133280, 55.190099 25.133291, 55.189997 25.133293)",
"style": "normal"
},
{
"color": "fast",
"length": 245,
"selection": "LINESTRING(55.189997 25.133293, 55.189996 25.133270, 55.189828 25.133067, 55.189996 25.133270, 55.189997 25.133293, 55.189999 25.133327, 55.189966 25.133388, 55.189822 25.133488, 55.189425 25.133762, 55.189412 25.133770, 55.189389 25.133799, 55.189373 25.133819, 55.189364 25.133839, 55.189356 25.133861, 55.189353 25.133890, 55.189353 25.133914, 55.189358 25.133939, 55.189364 25.133961, 55.189374 25.133982, 55.189461 25.134085, 55.189618 25.134269, 55.189682 25.134345, 55.189766 25.134444, 55.189870 25.134566)",
"style": "normal"
},
{
"color": "free",
"length": 158,
"selection": "LINESTRING(55.189870 25.134566, 55.189969 25.134682, 55.190039 25.134764, 55.190072 25.134805, 55.190100 25.134826, 55.190120 25.134835, 55.190141 25.134840, 55.190162 25.134844, 55.190185 25.134842, 55.190204 25.134838, 55.190218 25.134834, 55.190244 25.134824, 55.190282 25.134798, 55.190518 25.134641, 55.190547 25.134622, 55.190610 25.134561, 55.190659 25.134471, 55.190690 25.134429, 55.190728 25.134401, 55.190766 25.134387, 55.190808 25.134384, 55.190852 25.134393, 55.190893 25.134416, 55.191012 25.134571)",
"style": "normal"
},
{
"color": "fast",
"length": 107,
"selection": "LINESTRING(55.191012 25.134571, 55.191148 25.134474, 55.191579 25.134175, 55.191792 25.134027, 55.191866 25.133974)",
"style": "living_zone"
},
{
"color": "free",
"length": 355,
"selection": "LINESTRING(55.191866 25.133974, 55.192904 25.133250, 55.194015 25.132473, 55.194090 25.132434, 55.194185 25.132420, 55.194270 25.132442, 55.194341 25.132490, 55.194478 25.132664, 55.194621 25.132846)",
"style": "living_zone"
},
{
"color": "fast",
"length": 385,
"selection": "LINESTRING(55.194621 25.132846, 55.194825 25.132715, 55.194851 25.132706, 55.194875 25.132697, 55.194940 25.132687, 55.195000 25.132688, 55.195071 25.132700, 55.195677 25.132886, 55.195899 25.132955, 55.195974 25.132752, 55.196124 25.132347, 55.196218 25.132079, 55.196232 25.132039, 55.196267 25.131968, 55.196307 25.131920, 55.196357 25.131871, 55.196373 25.131856, 55.196456 25.131797, 55.196482 25.131780, 55.196655 25.131669, 55.196846 25.131545, 55.197189 25.131323, 55.197335 25.131228)",
"style": "living_zone"
},
{
"color": "fast",
"length": 25,
"selection": "LINESTRING(55.197335 25.131228, 55.197274 25.131150, 55.197265 25.131012)",
"style": "normal"
},
{
"color": "normal",
"length": 346,
"selection": "LINESTRING(55.197265 25.131012, 55.196444 25.129972, 55.195641 25.128956, 55.195418 25.128673, 55.195247 25.128456)",
"style": "normal"
},
{
"color": "fast",
"length": 210,
"selection": "LINESTRING(55.195247 25.128456, 55.195084 25.128362, 55.195051 25.128346, 55.194982 25.128315, 55.194908 25.128308, 55.194851 25.128303, 55.194709 25.128326, 55.194589 25.128378, 55.194466 25.128438, 55.194107 25.128720, 55.193822 25.128943, 55.193542 25.129152, 55.193512 25.129173)",
"style": "normal"
},
{
"color": "free",
"length": 532,
"selection": "LINESTRING(55.193512 25.129173, 55.192538 25.129855, 55.192249 25.130058, 55.191140 25.130835, 55.191041 25.130903, 55.190317 25.131391, 55.190124 25.131529, 55.189295 25.132103)",
"style": "normal"
},
{
"color": "fast",
"length": 551,
"selection": "LINESTRING(55.189295 25.132103, 55.189170 25.132339, 55.189162 25.132385, 55.189161 25.132433, 55.189173 25.132479, 55.189210 25.132531, 55.189225 25.132575, 55.188909 25.132797, 55.188870 25.132834, 55.188847 25.132866, 55.188778 25.132961, 55.188696 25.133060, 55.188670 25.133115, 55.188656 25.133176, 55.188475 25.134543, 55.188454 25.134568, 55.188409 25.134611, 55.188398 25.134635, 55.188369 25.134830, 55.188252 25.135620, 55.188196 25.136068, 55.188205 25.136243, 55.188234 25.136432, 55.188265 25.136557, 55.188286 25.136641, 55.188308 25.136692, 55.188349 25.136788)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 137,
"selection": "LINESTRING(55.188349 25.136788, 55.188382 25.136796, 55.188431 25.136819, 55.188466 25.136844, 55.188495 25.136880, 55.188618 25.137034, 55.188629 25.137057, 55.188674 25.137025, 55.188735 25.136980, 55.188751 25.136951, 55.188739 25.136919, 55.188651 25.136820, 55.188624 25.136800, 55.188589 25.136811, 55.188533 25.136852, 55.188495 25.136880, 55.188618 25.137034, 55.188629 25.137057, 55.188638 25.137076, 55.188645 25.137121, 55.188645 25.137239)",
"style": "normal"
},
{
"color": "fast",
"length": 56,
"selection": "LINESTRING(55.188645 25.137239, 55.188804 25.137435, 55.188893 25.137568, 55.188944 25.137668)",
"style": "living_zone"
},
{
"color": "free",
"length": 319,
"selection": "LINESTRING(55.188944 25.137668, 55.189000 25.137733, 55.189080 25.137826, 55.189117 25.137870, 55.189486 25.138302, 55.190015 25.138922, 55.190173 25.139107, 55.190356 25.139321, 55.190555 25.139555, 55.190693 25.139717, 55.190715 25.139749, 55.190728 25.139789, 55.190756 25.139920, 55.190830 25.140005)",
"style": "normal"
},
{
"color": "fast",
"length": 31,
"selection": "LINESTRING(55.190830 25.140005, 55.190914 25.140035, 55.190983 25.140043, 55.191056 25.140038, 55.191130 25.140019)",
"style": "normal"
},
{
"color": "fast",
"length": 50,
"selection": "LINESTRING(55.191130 25.140019, 55.191297 25.139902, 55.191392 25.139836, 55.191531 25.139738)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 200,
"selection": "LINESTRING(55.191531 25.139738, 55.191541 25.139816, 55.191540 25.139833, 55.191526 25.139853, 55.191383 25.139953, 55.191330 25.139991, 55.191298 25.140013, 55.191277 25.140036, 55.191266 25.140062, 55.191243 25.140181, 55.191228 25.140260, 55.191231 25.140317, 55.191235 25.140338, 55.191244 25.140358, 55.191272 25.140391, 55.191421 25.140566, 55.191590 25.140765, 55.191806 25.141017, 55.191905 25.141132, 55.191921 25.141173, 55.191886 25.141243)",
"style": "normal"
},
{
"color": "free",
"length": 83,
"selection": "LINESTRING(55.191886 25.141243, 55.192396 25.141842)",
"style": "normal"
},
{
"color": "fast",
"length": 51,
"selection": "LINESTRING(55.192396 25.141842, 55.192712 25.142212)",
"style": "normal"
},
{
"color": "free",
"length": 72,
"selection": "LINESTRING(55.192712 25.142212, 55.192902 25.142434, 55.192935 25.142472, 55.192965 25.142507, 55.193160 25.142735)",
"style": "normal"
},
{
"color": "ignore",
"length": 94,
"selection": "LINESTRING(55.193160 25.142735, 55.193291 25.142771, 55.193473 25.142985, 55.193692 25.143240, 55.193710 25.143262, 55.193719 25.143280, 55.193723 25.143299, 55.193722 25.143322, 55.193719 25.143391)",
"style": "normal"
},
{
"color": "free",
"length": 12,
"selection": "LINESTRING(55.193719 25.143391, 55.193794 25.143478)",
"style": "normal"
},
{
"color": "fast",
"length": 31,
"selection": "LINESTRING(55.193794 25.143478, 55.193878 25.143506, 55.193947 25.143514, 55.193957 25.143513, 55.194019 25.143509, 55.194093 25.143490)",
"style": "normal"
},
{
"color": "fast",
"length": 298,
"selection": "LINESTRING(55.194093 25.143490, 55.194289 25.143352, 55.194433 25.143252, 55.194530 25.143183, 55.194628 25.143115, 55.194761 25.143021, 55.196104 25.142077, 55.196321 25.141925, 55.196466 25.141823)",
"style": "living_zone"
},
{
"color": "free",
"length": 232,
"selection": "LINESTRING(55.196466 25.141823, 55.196321 25.141925, 55.196104 25.142077, 55.194761 25.143021, 55.194628 25.143115)",
"style": "living_zone"
},
{
"color": "fast",
"length": 240,
"selection": "LINESTRING(55.194628 25.143115, 55.194761 25.143021, 55.196104 25.142077, 55.196321 25.141925, 55.196466 25.141823, 55.196533 25.141776)",
"style": "living_zone"
},
{
"color": "free",
"length": 8,
"selection": "LINESTRING(55.196533 25.141776, 55.196466 25.141823)",
"style": "living_zone"
},
{
"color": "fast",
"length": 47,
"selection": "LINESTRING(55.196466 25.141823, 55.196436 25.141720, 55.196334 25.141600, 55.196212 25.141455)",
"style": "living_zone"
},
{
"color": "free",
"length": 243,
"selection": "LINESTRING(55.196212 25.141455, 55.196334 25.141600, 55.196436 25.141720, 55.196533 25.141776, 55.196698 25.141659, 55.197022 25.141432, 55.197490 25.141104, 55.197777 25.140901, 55.197996 25.140748, 55.198098 25.140676)",
"style": "living_zone"
},
{
"color": "fast",
"length": 983,
"selection": "LINESTRING(55.198098 25.140676, 55.198044 25.140517, 55.197981 25.140442, 55.197512 25.139881, 55.197385 25.139729, 55.197304 25.139632, 55.197261 25.139582, 55.196813 25.139046, 55.196722 25.138938, 55.196605 25.138879, 55.196689 25.138820, 55.196722 25.138938, 55.196813 25.139046, 55.197261 25.139582, 55.197304 25.139632, 55.197385 25.139729, 55.197512 25.139881, 55.197981 25.140442, 55.198044 25.140517, 55.198185 25.140615, 55.198098 25.140676, 55.198044 25.140517, 55.197981 25.140442, 55.197512 25.139881, 55.197385 25.139729, 55.197526 25.139621, 55.197835 25.139403, 55.198424 25.139018, 55.198885 25.138694, 55.198990 25.138620, 55.199063 25.138504, 55.199126 25.138585, 55.199198 25.138677, 55.199266 25.138763, 55.199555 25.139131, 55.199701 25.139317, 55.199790 25.139430)",
"style": "living_zone"
},
{
"color": "normal",
"length": 10,
"selection": "LINESTRING(55.199790 25.139430, 55.199850 25.139508)",
"style": "living_zone"
},
{
"color": "fast",
"length": 536,
"selection": "LINESTRING(55.199850 25.139508, 55.199942 25.139625, 55.200143 25.139881, 55.201054 25.141041, 55.201149 25.141162, 55.201054 25.141041, 55.200143 25.139881, 55.199942 25.139625, 55.199850 25.139508, 55.199790 25.139430, 55.199701 25.139317, 55.199555 25.139131, 55.199701 25.139317, 55.199790 25.139430)",
"style": "living_zone"
},
{
"color": "normal",
"length": 10,
"selection": "LINESTRING(55.199790 25.139430, 55.199850 25.139508)",
"style": "living_zone"
},
{
"color": "fast",
"length": 2266,
"selection": "LINESTRING(55.199850 25.139508, 55.199942 25.139625, 55.200143 25.139881, 55.201054 25.141041, 55.201149 25.141162, 55.201200 25.141227, 55.201149 25.141162, 55.201303 25.141111, 55.201431 25.141027, 55.201747 25.140823, 55.201850 25.140755, 55.201810 25.140637, 55.201730 25.140535, 55.200748 25.139285, 55.200640 25.139147, 55.200748 25.139285, 55.201730 25.140535, 55.201810 25.140637, 55.201916 25.140713, 55.201850 25.140755, 55.201916 25.140713, 55.202062 25.140617, 55.202332 25.140441, 55.202482 25.140344, 55.202438 25.140203, 55.202383 25.140134, 55.201400 25.138881, 55.201281 25.138731, 55.201400 25.138881, 55.202383 25.140134, 55.202438 25.140203, 55.202563 25.140291, 55.202677 25.140217, 55.202829 25.140118, 55.202933 25.140050, 55.203017 25.139996, 55.203058 25.139946, 55.203078 25.139878, 55.203070 25.139807, 55.203042 25.139751, 55.202988 25.139682, 55.201970 25.138385, 55.201398 25.137657, 55.201312 25.137547, 55.201175 25.137588, 55.201089 25.137644, 55.200867 25.137788, 55.200749 25.137866, 55.200673 25.137957, 55.200631 25.137902, 55.200749 25.137866, 55.200867 25.137788, 55.201089 25.137644, 55.201175 25.137588, 55.201264 25.137486, 55.201312 25.137547, 55.201264 25.137486, 55.201144 25.137333, 55.200637 25.136687, 55.200480 25.136487, 55.200369 25.136345, 55.200240 25.136182, 55.200041 25.135928, 55.199980 25.135850, 55.199567 25.135324, 55.199542 25.135293, 55.199487 25.135228, 55.199411 25.135191, 55.199327 25.135188, 55.199263 25.135201, 55.199203 25.135231, 55.199168 25.135254, 55.198921 25.135415, 55.198795 25.135497, 55.198921 25.135415, 55.199168 25.135254, 55.199203 25.135231, 55.199263 25.135201, 55.199327 25.135188)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 145,
"selection": "LINESTRING(55.199327 25.135188, 55.199389 25.135060, 55.199453 25.134984, 55.199540 25.134929, 55.200003 25.134627, 55.199814 25.134374, 55.199793 25.134338, 55.199785 25.134303, 55.199782 25.134221)",
"style": "normal"
},
{
"color": "normal",
"length": 3,
"selection": "LINESTRING(55.199782 25.134221, 55.199762 25.134195)",
"style": "normal"
},
{
"color": "free",
"length": 52,
"selection": "LINESTRING(55.199762 25.134195, 55.199697 25.134174, 55.199636 25.134160, 55.199590 25.134157, 55.199562 25.134156, 55.199498 25.134169, 55.199406 25.134207, 55.199262 25.134273)",
"style": "normal"
},
{
"color": "fast",
"length": 981,
"selection": "LINESTRING(55.199262 25.134273, 55.198975 25.134457, 55.198817 25.134548, 55.198652 25.134627, 55.198530 25.134685, 55.198392 25.134775, 55.198530 25.134685, 55.198842 25.134442, 55.198973 25.134347, 55.199214 25.134188, 55.199360 25.134100, 55.199516 25.134009, 55.199531 25.134000, 55.199591 25.133976, 55.199638 25.133965, 55.199639 25.133973, 55.199635 25.133996, 55.199623 25.134017, 55.199591 25.134053, 55.199565 25.134072, 55.199548 25.134085, 55.199262 25.134273, 55.198975 25.134457, 55.198817 25.134548, 55.198652 25.134627, 55.198530 25.134685, 55.198392 25.134775, 55.198251 25.134867, 55.198170 25.134919, 55.198251 25.134867, 55.198392 25.134775, 55.198530 25.134685, 55.198842 25.134442, 55.198973 25.134347, 55.199214 25.134188, 55.199341 25.134089, 55.199390 25.134044, 55.199425 25.133986, 55.199432 25.133956, 55.199439 25.133927, 55.199445 25.133864, 55.199435 25.133777, 55.199412 25.133747, 55.199361 25.133732, 55.199312 25.133711, 55.199266 25.133673, 55.199230 25.133638, 55.198768 25.133053, 55.198237 25.132382, 55.197945 25.132012, 55.197888 25.131939, 55.197583 25.131587, 55.197388 25.131304, 55.197335 25.131228, 55.197274 25.131150)",
"style": "normal"
},
{
"color": "ignore",
"length": 155,
"selection": "LINESTRING(55.197274 25.131150, 55.197022 25.130830, 55.196782 25.130527, 55.196435 25.130088, 55.196444 25.129972)",
"style": "normal"
},
{
"color": "normal",
"length": 205,
"selection": "LINESTRING(55.196444 25.129972, 55.195641 25.128956, 55.195418 25.128673, 55.195247 25.128456)",
"style": "normal"
},
{
"color": "fast",
"length": 51,
"selection": "LINESTRING(55.195247 25.128456, 55.195005 25.128150, 55.194941 25.128069)",
"style": "normal"
},
{
"color": "normal",
"length": 23,
"selection": "LINESTRING(55.194941 25.128069, 55.194903 25.128021, 55.194996 25.127955, 55.195035 25.128004)",
"style": "normal"
},
{
"color": "fast",
"length": 505,
"selection": "LINESTRING(55.195035 25.128004, 55.195100 25.128087, 55.195548 25.128655, 55.196568 25.129947, 55.197198 25.130744, 55.197972 25.131725)",
"style": "normal"
},
{
"color": "normal",
"length": 213,
"selection": "LINESTRING(55.197972 25.131725, 55.198034 25.131803, 55.198149 25.131948, 55.198257 25.132085, 55.198319 25.132164, 55.198439 25.132316, 55.198532 25.132433, 55.198965 25.132981, 55.199046 25.133085, 55.199241 25.133332)",
"style": "normal"
},
{
"color": "fast",
"length": 86,
"selection": "LINESTRING(55.199241 25.133332, 55.199271 25.133403, 55.199298 25.133464, 55.199346 25.133535, 55.199604 25.133883, 55.199620 25.133904, 55.199637 25.133938, 55.199638 25.133965, 55.199639 25.133973, 55.199635 25.133996, 55.199623 25.134017)",
"style": "normal"
},
{
"color": "fluid",
"length": 12,
"selection": "LINESTRING(55.199623 25.134017, 55.199591 25.133976, 55.199547 25.133920)",
"style": "normal"
},
{
"color": "fast",
"length": 125,
"selection": "LINESTRING(55.199547 25.133920, 55.199435 25.133777, 55.199412 25.133747, 55.199361 25.133732, 55.199312 25.133711, 55.199266 25.133673, 55.199230 25.133638, 55.198768 25.133053)",
"style": "normal"
},
{
"color": "ignore",
"length": 116,
"selection": "LINESTRING(55.198768 25.133053, 55.198660 25.133123, 55.198134 25.132449, 55.198237 25.132382)",
"style": "living_zone"
},
{
"color": "fast",
"length": 180,
"selection": "LINESTRING(55.198237 25.132382, 55.197945 25.132012, 55.197888 25.131939, 55.197583 25.131587, 55.197388 25.131304, 55.197335 25.131228, 55.197274 25.131150, 55.197265 25.131012)",
"style": "normal"
},
{
"color": "normal",
"length": 346,
"selection": "LINESTRING(55.197265 25.131012, 55.196444 25.129972, 55.195641 25.128956, 55.195418 25.128673, 55.195247 25.128456)",
"style": "normal"
},
{
"color": "fast",
"length": 210,
"selection": "LINESTRING(55.195247 25.128456, 55.195084 25.128362, 55.195051 25.128346, 55.194982 25.128315, 55.194908 25.128308, 55.194851 25.128303, 55.194709 25.128326, 55.194589 25.128378, 55.194466 25.128438, 55.194107 25.128720, 55.193822 25.128943, 55.193542 25.129152, 55.193512 25.129173)",
"style": "normal"
},
{
"color": "free",
"length": 532,
"selection": "LINESTRING(55.193512 25.129173, 55.192538 25.129855, 55.192249 25.130058, 55.191140 25.130835, 55.191041 25.130903, 55.190317 25.131391, 55.190124 25.131529, 55.189295 25.132103)",
"style": "normal"
},
{
"color": "fast",
"length": 56,
"selection": "LINESTRING(55.189295 25.132103, 55.189170 25.132339, 55.189162 25.132385, 55.189161 25.132433, 55.189173 25.132479, 55.189210 25.132531, 55.189225 25.132575)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 467,
"selection": "LINESTRING(55.189225 25.132575, 55.189302 25.132657, 55.189373 25.132731, 55.189426 25.132788, 55.188693 25.133303, 55.188662 25.133538, 55.188569 25.134247, 55.188569 25.134300, 55.188577 25.134335, 55.188595 25.134365, 55.188620 25.134383, 55.188645 25.134395, 55.188827 25.134409, 55.188851 25.134414, 55.188869 25.134422, 55.188882 25.134435, 55.188932 25.134499, 55.188909 25.134515, 55.188891 25.134522, 55.188877 25.134526, 55.188851 25.134527, 55.188613 25.134509, 55.188591 25.134510, 55.188583 25.134515, 55.188575 25.134525, 55.188569 25.134540, 55.188558 25.134645, 55.188562 25.134661, 55.188567 25.134674, 55.188574 25.134681, 55.188582 25.134687, 55.188604 25.134693, 55.188898 25.134717, 55.188927 25.134714, 55.188944 25.134709, 55.188972 25.134696, 55.189238 25.134513, 55.189293 25.134578, 55.189320 25.134590, 55.189354 25.134582, 55.189622 25.134388, 55.189682 25.134345)",
"style": "normal"
},
{
"color": "fast",
"length": 30,
"selection": "LINESTRING(55.189682 25.134345, 55.189766 25.134444, 55.189870 25.134566)",
"style": "normal"
},
{
"color": "free",
"length": 158,
"selection": "LINESTRING(55.189870 25.134566, 55.189969 25.134682, 55.190039 25.134764, 55.190072 25.134805, 55.190100 25.134826, 55.190120 25.134835, 55.190141 25.134840, 55.190162 25.134844, 55.190185 25.134842, 55.190204 25.134838, 55.190218 25.134834, 55.190244 25.134824, 55.190282 25.134798, 55.190518 25.134641, 55.190547 25.134622, 55.190610 25.134561, 55.190659 25.134471, 55.190690 25.134429, 55.190728 25.134401, 55.190766 25.134387, 55.190808 25.134384, 55.190852 25.134393, 55.190893 25.134416, 55.191012 25.134571)",
"style": "normal"
},
{
"color": "fast",
"length": 107,
"selection": "LINESTRING(55.191012 25.134571, 55.191148 25.134474, 55.191579 25.134175, 55.191792 25.134027, 55.191866 25.133974)",
"style": "living_zone"
},
{
"color": "free",
"length": 355,
"selection": "LINESTRING(55.191866 25.133974, 55.192904 25.133250, 55.194015 25.132473, 55.194090 25.132434, 55.194185 25.132420, 55.194270 25.132442, 55.194341 25.132490, 55.194478 25.132664, 55.194621 25.132846)",
"style": "living_zone"
},
{
"color": "fast",
"length": 385,
"selection": "LINESTRING(55.194621 25.132846, 55.194825 25.132715, 55.194851 25.132706, 55.194875 25.132697, 55.194940 25.132687, 55.195000 25.132688, 55.195071 25.132700, 55.195677 25.132886, 55.195899 25.132955, 55.195974 25.132752, 55.196124 25.132347, 55.196218 25.132079, 55.196232 25.132039, 55.196267 25.131968, 55.196307 25.131920, 55.196357 25.131871, 55.196373 25.131856, 55.196456 25.131797, 55.196482 25.131780, 55.196655 25.131669, 55.196846 25.131545, 55.197189 25.131323, 55.197335 25.131228)",
"style": "living_zone"
},
{
"color": "fast",
"length": 25,
"selection": "LINESTRING(55.197335 25.131228, 55.197274 25.131150, 55.197265 25.131012)",
"style": "normal"
},
{
"color": "normal",
"length": 346,
"selection": "LINESTRING(55.197265 25.131012, 55.196444 25.129972, 55.195641 25.128956, 55.195418 25.128673, 55.195247 25.128456)",
"style": "normal"
},
{
"color": "fast",
"length": 210,
"selection": "LINESTRING(55.195247 25.128456, 55.195084 25.128362, 55.195051 25.128346, 55.194982 25.128315, 55.194908 25.128308, 55.194851 25.128303, 55.194709 25.128326, 55.194589 25.128378, 55.194466 25.128438, 55.194107 25.128720, 55.193822 25.128943, 55.193542 25.129152, 55.193512 25.129173)",
"style": "normal"
},
{
"color": "free",
"length": 532,
"selection": "LINESTRING(55.193512 25.129173, 55.192538 25.129855, 55.192249 25.130058, 55.191140 25.130835, 55.191041 25.130903, 55.190317 25.131391, 55.190124 25.131529, 55.189295 25.132103)",
"style": "normal"
},
{
"color": "fast",
"length": 56,
"selection": "LINESTRING(55.189295 25.132103, 55.189170 25.132339, 55.189162 25.132385, 55.189161 25.132433, 55.189173 25.132479, 55.189210 25.132531, 55.189225 25.132575)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 507,
"selection": "LINESTRING(55.189225 25.132575, 55.189302 25.132657, 55.189373 25.132731, 55.189426 25.132788, 55.189510 25.132876, 55.189523 25.132906, 55.189515 25.132927, 55.189477 25.132956, 55.188662 25.133538, 55.188569 25.134247, 55.188569 25.134300, 55.188577 25.134335, 55.188595 25.134365, 55.188620 25.134383, 55.188645 25.134395, 55.188827 25.134409, 55.188851 25.134414, 55.188869 25.134422, 55.188882 25.134435, 55.188932 25.134499, 55.188909 25.134515, 55.188891 25.134522, 55.188877 25.134526, 55.188851 25.134527, 55.188613 25.134509, 55.188591 25.134510, 55.188583 25.134515, 55.188575 25.134525, 55.188569 25.134540, 55.188558 25.134645, 55.188562 25.134661, 55.188567 25.134674, 55.188574 25.134681, 55.188582 25.134687, 55.188604 25.134693, 55.188898 25.134717, 55.188927 25.134714, 55.188944 25.134709, 55.188972 25.134696, 55.189238 25.134513, 55.189164 25.134426, 55.189130 25.134395, 55.189104 25.134394, 55.189088 25.134397, 55.189067 25.134406, 55.188932 25.134499, 55.188909 25.134515, 55.188891 25.134522, 55.188877 25.134526, 55.188851 25.134527, 55.188613 25.134509, 55.188591 25.134510, 55.188583 25.134515, 55.188575 25.134525, 55.188569 25.134540, 55.188511 25.134538, 55.188475 25.134543)",
"style": "normal"
},
{
"color": "fast",
"length": 34,
"selection": "LINESTRING(55.188475 25.134543, 55.188454 25.134568, 55.188409 25.134611, 55.188398 25.134635, 55.188369 25.134830)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 62,
"selection": "LINESTRING(55.188369 25.134830, 55.188675 25.134867, 55.188369 25.134830)",
"style": "normal"
},
{
"color": "fast",
"length": 333,
"selection": "LINESTRING(55.188369 25.134830, 55.188252 25.135620, 55.188196 25.136068, 55.188205 25.136243, 55.188234 25.136432, 55.188265 25.136557, 55.188286 25.136641, 55.188308 25.136692, 55.188349 25.136788, 55.188440 25.136995, 55.188483 25.137053, 55.188538 25.137113, 55.188645 25.137239, 55.188804 25.137435, 55.188893 25.137568, 55.188944 25.137668)",
"style": "living_zone"
},
{
"color": "free",
"length": 360,
"selection": "LINESTRING(55.188944 25.137668, 55.189000 25.137733, 55.189080 25.137826, 55.189117 25.137870, 55.189486 25.138302, 55.190015 25.138922, 55.190173 25.139107, 55.190356 25.139321, 55.190555 25.139555, 55.190693 25.139717, 55.190715 25.139749, 55.190728 25.139789, 55.190756 25.139920, 55.190830 25.140005, 55.191082 25.140302)",
"style": "normal"
},
{
"color": "fast",
"length": 304,
"selection": "LINESTRING(55.191082 25.140302, 55.191326 25.140588, 55.191886 25.141243, 55.192396 25.141842, 55.192712 25.142212, 55.192824 25.142391, 55.192839 25.142435, 55.192846 25.142475, 55.192833 25.142501, 55.192804 25.142520)",
"style": "normal"
},
{
"color": "fluid",
"length": 245,
"selection": "LINESTRING(55.192804 25.142520, 55.192677 25.142370, 55.192642 25.142328, 55.191919 25.141473, 55.191740 25.141262, 55.191306 25.140752)",
"style": "normal"
},
{
"color": "fast",
"length": 593,
"selection": "LINESTRING(55.191306 25.140752, 55.190831 25.140217, 55.190439 25.139795, 55.190052 25.139337, 55.189645 25.138856, 55.189207 25.138339, 55.188943 25.138027, 55.188931 25.138013, 55.188876 25.137953, 55.188811 25.137884, 55.188749 25.137817, 55.188534 25.137583, 55.188410 25.137449, 55.188286 25.137292, 55.188180 25.137130, 55.188089 25.136949, 55.188016 25.136762, 55.187962 25.136575, 55.187931 25.136385)",
"style": "normal"
},
{
"color": "free",
"length": 58,
"selection": "LINESTRING(55.187931 25.136385, 55.187910 25.136207, 55.187906 25.136033, 55.187915 25.135861)",
"style": "normal"
},
{
"color": "fast",
"length": 219,
"selection": "LINESTRING(55.187915 25.135861, 55.187982 25.135116, 55.188034 25.134541, 55.188093 25.133873)",
"style": "normal"
},
{
"color": "normal",
"length": 31,
"selection": "LINESTRING(55.188093 25.133873, 55.188119 25.133588)",
"style": "normal"
},
{
"color": "fast",
"length": 311,
"selection": "LINESTRING(55.188119 25.133588, 55.188129 25.133381, 55.188119 25.133173, 55.188115 25.133134, 55.188092 25.132988, 55.188058 25.132837, 55.188040 25.132764, 55.187994 25.132631, 55.187972 25.132567, 55.187890 25.132387, 55.187779 25.132190, 55.187657 25.132014, 55.187462 25.131762, 55.187292 25.131567, 55.187154 25.131408, 55.186859 25.131092)",
"style": "normal"
},
{
"color": "fast",
"length": 115,
"selection": "LINESTRING(55.186859 25.131092, 55.186544 25.130897, 55.186493 25.130863, 55.186438 25.130843, 55.186379 25.130833, 55.186334 25.130833, 55.186306 25.130840, 55.186268 25.130863, 55.186203 25.130915, 55.186166 25.130945, 55.186148 25.130959, 55.186124 25.130972, 55.186086 25.130980, 55.186018 25.130987, 55.185865 25.130981, 55.185830 25.130979)",
"style": "living_zone"
},
{
"color": "fast",
"length": 27,
"selection": "LINESTRING(55.185830 25.130979, 55.185774 25.130956, 55.185739 25.130929, 55.185706 25.130904, 55.185685 25.130874, 55.185671 25.130838, 55.185667 25.130804)",
"style": "normal"
},
{
"color": "fast",
"length": 72,
"selection": "LINESTRING(55.185667 25.130804, 55.185680 25.130769, 55.185692 25.130674, 55.185711 25.130614, 55.185739 25.130560, 55.185773 25.130506, 55.185839 25.130445, 55.185991 25.130331, 55.186068 25.130275)",
"style": "living_zone"
},
{
"color": "fast",
"length": 228,
"selection": "LINESTRING(55.186068 25.130275, 55.186152 25.130273, 55.186240 25.130288, 55.186316 25.130315, 55.186866 25.130881, 55.187399 25.131431, 55.187660 25.131702)",
"style": "normal"
},
{
"color": "free",
"length": 159,
"selection": "LINESTRING(55.187660 25.131702, 55.188084 25.132036, 55.188223 25.132169, 55.188266 25.132211, 55.188316 25.132253, 55.188367 25.132283, 55.188391 25.132292, 55.188427 25.132305, 55.188485 25.132317, 55.188554 25.132322, 55.188623 25.132314, 55.188681 25.132301, 55.188745 25.132279, 55.188811 25.132253, 55.188967 25.132165)",
"style": "normal"
},
{
"color": "fast",
"length": 45,
"selection": "LINESTRING(55.188967 25.132165, 55.188975 25.132159, 55.189322 25.131916)",
"style": "normal"
},
{
"color": "free",
"length": 192,
"selection": "LINESTRING(55.189322 25.131916, 55.190836 25.130854)",
"style": "normal"
},
{
"color": "ignore",
"length": 56,
"selection": "LINESTRING(55.190836 25.130854, 55.190647 25.130658, 55.190836 25.130854)",
"style": "normal"
},
{
"color": "free",
"length": 54,
"selection": "LINESTRING(55.190836 25.130854, 55.191264 25.130554)",
"style": "normal"
},
{
"color": "fast",
"length": 81,
"selection": "LINESTRING(55.191264 25.130554, 55.191905 25.130105)",
"style": "normal"
},
{
"color": "normal",
"length": 396,
"selection": "LINESTRING(55.191905 25.130105, 55.193344 25.129095, 55.193580 25.128920, 55.193809 25.128741, 55.194024 25.128628, 55.194175 25.128527, 55.194438 25.128346, 55.194811 25.128085, 55.194903 25.128021, 55.194996 25.127955, 55.195035 25.128004)",
"style": "normal"
},
{
"color": "fast",
"length": 198,
"selection": "LINESTRING(55.195035 25.128004, 55.194941 25.128069, 55.194855 25.128133, 55.194466 25.128438, 55.194107 25.128720, 55.193822 25.128943, 55.193542 25.129152, 55.193512 25.129173)",
"style": "normal"
},
{
"color": "free",
"length": 312,
"selection": "LINESTRING(55.193512 25.129173, 55.192538 25.129855, 55.192249 25.130058, 55.191140 25.130835, 55.191041 25.130903)",
"style": "normal"
},
{
"color": "fast",
"length": 428,
"selection": "LINESTRING(55.191041 25.130903, 55.190317 25.131391, 55.190124 25.131529, 55.189295 25.132103, 55.188807 25.132552, 55.188704 25.132660, 55.188638 25.132745, 55.188549 25.132898, 55.188474 25.133088, 55.188461 25.133115, 55.188429 25.133240, 55.188361 25.133519, 55.188314 25.133709)",
"style": "normal"
},
{
"color": "normal",
"length": 55,
"selection": "LINESTRING(55.188314 25.133709, 55.188259 25.134207)",
"style": "normal"
},
{
"color": "free",
"length": 259,
"selection": "LINESTRING(55.188259 25.134207, 55.188075 25.135876, 55.188071 25.136033, 55.188074 25.136194, 55.188094 25.136359, 55.188127 25.136540)",
"style": "normal"
},
{
"color": "fast",
"length": 99,
"selection": "LINESTRING(55.188127 25.136540, 55.188175 25.136709, 55.188247 25.136887, 55.188327 25.137065, 55.188421 25.137218, 55.188531 25.137359)",
"style": "normal"
},
{
"color": "free",
"length": 75,
"selection": "LINESTRING(55.188531 25.137359, 55.188754 25.137475, 55.188794 25.137502, 55.188825 25.137529, 55.188944 25.137668, 55.189000 25.137733, 55.189080 25.137826)",
"style": "normal"
},
{
"color": "ignore",
"length": 48,
"selection": "LINESTRING(55.189080 25.137826, 55.189124 25.137795, 55.189149 25.137777, 55.189176 25.137758, 55.189197 25.137754, 55.189214 25.137764, 55.189269 25.137829, 55.189214 25.137764, 55.189197 25.137754, 55.189176 25.137758, 55.189149 25.137777, 55.189124 25.137795, 55.189080 25.137826)",
"style": "normal"
},
{
"color": "free",
"length": 66,
"selection": "LINESTRING(55.189080 25.137826, 55.189117 25.137870, 55.189486 25.138302)",
"style": "normal"
},
{
"color": "ignore",
"length": 18,
"selection": "LINESTRING(55.189486 25.138302, 55.189524 25.138275, 55.189567 25.138245, 55.189524 25.138275, 55.189486 25.138302)",
"style": "normal"
},
{
"color": "free",
"length": 86,
"selection": "LINESTRING(55.189486 25.138302, 55.190015 25.138922)",
"style": "normal"
},
{
"color": "ignore",
"length": 26,
"selection": "LINESTRING(55.190015 25.138922, 55.190052 25.138896, 55.190123 25.138846, 55.190052 25.138896, 55.190015 25.138922)",
"style": "normal"
},
{
"color": "free",
"length": 25,
"selection": "LINESTRING(55.190015 25.138922, 55.190173 25.139107)",
"style": "normal"
},
{
"color": "ignore",
"length": 48,
"selection": "LINESTRING(55.190173 25.139107, 55.190208 25.139081, 55.190228 25.139068, 55.190374 25.138964, 55.190228 25.139068, 55.190208 25.139081, 55.190173 25.139107)",
"style": "normal"
},
{
"color": "free",
"length": 30,
"selection": "LINESTRING(55.190173 25.139107, 55.190356 25.139321)",
"style": "normal"
},
{
"color": "ignore",
"length": 50,
"selection": "LINESTRING(55.190356 25.139321, 55.190390 25.139297, 55.190556 25.139179, 55.190390 25.139297, 55.190356 25.139321)",
"style": "normal"
},
{
"color": "free",
"length": 32,
"selection": "LINESTRING(55.190356 25.139321, 55.190555 25.139555)",
"style": "normal"
},
{
"color": "fast",
"length": 152,
"selection": "LINESTRING(55.190555 25.139555, 55.190588 25.139531, 55.191156 25.139130, 55.190588 25.139531, 55.190555 25.139555)",
"style": "living_zone"
},
{
"color": "free",
"length": 58,
"selection": "LINESTRING(55.190555 25.139555, 55.190693 25.139717, 55.190715 25.139749, 55.190728 25.139789, 55.190756 25.139920, 55.190830 25.140005)",
"style": "normal"
},
{
"color": "fast",
"length": 31,
"selection": "LINESTRING(55.190830 25.140005, 55.190914 25.140035, 55.190983 25.140043, 55.191056 25.140038, 55.191130 25.140019)",
"style": "normal"
},
{
"color": "fast",
"length": 307,
"selection": "LINESTRING(55.191130 25.140019, 55.191297 25.139902, 55.191392 25.139836, 55.191531 25.139738, 55.191653 25.139653, 55.192170 25.139292, 55.192913 25.138773, 55.193356 25.138464, 55.193436 25.138407, 55.193528 25.138271)",
"style": "living_zone"
},
{
"color": "free",
"length": 87,
"selection": "LINESTRING(55.193528 25.138271, 55.193612 25.138371, 55.193672 25.138443, 55.193949 25.138771, 55.193989 25.138818, 55.194069 25.138913)",
"style": "living_zone"
},
{
"color": "fast",
"length": 511,
"selection": "LINESTRING(55.194069 25.138913, 55.193989 25.138818, 55.193949 25.138771, 55.193672 25.138443, 55.193612 25.138371, 55.193528 25.138271, 55.193452 25.138182, 55.193141 25.137812, 55.193068 25.137726, 55.192937 25.137749, 55.192821 25.137830, 55.191655 25.138645, 55.192821 25.137830, 55.192937 25.137749, 55.193004 25.137651)",
"style": "living_zone"
},
{
"color": "free",
"length": 10,
"selection": "LINESTRING(55.193004 25.137651, 55.193068 25.137726)",
"style": "living_zone"
},
{
"color": "fast",
"length": 560,
"selection": "LINESTRING(55.193068 25.137726, 55.193004 25.137651, 55.192915 25.137544, 55.192266 25.136775, 55.192164 25.136654, 55.192111 25.136592, 55.192229 25.136560, 55.192376 25.136457, 55.192927 25.136073, 55.193041 25.135993, 55.192927 25.136073, 55.192376 25.136457, 55.192229 25.136560, 55.192164 25.136654, 55.192111 25.136592, 55.191990 25.136447, 55.191882 25.136320, 55.191475 25.135836, 55.191882 25.136320)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 166,
"selection": "LINESTRING(55.191882 25.136320, 55.191965 25.136261, 55.192279 25.136039, 55.191866 25.135558, 55.191475 25.135836)",
"style": "normal"
},
{
"color": "fast",
"length": 67,
"selection": "LINESTRING(55.191475 25.135836, 55.191882 25.136320)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 284,
"selection": "LINESTRING(55.191882 25.136320, 55.191965 25.136261, 55.192279 25.136039, 55.192709 25.135734, 55.192735 25.135695, 55.192727 25.135657, 55.192394 25.135267, 55.192358 25.135241, 55.192314 25.135241, 55.191866 25.135558, 55.191475 25.135836)",
"style": "normal"
},
{
"color": "fast",
"length": 2348,
"selection": "LINESTRING(55.191475 25.135836, 55.191171 25.135476, 55.190216 25.136143, 55.190132 25.136202, 55.190233 25.136322, 55.190301 25.136403, 55.190592 25.136199, 55.190715 25.136113, 55.190764 25.136079, 55.190968 25.135937, 55.191007 25.135909, 55.191025 25.135905, 55.191040 25.135903, 55.191054 25.135907, 55.191069 25.135914, 55.191091 25.135940, 55.191378 25.136281, 55.191433 25.136345, 55.191378 25.136281, 55.191091 25.135940, 55.191069 25.135914, 55.191054 25.135907, 55.191040 25.135903, 55.191025 25.135905, 55.191007 25.135909, 55.190968 25.135937, 55.190764 25.136079, 55.190715 25.136113, 55.190761 25.136168, 55.191051 25.136513, 55.191119 25.136592, 55.191147 25.136545, 55.191181 25.136521, 55.191378 25.136384, 55.191433 25.136345, 55.191684 25.136643, 55.191703 25.136658, 55.191728 25.136664, 55.191751 25.136661, 55.191777 25.136648, 55.191846 25.136600, 55.191777 25.136648, 55.191751 25.136661, 55.191728 25.136664, 55.191703 25.136658, 55.191684 25.136643, 55.191433 25.136345, 55.191378 25.136281, 55.191091 25.135940, 55.191069 25.135914, 55.191054 25.135907, 55.191040 25.135903, 55.191025 25.135905, 55.191007 25.135909, 55.190968 25.135937, 55.190764 25.136079, 55.190715 25.136113, 55.190764 25.136079, 55.190968 25.135937, 55.191007 25.135909, 55.191025 25.135905, 55.191040 25.135903, 55.191054 25.135907, 55.191069 25.135914, 55.191091 25.135940, 55.191378 25.136281, 55.191433 25.136345, 55.191378 25.136384, 55.191181 25.136521, 55.191147 25.136545, 55.191119 25.136592, 55.191117 25.136639, 55.191132 25.136683, 55.191156 25.136715, 55.191353 25.136950, 55.192210 25.137966, 55.191353 25.136950, 55.190578 25.137492, 55.191353 25.136950, 55.191156 25.136715, 55.191132 25.136683, 55.191117 25.136639, 55.191119 25.136592, 55.191051 25.136513, 55.190761 25.136168, 55.190715 25.136113, 55.190592 25.136199, 55.190301 25.136403, 55.190260 25.136430, 55.189916 25.136671, 55.189833 25.136729, 55.190101 25.137048, 55.190109 25.137069, 55.190109 25.137091, 55.190104 25.137110, 55.190093 25.137126, 55.189978 25.137206, 55.189947 25.137217, 55.189934 25.137216, 55.189924 25.137212, 55.189906 25.137200, 55.189674 25.136924, 55.189665 25.136900, 55.189664 25.136875, 55.189672 25.136852, 55.189688 25.136830, 55.189833 25.136729, 55.189688 25.136830, 55.189672 25.136852, 55.189664 25.136875, 55.189665 25.136900, 55.189674 25.136924, 55.189906 25.137200, 55.189924 25.137212, 55.189934 25.137216, 55.189947 25.137217, 55.189978 25.137206, 55.190093 25.137126, 55.190104 25.137110, 55.190109 25.137091, 55.190109 25.137069, 55.190101 25.137048, 55.189833 25.136729, 55.189688 25.136830, 55.189672 25.136852, 55.189664 25.136875, 55.189665 25.136900, 55.189674 25.136924, 55.189906 25.137200, 55.189924 25.137212, 55.189934 25.137216, 55.189947 25.137217, 55.189978 25.137206, 55.190093 25.137126, 55.190104 25.137110, 55.190109 25.137091, 55.190109 25.137069, 55.190101 25.137048, 55.189833 25.136729, 55.190101 25.137048, 55.190109 25.137069, 55.190109 25.137091, 55.190104 25.137110, 55.190093 25.137126, 55.189978 25.137206, 55.189947 25.137217, 55.189934 25.137216, 55.189924 25.137212, 55.189906 25.137200, 55.189674 25.136924, 55.189665 25.136900, 55.189664 25.136875, 55.189672 25.136852, 55.189688 25.136830, 55.189833 25.136729, 55.189916 25.136671, 55.190260 25.136430, 55.190301 25.136403, 55.190260 25.136430, 55.190194 25.136352, 55.190091 25.136229)",
"style": "living_zone"
},
{
"color": "free",
"length": 5,
"selection": "LINESTRING(55.190091 25.136229, 55.190132 25.136202)",
"style": "living_zone"
},
{
"color": "fast",
"length": 218,
"selection": "LINESTRING(55.190132 25.136202, 55.190091 25.136229, 55.189399 25.136712, 55.189345 25.136752, 55.189306 25.136795, 55.189292 25.136852, 55.189295 25.136911, 55.189327 25.136962, 55.189376 25.137021, 55.189461 25.137121, 55.189614 25.137300, 55.189901 25.137635)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 142,
"selection": "LINESTRING(55.189901 25.137635, 55.189977 25.137581, 55.190050 25.137530, 55.190214 25.137722, 55.190050 25.137530, 55.189881 25.137332, 55.190050 25.137530, 55.189977 25.137581, 55.189901 25.137635)",
"style": "living_zone"
},
{
"color": "fast",
"length": 266,
"selection": "LINESTRING(55.189901 25.137635, 55.190240 25.138033, 55.190541 25.138385, 55.190938 25.138850, 55.190993 25.138915, 55.191032 25.138951, 55.191096 25.138971, 55.191158 25.138969, 55.191219 25.138950, 55.191311 25.138885, 55.191581 25.138697, 55.191655 25.138645, 55.191581 25.138697)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 627,
"selection": "LINESTRING(55.191581 25.138697, 55.191470 25.138567, 55.191365 25.138441, 55.191048 25.138066, 55.191365 25.138441, 55.191422 25.138401, 55.191365 25.138441, 55.191422 25.138401, 55.191949 25.138033, 55.191966 25.138011, 55.191970 25.137987, 55.191969 25.137962, 55.191958 25.137940, 55.191303 25.137162, 55.191276 25.137144, 55.191250 25.137135, 55.191217 25.137136, 55.191185 25.137148, 55.191054 25.137239, 55.191185 25.137148, 55.191217 25.137136, 55.191250 25.137135, 55.191276 25.137144, 55.191303 25.137162, 55.191958 25.137940, 55.191969 25.137962, 55.191970 25.137987, 55.191966 25.138011, 55.191949 25.138033, 55.191422 25.138401, 55.191514 25.138510, 55.191537 25.138533, 55.191655 25.138645)",
"style": "living_zone"
},
{
"color": "fast",
"length": 257,
"selection": "LINESTRING(55.191655 25.138645, 55.191581 25.138697, 55.191311 25.138885, 55.191219 25.138950, 55.191158 25.138969, 55.191096 25.138971, 55.191032 25.138951, 55.190993 25.138915, 55.190938 25.138850, 55.190541 25.138385, 55.190240 25.138033, 55.189901 25.137635)",
"style": "living_zone"
},
{
"color": "free",
"length": 218,
"selection": "LINESTRING(55.189901 25.137635, 55.189614 25.137300, 55.189461 25.137121, 55.189376 25.137021, 55.189327 25.136962, 55.189295 25.136911, 55.189292 25.136852, 55.189306 25.136795, 55.189345 25.136752, 55.189399 25.136712, 55.190091 25.136229, 55.190132 25.136202)",
"style": "living_zone"
},
{
"color": "fast",
"length": 219,
"selection": "LINESTRING(55.190132 25.136202, 55.190216 25.136143, 55.191171 25.135476, 55.190768 25.134997, 55.190697 25.134901, 55.190640 25.134831)",
"style": "living_zone"
},
{
"color": "free",
"length": 229,
"selection": "LINESTRING(55.190640 25.134831, 55.190526 25.134910, 55.190128 25.135188, 55.189651 25.135522, 55.188819 25.136103)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 149,
"selection": "LINESTRING(55.188819 25.136103, 55.188827 25.135891, 55.188852 25.135833, 55.188899 25.135794, 55.188965 25.135750, 55.189006 25.135721, 55.188943 25.135646, 55.188932 25.135620, 55.188951 25.135590, 55.189219 25.135406, 55.189246 25.135397, 55.189271 25.135416, 55.189337 25.135498, 55.189387 25.135491, 55.189461 25.135497, 55.189651 25.135522)",
"style": "normal"
},
{
"color": "free",
"length": 105,
"selection": "LINESTRING(55.189651 25.135522, 55.188819 25.136103)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 122,
"selection": "LINESTRING(55.188819 25.136103, 55.188827 25.135891, 55.188852 25.135833, 55.188899 25.135794, 55.188965 25.135750, 55.189006 25.135721, 55.189337 25.135498, 55.189387 25.135491, 55.189461 25.135497, 55.189651 25.135522)",
"style": "normal"
},
{
"color": "free",
"length": 112,
"selection": "LINESTRING(55.189651 25.135522, 55.188819 25.136103, 55.188757 25.136146)",
"style": "living_zone"
},
{
"color": "fast",
"length": 172,
"selection": "LINESTRING(55.188757 25.136146, 55.188819 25.136103, 55.189651 25.135522, 55.190128 25.135188)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 140,
"selection": "LINESTRING(55.190128 25.135188, 55.190048 25.135085, 55.190064 25.135017, 55.189771 25.134669, 55.190064 25.135017, 55.190048 25.135085, 55.190128 25.135188)",
"style": "normal"
},
{
"color": "fast",
"length": 64,
"selection": "LINESTRING(55.190128 25.135188, 55.190526 25.134910, 55.190640 25.134831)",
"style": "living_zone"
},
{
"color": "free",
"length": 47,
"selection": "LINESTRING(55.190640 25.134831, 55.191012 25.134571)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 188,
"selection": "LINESTRING(55.191012 25.134571, 55.191129 25.134709, 55.191582 25.135248, 55.191129 25.134709, 55.191012 25.134571)",
"style": "living_zone"
},
{
"color": "fast",
"length": 107,
"selection": "LINESTRING(55.191012 25.134571, 55.191148 25.134474, 55.191579 25.134175, 55.191792 25.134027, 55.191866 25.133974)",
"style": "living_zone"
},
{
"color": "free",
"length": 290,
"selection": "LINESTRING(55.191866 25.133974, 55.192904 25.133250, 55.194015 25.132473, 55.194090 25.132434, 55.194185 25.132420)",
"style": "living_zone"
},
{
"color": "fast",
"length": 717,
"selection": "LINESTRING(55.194185 25.132420, 55.194090 25.132434, 55.194015 25.132473, 55.192904 25.133250, 55.191866 25.133974, 55.191792 25.134027, 55.191866 25.133974, 55.191920 25.134108, 55.191998 25.134201, 55.192420 25.134701, 55.192468 25.134757, 55.192477 25.134770, 55.192537 25.134801, 55.192609 25.134814, 55.192674 25.134810, 55.192730 25.134789, 55.192856 25.134701, 55.193491 25.134257, 55.193656 25.134142, 55.194712 25.133405, 55.194815 25.133333, 55.194911 25.133215)",
"style": "living_zone"
},
{
"color": "free",
"length": 116,
"selection": "LINESTRING(55.194911 25.133215, 55.194964 25.133282, 55.195079 25.133429, 55.195455 25.133909, 55.195586 25.134075)",
"style": "living_zone"
},
{
"color": "fast",
"length": 826,
"selection": "LINESTRING(55.195586 25.134075, 55.195762 25.133960, 55.196158 25.133703, 55.196214 25.133673, 55.196281 25.133650, 55.196353 25.133639, 55.196409 25.133645, 55.196661 25.133723, 55.196621 25.133858, 55.196622 25.133900, 55.196637 25.133942, 55.196669 25.133982, 55.197014 25.134416, 55.197139 25.134574, 55.197014 25.134416, 55.196669 25.133982, 55.196637 25.133942, 55.196622 25.133900, 55.196621 25.133858, 55.196661 25.133723, 55.196846 25.133780, 55.197453 25.133965, 55.197566 25.134013, 55.197600 25.134043, 55.197616 25.134068, 55.197623 25.134097, 55.197623 25.134126, 55.197614 25.134174, 55.197595 25.134225, 55.197558 25.134285, 55.197499 25.134337, 55.197429 25.134387, 55.197288 25.134478, 55.197139 25.134574, 55.197288 25.134478, 55.197429 25.134387, 55.197499 25.134337, 55.197558 25.134285, 55.197595 25.134225, 55.197614 25.134174, 55.197623 25.134126, 55.197623 25.134097, 55.197616 25.134068, 55.197600 25.134043, 55.197566 25.134013, 55.197453 25.133965, 55.196846 25.133780, 55.196661 25.133723, 55.196409 25.133645, 55.196353 25.133639, 55.196281 25.133650, 55.196214 25.133673, 55.196158 25.133703, 55.195762 25.133960, 55.195586 25.134075)",
"style": "living_zone"
},
{
"color": "free",
"length": 15,
"selection": "LINESTRING(55.195586 25.134075, 55.195631 25.134133, 55.195683 25.134200)",
"style": "living_zone"
},
{
"color": "fast",
"length": 1125,
"selection": "LINESTRING(55.195683 25.134200, 55.195776 25.134317, 55.195955 25.134546, 55.196068 25.134690, 55.196219 25.134882, 55.196369 25.135074, 55.196466 25.135197, 55.196572 25.135331, 55.196775 25.135590, 55.196865 25.135705, 55.196775 25.135590, 55.196572 25.135331, 55.196466 25.135197, 55.196369 25.135074, 55.196559 25.134951, 55.196977 25.134680, 55.197139 25.134574, 55.197288 25.134478, 55.197429 25.134387, 55.197499 25.134337, 55.197558 25.134285, 55.197595 25.134225, 55.197614 25.134174, 55.197623 25.134126, 55.197623 25.134097, 55.197616 25.134068, 55.197600 25.134043, 55.197566 25.134013, 55.197453 25.133965, 55.196846 25.133780, 55.196661 25.133723, 55.196846 25.133780, 55.197453 25.133965, 55.197566 25.134013, 55.197600 25.134043, 55.197616 25.134068, 55.197623 25.134097, 55.197623 25.134126, 55.197614 25.134174, 55.197595 25.134225, 55.197558 25.134285, 55.197499 25.134337, 55.197429 25.134387, 55.197288 25.134478, 55.197139 25.134574, 55.197014 25.134416, 55.196669 25.133982, 55.196637 25.133942, 55.196622 25.133900, 55.196621 25.133858, 55.196661 25.133723, 55.196621 25.133858, 55.196622 25.133900, 55.196637 25.133942, 55.196669 25.133982, 55.197014 25.134416, 55.197139 25.134574, 55.196977 25.134680, 55.196559 25.134951, 55.196369 25.135074, 55.196219 25.134882, 55.196068 25.134690, 55.195955 25.134546)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 151,
"selection": "LINESTRING(55.195955 25.134546, 55.195816 25.134657, 55.195788 25.134698, 55.195792 25.134739, 55.195800 25.134748, 55.196003 25.135007, 55.196363 25.135466, 55.196572 25.135331)",
"style": "normal"
},
{
"color": "fast",
"length": 134,
"selection": "LINESTRING(55.196572 25.135331, 55.196775 25.135590, 55.196865 25.135705, 55.196927 25.135784, 55.197018 25.135900, 55.197109 25.136016, 55.197280 25.136233, 55.197370 25.136348)",
"style": "living_zone"
},
{
"color": "free",
"length": 83,
"selection": "LINESTRING(55.197370 25.136348, 55.197536 25.136315, 55.197685 25.136219, 55.197966 25.136036, 55.198084 25.135959)",
"style": "living_zone"
},
{
"color": "fast",
"length": 907,
"selection": "LINESTRING(55.198084 25.135959, 55.198155 25.135913, 55.198186 25.136021, 55.198270 25.136129, 55.198764 25.136758, 55.199231 25.137352, 55.199335 25.137484, 55.199377 25.137539, 55.199335 25.137484, 55.199231 25.137352, 55.198764 25.136758, 55.198270 25.136129, 55.198186 25.136021, 55.198084 25.135959, 55.198155 25.135913, 55.198333 25.135797, 55.198610 25.135617, 55.198731 25.135538, 55.198795 25.135497, 55.198824 25.135600, 55.198923 25.135727, 55.199405 25.136341, 55.199876 25.136940, 55.200001 25.137101, 55.200018 25.137122, 55.200131 25.137265, 55.200255 25.137422, 55.200325 25.137512, 55.200520 25.137761, 55.200574 25.137831, 55.200631 25.137902, 55.200574 25.137831, 55.200520 25.137761, 55.200325 25.137512, 55.200255 25.137422)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 108,
"selection": "LINESTRING(55.200255 25.137422, 55.200079 25.137537, 55.200058 25.137545, 55.200037 25.137541, 55.200024 25.137530, 55.199870 25.137334, 55.200024 25.137530, 55.200037 25.137541, 55.200058 25.137545, 55.200079 25.137537, 55.200255 25.137422)",
"style": "normal"
},
{
"color": "fast",
"length": 220,
"selection": "LINESTRING(55.200255 25.137422, 55.200131 25.137265, 55.200018 25.137122, 55.199843 25.137235, 55.199556 25.137422, 55.199377 25.137539, 55.199489 25.137681, 55.199612 25.137837, 55.199683 25.137929, 55.199975 25.138301)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 87,
"selection": "LINESTRING(55.199975 25.138301, 55.199894 25.138354, 55.199409 25.138669, 55.199266 25.138763)",
"style": "living_zone"
},
{
"color": "fast",
"length": 130,
"selection": "LINESTRING(55.199266 25.138763, 55.199555 25.139131, 55.199701 25.139317, 55.199790 25.139430, 55.199701 25.139317, 55.199555 25.139131)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 72,
"selection": "LINESTRING(55.199555 25.139131, 55.199611 25.139095, 55.199633 25.139089, 55.199653 25.139092, 55.199669 25.139105, 55.199800 25.139272, 55.199669 25.139105, 55.199653 25.139092, 55.199633 25.139089, 55.199611 25.139095, 55.199555 25.139131)",
"style": "normal"
},
{
"color": "fast",
"length": 121,
"selection": "LINESTRING(55.199555 25.139131, 55.199266 25.138763, 55.199198 25.138677, 55.199126 25.138585, 55.199063 25.138504, 55.198979 25.138398, 55.198837 25.138217)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 96,
"selection": "LINESTRING(55.198837 25.138217, 55.198880 25.138190, 55.198911 25.138182, 55.198941 25.138188, 55.198963 25.138206, 55.199157 25.138454, 55.198963 25.138206, 55.198941 25.138188, 55.198911 25.138182, 55.198880 25.138190, 55.198837 25.138217)",
"style": "normal"
},
{
"color": "fast",
"length": 135,
"selection": "LINESTRING(55.198837 25.138217, 55.198622 25.137944, 55.198589 25.137901, 55.198493 25.137779, 55.198404 25.137666, 55.198299 25.137692, 55.198168 25.137784, 55.198085 25.137841, 55.197877 25.137987)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 290,
"selection": "LINESTRING(55.197877 25.137987, 55.197712 25.137793, 55.197597 25.137875, 55.197563 25.137898, 55.197597 25.137875, 55.197712 25.137793, 55.197939 25.137635, 55.197968 25.137599, 55.197974 25.137573, 55.197973 25.137547, 55.197964 25.137525, 55.197949 25.137501, 55.197785 25.137292, 55.197629 25.137093, 55.197785 25.137292, 55.197949 25.137501, 55.197964 25.137525, 55.197973 25.137547, 55.197974 25.137573, 55.197968 25.137599, 55.197939 25.137635, 55.197712 25.137793, 55.197877 25.137987)",
"style": "normal"
},
{
"color": "fast",
"length": 501,
"selection": "LINESTRING(55.197877 25.137987, 55.197850 25.138006, 55.197747 25.138079, 55.197673 25.138130, 55.197597 25.138183, 55.197546 25.138219, 55.197464 25.138277, 55.197429 25.138154, 55.197342 25.138051, 55.197107 25.137773, 55.196892 25.137521, 55.196775 25.137381, 55.196669 25.137257, 55.196591 25.137165, 55.196669 25.137257, 55.196775 25.137381, 55.196892 25.137521, 55.197107 25.137773, 55.197342 25.138051, 55.197429 25.138154, 55.197546 25.138219, 55.197464 25.138277, 55.197350 25.138356, 55.196929 25.138651, 55.196849 25.138707, 55.196689 25.138820, 55.196605 25.138879, 55.196490 25.138959, 55.196309 25.139086)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 100,
"selection": "LINESTRING(55.196309 25.139086, 55.196377 25.139238, 55.196372 25.139303, 55.196352 25.139360, 55.196316 25.139403, 55.196216 25.139473, 55.196316 25.139403, 55.196352 25.139360, 55.196372 25.139303, 55.196377 25.139238, 55.196309 25.139086)",
"style": "living_zone"
},
{
"color": "fast",
"length": 569,
"selection": "LINESTRING(55.196309 25.139086, 55.196114 25.139223, 55.195965 25.139327, 55.195887 25.139382, 55.195766 25.139467, 55.195220 25.139849, 55.195086 25.139943, 55.195026 25.140048, 55.194961 25.139971, 55.194858 25.139849, 55.194581 25.139521, 55.194212 25.139082, 55.194125 25.138980, 55.194069 25.138913, 55.194125 25.138980, 55.193960 25.139042, 55.193884 25.139095, 55.193565 25.139318, 55.193436 25.139408, 55.193565 25.139318, 55.193884 25.139095, 55.193960 25.139042, 55.194069 25.138913, 55.193989 25.138818, 55.193949 25.138771, 55.193672 25.138443, 55.193612 25.138371)",
"style": "living_zone"
},
{
"color": "free",
"length": 74,
"selection": "LINESTRING(55.193612 25.138371, 55.193672 25.138443, 55.193949 25.138771, 55.193989 25.138818, 55.194069 25.138913)",
"style": "living_zone"
},
{
"color": "fast",
"length": 84,
"selection": "LINESTRING(55.194069 25.138913, 55.194125 25.138980, 55.194212 25.139082, 55.194581 25.139521)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 46,
"selection": "LINESTRING(55.194581 25.139521, 55.194769 25.139390, 55.194581 25.139521)",
"style": "normal"
},
{
"color": "fast",
"length": 223,
"selection": "LINESTRING(55.194581 25.139521, 55.194858 25.139849, 55.194961 25.139971, 55.195026 25.140048, 55.195106 25.140144, 55.195845 25.141019, 55.195945 25.141139)",
"style": "living_zone"
},
{
"color": "free",
"length": 8,
"selection": "LINESTRING(55.195945 25.141139, 55.195997 25.141199)",
"style": "living_zone"
},
{
"color": "fast",
"length": 2779,
"selection": "LINESTRING(55.195997 25.141199, 55.195852 25.141251, 55.195778 25.141302, 55.195436 25.141543, 55.195319 25.141625, 55.195245 25.141677, 55.195197 25.141550, 55.195118 25.141457, 55.194436 25.140653, 55.193560 25.139619, 55.193474 25.139517, 55.193372 25.139453, 55.193436 25.139408, 55.193474 25.139517, 55.193560 25.139619, 55.194436 25.140653, 55.195118 25.141457, 55.195197 25.141550, 55.195319 25.141625, 55.195245 25.141677, 55.195131 25.141757, 55.194833 25.141966, 55.194696 25.142063, 55.194620 25.142116, 55.194508 25.142195, 55.194284 25.142352, 55.194203 25.142409, 55.194127 25.142436, 55.194054 25.142443, 55.193978 25.142429, 55.193927 25.142396, 55.193839 25.142294, 55.193304 25.141663, 55.192306 25.140486, 55.192290 25.140466, 55.192253 25.140405, 55.192237 25.140337, 55.192251 25.140264, 55.192300 25.140200, 55.192337 25.140175, 55.192651 25.139956, 55.192702 25.139921, 55.192734 25.139898, 55.192702 25.139921, 55.192651 25.139956, 55.192337 25.140175, 55.192300 25.140200, 55.192251 25.140264, 55.192237 25.140337, 55.192253 25.140405, 55.192290 25.140466, 55.192306 25.140486, 55.193304 25.141663, 55.193839 25.142294, 55.193927 25.142396, 55.193978 25.142429, 55.194054 25.142443, 55.194127 25.142436, 55.194203 25.142409, 55.194284 25.142352, 55.194508 25.142195, 55.194620 25.142116, 55.194576 25.141994, 55.194499 25.141904, 55.193812 25.141094, 55.192937 25.140061, 55.192859 25.139969, 55.192734 25.139898, 55.192702 25.139921, 55.192651 25.139956, 55.192337 25.140175, 55.192300 25.140200, 55.192251 25.140264, 55.192237 25.140337, 55.192253 25.140405, 55.192290 25.140466, 55.192306 25.140486, 55.193304 25.141663, 55.193839 25.142294, 55.193927 25.142396, 55.193978 25.142429, 55.194054 25.142443, 55.194127 25.142436, 55.194203 25.142409, 55.194284 25.142352, 55.194508 25.142195, 55.194620 25.142116, 55.194508 25.142195, 55.194284 25.142352, 55.194203 25.142409, 55.194127 25.142436, 55.194054 25.142443, 55.193978 25.142429, 55.193927 25.142396, 55.193839 25.142294, 55.193304 25.141663, 55.192306 25.140486, 55.192290 25.140466, 55.192253 25.140405, 55.192237 25.140337)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 46,
"selection": "LINESTRING(55.192237 25.140337, 55.192012 25.140294, 55.192237 25.140337)",
"style": "normal"
},
{
"color": "fast",
"length": 1546,
"selection": "LINESTRING(55.192237 25.140337, 55.192251 25.140264, 55.192300 25.140200, 55.192337 25.140175, 55.192651 25.139956, 55.192702 25.139921, 55.192734 25.139898, 55.192816 25.139841, 55.192734 25.139898, 55.192816 25.139841, 55.192923 25.139766, 55.193004 25.139708, 55.193260 25.139530, 55.193372 25.139453, 55.193436 25.139408, 55.193565 25.139318, 55.193884 25.139095, 55.193960 25.139042, 55.194069 25.138913, 55.194125 25.138980, 55.193960 25.139042, 55.193884 25.139095, 55.193565 25.139318, 55.193436 25.139408, 55.193372 25.139453, 55.193436 25.139408, 55.193474 25.139517, 55.193560 25.139619, 55.194436 25.140653, 55.195118 25.141457, 55.195197 25.141550, 55.195319 25.141625, 55.195245 25.141677, 55.195197 25.141550, 55.195118 25.141457, 55.194436 25.140653, 55.193560 25.139619, 55.193474 25.139517, 55.193372 25.139453, 55.193260 25.139530, 55.193004 25.139708, 55.192923 25.139766, 55.192816 25.139841, 55.192859 25.139969, 55.192937 25.140061, 55.193812 25.141094, 55.194499 25.141904, 55.194576 25.141994, 55.194696 25.142063, 55.194620 25.142116, 55.194696 25.142063, 55.194833 25.141966, 55.195131 25.141757, 55.195245 25.141677, 55.195319 25.141625, 55.195436 25.141543, 55.195778 25.141302, 55.195852 25.141251, 55.195945 25.141139)",
"style": "living_zone"
},
{
"color": "free",
"length": 98,
"selection": "LINESTRING(55.195945 25.141139, 55.195997 25.141199, 55.196094 25.141315, 55.196212 25.141455, 55.196334 25.141600, 55.196436 25.141720, 55.196533 25.141776, 55.196466 25.141823)",
"style": "living_zone"
},
{
"color": "fast",
"length": 739,
"selection": "LINESTRING(55.196466 25.141823, 55.196436 25.141720, 55.196334 25.141600, 55.196212 25.141455, 55.196094 25.141315, 55.195997 25.141199, 55.195945 25.141139, 55.195845 25.141019, 55.195106 25.140144, 55.195026 25.140048, 55.194961 25.139971, 55.195086 25.139943, 55.195220 25.139849, 55.195766 25.139467, 55.195887 25.139382, 55.195850 25.139261, 55.195749 25.139140, 55.195324 25.138636, 55.195234 25.138529, 55.195184 25.138470, 55.195083 25.138350, 55.194885 25.138116, 55.194670 25.137860, 55.194569 25.137741, 55.194521 25.137685, 55.194647 25.137640, 55.194791 25.137539, 55.195718 25.136888)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 10,
"selection": "LINESTRING(55.195718 25.136888, 55.195656 25.136816)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 464,
"selection": "LINESTRING(55.195656 25.136816, 55.194508 25.135461, 55.194246 25.135151, 55.194508 25.135461, 55.195656 25.136816)",
"style": "normal"
},
{
"color": "ignore",
"length": 10,
"selection": "LINESTRING(55.195656 25.136816, 55.195718 25.136888)",
"style": "living_zone"
},
{
"color": "fast",
"length": 1251,
"selection": "LINESTRING(55.195718 25.136888, 55.195902 25.136758, 55.195953 25.136723, 55.196024 25.136695, 55.196104 25.136686, 55.196183 25.136707, 55.196241 25.136752, 55.196312 25.136836, 55.196396 25.136934, 55.196312 25.136836, 55.196241 25.136752, 55.196183 25.136707, 55.196104 25.136686, 55.196024 25.136695, 55.195953 25.136723, 55.195902 25.136758, 55.195718 25.136888, 55.194791 25.137539, 55.194647 25.137640, 55.194569 25.137741, 55.194670 25.137860, 55.194885 25.138116, 55.195083 25.138350, 55.195184 25.138470, 55.195315 25.138424, 55.195428 25.138344, 55.196118 25.137859, 55.196259 25.137761, 55.196290 25.137735, 55.196328 25.137698, 55.196367 25.137666, 55.196373 25.137662, 55.196367 25.137666, 55.196328 25.137698, 55.196290 25.137735, 55.196259 25.137761, 55.196118 25.137859, 55.195428 25.138344, 55.195315 25.138424, 55.195234 25.138529, 55.195184 25.138470, 55.195234 25.138529, 55.195324 25.138636, 55.195749 25.139140, 55.195850 25.139261, 55.195965 25.139327, 55.195887 25.139382, 55.195965 25.139327, 55.196114 25.139223, 55.196309 25.139086, 55.196490 25.138959, 55.196605 25.138879, 55.196689 25.138820, 55.196849 25.138707, 55.196929 25.138651, 55.197350 25.138356, 55.197464 25.138277, 55.197546 25.138219, 55.197597 25.138183, 55.197673 25.138130, 55.197747 25.138079, 55.197850 25.138006, 55.197877 25.137987, 55.198085 25.137841, 55.198168 25.137784, 55.198299 25.137692, 55.198359 25.137608, 55.198257 25.137478, 55.198179 25.137378, 55.198257 25.137478, 55.198359 25.137608, 55.198257 25.137478, 55.198179 25.137378)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 86,
"selection": "LINESTRING(55.198179 25.137378, 55.198309 25.137354, 55.198646 25.137784, 55.198652 25.137814, 55.198648 25.137836, 55.198589 25.137901)",
"style": "normal"
},
{
"color": "fast",
"length": 194,
"selection": "LINESTRING(55.198589 25.137901, 55.198493 25.137779, 55.198404 25.137666, 55.198359 25.137608, 55.198257 25.137478, 55.198179 25.137378, 55.198086 25.137261, 55.197845 25.136952, 55.197696 25.136765, 55.197633 25.136684, 55.197696 25.136765, 55.197845 25.136952)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 143,
"selection": "LINESTRING(55.197845 25.136952, 55.197968 25.136921, 55.198309 25.137354, 55.198646 25.137784, 55.198652 25.137814, 55.198648 25.137836, 55.198589 25.137901)",
"style": "normal"
},
{
"color": "fast",
"length": 515,
"selection": "LINESTRING(55.198589 25.137901, 55.198493 25.137779, 55.198404 25.137666, 55.198359 25.137608, 55.198404 25.137666, 55.198493 25.137779, 55.198589 25.137901, 55.198622 25.137944, 55.198837 25.138217, 55.198979 25.138398, 55.199063 25.138504, 55.199126 25.138585, 55.198990 25.138620, 55.198885 25.138694, 55.198424 25.139018, 55.197835 25.139403, 55.198424 25.139018, 55.198885 25.138694, 55.198990 25.138620, 55.199063 25.138504, 55.199126 25.138585, 55.199198 25.138677, 55.199266 25.138763)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 87,
"selection": "LINESTRING(55.199266 25.138763, 55.199409 25.138669, 55.199894 25.138354, 55.199975 25.138301)",
"style": "living_zone"
},
{
"color": "fast",
"length": 1837,
"selection": "LINESTRING(55.199975 25.138301, 55.200055 25.138402, 55.200518 25.138991, 55.200640 25.139147, 55.200748 25.139285, 55.201730 25.140535, 55.201810 25.140637, 55.201916 25.140713, 55.201850 25.140755, 55.201810 25.140637, 55.201730 25.140535, 55.200748 25.139285, 55.200640 25.139147, 55.200824 25.139028, 55.201117 25.138837, 55.201281 25.138731, 55.201168 25.138587, 55.200786 25.138101, 55.200696 25.137985, 55.200673 25.137957, 55.200631 25.137902, 55.200749 25.137866, 55.200867 25.137788, 55.201089 25.137644, 55.201175 25.137588, 55.201264 25.137486, 55.201312 25.137547, 55.201175 25.137588, 55.201089 25.137644, 55.200867 25.137788, 55.200749 25.137866, 55.200673 25.137957, 55.200631 25.137902, 55.200574 25.137831, 55.200520 25.137761, 55.200325 25.137512, 55.200255 25.137422, 55.200325 25.137512, 55.200520 25.137761, 55.200574 25.137831, 55.200631 25.137902, 55.200673 25.137957, 55.200696 25.137985, 55.200786 25.138101, 55.201168 25.138587, 55.201281 25.138731, 55.201400 25.138881, 55.202383 25.140134, 55.202438 25.140203, 55.202563 25.140291, 55.202482 25.140344, 55.202438 25.140203, 55.202383 25.140134, 55.201400 25.138881, 55.201281 25.138731, 55.201117 25.138837, 55.200824 25.139028, 55.200640 25.139147, 55.200518 25.138991, 55.200055 25.138402, 55.199975 25.138301, 55.199683 25.137929, 55.199612 25.137837)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 36,
"selection": "LINESTRING(55.199612 25.137837, 55.199757 25.137742, 55.199612 25.137837)",
"style": "normal"
},
{
"color": "fast",
"length": 1226,
"selection": "LINESTRING(55.199612 25.137837, 55.199489 25.137681, 55.199377 25.137539, 55.199335 25.137484, 55.199231 25.137352, 55.198764 25.136758, 55.198270 25.136129, 55.198186 25.136021, 55.198084 25.135959, 55.198155 25.135913, 55.198186 25.136021, 55.198270 25.136129, 55.198764 25.136758, 55.199231 25.137352, 55.199335 25.137484, 55.199377 25.137539, 55.199556 25.137422, 55.199843 25.137235, 55.200018 25.137122, 55.200001 25.137101, 55.199876 25.136940, 55.199405 25.136341, 55.198923 25.135727, 55.198824 25.135600, 55.198731 25.135538, 55.198795 25.135497, 55.198731 25.135538, 55.198610 25.135617, 55.198333 25.135797, 55.198155 25.135913, 55.198084 25.135959, 55.197966 25.136036, 55.197685 25.136219, 55.197536 25.136315, 55.197443 25.136441, 55.197370 25.136348, 55.197280 25.136233, 55.197109 25.136016, 55.197018 25.135900, 55.196927 25.135784, 55.196865 25.135705, 55.196775 25.135590, 55.196572 25.135331, 55.196466 25.135197, 55.196369 25.135074, 55.196466 25.135197, 55.196572 25.135331, 55.196775 25.135590, 55.196865 25.135705, 55.197002 25.135680)",
"style": "living_zone"
},
{
"color": "fast",
"length": 143,
"selection": "LINESTRING(55.197002 25.135680, 55.197195 25.135554, 55.197729 25.135207, 55.198170 25.134919)",
"style": "normal"
},
{
"color": "ignore",
"length": 77,
"selection": "LINESTRING(55.198170 25.134919, 55.198226 25.135005, 55.198229 25.135027, 55.198218 25.135045, 55.197848 25.135286, 55.197823 25.135288, 55.197796 25.135276, 55.197729 25.135207)",
"style": "normal"
},
{
"color": "fast",
"length": 555,
"selection": "LINESTRING(55.197729 25.135207, 55.198170 25.134919, 55.198251 25.134867, 55.198392 25.134775, 55.198530 25.134685, 55.198842 25.134442, 55.198973 25.134347, 55.199214 25.134188, 55.199360 25.134100, 55.199516 25.134009, 55.199531 25.134000, 55.199591 25.133976, 55.199638 25.133965, 55.199639 25.133973, 55.199635 25.133996, 55.199623 25.134017, 55.199591 25.134053, 55.199565 25.134072, 55.199548 25.134085, 55.199262 25.134273, 55.198975 25.134457, 55.198817 25.134548, 55.198652 25.134627, 55.198530 25.134685, 55.198392 25.134775, 55.198251 25.134867, 55.198170 25.134919, 55.197729 25.135207, 55.197195 25.135554, 55.197002 25.135680)",
"style": "normal"
},
{
"color": "fast",
"length": 43,
"selection": "LINESTRING(55.197002 25.135680, 55.196927 25.135784, 55.197018 25.135900, 55.197109 25.136016)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 349,
"selection": "LINESTRING(55.197109 25.136016, 55.196899 25.136151, 55.196812 25.136038, 55.196768 25.135981, 55.196558 25.135714, 55.196363 25.135466, 55.196243 25.135544, 55.196228 25.135563, 55.196225 25.135585, 55.196234 25.135612, 55.196400 25.135824, 55.196579 25.136051, 55.196597 25.136064, 55.196623 25.136068, 55.196646 25.136061, 55.196768 25.135981, 55.196646 25.136061, 55.196623 25.136068, 55.196597 25.136064, 55.196579 25.136051, 55.196400 25.135824, 55.196234 25.135612, 55.196225 25.135585, 55.196228 25.135563, 55.196243 25.135544, 55.196363 25.135466, 55.196572 25.135331)",
"style": "normal"
},
{
"color": "fast",
"length": 246,
"selection": "LINESTRING(55.196572 25.135331, 55.196466 25.135197, 55.196369 25.135074, 55.196219 25.134882, 55.196068 25.134690, 55.195955 25.134546, 55.195776 25.134317, 55.195683 25.134200, 55.195521 25.134260, 55.195432 25.134322, 55.194908 25.134688)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 103,
"selection": "LINESTRING(55.194908 25.134688, 55.195020 25.134822, 55.194486 25.135194, 55.194374 25.135062)",
"style": "normal"
},
{
"color": "fast",
"length": 982,
"selection": "LINESTRING(55.194374 25.135062, 55.194246 25.135151, 55.193911 25.135385, 55.193834 25.135440, 55.193310 25.135806, 55.193244 25.135851, 55.193115 25.135942, 55.193041 25.135993, 55.192927 25.136073, 55.192376 25.136457, 55.192229 25.136560, 55.192164 25.136654, 55.192111 25.136592, 55.192229 25.136560, 55.192376 25.136457, 55.192927 25.136073, 55.193041 25.135993, 55.193115 25.135942, 55.193159 25.136068, 55.193237 25.136161, 55.193524 25.136501, 55.193573 25.136562, 55.193754 25.136794, 55.193931 25.137004, 55.194259 25.137393, 55.194308 25.137450, 55.194349 25.137497, 55.194507 25.137670, 55.194521 25.137685, 55.194507 25.137670, 55.194349 25.137497, 55.194308 25.137450, 55.194259 25.137393, 55.193931 25.137004, 55.193754 25.136794, 55.193573 25.136562, 55.193524 25.136501, 55.193237 25.136161, 55.193159 25.136068, 55.193041 25.135993, 55.193115 25.135942, 55.193244 25.135851, 55.193310 25.135806, 55.193834 25.135440)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 820,
"selection": "LINESTRING(55.193834 25.135440, 55.193935 25.135561, 55.193416 25.135924, 55.193332 25.135981, 55.193313 25.136010, 55.193321 25.136033, 55.193399 25.136125, 55.193418 25.136137, 55.193445 25.136122, 55.194052 25.135698, 55.193935 25.135561, 55.194052 25.135698, 55.193445 25.136122, 55.193418 25.136137, 55.193399 25.136125, 55.193321 25.136033, 55.193313 25.136010, 55.193332 25.135981, 55.193416 25.135924, 55.193935 25.135561, 55.194052 25.135698, 55.193445 25.136122, 55.193418 25.136137, 55.193399 25.136125, 55.193321 25.136033, 55.193313 25.136010, 55.193332 25.135981, 55.193416 25.135924, 55.193935 25.135561, 55.193416 25.135924, 55.193332 25.135981, 55.193313 25.136010, 55.193321 25.136033, 55.193399 25.136125, 55.193418 25.136137, 55.193445 25.136122, 55.194052 25.135698, 55.193935 25.135561, 55.193834 25.135440)",
"style": "normal"
},
{
"color": "fast",
"length": 67,
"selection": "LINESTRING(55.193834 25.135440, 55.193911 25.135385, 55.194246 25.135151, 55.194374 25.135062)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 483,
"selection": "LINESTRING(55.194374 25.135062, 55.194486 25.135194, 55.194540 25.135258, 55.194567 25.135281, 55.194596 25.135291, 55.194628 25.135288, 55.194663 25.135274, 55.194844 25.135146, 55.195056 25.134998, 55.195079 25.134974, 55.195086 25.134942, 55.195082 25.134910, 55.195067 25.134877, 55.195020 25.134822, 55.195067 25.134877, 55.195082 25.134910, 55.195086 25.134942, 55.195079 25.134974, 55.195056 25.134998, 55.194844 25.135146, 55.194663 25.135274, 55.194628 25.135288, 55.194596 25.135291, 55.194567 25.135281, 55.194540 25.135258, 55.194486 25.135194, 55.195020 25.134822, 55.195067 25.134877, 55.195082 25.134910, 55.195086 25.134942, 55.195079 25.134974, 55.195056 25.134998, 55.194844 25.135146, 55.194663 25.135274, 55.194628 25.135288, 55.194596 25.135291, 55.194567 25.135281, 55.194540 25.135258, 55.194486 25.135194, 55.194540 25.135258, 55.194567 25.135281, 55.194596 25.135291, 55.194628 25.135288, 55.194663 25.135274, 55.194844 25.135146, 55.195056 25.134998, 55.195079 25.134974, 55.195086 25.134942, 55.195082 25.134910, 55.195067 25.134877, 55.195020 25.134822, 55.194908 25.134688)",
"style": "normal"
},
{
"color": "fast",
"length": 228,
"selection": "LINESTRING(55.194908 25.134688, 55.194744 25.134803, 55.194374 25.135062, 55.194744 25.134803, 55.194908 25.134688, 55.195432 25.134322, 55.195521 25.134260, 55.195631 25.134133)",
"style": "living_zone"
},
{
"color": "free",
"length": 8,
"selection": "LINESTRING(55.195631 25.134133, 55.195683 25.134200)",
"style": "living_zone"
},
{
"color": "fast",
"length": 534,
"selection": "LINESTRING(55.195683 25.134200, 55.195631 25.134133, 55.195586 25.134075, 55.195455 25.133909, 55.195079 25.133429, 55.194964 25.133282, 55.194911 25.133215, 55.194813 25.133090, 55.194747 25.133007, 55.194621 25.132846, 55.194478 25.132664, 55.194341 25.132490, 55.194270 25.132442, 55.194185 25.132420, 55.194090 25.132434, 55.194015 25.132473, 55.192904 25.133250, 55.191866 25.133974)",
"style": "living_zone"
},
{
"color": "free",
"length": 355,
"selection": "LINESTRING(55.191866 25.133974, 55.192904 25.133250, 55.194015 25.132473, 55.194090 25.132434, 55.194185 25.132420, 55.194270 25.132442, 55.194341 25.132490, 55.194478 25.132664, 55.194621 25.132846)",
"style": "living_zone"
},
{
"color": "fast",
"length": 591,
"selection": "LINESTRING(55.194621 25.132846, 55.194825 25.132715, 55.194851 25.132706, 55.194875 25.132697, 55.194940 25.132687, 55.195000 25.132688, 55.195071 25.132700, 55.195677 25.132886, 55.195899 25.132955, 55.195974 25.132752, 55.196124 25.132347, 55.196218 25.132079, 55.196232 25.132039, 55.196267 25.131968, 55.196307 25.131920, 55.196357 25.131871, 55.196373 25.131856, 55.196456 25.131797, 55.196482 25.131780, 55.196655 25.131669, 55.196482 25.131780, 55.196456 25.131797, 55.196373 25.131856, 55.196357 25.131871, 55.196307 25.131920, 55.196267 25.131968, 55.196232 25.132039, 55.196218 25.132079, 55.196124 25.132347, 55.195974 25.132752, 55.195899 25.132955, 55.196127 25.133025, 55.196597 25.133169, 55.196127 25.133025)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 82,
"selection": "LINESTRING(55.196127 25.133025, 55.196179 25.132901, 55.196218 25.132877, 55.196258 25.132875, 55.196584 25.132971, 55.196624 25.133003, 55.196634 25.133044, 55.196597 25.133169)",
"style": "normal"
},
{
"color": "fast",
"length": 361,
"selection": "LINESTRING(55.196597 25.133169, 55.197005 25.133294, 55.197719 25.133514, 55.197788 25.133530, 55.197856 25.133525, 55.197912 25.133505, 55.198030 25.133429, 55.198107 25.133527, 55.198137 25.133567, 55.198381 25.133878, 55.198422 25.133943, 55.198442 25.133983, 55.198452 25.134027, 55.198448 25.134086, 55.198342 25.134383, 55.198312 25.134486, 55.198296 25.134540, 55.198293 25.134595, 55.198302 25.134642, 55.198321 25.134683, 55.198392 25.134775, 55.198321 25.134683, 55.198302 25.134642, 55.198293 25.134595, 55.198296 25.134540, 55.198312 25.134486, 55.198342 25.134383)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 74,
"selection": "LINESTRING(55.198342 25.134383, 55.197986 25.134273, 55.198342 25.134383)",
"style": "normal"
},
{
"color": "fast",
"length": 105,
"selection": "LINESTRING(55.198342 25.134383, 55.198448 25.134086, 55.198452 25.134027, 55.198442 25.133983, 55.198422 25.133943, 55.198381 25.133878, 55.198137 25.133567, 55.198107 25.133527)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 42,
"selection": "LINESTRING(55.198107 25.133527, 55.198158 25.133494, 55.198174 25.133474, 55.198180 25.133450, 55.198175 25.133428, 55.198097 25.133328, 55.198076 25.133316, 55.198048 25.133316, 55.198025 25.133325, 55.197975 25.133358)",
"style": "normal"
},
{
"color": "fast",
"length": 18,
"selection": "LINESTRING(55.197975 25.133358, 55.198030 25.133429, 55.197975 25.133358)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 42,
"selection": "LINESTRING(55.197975 25.133358, 55.198025 25.133325, 55.198048 25.133316, 55.198076 25.133316, 55.198097 25.133328, 55.198175 25.133428, 55.198180 25.133450, 55.198174 25.133474, 55.198158 25.133494, 55.198107 25.133527)",
"style": "normal"
},
{
"color": "fast",
"length": 1345,
"selection": "LINESTRING(55.198107 25.133527, 55.198030 25.133429, 55.197975 25.133358, 55.197886 25.133245, 55.197300 25.132495, 55.196773 25.131819, 55.196655 25.131669, 55.196482 25.131780, 55.196456 25.131797, 55.196373 25.131856, 55.196357 25.131871, 55.196307 25.131920, 55.196267 25.131968, 55.196232 25.132039, 55.196218 25.132079, 55.196124 25.132347, 55.195974 25.132752, 55.195899 25.132955, 55.195974 25.132752, 55.196124 25.132347, 55.196218 25.132079, 55.196232 25.132039, 55.196267 25.131968, 55.196307 25.131920, 55.196357 25.131871, 55.196373 25.131856, 55.196456 25.131797, 55.196482 25.131780, 55.196655 25.131669, 55.196846 25.131545, 55.197189 25.131323, 55.197335 25.131228, 55.197189 25.131323, 55.196846 25.131545, 55.196655 25.131669, 55.196773 25.131819, 55.197300 25.132495, 55.197886 25.133245, 55.197975 25.133358, 55.198030 25.133429, 55.197912 25.133505, 55.197856 25.133525, 55.197788 25.133530, 55.197719 25.133514, 55.197005 25.133294, 55.196597 25.133169, 55.196127 25.133025, 55.195899 25.132955, 55.195677 25.132886, 55.195071 25.132700, 55.195000 25.132688, 55.194940 25.132687, 55.194875 25.132697, 55.194851 25.132706, 55.194825 25.132715, 55.194621 25.132846)",
"style": "living_zone"
},
{
"color": "free",
"length": 57,
"selection": "LINESTRING(55.194621 25.132846, 55.194747 25.133007, 55.194813 25.133090, 55.194911 25.133215, 55.194964 25.133282)",
"style": "living_zone"
},
{
"color": "fast",
"length": 312,
"selection": "LINESTRING(55.194964 25.133282, 55.194815 25.133333, 55.194712 25.133405, 55.193656 25.134142, 55.193491 25.134257, 55.192856 25.134701, 55.192730 25.134789, 55.192674 25.134810, 55.192609 25.134814, 55.192537 25.134801, 55.192477 25.134770, 55.192468 25.134757, 55.192420 25.134701)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 24,
"selection": "LINESTRING(55.192420 25.134701, 55.192325 25.134766, 55.192420 25.134701)",
"style": "normal"
},
{
"color": "fast",
"length": 123,
"selection": "LINESTRING(55.192420 25.134701, 55.191998 25.134201, 55.191920 25.134108, 55.191792 25.134027, 55.191579 25.134175)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 123,
"selection": "LINESTRING(55.191579 25.134175, 55.191570 25.134273, 55.191560 25.134307, 55.191538 25.134331, 55.191331 25.134476, 55.191396 25.134554, 55.191514 25.134693, 55.191396 25.134554, 55.191331 25.134476, 55.191293 25.134502, 55.191249 25.134517, 55.191205 25.134517, 55.191175 25.134500, 55.191148 25.134474)",
"style": "living_zone"
},
{
"color": "fast",
"length": 125,
"selection": "LINESTRING(55.191148 25.134474, 55.191579 25.134175, 55.191148 25.134474, 55.191012 25.134571)",
"style": "living_zone"
},
{
"color": "fast",
"length": 188,
"selection": "LINESTRING(55.191012 25.134571, 55.190893 25.134416, 55.190852 25.134393, 55.190808 25.134384, 55.190766 25.134387, 55.190728 25.134401, 55.190690 25.134429, 55.190659 25.134471, 55.190610 25.134561, 55.190547 25.134622, 55.190518 25.134641, 55.190282 25.134798, 55.190244 25.134824, 55.190218 25.134834, 55.190204 25.134838, 55.190185 25.134842, 55.190162 25.134844, 55.190141 25.134840, 55.190120 25.134835, 55.190100 25.134826, 55.190072 25.134805, 55.190039 25.134764, 55.189969 25.134682, 55.189870 25.134566, 55.189766 25.134444, 55.189682 25.134345)",
"style": "normal"
},
{
"color": "ignore",
"length": 114,
"selection": "LINESTRING(55.189682 25.134345, 55.189622 25.134388, 55.189354 25.134582, 55.189320 25.134590, 55.189293 25.134578, 55.189238 25.134513, 55.189293 25.134578, 55.189320 25.134590, 55.189354 25.134582, 55.189622 25.134388, 55.189682 25.134345)",
"style": "normal"
},
{
"color": "fast",
"length": 995,
"selection": "LINESTRING(55.189682 25.134345, 55.189618 25.134269, 55.189461 25.134085, 55.189374 25.133982, 55.189364 25.133961, 55.189358 25.133939, 55.189353 25.133914, 55.189353 25.133890, 55.189356 25.133861, 55.189364 25.133839, 55.189373 25.133819, 55.189389 25.133799, 55.189412 25.133770, 55.189425 25.133762, 55.189822 25.133488, 55.189966 25.133388, 55.189999 25.133327, 55.189997 25.133293, 55.189999 25.133327, 55.189966 25.133388, 55.189822 25.133488, 55.189425 25.133762, 55.189412 25.133770, 55.189389 25.133799, 55.189373 25.133819, 55.189364 25.133839, 55.189356 25.133861, 55.189353 25.133890, 55.189353 25.133914, 55.189358 25.133939, 55.189364 25.133961, 55.189374 25.133982, 55.189461 25.134085, 55.189618 25.134269, 55.189682 25.134345, 55.189766 25.134444, 55.189870 25.134566, 55.190301 25.134267, 55.190335 25.134309, 55.190468 25.134471, 55.190495 25.134478, 55.190531 25.134475, 55.190564 25.134457, 55.190588 25.134427, 55.190599 25.134400, 55.190601 25.134374, 55.190592 25.134348, 55.190473 25.134208, 55.190441 25.134171, 55.190370 25.134221, 55.190301 25.134267, 55.190370 25.134221, 55.190441 25.134171, 55.190581 25.134075, 55.190722 25.133978, 55.190760 25.133951, 55.190854 25.133888, 55.190760 25.133951, 55.190722 25.133978, 55.190757 25.134019, 55.190957 25.134261, 55.190948 25.134284, 55.190916 25.134302, 55.190874 25.134305, 55.190800 25.134308, 55.190768 25.134300, 55.190747 25.134278, 55.190613 25.134115, 55.190581 25.134075, 55.190722 25.133978, 55.190760 25.133951, 55.190854 25.133888, 55.190858 25.133871, 55.190851 25.133855, 55.190647 25.133737, 55.190628 25.133738, 55.190574 25.133775, 55.190572 25.133796, 55.190722 25.133978, 55.190581 25.134075, 55.190722 25.133978, 55.190760 25.133951, 55.190854 25.133888, 55.190760 25.133951, 55.190722 25.133978, 55.190757 25.134019, 55.190957 25.134261, 55.190948 25.134284, 55.190916 25.134302, 55.190874 25.134305, 55.190800 25.134308, 55.190768 25.134300, 55.190747 25.134278, 55.190613 25.134115, 55.190581 25.134075, 55.190441 25.134171, 55.190370 25.134221, 55.190301 25.134267, 55.189870 25.134566)",
"style": "normal"
},
{
"color": "free",
"length": 158,
"selection": "LINESTRING(55.189870 25.134566, 55.189969 25.134682, 55.190039 25.134764, 55.190072 25.134805, 55.190100 25.134826, 55.190120 25.134835, 55.190141 25.134840, 55.190162 25.134844, 55.190185 25.134842, 55.190204 25.134838, 55.190218 25.134834, 55.190244 25.134824, 55.190282 25.134798, 55.190518 25.134641, 55.190547 25.134622, 55.190610 25.134561, 55.190659 25.134471, 55.190690 25.134429, 55.190728 25.134401, 55.190766 25.134387, 55.190808 25.134384, 55.190852 25.134393, 55.190893 25.134416, 55.191012 25.134571)",
"style": "normal"
},
{
"color": "fast",
"length": 289,
"selection": "LINESTRING(55.191012 25.134571, 55.190640 25.134831, 55.190697 25.134901, 55.190768 25.134997, 55.191171 25.135476, 55.191475 25.135836, 55.191882 25.136320, 55.191990 25.136447, 55.192111 25.136592)",
"style": "living_zone"
},
{
"color": "free",
"length": 8,
"selection": "LINESTRING(55.192111 25.136592, 55.192164 25.136654)",
"style": "living_zone"
},
{
"color": "fast",
"length": 137,
"selection": "LINESTRING(55.192164 25.136654, 55.192266 25.136775, 55.192915 25.137544, 55.193004 25.137651)",
"style": "living_zone"
},
{
"color": "free",
"length": 98,
"selection": "LINESTRING(55.193004 25.137651, 55.193068 25.137726, 55.193141 25.137812, 55.193452 25.138182, 55.193528 25.138271, 55.193612 25.138371)",
"style": "living_zone"
},
{
"color": "fast",
"length": 308,
"selection": "LINESTRING(55.193612 25.138371, 55.193436 25.138407, 55.193356 25.138464, 55.192913 25.138773, 55.192170 25.139292, 55.191653 25.139653, 55.191531 25.139738, 55.191392 25.139836, 55.191297 25.139902, 55.191130 25.140019)",
"style": "living_zone"
},
{
"color": "fast",
"length": 73,
"selection": "LINESTRING(55.191130 25.140019, 55.191087 25.140083, 55.191064 25.140145, 55.191061 25.140222, 55.191082 25.140302, 55.191326 25.140588)",
"style": "normal"
},
{
"color": "ignore",
"length": 200,
"selection": "LINESTRING(55.191326 25.140588, 55.191421 25.140566, 55.191590 25.140765, 55.191806 25.141017, 55.191834 25.140997, 55.191855 25.140981, 55.192212 25.140729, 55.191855 25.140981, 55.191834 25.140997, 55.191806 25.141017, 55.191905 25.141132, 55.191921 25.141173, 55.191886 25.141243)",
"style": "normal"
},
{
"color": "fast",
"length": 134,
"selection": "LINESTRING(55.191886 25.141243, 55.192396 25.141842, 55.192712 25.142212)",
"style": "normal"
},
{
"color": "ignore",
"length": 201,
"selection": "LINESTRING(55.192712 25.142212, 55.192858 25.142266, 55.192871 25.142273, 55.192881 25.142281, 55.192891 25.142290, 55.192975 25.142382, 55.192993 25.142369, 55.193003 25.142362, 55.192993 25.142369, 55.192975 25.142382, 55.193007 25.142422, 55.193291 25.142771, 55.193473 25.142985, 55.193692 25.143240, 55.193708 25.143229, 55.193724 25.143217, 55.193805 25.143161, 55.193724 25.143217, 55.193708 25.143229, 55.193692 25.143240, 55.193710 25.143262, 55.193719 25.143280, 55.193723 25.143299, 55.193722 25.143322, 55.193719 25.143391)",
"style": "normal"
},
{
"color": "free",
"length": 12,
"selection": "LINESTRING(55.193719 25.143391, 55.193794 25.143478)",
"style": "normal"
},
{
"color": "fast",
"length": 31,
"selection": "LINESTRING(55.193794 25.143478, 55.193878 25.143506, 55.193947 25.143514, 55.193957 25.143513, 55.194019 25.143509, 55.194093 25.143490)",
"style": "normal"
},
{
"color": "fast",
"length": 322,
"selection": "LINESTRING(55.194093 25.143490, 55.194289 25.143352, 55.194433 25.143252, 55.194530 25.143183, 55.194628 25.143115, 55.194530 25.143183, 55.194628 25.143115, 55.194761 25.143021, 55.196104 25.142077, 55.196321 25.141925, 55.196466 25.141823)",
"style": "living_zone"
},
{
"color": "free",
"length": 232,
"selection": "LINESTRING(55.196466 25.141823, 55.196321 25.141925, 55.196104 25.142077, 55.194761 25.143021, 55.194628 25.143115)",
"style": "living_zone"
},
{
"color": "fast",
"length": 877,
"selection": "LINESTRING(55.194628 25.143115, 55.194664 25.143265, 55.194735 25.143348, 55.194992 25.143648, 55.195090 25.143762, 55.195139 25.143820, 55.195232 25.143930, 55.195386 25.144110, 55.194862 25.144480, 55.195386 25.144110, 55.195232 25.143930, 55.195139 25.143820, 55.195090 25.143762, 55.195205 25.143731, 55.195323 25.143648, 55.196643 25.142713, 55.196892 25.142538, 55.198025 25.141736, 55.198884 25.141128, 55.199361 25.140792, 55.199462 25.140719, 55.199533 25.140623)",
"style": "living_zone"
},
{
"color": "free",
"length": 8,
"selection": "LINESTRING(55.199533 25.140623, 55.199584 25.140683)",
"style": "living_zone"
},
{
"color": "fast",
"length": 121,
"selection": "LINESTRING(55.199584 25.140683, 55.199533 25.140623, 55.199439 25.140514, 55.199365 25.140427, 55.199187 25.140218, 55.199102 25.140118, 55.198993 25.140047, 55.198852 25.140147, 55.198748 25.140219)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 82,
"selection": "LINESTRING(55.198748 25.140219, 55.198684 25.140112, 55.198457 25.140270, 55.198684 25.140112, 55.198748 25.140219)",
"style": "living_zone"
},
{
"color": "fast",
"length": 82,
"selection": "LINESTRING(55.198748 25.140219, 55.198350 25.140499, 55.198185 25.140615, 55.198098 25.140676)",
"style": "living_zone"
},
{
"color": "free",
"length": 11,
"selection": "LINESTRING(55.198098 25.140676, 55.198185 25.140615)",
"style": "living_zone"
},
{
"color": "fast",
"length": 145,
"selection": "LINESTRING(55.198185 25.140615, 55.198098 25.140676, 55.197996 25.140748, 55.197777 25.140901, 55.197490 25.141104, 55.197022 25.141432)",
"style": "living_zone"
},
{
"color": "free",
"length": 95,
"selection": "LINESTRING(55.197022 25.141432, 55.197490 25.141104, 55.197777 25.140901)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 766,
"selection": "LINESTRING(55.197777 25.140901, 55.197655 25.140757, 55.197586 25.140675, 55.197553 25.140659, 55.197512 25.140655, 55.197474 25.140667, 55.196784 25.141152, 55.197474 25.140667, 55.197512 25.140655, 55.197553 25.140659, 55.197586 25.140675, 55.197655 25.140757, 55.196899 25.141288, 55.196873 25.141306, 55.196634 25.141474, 55.196607 25.141484, 55.196579 25.141485, 55.196553 25.141474, 55.196503 25.141415, 55.196493 25.141391, 55.196494 25.141363, 55.196512 25.141343, 55.196759 25.141170, 55.196784 25.141152, 55.196759 25.141170, 55.196512 25.141343, 55.196494 25.141363, 55.196493 25.141391, 55.196503 25.141415, 55.196553 25.141474, 55.196579 25.141485, 55.196607 25.141484, 55.196634 25.141474, 55.196873 25.141306, 55.196899 25.141288, 55.196784 25.141152, 55.196759 25.141170, 55.196512 25.141343, 55.196494 25.141363, 55.196493 25.141391, 55.196503 25.141415, 55.196553 25.141474, 55.196579 25.141485, 55.196607 25.141484, 55.196634 25.141474, 55.196873 25.141306, 55.196899 25.141288, 55.196873 25.141306, 55.196634 25.141474, 55.196607 25.141484, 55.196579 25.141485, 55.196553 25.141474, 55.196503 25.141415, 55.196493 25.141391, 55.196494 25.141363, 55.196512 25.141343, 55.196759 25.141170, 55.196784 25.141152, 55.196899 25.141288, 55.197022 25.141432)",
"style": "normal"
},
{
"color": "free",
"length": 95,
"selection": "LINESTRING(55.197022 25.141432, 55.197490 25.141104, 55.197777 25.140901)",
"style": "living_zone"
},
{
"color": "fast",
"length": 157,
"selection": "LINESTRING(55.197777 25.140901, 55.197490 25.141104, 55.197022 25.141432, 55.196698 25.141659, 55.196533 25.141776)",
"style": "living_zone"
},
{
"color": "free",
"length": 62,
"selection": "LINESTRING(55.196533 25.141776, 55.196698 25.141659, 55.197022 25.141432)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 136,
"selection": "LINESTRING(55.197022 25.141432, 55.196899 25.141288, 55.197655 25.140757, 55.197777 25.140901)",
"style": "normal"
},
{
"color": "free",
"length": 39,
"selection": "LINESTRING(55.197777 25.140901, 55.197996 25.140748, 55.198098 25.140676)",
"style": "living_zone"
},
{
"color": "fast",
"length": 669,
"selection": "LINESTRING(55.198098 25.140676, 55.198044 25.140517, 55.197981 25.140442, 55.197512 25.139881, 55.197385 25.139729, 55.197304 25.139632, 55.197261 25.139582, 55.196813 25.139046, 55.196722 25.138938, 55.196605 25.138879, 55.196689 25.138820, 55.196722 25.138938, 55.196813 25.139046, 55.197261 25.139582, 55.197304 25.139632, 55.197385 25.139729, 55.197512 25.139881, 55.197981 25.140442, 55.198044 25.140517, 55.198185 25.140615, 55.198350 25.140499, 55.198748 25.140219, 55.198852 25.140147, 55.198993 25.140047, 55.199058 25.140002, 55.199204 25.139900, 55.199471 25.139712)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 202,
"selection": "LINESTRING(55.199471 25.139712, 55.199419 25.139650, 55.199406 25.139640, 55.199387 25.139634, 55.199367 25.139636, 55.199352 25.139643, 55.198684 25.140112, 55.199352 25.139643, 55.199367 25.139636, 55.199387 25.139634, 55.199406 25.139640, 55.199419 25.139650, 55.199471 25.139712)",
"style": "living_zone"
},
{
"color": "fast",
"length": 44,
"selection": "LINESTRING(55.199471 25.139712, 55.199598 25.139623, 55.199711 25.139543, 55.199790 25.139430)",
"style": "living_zone"
},
{
"color": "normal",
"length": 10,
"selection": "LINESTRING(55.199790 25.139430, 55.199850 25.139508)",
"style": "living_zone"
},
{
"color": "fast",
"length": 194,
"selection": "LINESTRING(55.199850 25.139508, 55.199711 25.139543, 55.199598 25.139623, 55.199471 25.139712, 55.199204 25.139900, 55.199058 25.140002, 55.198993 25.140047, 55.199058 25.140002, 55.199102 25.140118, 55.199187 25.140218, 55.199365 25.140427, 55.199439 25.140514, 55.199533 25.140623)",
"style": "living_zone"
},
{
"color": "free",
"length": 85,
"selection": "LINESTRING(55.199533 25.140623, 55.199584 25.140683, 55.199673 25.140787, 55.199913 25.141069, 55.200014 25.141186, 55.200067 25.141248)",
"style": "living_zone"
},
{
"color": "fast",
"length": 686,
"selection": "LINESTRING(55.200067 25.141248, 55.200155 25.141352, 55.200313 25.141537, 55.200433 25.141677, 55.200446 25.141726, 55.200444 25.141776, 55.200424 25.141831, 55.200383 25.141880, 55.200309 25.141933, 55.199693 25.142368, 55.199003 25.142856, 55.198463 25.143239, 55.198327 25.143334, 55.198463 25.143239, 55.199003 25.142856, 55.199693 25.142368, 55.200309 25.141933, 55.200383 25.141880, 55.200424 25.141831, 55.200444 25.141776, 55.200446 25.141726, 55.200433 25.141677, 55.200313 25.141537, 55.200155 25.141352, 55.200067 25.141248)",
"style": "living_zone"
},
{
"color": "free",
"length": 279,
"selection": "LINESTRING(55.200067 25.141248, 55.199948 25.141282, 55.199820 25.141374, 55.198761 25.142122, 55.198479 25.142322, 55.197982 25.142673, 55.197845 25.142770)",
"style": "living_zone"
},
{
"color": "fast",
"length": 1795,
"selection": "LINESTRING(55.197845 25.142770, 55.197890 25.142888, 55.197964 25.142974, 55.198130 25.143169, 55.198198 25.143250, 55.198327 25.143334, 55.198463 25.143239, 55.199003 25.142856, 55.199693 25.142368, 55.200309 25.141933, 55.200383 25.141880, 55.200424 25.141831, 55.200444 25.141776, 55.200446 25.141726, 55.200433 25.141677, 55.200313 25.141537, 55.200155 25.141352, 55.200067 25.141248, 55.200155 25.141352, 55.200313 25.141537, 55.200433 25.141677, 55.200446 25.141726, 55.200444 25.141776, 55.200424 25.141831, 55.200383 25.141880, 55.200309 25.141933, 55.199693 25.142368, 55.199003 25.142856, 55.198463 25.143239, 55.198327 25.143334, 55.198249 25.143390, 55.197988 25.143574, 55.197642 25.143818, 55.196289 25.144776, 55.196180 25.144853, 55.196104 25.144950, 55.196059 25.144897, 55.196180 25.144853, 55.196289 25.144776, 55.197642 25.143818, 55.197988 25.143574, 55.198249 25.143390, 55.198327 25.143334, 55.198249 25.143390, 55.198198 25.143250, 55.198130 25.143169, 55.197964 25.142974, 55.197890 25.142888, 55.197782 25.142816, 55.197686 25.142883, 55.197306 25.143152, 55.197124 25.143280, 55.197012 25.143360, 55.195795 25.144221, 55.195694 25.144292, 55.195622 25.144386, 55.195574 25.144331, 55.195468 25.144205, 55.195386 25.144110, 55.195468 25.144205, 55.195574 25.144331, 55.195622 25.144386, 55.195719 25.144500)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 136,
"selection": "LINESTRING(55.195719 25.144500, 55.195183 25.144879, 55.195719 25.144500)",
"style": "living_zone"
},
{
"color": "fast",
"length": 703,
"selection": "LINESTRING(55.195719 25.144500, 55.195948 25.144767, 55.196059 25.144897, 55.196180 25.144853, 55.196289 25.144776, 55.197642 25.143818, 55.197988 25.143574, 55.198249 25.143390, 55.197988 25.143574, 55.197642 25.143818, 55.196289 25.144776, 55.196180 25.144853, 55.196104 25.144950, 55.196059 25.144897, 55.196104 25.144950, 55.196204 25.145067, 55.196429 25.145331, 55.196514 25.145430, 55.196578 25.145457, 55.196647 25.145463, 55.196701 25.145461)",
"style": "living_zone"
},
{
"color": "free",
"length": 267,
"selection": "LINESTRING(55.196701 25.145461, 55.196874 25.145339, 55.197757 25.144719, 55.197853 25.144652, 55.197953 25.144593, 55.198026 25.144556, 55.198141 25.144503, 55.198214 25.144469, 55.198277 25.144435, 55.198317 25.144410, 55.198372 25.144364, 55.198391 25.144345, 55.198409 25.144323, 55.198425 25.144300, 55.198437 25.144274, 55.198443 25.144237, 55.198457 25.144205, 55.198481 25.144175, 55.198514 25.144153, 55.198550 25.144140, 55.198590 25.144135, 55.198630 25.144140, 55.198666 25.144153, 55.198698 25.144175, 55.198723 25.144205, 55.198737 25.144237, 55.198743 25.144274)",
"style": "normal"
},
{
"color": "fast",
"length": 24,
"selection": "LINESTRING(55.198743 25.144274, 55.198737 25.144310, 55.198723 25.144343, 55.198698 25.144372, 55.198666 25.144395, 55.198590 25.144413)",
"style": "normal"
},
{
"color": "free",
"length": 4,
"selection": "LINESTRING(55.198590 25.144413, 55.198550 25.144408)",
"style": "normal"
},
{
"color": "fast",
"length": 550,
"selection": "LINESTRING(55.198550 25.144408, 55.198506 25.144418, 55.198475 25.144434, 55.198420 25.144469, 55.198257 25.144566, 55.198205 25.144597, 55.198155 25.144626, 55.198026 25.144704, 55.197919 25.144771, 55.197005 25.145418, 55.196914 25.145478, 55.196822 25.145529, 55.196716 25.145579, 55.196641 25.145621, 55.196275 25.145894, 55.196094 25.146026, 55.196016 25.146081, 55.195887 25.146176, 55.195822 25.146223, 55.195669 25.146334, 55.195481 25.146471, 55.195353 25.146549, 55.195212 25.146622, 55.195127 25.146682, 55.195053 25.146734, 55.194859 25.146869, 55.195053 25.146734, 55.195127 25.146682, 55.195212 25.146622, 55.195330 25.146501, 55.195437 25.146409, 55.195467 25.146387, 55.195608 25.146282)",
"style": "normal"
},
{
"color": "free",
"length": 29,
"selection": "LINESTRING(55.195608 25.146282, 55.195769 25.146162, 55.195834 25.146114)",
"style": "normal"
},
{
"color": "fast",
"length": 87,
"selection": "LINESTRING(55.195834 25.146114, 55.195963 25.146018, 55.196039 25.145962, 55.196227 25.145822, 55.196375 25.145708, 55.196522 25.145595)",
"style": "normal"
},
{
"color": "fast",
"length": 746,
"selection": "LINESTRING(55.196522 25.145595, 55.196531 25.145537, 55.196529 25.145490, 55.196514 25.145430, 55.196429 25.145331, 55.196204 25.145067, 55.196104 25.144950, 55.196059 25.144897, 55.195948 25.144767, 55.195719 25.144500, 55.195622 25.144386, 55.195574 25.144331, 55.195694 25.144292, 55.195795 25.144221, 55.197012 25.143360, 55.197124 25.143280, 55.197306 25.143152, 55.197686 25.142883, 55.197782 25.142816, 55.197845 25.142770, 55.197782 25.142816, 55.197845 25.142770, 55.197982 25.142673, 55.198479 25.142322, 55.198761 25.142122, 55.199820 25.141374, 55.199948 25.141282, 55.200014 25.141186)",
"style": "living_zone"
},
{
"color": "free",
"length": 8,
"selection": "LINESTRING(55.200014 25.141186, 55.200067 25.141248)",
"style": "living_zone"
},
{
"color": "fast",
"length": 786,
"selection": "LINESTRING(55.200067 25.141248, 55.200014 25.141186, 55.199913 25.141069, 55.199673 25.140787, 55.199584 25.140683, 55.199462 25.140719, 55.199361 25.140792, 55.198884 25.141128, 55.198025 25.141736, 55.196892 25.142538, 55.196643 25.142713, 55.195323 25.143648, 55.195205 25.143731, 55.195139 25.143820, 55.195090 25.143762, 55.194992 25.143648, 55.194735 25.143348, 55.194664 25.143265, 55.194530 25.143183, 55.194433 25.143252, 55.194289 25.143352, 55.194093 25.143490)",
"style": "living_zone"
},
{
"color": "fast",
"length": 32,
"selection": "LINESTRING(55.194093 25.143490, 55.194052 25.143554, 55.194036 25.143596, 55.194028 25.143616, 55.194025 25.143693, 55.194046 25.143773)",
"style": "normal"
},
{
"color": "free",
"length": 189,
"selection": "LINESTRING(55.194046 25.143773, 55.194435 25.144230, 55.195091 25.144998, 55.195203 25.145129)",
"style": "normal"
},
{
"color": "fast",
"length": 84,
"selection": "LINESTRING(55.195203 25.145129, 55.195425 25.145389, 55.195722 25.145736)",
"style": "normal"
},
{
"color": "free",
"length": 47,
"selection": "LINESTRING(55.195722 25.145736, 55.195901 25.145945, 55.195963 25.146018, 55.196016 25.146081)",
"style": "normal"
},
{
"color": "fast",
"length": 45,
"selection": "LINESTRING(55.196016 25.146081, 55.195956 25.146106, 55.195912 25.146117, 55.195883 25.146121, 55.195857 25.146120, 55.195834 25.146114, 55.195770 25.146038, 55.195668 25.145916)",
"style": "normal"
},
{
"color": "slow",
"length": 38,
"selection": "LINESTRING(55.195668 25.145916, 55.195484 25.145695, 55.195432 25.145633)",
"style": "normal"
},
{
"color": "fluid",
"length": 364,
"selection": "LINESTRING(55.195432 25.145633, 55.195239 25.145405, 55.195194 25.145350, 55.194996 25.145114, 55.194970 25.145083, 55.194764 25.144838, 55.193936 25.143858, 55.193207 25.142996)",
"style": "normal"
},
{
"color": "normal",
"length": 25,
"selection": "LINESTRING(55.193207 25.142996, 55.193055 25.142816)",
"style": "normal"
},
{
"color": "fast",
"length": 36,
"selection": "LINESTRING(55.193055 25.142816, 55.192970 25.142653, 55.192950 25.142589, 55.192947 25.142542, 55.192965 25.142507)",
"style": "normal"
},
{
"color": "free",
"length": 240,
"selection": "LINESTRING(55.192965 25.142507, 55.193160 25.142735, 55.193410 25.143029, 55.193629 25.143284, 55.193719 25.143391, 55.193794 25.143478, 55.194046 25.143773, 55.194435 25.144230)",
"style": "normal"
},
{
"color": "ignore",
"length": 22,
"selection": "LINESTRING(55.194435 25.144230, 55.194527 25.144165, 55.194435 25.144230)",
"style": "normal"
},
{
"color": "free",
"length": 125,
"selection": "LINESTRING(55.194435 25.144230, 55.195091 25.144998, 55.195203 25.145129)",
"style": "normal"
},
{
"color": "ignore",
"length": 106,
"selection": "LINESTRING(55.195203 25.145129, 55.195287 25.145070, 55.195332 25.145038, 55.195337 25.144997, 55.195327 25.144918, 55.195321 25.144880, 55.195325 25.144849, 55.195340 25.144829, 55.195407 25.144776, 55.195426 25.144776, 55.195443 25.144784, 55.195525 25.144876, 55.195529 25.144893, 55.195520 25.144907, 55.195332 25.145038, 55.195287 25.145070, 55.195203 25.145129)",
"style": "normal"
},
{
"color": "free",
"length": 36,
"selection": "LINESTRING(55.195203 25.145129, 55.195425 25.145389)",
"style": "normal"
},
{
"color": "ignore",
"length": 72,
"selection": "LINESTRING(55.195425 25.145389, 55.195517 25.145324, 55.195716 25.145184, 55.195517 25.145324, 55.195425 25.145389)",
"style": "normal"
},
{
"color": "free",
"length": 102,
"selection": "LINESTRING(55.195425 25.145389, 55.195722 25.145736, 55.195823 25.145801, 55.195892 25.145832, 55.195971 25.145855, 55.195990 25.145855, 55.196051 25.145860, 55.196136 25.145853, 55.196227 25.145822)",
"style": "normal"
},
{
"color": "fast",
"length": 61,
"selection": "LINESTRING(55.196227 25.145822, 55.196375 25.145708, 55.196522 25.145595, 55.196620 25.145520, 55.196701 25.145461)",
"style": "normal"
},
{
"color": "free",
"length": 219,
"selection": "LINESTRING(55.196701 25.145461, 55.196874 25.145339, 55.197757 25.144719, 55.197853 25.144652, 55.197953 25.144593, 55.198026 25.144556, 55.198141 25.144503, 55.198214 25.144469, 55.198277 25.144435, 55.198317 25.144410, 55.198372 25.144364, 55.198391 25.144345, 55.198409 25.144323, 55.198425 25.144300, 55.198437 25.144274)",
"style": "normal"
},
{
"color": "fast",
"length": 394,
"selection": "LINESTRING(55.198437 25.144274, 55.198443 25.144237, 55.198457 25.144205, 55.198481 25.144175, 55.198514 25.144153, 55.198550 25.144140, 55.198590 25.144135, 55.198636 25.144124, 55.198666 25.144114, 55.198712 25.144092, 55.198948 25.143923, 55.199018 25.143873, 55.199081 25.143826, 55.199158 25.143761, 55.199276 25.143662, 55.199378 25.143580, 55.199531 25.143473, 55.200124 25.143056, 55.201103 25.142368, 55.201325 25.142212, 55.201470 25.142106, 55.201509 25.142075)",
"style": "normal"
},
{
"color": "free",
"length": 18,
"selection": "LINESTRING(55.201509 25.142075, 55.201537 25.142047, 55.201557 25.142021, 55.201574 25.141993, 55.201591 25.141956, 55.201600 25.141930)",
"style": "normal"
},
{
"color": "fast",
"length": 24,
"selection": "LINESTRING(55.201600 25.141930, 55.201606 25.141894, 55.201620 25.141861, 55.201645 25.141832, 55.201678 25.141809, 55.201714 25.141796, 55.201753 25.141791)",
"style": "normal"
},
{
"color": "free",
"length": 260,
"selection": "LINESTRING(55.201753 25.141791, 55.201801 25.141789, 55.201842 25.141785, 55.201894 25.141770, 55.201969 25.141732, 55.202170 25.141602, 55.202446 25.141425, 55.202878 25.141126, 55.202965 25.141066, 55.203253 25.140871, 55.203383 25.140784, 55.203457 25.140732, 55.203697 25.140548, 55.203862 25.140422)",
"style": "normal"
},
{
"color": "fast",
"length": 16,
"selection": "LINESTRING(55.203862 25.140422, 55.203961 25.140308)",
"style": "normal"
},
{
"color": "ignore",
"length": 180,
"selection": "LINESTRING(55.203961 25.140308, 55.203960 25.140252, 55.203943 25.140193, 55.203883 25.140102, 55.203709 25.139889, 55.203604 25.139760, 55.203578 25.139753, 55.203362 25.139894, 55.203358 25.139921, 55.203641 25.140258, 55.203700 25.140324, 55.203741 25.140357, 55.203862 25.140422)",
"style": "normal"
},
{
"color": "fast",
"length": 78,
"selection": "LINESTRING(55.203862 25.140422, 55.203952 25.140388, 55.204187 25.140280, 55.204307 25.140201, 55.204395 25.140143, 55.204462 25.140099, 55.204518 25.140171)",
"style": "normal"
},
{
"color": "free",
"length": 372,
"selection": "LINESTRING(55.204518 25.140171, 55.204453 25.140216, 55.204365 25.140276, 55.203870 25.140618, 55.203697 25.140738, 55.203453 25.140897, 55.203108 25.141123, 55.202653 25.141432, 55.202605 25.141464, 55.202493 25.141537, 55.202381 25.141597, 55.202216 25.141685, 55.202032 25.141802, 55.201978 25.141842, 55.201950 25.141871, 55.201927 25.141902, 55.201913 25.141931, 55.201900 25.141967, 55.201886 25.141999, 55.201862 25.142029, 55.201829 25.142050, 55.201794 25.142064, 55.201753 25.142069, 55.201714 25.142064, 55.201678 25.142050, 55.201645 25.142029, 55.201620 25.141999, 55.201606 25.141967, 55.201600 25.141930)",
"style": "normal"
},
{
"color": "fast",
"length": 24,
"selection": "LINESTRING(55.201600 25.141930, 55.201606 25.141894, 55.201620 25.141861, 55.201645 25.141832, 55.201678 25.141809, 55.201714 25.141796, 55.201753 25.141791)",
"style": "normal"
},
{
"color": "free",
"length": 260,
"selection": "LINESTRING(55.201753 25.141791, 55.201801 25.141789, 55.201842 25.141785, 55.201894 25.141770, 55.201969 25.141732, 55.202170 25.141602, 55.202446 25.141425, 55.202878 25.141126, 55.202965 25.141066, 55.203253 25.140871, 55.203383 25.140784, 55.203457 25.140732, 55.203697 25.140548, 55.203862 25.140422)",
"style": "normal"
},
{
"color": "fast",
"length": 532,
"selection": "LINESTRING(55.203862 25.140422, 55.203961 25.140308, 55.204024 25.140237, 55.204066 25.140169, 55.204094 25.140106, 55.204108 25.140042, 55.204111 25.139978, 55.204105 25.139917, 55.204086 25.139857, 55.203941 25.139557, 55.203492 25.138945, 55.203401 25.138821, 55.202463 25.137637, 55.201816 25.136817, 55.201488 25.136401)",
"style": "normal"
},
{
"color": "fluid",
"length": 296,
"selection": "LINESTRING(55.201488 25.136401, 55.200985 25.135763, 55.199782 25.134221)",
"style": "normal"
},
{
"color": "normal",
"length": 3,
"selection": "LINESTRING(55.199782 25.134221, 55.199762 25.134195)",
"style": "normal"
},
{
"color": "fluid",
"length": 59,
"selection": "LINESTRING(55.199762 25.134195, 55.199623 25.134017, 55.199591 25.133976, 55.199547 25.133920, 55.199435 25.133777, 55.199412 25.133747)",
"style": "normal"
},
{
"color": "normal",
"length": 139,
"selection": "LINESTRING(55.199412 25.133747, 55.198610 25.132718)",
"style": "normal"
},
{
"color": "fast",
"length": 101,
"selection": "LINESTRING(55.198610 25.132718, 55.198436 25.132494, 55.198178 25.132168, 55.198137 25.132083, 55.198118 25.132043, 55.198114 25.131996, 55.198119 25.131968, 55.198149 25.131948)",
"style": "normal"
},
{
"color": "normal",
"length": 184,
"selection": "LINESTRING(55.198149 25.131948, 55.198257 25.132085, 55.198319 25.132164, 55.198439 25.132316, 55.198532 25.132433, 55.198965 25.132981, 55.199046 25.133085, 55.199241 25.133332)",
"style": "normal"
},
{
"color": "fast",
"length": 391,
"selection": "LINESTRING(55.199241 25.133332, 55.199271 25.133403, 55.199298 25.133464, 55.199346 25.133535, 55.199604 25.133883, 55.199620 25.133904, 55.199637 25.133938, 55.199638 25.133965, 55.199675 25.133960, 55.199726 25.133969, 55.199758 25.133988, 55.201089 25.135691, 55.201232 25.135875, 55.201307 25.135970, 55.201486 25.136198)",
"style": "normal"
},
{
"color": "normal",
"length": 22,
"selection": "LINESTRING(55.201486 25.136198, 55.201525 25.136250, 55.201613 25.136362)",
"style": "normal"
},
{
"color": "fast",
"length": 337,
"selection": "LINESTRING(55.201613 25.136362, 55.202559 25.137573, 55.202960 25.138078, 55.203059 25.138205, 55.203270 25.138471, 55.203569 25.138848)",
"style": "normal"
},
{
"color": "normal",
"length": 19,
"selection": "LINESTRING(55.203569 25.138848, 55.203683 25.138992)",
"style": "normal"
},
{
"color": "fast",
"length": 154,
"selection": "LINESTRING(55.203683 25.138992, 55.204026 25.139425, 55.204090 25.139548, 55.204234 25.139800, 55.204341 25.139939, 55.204417 25.140039, 55.204462 25.140099, 55.204518 25.140171)",
"style": "normal"
},
{
"color": "free",
"length": 372,
"selection": "LINESTRING(55.204518 25.140171, 55.204453 25.140216, 55.204365 25.140276, 55.203870 25.140618, 55.203697 25.140738, 55.203453 25.140897, 55.203108 25.141123, 55.202653 25.141432, 55.202605 25.141464, 55.202493 25.141537, 55.202381 25.141597, 55.202216 25.141685, 55.202032 25.141802, 55.201978 25.141842, 55.201950 25.141871, 55.201927 25.141902, 55.201913 25.141931, 55.201900 25.141967, 55.201886 25.141999, 55.201862 25.142029, 55.201829 25.142050, 55.201794 25.142064, 55.201753 25.142069, 55.201714 25.142064, 55.201678 25.142050, 55.201645 25.142029, 55.201620 25.141999, 55.201606 25.141967, 55.201600 25.141930)",
"style": "normal"
},
{
"color": "fast",
"length": 24,
"selection": "LINESTRING(55.201600 25.141930, 55.201606 25.141894, 55.201620 25.141861, 55.201645 25.141832, 55.201678 25.141809, 55.201714 25.141796, 55.201753 25.141791)",
"style": "normal"
},
{
"color": "free",
"length": 260,
"selection": "LINESTRING(55.201753 25.141791, 55.201801 25.141789, 55.201842 25.141785, 55.201894 25.141770, 55.201969 25.141732, 55.202170 25.141602, 55.202446 25.141425, 55.202878 25.141126, 55.202965 25.141066, 55.203253 25.140871, 55.203383 25.140784, 55.203457 25.140732, 55.203697 25.140548, 55.203862 25.140422)",
"style": "normal"
},
{
"color": "fast",
"length": 406,
"selection": "LINESTRING(55.203862 25.140422, 55.204055 25.140275, 55.204260 25.140141, 55.204349 25.140083, 55.204417 25.140039, 55.204479 25.140000, 55.204576 25.139935, 55.204962 25.139686, 55.205345 25.139435, 55.207171 25.138262)",
"style": "normal"
},
{
"color": "free",
"length": 167,
"selection": "LINESTRING(55.207171 25.138262, 55.207880 25.137806, 55.207951 25.137898, 55.207615 25.138116, 55.207516 25.138180, 55.207476 25.138206, 55.207391 25.138260)",
"style": "normal"
},
{
"color": "fast",
"length": 356,
"selection": "LINESTRING(55.207391 25.138260, 55.207141 25.138420, 55.206973 25.138528, 55.205877 25.139230, 55.205681 25.139356, 55.205363 25.139586, 55.205212 25.139647, 55.205114 25.139691, 55.204969 25.139768, 55.204630 25.139988, 55.204525 25.140058, 55.204462 25.140099)",
"style": "normal"
},
{
"color": "free",
"length": 8,
"selection": "LINESTRING(55.204462 25.140099, 55.204417 25.140039)",
"style": "normal"
},
{
"color": "fast",
"length": 609,
"selection": "LINESTRING(55.204417 25.140039, 55.204479 25.140000, 55.204576 25.139935, 55.204962 25.139686, 55.205345 25.139435, 55.207171 25.138262, 55.207880 25.137806, 55.208090 25.137669, 55.208296 25.137521, 55.208668 25.137267, 55.208919 25.137099, 55.208985 25.137026, 55.209023 25.136974, 55.209054 25.136913, 55.209064 25.136852, 55.209064 25.136795, 55.209047 25.136726, 55.209019 25.136651)",
"style": "normal"
},
{
"color": "fast",
"length": 960,
"selection": "LINESTRING(55.209019 25.136651, 55.208647 25.136155, 55.207750 25.135010, 55.207690 25.134934, 55.207518 25.134714, 55.207208 25.134317, 55.206919 25.133949, 55.206829 25.133834, 55.206169 25.132990, 55.205963 25.133124, 55.205708 25.133290, 55.205654 25.133325, 55.205579 25.133374, 55.204473 25.134094, 55.204278 25.134220, 55.203559 25.134688, 55.203430 25.134772, 55.202359 25.135469)",
"style": "living_zone"
},
{
"color": "slow",
"length": 123,
"selection": "LINESTRING(55.202359 25.135469, 55.202293 25.135512, 55.201615 25.135953, 55.201546 25.135998, 55.201518 25.136038, 55.201491 25.136090, 55.201481 25.136151, 55.201486 25.136198)",
"style": "living_zone"
},
{
"color": "normal",
"length": 22,
"selection": "LINESTRING(55.201486 25.136198, 55.201525 25.136250, 55.201613 25.136362)",
"style": "normal"
},
{
"color": "fast",
"length": 337,
"selection": "LINESTRING(55.201613 25.136362, 55.202559 25.137573, 55.202960 25.138078, 55.203059 25.138205, 55.203270 25.138471, 55.203569 25.138848)",
"style": "normal"
},
{
"color": "normal",
"length": 19,
"selection": "LINESTRING(55.203569 25.138848, 55.203683 25.138992)",
"style": "normal"
},
{
"color": "fast",
"length": 153,
"selection": "LINESTRING(55.203683 25.138992, 55.204026 25.139425, 55.204090 25.139548, 55.204234 25.139800, 55.204341 25.139939, 55.204417 25.140039, 55.204462 25.140099, 55.204395 25.140143)",
"style": "normal"
},
{
"color": "normal",
"length": 78,
"selection": "LINESTRING(55.204395 25.140143, 55.204349 25.140083, 55.204271 25.139984, 55.203982 25.139612, 55.203941 25.139557)",
"style": "normal"
},
{
"color": "fast",
"length": 91,
"selection": "LINESTRING(55.203941 25.139557, 55.203492 25.138945, 55.203389 25.138918)",
"style": "normal"
},
{
"color": "fast",
"length": 162,
"selection": "LINESTRING(55.203389 25.138918, 55.203384 25.138963, 55.203393 25.139025, 55.203421 25.139080, 55.203764 25.139549, 55.203421 25.139080, 55.203393 25.139025, 55.203384 25.138963, 55.203389 25.138918)",
"style": "living_zone"
},
{
"color": "fast",
"length": 193,
"selection": "LINESTRING(55.203389 25.138918, 55.203341 25.138897, 55.203298 25.138868, 55.203252 25.138826, 55.203199 25.138767, 55.203148 25.138700, 55.203079 25.138595, 55.203042 25.138521, 55.203004 25.138458, 55.202615 25.137964, 55.202257 25.137510)",
"style": "normal"
},
{
"color": "free",
"length": 134,
"selection": "LINESTRING(55.202257 25.137510, 55.201849 25.136994, 55.201484 25.136516)",
"style": "normal"
},
{
"color": "ignore",
"length": 350,
"selection": "LINESTRING(55.201484 25.136516, 55.201274 25.136236, 55.201262 25.136220, 55.201246 25.136204, 55.201154 25.136122, 55.201087 25.136063, 55.201025 25.135994, 55.200610 25.135440, 55.200003 25.134627, 55.199540 25.134929, 55.199453 25.134984, 55.199389 25.135060, 55.199327 25.135188)",
"style": "normal"
},
{
"color": "fast",
"length": 982,
"selection": "LINESTRING(55.199327 25.135188, 55.199411 25.135191, 55.199487 25.135228, 55.199542 25.135293, 55.199567 25.135324, 55.199980 25.135850, 55.200041 25.135928, 55.200240 25.136182, 55.200369 25.136345, 55.200480 25.136487, 55.200637 25.136687, 55.201144 25.137333, 55.201264 25.137486, 55.201312 25.137547, 55.201398 25.137657, 55.201970 25.138385, 55.202988 25.139682, 55.203042 25.139751, 55.203070 25.139807, 55.203078 25.139878, 55.203058 25.139946, 55.203017 25.139996, 55.202933 25.140050, 55.202829 25.140118, 55.202677 25.140217, 55.202563 25.140291, 55.202482 25.140344, 55.202563 25.140291, 55.202482 25.140344, 55.202332 25.140441, 55.202062 25.140617, 55.201916 25.140713, 55.201850 25.140755, 55.201747 25.140823, 55.201431 25.141027, 55.201303 25.141111, 55.201200 25.141227, 55.201290 25.141342, 55.201368 25.141440, 55.201540 25.141661, 55.201565 25.141692, 55.201628 25.141743, 55.201656 25.141761, 55.201689 25.141774, 55.201753 25.141791)",
"style": "living_zone"
},
{
"color": "free",
"length": 72,
"selection": "LINESTRING(55.201753 25.141791, 55.201794 25.141796, 55.201829 25.141809, 55.201862 25.141832, 55.201886 25.141861, 55.201900 25.141894, 55.201906 25.141930, 55.201900 25.141967, 55.201886 25.141999, 55.201862 25.142029, 55.201829 25.142050, 55.201794 25.142064, 55.201753 25.142069, 55.201714 25.142064, 55.201678 25.142050, 55.201645 25.142029, 55.201620 25.141999, 55.201606 25.141967, 55.201600 25.141930)",
"style": "normal"
},
{
"color": "fast",
"length": 24,
"selection": "LINESTRING(55.201600 25.141930, 55.201606 25.141894, 55.201620 25.141861, 55.201645 25.141832, 55.201678 25.141809, 55.201714 25.141796, 55.201753 25.141791)",
"style": "normal"
},
{
"color": "free",
"length": 47,
"selection": "LINESTRING(55.201753 25.141791, 55.201801 25.141789, 55.201842 25.141785, 55.201894 25.141770, 55.201969 25.141732, 55.202170 25.141602)",
"style": "normal"
},
{
"color": "ignore",
"length": 18,
"selection": "LINESTRING(55.202170 25.141602, 55.202197 25.141525, 55.202226 25.141484, 55.202261 25.141459)",
"style": "normal"
},
{
"color": "ignore",
"length": 201,
"selection": "LINESTRING(55.202261 25.141459, 55.202217 25.141403, 55.202211 25.141397, 55.202200 25.141366, 55.202201 25.141324, 55.202221 25.141284, 55.202410 25.141093, 55.202467 25.141043, 55.202531 25.141005, 55.202774 25.140910, 55.202823 25.140884, 55.202857 25.140856, 55.202980 25.140743, 55.203025 25.140714, 55.203080 25.140686, 55.203143 25.140665, 55.203080 25.140686, 55.203025 25.140714, 55.202980 25.140743, 55.202857 25.140856, 55.202823 25.140884, 55.202871 25.140946, 55.202965 25.141066)",
"style": "living_zone"
},
{
"color": "free",
"length": 114,
"selection": "LINESTRING(55.202965 25.141066, 55.203253 25.140871, 55.203383 25.140784, 55.203457 25.140732, 55.203697 25.140548, 55.203862 25.140422)",
"style": "normal"
},
{
"color": "fast",
"length": 78,
"selection": "LINESTRING(55.203862 25.140422, 55.203952 25.140388, 55.204187 25.140280, 55.204307 25.140201, 55.204395 25.140143, 55.204462 25.140099, 55.204518 25.140171)",
"style": "normal"
},
{
"color": "free",
"length": 372,
"selection": "LINESTRING(55.204518 25.140171, 55.204453 25.140216, 55.204365 25.140276, 55.203870 25.140618, 55.203697 25.140738, 55.203453 25.140897, 55.203108 25.141123, 55.202653 25.141432, 55.202605 25.141464, 55.202493 25.141537, 55.202381 25.141597, 55.202216 25.141685, 55.202032 25.141802, 55.201978 25.141842, 55.201950 25.141871, 55.201927 25.141902, 55.201913 25.141931, 55.201900 25.141967, 55.201886 25.141999, 55.201862 25.142029, 55.201829 25.142050, 55.201794 25.142064, 55.201753 25.142069, 55.201714 25.142064, 55.201678 25.142050, 55.201645 25.142029, 55.201620 25.141999, 55.201606 25.141967, 55.201600 25.141930)",
"style": "normal"
},
{
"color": "fast",
"length": 24,
"selection": "LINESTRING(55.201600 25.141930, 55.201606 25.141894, 55.201620 25.141861, 55.201645 25.141832, 55.201678 25.141809, 55.201714 25.141796, 55.201753 25.141791)",
"style": "normal"
},
{
"color": "free",
"length": 47,
"selection": "LINESTRING(55.201753 25.141791, 55.201801 25.141789, 55.201842 25.141785, 55.201894 25.141770, 55.201969 25.141732, 55.202170 25.141602)",
"style": "normal"
},
{
"color": "ignore",
"length": 18,
"selection": "LINESTRING(55.202170 25.141602, 55.202197 25.141525, 55.202226 25.141484, 55.202261 25.141459)",
"style": "normal"
},
{
"color": "ignore",
"length": 194,
"selection": "LINESTRING(55.202261 25.141459, 55.202217 25.141403, 55.202211 25.141397, 55.202200 25.141366, 55.202201 25.141324, 55.202221 25.141284, 55.202410 25.141093, 55.202467 25.141043, 55.202531 25.141005, 55.202774 25.140910, 55.202823 25.140884, 55.202774 25.140910, 55.202531 25.141005, 55.202467 25.141043, 55.202410 25.141093, 55.202221 25.141284, 55.202201 25.141324, 55.202200 25.141366, 55.202211 25.141397, 55.202217 25.141403, 55.202261 25.141459)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 73,
"selection": "LINESTRING(55.202261 25.141459, 55.202395 25.141366, 55.202708 25.141149, 55.202762 25.141128, 55.202878 25.141126)",
"style": "normal"
},
{
"color": "free",
"length": 125,
"selection": "LINESTRING(55.202878 25.141126, 55.202965 25.141066, 55.203253 25.140871, 55.203383 25.140784, 55.203457 25.140732, 55.203697 25.140548, 55.203862 25.140422)",
"style": "normal"
},
{
"color": "fast",
"length": 78,
"selection": "LINESTRING(55.203862 25.140422, 55.203952 25.140388, 55.204187 25.140280, 55.204307 25.140201, 55.204395 25.140143, 55.204462 25.140099, 55.204518 25.140171)",
"style": "normal"
},
{
"color": "free",
"length": 376,
"selection": "LINESTRING(55.204518 25.140171, 55.204453 25.140216, 55.204365 25.140276, 55.203870 25.140618, 55.203697 25.140738, 55.203453 25.140897, 55.203108 25.141123, 55.202653 25.141432, 55.202605 25.141464, 55.202493 25.141537, 55.202381 25.141597, 55.202216 25.141685, 55.202032 25.141802, 55.201978 25.141842, 55.201950 25.141871, 55.201927 25.141902, 55.201913 25.141931, 55.201900 25.141967, 55.201886 25.141999, 55.201862 25.142029, 55.201829 25.142050, 55.201794 25.142064, 55.201753 25.142069, 55.201714 25.142064, 55.201678 25.142050, 55.201645 25.142029, 55.201620 25.141999, 55.201606 25.141967, 55.201600 25.141930, 55.201606 25.141894)",
"style": "normal"
}
],
"names": [
"Al Thanya street"
]
},
"outcoming_path_comment": "86 km straight",
"ringroad_exit_number": 3,
"turn_angle": -180,
"type": "ringroad"
},
{
"comment": "Exit 3 to Al Yazzi street Street",
"icon": "ringroad_exit",
"id": "15172544926414149393",
"outcoming_path": {
"distance": 316,
"duration": 38,
"geometry": [
{
"color": "free",
"length": 85,
"selection": "LINESTRING(55.201606 25.141894, 55.201608 25.141849, 55.201609 25.141820, 55.201607 25.141793, 55.201602 25.141773, 55.201565 25.141692, 55.201540 25.141661, 55.201368 25.141440, 55.201290 25.141342, 55.201200 25.141227)",
"style": "living_zone"
},
{
"color": "fast",
"length": 231,
"selection": "LINESTRING(55.201200 25.141227, 55.201149 25.141162, 55.201054 25.141041, 55.200143 25.139881, 55.199942 25.139625, 55.199850 25.139508)",
"style": "living_zone"
}
],
"names": [
"Al Yazzi street"
]
},
"outcoming_path_comment": "300 m straight",
"type": "ringroad_exit"
},
{
"comment": "Right turn onto Al Marcup street",
"icon": "crossroad_right",
"id": "1405287763963083308",
"outcoming_path": {
"distance": 1024,
"duration": 133,
"geometry": [
{
"color": "fast",
"length": 413,
"selection": "LINESTRING(55.199850 25.139508, 55.199711 25.139543, 55.199598 25.139623, 55.199471 25.139712, 55.199204 25.139900, 55.199058 25.140002, 55.198993 25.140047, 55.198852 25.140147, 55.198748 25.140219, 55.198350 25.140499, 55.198185 25.140615, 55.198098 25.140676, 55.197996 25.140748, 55.197777 25.140901, 55.197490 25.141104, 55.197022 25.141432, 55.196698 25.141659, 55.196533 25.141776)",
"style": "living_zone"
},
{
"color": "free",
"length": 240,
"selection": "LINESTRING(55.196533 25.141776, 55.196466 25.141823, 55.196321 25.141925, 55.196104 25.142077, 55.194761 25.143021, 55.194628 25.143115)",
"style": "living_zone"
},
{
"color": "fast",
"length": 66,
"selection": "LINESTRING(55.194628 25.143115, 55.194530 25.143183, 55.194433 25.143252, 55.194289 25.143352, 55.194093 25.143490)",
"style": "living_zone"
},
{
"color": "fast",
"length": 32,
"selection": "LINESTRING(55.194093 25.143490, 55.194052 25.143554, 55.194036 25.143596, 55.194028 25.143616, 55.194025 25.143693, 55.194046 25.143773)",
"style": "normal"
},
{
"color": "free",
"length": 273,
"selection": "LINESTRING(55.194046 25.143773, 55.194435 25.144230, 55.195091 25.144998, 55.195203 25.145129, 55.195425 25.145389, 55.195722 25.145736)",
"style": "normal"
}
],
"names": [
"Al Marcup street"
]
},
"outcoming_path_comment": "1 km straight",
"turn_angle": 93,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Keep right on Al Thanya street",
"icon": "crossroad_keep_right",
"id": "14391353741029144767",
"outcoming_path": {
"distance": 73,
"duration": 15,
"geometry": [
{
"color": "free",
"length": 54,
"selection": "LINESTRING(55.195722 25.145736, 55.195823 25.145801, 55.195892 25.145832, 55.195971 25.145855, 55.195990 25.145855, 55.196051 25.145860, 55.196136 25.145853, 55.196227 25.145822)",
"style": "normal"
},
{
"color": "fast",
"length": 19,
"selection": "LINESTRING(55.196227 25.145822, 55.196375 25.145708)",
"style": "normal"
}
],
"names": [
"Al Thanya street"
]
},
"outcoming_path_comment": "70 m straight",
"turn_angle": 26,
"turn_direction": "keep_right",
"type": "crossroad"
},
{
"comment": "Right turn",
"icon": "crossroad_right",
"id": "15706200517131753627",
"outcoming_path": {
"distance": 25,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 25,
"selection": "LINESTRING(55.196375 25.145708, 55.196263 25.145576, 55.196218 25.145523)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 m straight",
"turn_angle": 88,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "16663190570153052387",
"outcoming_path": {
"distance": 54,
"duration": 13,
"geometry": [
{
"color": "ignore",
"length": 54,
"selection": "LINESTRING(55.196218 25.145523, 55.196289 25.145473, 55.196218 25.145523, 55.196071 25.145627, 55.196218 25.145523)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "50 m straight",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Left turn",
"icon": "crossroad_left",
"id": "9199607221390329733",
"outcoming_path": {
"distance": 7,
"duration": 2,
"geometry": [
{
"color": "ignore",
"length": 7,
"selection": "LINESTRING(55.196218 25.145523, 55.196263 25.145576)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 m straight",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "finish",
"icon": "finish",
"id": "8356145249116664861",
"outcoming_path_comment": "You have arrived!",
"type": "end"
}
],
"reliability": 1.0,
"total_distance": 105392,
"total_duration": 15024,
"type": "carrouting",
"ui_total_distance": {
"unit": "km",
"value": "105"
},
"ui_total_duration": "4 hours 10 min",
"waypoints": [
{
"original_point": {
"lat": 25.14352695780424,
"lon": 55.19933172719197
},
"projected_point": {
"lat": 25.14352695780424,
"lon": 55.19933172719197
},
"transit": false
},
{
"original_point": {
"lat": 25.14557619595357,
"lon": 55.19626308218142
},
"projected_point": {
"lat": 25.14557619595357,
"lon": 55.19626308218142
},
"transit": false
}
]
},
"success": true
}